/*
* demo.css
* File include item demo only specific css only
******************************************************************************/
.select2-selection {
    min-height: 47px !important;
    padding-top: 8px !important;
}
.menu .app-brand.demo {
  height: 64px;
}

.app-brand-logo.demo svg {
  width: 30px;
  height: 24px;
}

.app-brand-text.demo {
  font-size: 1.25rem;
}

.authentication-wrapper .app-brand-text.demo {
  font-size: 1.5rem;
  text-transform: capitalize;
}

/* ! For .layout-navbar-fixed added fix padding top to .layout-page */
/* Default navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/
/* For Login page end */
.authentication-wrapper {
  --bs-auth-basic-inner-max-width: 460px;
  display: flex;
  flex-basis: 100%;
  inline-size: 100%;
  min-block-size: 100vh
}

.authentication-wrapper .authentication-bg {
  background-color: var(--bs-paper-bg)
}

.authentication-wrapper .authentication-inner {
  inline-size: 100%
}

.authentication-wrapper.authentication-basic {
  align-items: center;
  justify-content: center
}

.authentication-wrapper.authentication-basic .authentication-inner {
  max-inline-size: var(--bs-auth-basic-inner-max-width)
}

.authentication-wrapper .auth-cover-illustration {
  z-index: 1;
  max-inline-size: 38rem
}

.authentication-wrapper .authentication-image-object-left {
  position: absolute;
  inset-block-end: 6%;
  inset-inline-start: 4%
}

.authentication-wrapper .authentication-image-object-right {
  position: absolute;
  inset-block-end: 7%;
  inset-inline-end: 4%
}

.authentication-wrapper .authentication-image {
  position: absolute;
  z-index: -1;
  inline-size: 100%;
  inset-block-end: 0;
  inset-inline-start: 0
}

.authentication-wrapper .authentication-image-model {
  inline-size: 768px
}

.authentication-wrapper.authentication-cover {
  align-items: flex-start
}

.authentication-wrapper.authentication-cover .authentication-inner {
  position: relative;
  min-block-size: 100vh
}

.authentication-wrapper.authentication-cover .authentication-image {
  inset-inline-start: unset
}

.authentication-wrapper.authentication-cover .authentication-image-tree {
  position: absolute;
  inset-block-end: 4rem;
  inset-inline-start: 3rem
}

.authentication-wrapper .auth-input-wrapper .auth-input {
  font-size: 150%;
  max-inline-size: 50px;
  padding-inline: .4rem
}

@media (max-width: 575.98px) {
  .authentication-wrapper .auth-input-wrapper .auth-input {
    font-size: 1.125rem
  }
}

@media (max-width: 1199.98px) {
  .authentication-cover .authentication-image-model {
    position: relative;
    inline-size: 575px;
    inset-block-start: 1rem
  }
}

.auth-cover-brand {
  position: absolute;
  z-index: 1
}

@media (max-width: 575.98px) {
  .auth-cover-brand {
    inset-inline-start: 3rem
  }
}

#twoStepsForm .fv-plugins-bootstrap5-row-invalid .form-control {
  border-width: 2px;
  border-color: #ff4c51;
  box-shadow: none
}

@media (max-width: 575.98px) {
  .numeral-mask-wrapper .numeral-mask {
    padding: 0
  }

  .numeral-mask {
    margin-inline: 1px
  }
}
/* For Login page end */

div.dt-container div.dt-length select {
  margin-right: .5em
}

.demo-blocks>* {
  display: block !important;
}

.demo-inline-spacing>* {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing>* {
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
}

.demo-vertical-spacing.demo-only-element> :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg>* {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}

.demo-vertical-spacing-lg.demo-only-element> :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl>* {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}

.demo-vertical-spacing-xl.demo-only-element> :first-child {
  margin-top: 0 !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
  #dropdown-variation-demo .btn-group .text-truncate {
    width: 300px;
    position: relative;
  }

  #dropdown-variation-demo .btn-group .text-truncate::after {
    position: absolute;
    top: 45%;
    right: 0.65rem;
  }
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1.25rem;
}

.layout-demo-placeholder img {
  width: 900px;
}

.layout-demo-info {
  text-align: center;
  margin-top: 1.25rem;
}

/*CSS for color picker*/

 .color-radio {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        cursor: pointer;
        margin: .25rem .5rem .25rem 0;
    }

    .color-radio input {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

    .color-radio .swatch {
        display: inline-block;
        width: 22px;
        height: 22px;
        border: 1px solid #ccc;
        border-radius: 4px;
        transition: all 0.2s ease-in-out;
    }

    .color-radio input:checked+.swatch {
        border: 2px solid #000;
        box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.5);
    }

    .color-radio input:focus-visible+.swatch {
        outline: 2px solid #000;
        outline-offset: 2px;
    }
    /*CSS for color picker End*/