
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* input */
.form-group {
    position: relative;
    margin-top: 0;
    margin-inline-end: 20px;
    margin-bottom: 6px;
    margin-inline-start: 0;
    float: left;
    min-height: 80px;
}
    /* text helping */
    .form-group p {
        font-size: 13px;
        padding: 4px 0 0 24px;
        margin-bottom: 0;
        color: #888;
    }

[dir="rtl"] .form-group p {
    padding: 3px 16px 0 0;
}

.form-label {
    position: absolute;
    margin-inline-start: 24px;
    top: 19px;
    z-index: 10;
    transition: transform 150ms ease-out, font-size 150ms ease-out;
    font-size: 16px;
    font-weight: normal;
    cursor: text;
    display: flex;
    align-items: center;
    line-height: normal !important;
}

.focused .form-label {
    transform: translateY(-45%);
    font-size: 13px;
    font-weight: 500;
    top: 15px;
    margin-inline-start: 24px;
}

.form-input {
    position: relative;
    padding: 21px 48px 4px 22px;
    width: 374px;
    outline: 0;
    transition: box-shadow 150ms ease-out;
    font-size: 20px;
    color: #111;
    height: 56px;
    border: 1px solid;
}

textarea.form-input {
    height: 160px;
    padding: 24px 23px 8px 23px !important;
    width: 768px;
}

[dir="rtl"] .form-input {
    padding: 21px 16px 4px 40px;
}

.form-input:focus {
    z-index: 2;
}

/* .form-input.filled {
  border-color: #999;
} */
/* .form-input.code-input.filled {
  border-color: #111;
} */

select.form-input {
    font-size: 20px;
    padding: 20px 0px 0 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 56px;
}

select.form-input {
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, transparent, transparent);
    background-position: calc(100% - 20px) calc(1.3em + 0px), calc(100% - 15px) calc(1.3em + 0px), calc(100% - 2em) 0.2em;
    background-size: 5px 5px, 5px 5px, 1px 2.3em;
    background-repeat: no-repeat;
}

[dir="rtl"] select.form-input {
    background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient( 135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: 16px 24px, 21px 24px, 40px;
    background-size: 5px 5px, 5px 5px, 1px 2.3em;
    background-repeat: no-repeat;
}

select.form-input:focus {
    background-image: linear-gradient(45deg, #2A407E 50%, transparent 50%), linear-gradient(135deg, transparent 50%, #2A407E 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 15px) 1.45em, calc(100% - 20px) 1.45em, calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 2.3em;
    background-repeat: no-repeat;
    border-color: #2A407E;
    outline: 0;
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}

textarea {
    height: 150px;
}

.form-group.text-help p.text-help {
    color: #666;
    display: flex;
    align-items: center;
    display: none;
}

.form-input ~ p.text-help {
    color: #666;
    display: flex;
    align-items: center;
}

    .form-input ~ p.text-help i {
        margin-inline-end: 4px;
        font-size: 11px;
        font-weight: bold;
        padding-top: 0px;
    }

.form-group.input100 {
    position: relative;
    margin-top: 0;
    margin-inline-end: 0;
    margin-inline-start: 0;
    float: left;
}

    .form-group.input100 .form-input {
        position: relative;
        padding: 21px 48px 4px 24px;
        width: 768px;
        outline: 0;
        transition: box-shadow 150ms ease-out;
        font-size: 20px;
        /* height: 56px; */
    }

    .form-group.input100.phone .form-input {
        padding: 0 0 16px 0;
    }

    .form-group.input100.phone .input-phone {
        width: calc(100% - 120px);
        padding: 16px 0 0 16px;
    }

.inputs-group .form-group.input100 .clearable__clear {
    position: absolute;
    right: 16px;
    top: 18px;
    padding: 0;
    font-style: normal;
    font-size: 20px;
    user-select: none;
    cursor: pointer;
    color: #888;
    z-index: 2;
}

/* input error */

.form-input.inError ~ p.text-help {
    display: none;
}

.form-input.inError {
    border-color: #C84040;
    color: #C84040;
    background: #fdefef;
}

    .form-input.inError ~ .icon-clear-input {
        color: #C84040;
    }

    .form-input.inError ~ p.text-error {
        color: #C84040 !important;
        align-items: center;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        width: 346px;
    }

        .form-input.inError ~ p.text-error i {
            margin-inline-end: 4px;
            font-size: 11px;
            font-weight: bold;
            color: #C84040 !important;
        }

.form-group.input100.validationCode {
    display: flex;
    width: 100%;
}

    .form-group.input100.validationCode input.code-input {
        width: 100%;
        height: 64px;
        font-size: 32px;
        padding: 8px;
    }

    .form-group.input100.validationCode input {
        margin-inline-end: 12px;
        margin-inline-start: 0;
    }

.sect-optvalidation p.text-error {
    display: none;
}

.sect-optvalidation.inError p.text-error {
    display: flex;
    position: relative;
    display: flex;
    color: #C84040 !important;
    align-items: center;
    font-size: 13px;
}

.sect-optvalidation.inError input {
    border-color: #C84040;
    color: #C84040;
    background: #fdefef;
}

.sect-optvalidation.inError p.text-error i {
    margin-inline-end: 4px;
    font-size: 11px;
    font-weight: bold;
}

/* clear input */

.clearable__clear {
    display: none;
    position: absolute;
    right: 16px;
    left: unset;
    top: 18px;
    padding: 0;
    font-style: normal;
    font-size: 20px;
    user-select: none;
    cursor: pointer;
    color: #888;
    z-index: 4;
}

[dir="rtl"] .clearable__clear {
    left: 16px;
    right: unset;
}

.inputs-group .clearable__clear {
    position: absolute;
    right: 12px;
    top: 18px;
    padding: 0;
    font-style: normal;
    font-size: 20px;
    user-select: none;
    cursor: pointer;
    color: #888;
    z-index: 4;
}

[dir="rtl"] .inputs-group .clearable__clear {
    left: 12px;
    right: unset;
}

.form-control .clearable__clear {
    position: absolute;
    right: 12px;
    top: 18px;
    padding: 0;
    font-style: normal;
    font-size: 20px;
    user-select: none;
    cursor: pointer;
    color: #888;
    z-index: 2;
}

.phone .form-control::placeholder {
    color: #888;
    opacity: 0.4;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}

/* choose file */
.file {
    position: absolute;
    z-index: auto;
    width: 0%;
    height: 0%;
    opacity: 0;
}

.file-name {
    position: relative;
    overflow: hidden;
    line-height: 30px;
    padding: 5px;
    box-sizing: border-box;
    font-size: 15px;
    vertical-align: middle;
    width: 306px;
    border: 2px solid #dbdbdb;
    border-radius: 0;
    -webkit-border-radius: 0px; /*Safari y Chrome*/
    -moz-border-radius: 0px; /*Firefox*/
    -o-border-radius: 0px; /*Opera*/
    -ms-border-radius: 0px; /*IE 8*/
    height: calc(2em + 0.75rem + 2px);
}

.btn-choose-file {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    padding: 0px 8px;
    line-height: normal;
    letter-spacing: normal;
    text-transform: uppercase;
    transition: none;
    position: absolute;
    right: 2px;
    top: 2px;
    height: 50px;
    box-shadow: none;
    border: 0;
    min-width: 80px;
    font-size: 13px;
    margin: 1px 1px 0 0;
    background-color: #888;
    color: #FFF;
    z-index: 10;
}

[dir="rtl"] .btn-choose-file {
    left: 2px;
    right: auto;
}

#file-name {
    padding-inline-end: 88px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*Bootstrap Calendar*/
.dateselect.filled + i {
    display: inline !important;
}

.datepicker {
    border-radius: 0;
    -webkit-border-radius: 0px; /*Safari y Chrome*/
    -moz-border-radius: 0px; /*Firefox*/
    -o-border-radius: 0px; /*Opera*/
    -ms-border-radius: 0px; /*IE 8*/
    padding: 0;
    width: 374px
}

.datepicker-days table thead, .datepicker-days table tbody, .datepicker-days table tfoot {
    padding: 10px;
    display: list-item;
    display: flex;
    width: 374px;
    flex-direction: column;
}

.datepicker-days table thead, .datepicker-days table tbody, .datepicker-days table tfoot {
    padding: 10px 10px 0 10px;
    display: list-item;
    display: flex;
    width: 374px;
    flex-direction: column;
}

.datepicker-days table thead, .datepicker-months table thead, .datepicker-years table thead, .datepicker-decades table thead, .datepicker-centuries table thead {
    color: #ffffff;
    border-radius: 0;
    -webkit-border-radius: 0px; /*Safari y Chrome*/
    -moz-border-radius: 0px; /*Firefox*/
    -o-border-radius: 0px; /*Opera*/
    -ms-border-radius: 0px; /*IE 8*/
}

    .datepicker-days table thead tr:nth-child(2n+0) td, .datepicker-days table thead tr:nth-child(2n+0) th {
        border-radius: 3px;
        -webkit-border-radius: 3px; /*Safari y Chrome*/
        -moz-border-radius: 3px; /*Firefox*/
        -o-border-radius: 3px; /*Opera*/
        -ms-border-radius: 3px; /*IE 8*/
        text-align: center;
        width: 100%;
        display: initial;
        vertical-align: middle;
    }

    .datepicker-days table thead tr:nth-child(3n+0) {
        text-transform: uppercase;
        font-weight: 306 !important;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.7);
        width: 100%;
        display: flex;
        justify-content: space-evenly;
    }

.table-condensed {
    width: 100%
}

    .table-condensed > tbody > tr > td, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > thead > tr > th {
        padding: 6px 8px;
        width: 50px;
        text-align: center;
        cursor: pointer;
    }

.today.day {
    background-color: #e1e1e1;
    border-radius: 0px;
    -webkit-border-radius: 0px; /*Safari y Chrome*/
    -moz-border-radius: 0px; /*Firefox*/
    -o-border-radius: 0px; /*Opera*/
    -ms-border-radius: 0px; /*IE 8*/
}

.active.day {
    background-color: #ee4822;
    border-radius: 8px;
    -webkit-border-radius: 8px; /*Safari y Chrome*/
    -moz-border-radius: 8px; /*Firefox*/
    -o-border-radius: 8px; /*Opera*/
    -ms-border-radius: 8px; /*IE 8*/
    color: #FFF;
}

.datepicker-months table thead td, .datepicker-months table thead th, .datepicker-years table thead td, .datepicker-years table thead th, .datepicker-decades table thead td, .datepicker-decades table thead th, .datepicker-centuries table thead td, .datepicker-centuries table thead th {
    border-radius: 0;
    -webkit-border-radius: 0px; /*Safari y Chrome*/
    -moz-border-radius: 0px; /*Firefox*/
    -o-border-radius: 0px; /*Opera*/
    -ms-border-radius: 0px; /*IE 8*/
}

.datepicker td, .datepicker th {
    border-radius: 50%;
    -webkit-border-radius: 50%; /*Safari y Chrome*/
    -moz-border-radius: 50%; /*Firefox*/
    -o-border-radius: 50%; /*Opera*/
    -ms-border-radius: 50%; /*IE 8*/
    padding: 0 12px;
}

.datepicker-days table thead, .datepicker-months table thead, .datepicker-years table thead, .datepicker-decades table thead, .datepicker-centuries table thead {
    color: #ffffff;
    border-radius: 23px 23px 0 0;
    -webkit-border-radius: 23px 23px 0 0; /*Safari y Chrome*/
    -moz-border-radius: 23px 23px 0 0; /*Firefox*/
    -o-border-radius: 23px 23px 0 0; /*Opera*/
    -ms-border-radius: 23px 23px 0 0; /*IE 8*/

    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.datepicker table tr td.active, .datepicker table tr td.active:hover, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover {
    background-image: none;
}

.datepicker .prev, .datepicker .next {
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    width: 37px;
    height: 37px;
    vertical-align: middle;
    font-size: 20px;
}

    .datepicker .prev:hover, .datepicker .next:hover {
        background: transparent;
        color: rgba(255, 255, 255, 0.99);
        font-size: 21px;
    }

.datepicker .datepicker-switch {
    font-size: 24px;
    font-weight: 400;
    transition: 0.3s;
    width: 100%;
}

    .datepicker .datepicker-switch:hover {
        color: rgba(255, 255, 255, 0.7);
        background: transparent;
    }

.datepicker table tr td span {
    border-radius: 2px;
    -webkit-border-radius: 2px; /*Safari y Chrome*/
    -moz-border-radius: 2px; /*Firefox*/
    -o-border-radius: 2px; /*Opera*/
    -ms-border-radius: 2px; /*IE 8*/
    width: 56px;
    display: inline-flex;
    text-align: center;
    height: 24px;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
}

    .datepicker table tr td span.active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover {
        background-image: none;
    }

.dropdown-menu {
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.datepicker-dropdown.datepicker-orient-top:before {
    border-top: 7px solid rgba(0,0,0,.1);
}

.datepicker.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    padding: 0;
    margin: 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 24px;
    -webkit-border-radius: 24px; /*Safari y Chrome*/
    -moz-border-radius: 24px; /*Firefox*/
    -o-border-radius: 24px; /*Opera*/
    -ms-border-radius: 24px; /*IE 8*/
    -webkit-box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    direction: ltr;
    z-index: 12 !important;
}

.day {
    color: #111;
    font-weight: 500;
    font-size: 16px;
}

.month.focused, .year.focused {
    /* background-color: #e1e1e1;
  border-radius: 8px; */
}

.datepicker table tr td span {
    height: 40px;
}

.month, .year {
    font-size: 16px;
}
/* phone */
.phone .scrollable-menu {
    height: auto;
    max-height: 210px;
    overflow-x: hidden;
    padding: 0;
    border-radius: 16px;
    -webkit-border-radius: 16px; /*Safari y Chrome*/
    -moz-border-radius: 16px; /*Firefox*/
    -o-border-radius: 16px; /*Opera*/
    -ms-border-radius: 16px; /*IE 8*/
    padding: 4px 0;
    transform: scale(0.01);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease 0.15s;
    transform-origin: center top;
    /* overflow: hidden; */
    overflow: auto;
    width: 100%;
}

.form-group.input100.phone .scrollable-menu {
    width: 100%;
}

.form-group.input100.phone.phone .dropdown-item {
    width: 100%;
}

.phone .scrollable-menu.show {
    transform: scale(1);
    opacity: 1;
}

.phone .input-group {
    position: relative;
    padding: 0;
    width: 374px;
    outline: 0;
    transition: box-shadow 150ms ease-out;
    font-size: 20px;
    height: 56px;
}

.dial-code {
    display: flex;
    justify-content: end;
}

.phone .btn {
    min-width: auto;
    height: 100%;
    display: flex;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: normal;
    text-transform: uppercase;
    border: 0;
    margin-inline-start: 0;
    transition: none;
    width: 120px;
    justify-content: flex-start;
    align-items: center;
    padding-inline-start: 22px;
    padding-inline-end: 12px;
}

.dropdown-toggle::after {
    display: none;
}

.phone .dropdown-toggle .icon-arrow-down {
    font-weight: bold;
    font-size: 14px;
}

.phone .input-group-addon {
    font-size: 14px;
    display: flex;
    width: 56px;
    align-items: center;
    color: #888;
    justify-content: flex-start;
    padding-inline-start: 4px;
}

.phone .form-control {
    height: 54px;
    position: relative;
    padding: 21px 48px 4px 18px;
    outline: 0;
    transition: box-shadow 150ms ease-out;
    font-size: 20px;
    box-shadow: none;
    border: 0;
}

.phone .dropdown-toggle .emoji i {
    display: flex;
    width: 24px;
    height: 24px;
    background-attachment: initial;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50%;
    -webkit-border-radius: 50%; /*Safari y Chrome*/
    -moz-border-radius: 50%; /*Firefox*/
    -o-border-radius: 50%; /*Opera*/
    -ms-border-radius: 50%; /*IE 8*/
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
}

.phone .flag-emoji i {
    display: flex;
    width: 24px;
    height: 24px;
    background-attachment: initial;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 50%;
    -webkit-border-radius: 50%; /*Safari y Chrome*/
    -moz-border-radius: 50%; /*Firefox*/
    -o-border-radius: 50%; /*Opera*/
    -ms-border-radius: 50%; /*IE 8*/
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
}

.phone .form-label {
    position: absolute;
    margin-inline-start: 136px;
    top: 18px;
    z-index: 10;
    transition: transform 150ms ease-out, font-size 150ms ease-out;
    font-size: 16px;
    font-weight: normal;
    cursor: text;
}

.form-group.phone.focused label {
    transform: translateY(-45%);
    font-size: 13px;
    color: #888;
    font-weight: 500;
    top: 15px;
}

.phone .dropdown-item {
    display: flex;
    width: 100%;
    padding: 8px 22px;
    clear: both;
    font-weight: 400;
    color: #111;
    text-align: inherit;
    white-space: nowrap;
    background-color: #white;
    border-bottom: 1px solid #eee;
    justify-content: flex-start;
    align-items: center;
    overflow-y: hidden;
}

.form-group.phone ::-webkit-scrollbar {
    width: 12px !important; /** Tamaño Scroll en Vertical */
    height: 12px !important; /** Tamaño Scroll en Horizontal **/
}

.form-group.phone ::-webkit-scrollbar-thumb {
    border-radius: 24px; /** Borde redondeado barra **/
    -webkit-border-radius: 24px; /*Safari y Chrome*/
    -moz-border-radius: 24px; /*Firefox*/
    -o-border-radius: 24px; /*Opera*/
    -ms-border-radius: 24px; /*IE 8*/
}

.form-group.phone ::-webkit-scrollbar-track {
    border-radius: 0 24px 24px 0; /** Borde redondeado **/
    -webkit-border-radius: 0 24px 24px 0; /*Safari y Chrome*/
    -moz-border-radius: 0 24px 24px 0; /*Firefox*/
    -o-border-radius: 0 24px 24px 0; /*Opera*/
    -ms-border-radius: 0 24px 24px 0; /*IE 8*/
}

.phone .dropdown-item .flag-emoji {
    padding: 0;
    display: inline-flex;
    padding-inline-end: 12px;
}

.phone .dropdown-item .country-name {
    padding: 0;
    display: inline-flex;
    padding-inline-end: 12px;
}

.phone .dropdown-item .dial-code {
    padding: 0;
    display: inline-flex;
    color: #888;
}

.phone .example-number {
    display: none;
}

.form-datepicker {
    z-index: 12;
}

.opacity-bk-mobile {
    display: none !important
}

.show-hide-pass {
    position: absolute;
    right: 8px;
    top: 21px;
    text-transform: uppercase;
    cursor: pointer;
    padding: 2px 10px;
    font-size: 10px;
    color: #888;
    z-index: 100;
}

.form-group.disabled input, .form-group.disabled label, .form-group.disabled button, .form-group.disabled span {
    pointer-events: none !important;
    opacity: 0.4 !important;
    cursor: default !important;
}

.form-group.disabled .icon-clear-input {
    display: none !important;
}

.form-group.with-icon .icon-user-input, .form-group.with-icon .icon-padlock-input {
    position: absolute;
    font-size: 24px;
    top: 14px;
    z-index: 10;
    padding-inline-start: 24px;
}

.form-group.with-icon .form-label {
    margin-inline-start: 60px;
}

.form-group.with-icon .form-input {
    padding: 21px 48px 4px 60px;
}

/* input validation SMS Code */
.sect-optvalidation .form-group.validationCode {
    margin: auto;
    display: flex;
}

.form-group.validationCode input {
    width: 51px;
    margin-inline-end: 10px;
    padding: 0;
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
}

.sect-optvalidation .form-group.validationCode input {
    width: 100%;
    margin-inline-end: 16px;
    padding: 0;
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    height: 64px
}

    .sect-optvalidation .form-group.validationCode input:last-child {
        margin-inline-end: 0;
    }

.form-group.validationCode input:last-child {
    margin-inline-end: 0px;
}

input:-internal-autofill-selected {
    appearance: menulist-button;
    background-image: none !important;
    background-color: transparent !important;
    color: -internal-light-dark(black, white) !important;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.overlay-back-submenu {
    width: 100%;
    height: calc(100vh - 80px);
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 17;
    display: none;
    margin-top: 80px;
    opacity: 0;
    animation: fadeOverlay ease 1.5s;
    -webkit-animation: fadeOverlay ease 1.5s;
    -moz-animation: fadeOverlay ease 1.5s;
    -o-animation: fadeOverlay ease 1.5s;
    -ms-animation: fadeOverlay ease 1.5s;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.phone-code-mobile {
    display: none;
}

.form-group.input100 .form-input.code-input {
    display: inline-flex;
}

.form-input.input-phone:focus {
    border: 1px solid
}

.form-input.code-input.filled {
    border-color: #111
}

/* requirement password */
.requirement-password {
    margin: 0 0 16px 0;
    font-size: 14px;
    color: #555;
    float: left;
}

.date-requirement {
    display: flex;
    margin: 2px 0;
    font-size: 14px;
    align-items: center;
}

    .date-requirement i {
        padding-inline-end: 4px;
        font-size: 12px
    }

        .date-requirement i.icon-point {
            padding-inline-end: 4px;
            font-size: 6px
        }

        .date-requirement i.icon-Dell_fill, .date-requirement i.icon-Check_fill {
            display: none;
        }

    .date-requirement.active {
        color: #33A82C
    }

    .date-requirement.inError {
        color: #c84040
    }

    .date-requirement.active i.icon-point, .date-requirement.active i.icon-Dell_fill {
        display: none
    }

    .date-requirement.active i.icon-Check_fill {
        display: flex
    }

    .date-requirement.inError i.icon-point, .date-requirement.inError i.icon-Check_fill {
        display: none
    }

    .date-requirement.inError i.icon-Dell_fill {
        display: flex
    }


@media (max-width: 1200px) {

    textarea.form-input {
        height: 160px;
        padding: 24px 16px 4px;
        width: 632px;
    }

    .phone .input-group {
        position: relative;
        padding: 0;
        width: 306px;
        outline: 0;
        transition: box-shadow 150ms ease-out;
        font-size: 20px;
        color: #555;
        height: 56px;
    }

    .form-group.validationCode input {
        margin-inline-end: 4px;
        width: 45px;
    }

    .form-input {
        width: 306px;
    }

    .form-group.input100 .form-input {
        width: 632px;
    }

    .form-input.inError ~ p.text-error {
        width: 290px;
    }

    .phone .scrollable-menu {
        width: 306px;
    }

    .phone .dropdown-item {
        width: 100%;
    }
}

@media (max-width: 992px) {

    .inputs-group {
        margin: 0 0 16px 0;
        display: inline-block;
        width: 100%;
    }

        .inputs-group .form-group {
            width: 100%;
        }

    .form-group.input100.validationCode {
        padding-inline-end: 0px;
    }

    .form-input ~ p.text-help {
        color: #666;
        display: flex;
        align-items: center;
    }

    .bottomsheet-phone {
        display: none;
    }

    .form-group.text-help p.text-help {
        display: flex;
        align-items: center;
        display: flex;
    }

    .form-group.textarea {
        width: 100%;
    }

    textarea.form-input {
        height: 160px;
        padding: 24px 16px 4px;
        width: 100%;
    }

    .phone .input-group {
        width: 100%;
    }

    .sect-optvalidation .form-group.validationCode {
        display: flex;
        justify-content: center;
    }

    .form-group.validationCode input {
    }

    .form-input {
        width: 100%;
        font-size: 20px;
    }

    .form-group.input100 .form-input {
        width: 100%;
    }

    .form-group.input100 {
        position: relative;
        margin-top: 0;
        margin-inline-end: 0;
        margin-bottom: 16px;
        margin-inline-start: 0;
        float: left;
    }

    .inputs-group .form-group.input100 {
        margin-bottom: 0;
    }

    .inputs-group .form-group {
        margin-bottom: 0;
    }

    .form-group {
        margin: 0 0 16px 0;
        width: 100%;
        min-height: auto;
    }

    .form-input.inError ~ p.text-error {
        width: 100%;
        display: flex;
        overflow: unset;
        text-overflow: unset;
        white-space: unset;
        line-height: normal;
        padding-inline-end: 24px;
    }

    .form-label button.input-tooltip {
        display: none;
    }

    .focused .form-label button.input-tooltip {
        display: none;
    }

    .inputs-group .clearable__clear {
        right: 16px;
        top: 16px;
    }

    .phone .scrollable-menu {
        width: 100%;
    }

    .phone .dropdown-item {
        width: 100%;
        padding: 13px 22px;
    }

    .form-group.validationCode {
        display: flex;
    }

        .form-group.validationCode input {
            margin-inline-end: 8px;
            width: 100%;
        }

    .sect-optvalidation.inError p.text-error {
        margin-top: 8px;
        margin-bottom: 16px;
    }
}

@media (max-width: 768px) {

    .datepicker.dropdown-menu {
        left: 0 !important;
        top: 80px !important;
        position: fixed;
        width: 98%;
        margin: 0 1%;
    }

    .opacity-bk-mobile {
        width: 100%;
        height: 100%;
        background: #000;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 11;
        display: none;
        opacity: 0;
        animation: fadeOverlay linear 0.3s;
        -webkit-animation: fadeOverlay linear 0.3s;
        -moz-animation: fadeOverlay linear 0.3s;
        -o-animation: fadeOverlay linear 0.3s;
        -ms-animation: fadeOverlay linear 0.3s;
    }

        .opacity-bk-mobile[style*="display: block"] {
            opacity: 0.4;
            display: block !important;
        }

    @keyframes fadeOverlay {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 0.4;
        }
    }

    @-moz-keyframes fadeOverlay {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 0.4;
        }
    }

    @-webkit-keyframes fadeOverlay {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 0.4;
        }
    }

    @-o-keyframes fadeOverlay {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 0.4;
        }
    }

    @-ms-keyframes fadeOverlay {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 0.4;
        }
    }

    .day {
        color: #111;
        font-weight: 500;
        font-size: 24px;
    }

    .dow {
        font-size: 16px;
    }

    .datepicker table tr td span {
        height: 64px;
    }

    .month, .year {
        font-size: 20px;
    }

    .focused .form-label {
        font-size: 14px;
        top: 17px;
    }

    .form-input {
        width: 100%;
        font-size: 20px;
        height: 60px;
        padding: 24px 48px 4px 23px;
    }

    .phone .input-group {
        height: 60px;
    }

    .phone .form-control {
        height: 58px;
    }

    .phone .form-label {
        top: 20px;
    }

    .form-group.phone.focused label {
        font-size: 14px;
    }

    .clearable__clear {
        top: 20px;
    }

    .inputs-group .clearable__clear {
        right: 16px;
        top: 20px;
    }

    .form-label {
        top: 21px;
    }

    .form-group.with-icon .form-input {
        padding: 24px 48px 4px 60px;
    }

    .phone .form-control {
        padding: 24px 48px 4px 18px;
    }

    .btn-choose-file {
        top: 2px;
        height: 54px;
    }

    .form-group.with-icon .icon-user-input, .form-group.with-icon .icon-padlock-input {
        top: 18px;
    }

    textarea.form-input {
        padding: 24px 23px 4px;
    }

    .show-hide-pass {
        top: 23px;
    }

    .bootstrap-select .dropdown-menu {
        display: none;
    }

        .bootstrap-select .dropdown-menu.show {
            display: none;
        }
    /* modals mobile */
    /* dropdown mobile */
    .dropdown-mobile.modal {
        z-index: 10001;
        overflow-x: hidden;
    }

        .dropdown-mobile.modal.modal-left .modal-dialog,
        .dropdown-mobile.modal.modal-right .modal-dialog {
            -webkit-transform: translate3d(0%, 0, 0);
            -ms-transform: translate3d(0%, 0, 0);
            -o-transform: translate3d(0%, 0, 0);
            transform: translate3d(0%, 0, 0);
        }

        .dropdown-mobile.modal.modal-right .modal-dialog {
            position: fixed;
            margin: auto;
            width: 100%;
            max-width: 100%;
            height: 100%;
            z-index: 10001;
        }

        .dropdown-mobile.modal.modal-right .modal-content {
            height: 100%;
            overflow-y: auto;
            border: 0;
            border-radius: 0;
            z-index: 10001;
            overflow-x: hidden;
        }

        .dropdown-mobile.modal.modal-left.fade .modal-dialog {
            left: -100%;
            -webkit-transition: left 0.3s ease-out;
            -moz-transition: left 0.3s ease-out;
            -o-transition: left 0.3s ease-out;
            transition: left 0.3s ease-out;
        }

        .dropdown-mobile.modal.modal-right.fade .modal-dialog {
            right: -100%;
            -webkit-transition: right 0.3s ease-out;
            -moz-transition: right 0.3s ease-out;
            -o-transition: right 0.3s ease-out;
            transition: right 0.3s ease-out;
        }

        .dropdown-mobile.modal.modal-left.fade.show .modal-dialog {
            left: 0;
            z-index: 10001;
        }

        .dropdown-mobile.modal.modal-right.fade.show .modal-dialog {
            right: 0;
            z-index: 10001;
        }

        .dropdown-mobile.modal.modal-right .modal-dialog.modal-xl {
            width: 100%;
            z-index: 10001;
        }

    .dropdown-mobile .modal-header {
        padding: 16px
    }

    .dropdown-mobile .modal-body {
        padding: 0px;
    }

    .dropdown-mobile .head {
        padding: 16px;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
        width: 100%;
    }

        .dropdown-mobile .head h2 {
            font-weight: 500;
            margin: 0;
        }

        .dropdown-mobile .head .date-upgrade {
            padding-top: 8px;
        }

            .dropdown-mobile .head .date-upgrade p {
                font-size: 13px;
                margin: 0;
                line-height: 19px;
            }

                .dropdown-mobile .head .date-upgrade p:first-child {
                    margin: 0;
                }

    .dropdown-mobile a span {
        font-size: 20px;
        padding-inline-end: 16px;
    }

    .dropdown-mobile .modal-header {
        padding: 0;
        top: 0;
        width: 100%;
        z-index: 1;
    }

    .dropdown-mobile .head h5 {
        font-size: 24px;
        font-weight: 600;
        margin: 0;
        padding-inline-end: 32px;
        width: 100%;
    }

    .dropdown-mobile .headerUserDrop .title-userdrop {
        font-size: 24px;
        font-weight: 600;
        margin: 0;
        padding-inline-end: 32px;
        width: 100%;
        line-height: 1.2;
    }

    .dropdown-mobile a i {
        font-size: 18px;
        position: absolute;
        right: 12px;
    }

    .dropdown-mobile .headerUserDrop {
        padding: 16px;
    }

    .dropdown-mobile .sect-view .head {
        border-bottom: 1px solid
    }

    .dropdown-mobile .modal-header button {
        position: fixed;
        right: 16px;
        top: 18px;
        margin: 0;
        padding: 0;
        font-size: 24px
    }

    .dropdown-mobile .sect-view a {
        border-bottom: 1px solid
    }

        .dropdown-mobile .sect-view a:last-child {
            border-bottom: none;
        }

    .phone-code-mobile {
        height: 54px;
        position: absolute;
        top: 0;
        width: 118px;
        z-index: 2;
        display: block;
    }

    .phone .scrollable-menu.show {
        display: none;
    }
    /* bottom sheet */
    .bottomsheet-phone.modal {
        z-index: 9998;
    }

        .bottomsheet-phone.modal.modal-bottom .modal-dialog {
            position: fixed;
            margin: auto;
            width: 100%;
            max-width: 100%;
            height: auto;
            bottom: 48px;
            max-height: calc(100% - 108px)
        }

        .bottomsheet-phone.modal.modal-bottom .modal-content {
            height: auto;
            overflow-y: auto;
            bottom: 0px;
            border-radius: 8px 8px 0 0;
            border: 0;
        }

        .bottomsheet-phone.modal.modal-bottom .modal-body {
            padding: 8px 0;
            overflow-y: auto;
            max-height: calc(100vh - 177px);
        }

        .bottomsheet-phone.modal.modal-bottom.fade .modal-dialog {
            bottom: -100%;
            -webkit-transition: opacity 0.3s linear, bottom 0.3s ease-out;
            -moz-transition: opacity 0.3s linear, bottom 0.3s ease-out;
            -o-transition: opacity 0.3s linear, bottom 0.3s ease-out;
            transition: opacity 0.3s linear, bottom 0.3s ease-out;
        }

        .bottomsheet-phone.modal.modal-bottom.fade.show .modal-dialog {
            bottom: 0px;
        }

        .bottomsheet-phone.modal.modal-bottom.fade .modal-dialog {
            bottom: -100%;
        }

    .bottomsheet-phone .modal-backdrop.fade.show {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9997;
        width: 100vw;
        height: 100vh;
        background-color: #000;
    }

    .bottomsheet-phone .modal-title {
        font-size: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 600;
    }

    .bottomsheet-phone .modal-header .close {
        font-size: 20px;
        height: 36px;
        padding: 0;
        margin: 0;
    }

    .bottomsheet-phone .bot-submenu a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 8px 16px;
        min-height: 56px;
        font-size: 18px;
        text-decoration: none;
    }

        .bottomsheet-phone .bot-submenu a span {
            font-size: 20px;
            padding-inline-end: 16px;
        }

    /* bottom sheet phone code */
    .phone .bottomsheet-phone li a.dropdown-item {
        width: 100%;
        min-height: 64px;
        display: flex !important;
        position: relative !important;
        padding: 8px 8px 8px 16px;
        font-size: 18px;
        overflow: hidden;
    }

        .phone .bottomsheet-phone li a.dropdown-item .flag-emoji i {
            display: flex;
            width: 32px;
            height: 32px;
            background-attachment: initial;
            background-repeat: no-repeat;
            background-size: contain;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            border: 1px solid #ccc;
            margin-inline-end: 12px;
        }

    .bottomsheet-phone.modal.modal-bottom .modal-body {
        padding: 0;
        overflow-y: auto;
        max-height: calc(100vh - 177px);
    }

    .phone .dropdown-item .flag-emoji {
        padding: 0;
        display: inline-flex;
        padding-inline-end: 0px;
    }

    .bottomsheet-phone a i {
        display: inline-flex;
        font-size: 20px;
        margin-inline-end: 16px;
    }

    .datepicker-days table thead, .datepicker-days table tbody, .datepicker-days table tfoot {
        padding: 10px 0 0 0;
        display: list-item;
        display: flex;
        width: 100%;
        flex-direction: column;
    }

    .datepicker-days tbody tr {
        display: flex;
        justify-content: space-evenly;
        width: 100%;
    }

    .table-condensed > tbody > tr > td, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > thead > tr > th {
        padding: 8px;
        width: inherit;
        text-align: center;
        cursor: pointer;
    }

    .datepicker .datepicker-switch {
        font-size: 28px;
        font-weight: 400;
        transition: 0.3s;
        width: 100%;
    }

    .datepicker .prev {
        color: rgba(255, 255, 255, 0.5);
        transition: 0.3s;
        width: 37px;
        height: 37px;
        vertical-align: middle;
        font-size: 32px;
        padding: 0;
        padding-inline-start: 16px;
        padding-bottom: 4px;
    }

    .datepicker .next {
        color: rgba(255, 255, 255, 0.5);
        transition: 0.3s;
        width: 37px;
        height: 37px;
        vertical-align: middle;
        font-size: 32px;
        padding: 0;
        padding-inline-end: 16px;
        padding-bottom: 4px;
    }

        .datepicker .prev:hover, .datepicker .next:hover {
            background: transparent;
            color: rgba(255, 255, 255, 0.99);
            font-size: 32px;
        }

    .datepicker table tr td span {
        height: 64px;
        font-size: 20px;
    }
}

@media (max-width: 576px) {

    .form-group.validationCode input {
        width: 100%;
        max-width: 56px;
    }

    .sect-optvalidation .form-group.validationCode input {
        width: 100%;
        margin-inline-end: 8px;
    }

    .form-group.validationCode input {
        width: 100%;
        max-width: 100%;
    }

    .form-group.validationCode input {
        width: 100%;
    }

    .form-group.validationCode {
        display: flex;
    }
}
