.gy-40 {
    --bs-gutter-y: 40px;
}

.gy-10 {
    --bs-gutter-y: 10px;
}

.gy-16 {
    --bs-gutter-y: 16px;
}

.gy-18 {
    --bs-gutter-y: 18px;
}

.gy-24 {
    --bs-gutter-y: 24px;
}

.gx-16 {
    --bs-gutter-x: 16px;
}

.gx-18 {
    --bs-gutter-x: 18px;
}

.gx-180 {
    --bs-gutter-x: 110px;
}

.gx-50 {
    --bs-gutter-x: 50px;
}

.fullscreen-page {
    height: calc(100vh - var(--header-fixed-padding));
}

@supports (height: calc(100dvh - var(--header-fixed-padding))) {
    .fullscreen-page {
        height: calc(100dvh - var(--header-fixed-padding));
    }
}

.fullscreen-page .section {
    height: 100%;
}

.section {
    display: flex;
    flex-direction: column;
    padding-top: 55px;
    background-color: #F0F5F9;
}

.section__body {
    flex: auto;
}

.section__footer {
    display: flex;
    align-items: center;
    background-color: #E6EBEF;
    padding-top: 18px;
    padding-bottom: 18px;
}

.section__footer.--sticky {
    position: sticky;
    bottom: 0;
}

.scroll-block {
    overflow: auto;
}

.scroll-block::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.scroll-block::-webkit-scrollbar-track {
    background-color: transparent;
}

.scroll-block::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(26, 101, 158, 0.5);
}

.scroll-block::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary);
}

.section-subtitle {
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    color: rgba(51, 51, 51, 0.69);
}

.input-custom__wrap-input {
    position: relative;
}

.input-custom__input {
    display: flex;
    align-items: center;
    border: 1px solid rgba(93, 103, 126, 0.53);
    background-color: #fff;
    padding: 7px 10px;
    font-size: 13px;
    line-height: 20px;
    width: 100%;
    min-height: 40px;
}

.label {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
    color: #131515;
    margin-bottom: 6px;
}

.input-custom__icon-left {
    display: flex;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.input-custom__icon-right {
    display: flex;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.drop-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    min-height: 132px;
    text-align: center;
    padding: 22px 0;
    background-color: var(--white);
    border-radius: 12px;
    border: 1px dashed var(--primary);
}

.drop-area .preview {
    position: absolute;
    width: 175px;
    height: 175px;
    object-fit: contain;
}

.drop-area .overlay {
    display: none;
}

.drop-area.drag-over .overlay,
.drop-area.uploaded .overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.66);
    pointer-events: none;
}

.drop-area.drag-over * {
    pointer-events: none;
}

.drop-area .info {
    font-weight: normal;
    font-size: 12px;
    line-height: 24px;
    text-align: left;
    color: rgba(51, 51, 51, 0.69);
}

.drop-area .browse {
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: #0165ff;
    cursor: pointer;
    text-decoration: underline;
}

.upload-cancel {
    display: none;
    background-color: transparent;
    position: absolute;
    top: 15px;
    right: 15px;
}

.drop-area.uploaded .upload-cancel {
    display: flex;
}

.custom-number-input {
    display: flex;
    align-items: center;
}

.custom-number-input input {
    text-align: center;
    width: 100%;
    min-height: 40px;
    background-color: #fff;
    border-top: 1px solid rgba(93, 103, 126, 0.53);
    border-bottom: 1px solid rgba(93, 103, 126, 0.53);
}

.custom-number-input input::-webkit-outer-spin-button,
.custom-number-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.custom-number-input input[type="number"] {
    -moz-appearance: textfield;
}

.custom-number-input .minus-btn,
.custom-number-input .plus-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background-color: #f6f9fc;
    border: 1px solid rgba(93, 103, 126, 0.53);
}

.custom-number-input .minus-btn:hover,
.custom-number-input .plus-btn:hover {
    background-color: rgba(93, 103, 126, 0.53);
}

.image-shadow-100 {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.image-shadow-100 img {
    width: 100%;
    height: 100%;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.card .card-edit-button {
    position: absolute;
    top: 12px;
    right: 12px;
}

.steps {
    background-color: #f0f5f9;
}

.steps__container {
    padding-top: 0px;
    padding-bottom: 30px;
    padding-left: 0px;
    padding-right: 0px;
    /* overflow: auto; */
}

.steps__container {
    overflow: auto;
}

.steps__container::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.steps__container::-webkit-scrollbar-track {
    background-color: transparent;
}

.steps__container::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(26, 101, 158, 0.5);
}

.steps__container::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary);
}

.steps__list {
    display: flex;
    align-items: end;
    width: 100%;
    align-items: flex-end;
    -webkit-align-items: flex-end;
}

.step__item {
    position: relative;
    --step-icon-size: 30px;
    flex: 1;
    min-width: 128px;
}

.step__icon-wrapper {
    position: relative;
    width: 100%;
}

.step__icon {
    width: var(--step-icon-size);
    height: var(--step-icon-size);
    min-width: var(--step-icon-size);
    color: rgba(102, 102, 102, 0.17);
}

.step__item+.step__item .step__icon::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    width: calc(100% - var(--step-icon-size));
    height: 2px;
    background-color: #e5e5e5;
}

.step__item:first-child .step__icon {
    color: rgba(102, 102, 102, 0.57);
}

.step__item.active .step__icon {
    color: #10c01c;
}

.step__item.active+.step__item.active .step__icon::before {
    background-color: #10c01c;
}

.bg-white {
    background-color: var(--white);
}

.bg-secondary-2 {
    background-color: #F0F5F9;
}

.step__item .info {
    font-family: var(--roboto);
    font-weight: normal;
    font-size: 13px;
    text-align: left;
    color: #666;
    margin-top: 12px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-right: 10px;
}

.message-cloud {
    --arrow-size: 10px;
    position: relative;
    width: fit-content;
    max-width: 100%;
    padding: 8px;
    background-color: var(--white);
    border-radius: 5px;
    margin-bottom: calc(var(--arrow-size) + 13px);
}

.message {
    font-weight: 500;
    font-size: 12px;
    color: #ff0303;
}

.message-cloud::before {
    content: "";
    position: absolute;
    top: 100%;
    left: calc(var(--margin-left) * -1 + var(--step-icon-size) / 2);
    width: 0;
    height: 0;
    border: var(--arrow-size) solid transparent;
    border-top-color: var(--white);
    transform: translateX(-50%);
}

.message__text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.step-data {
    margin-bottom: 15px;
}

.step-data__label {
    font-weight: 500;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.step-data__value {
    font-weight: 500;
    font-size: 18px;
    text-align: left;
}

.pill.card-edit-button {
    display: flex;
    align-items: center;
    border-radius: 360px;
    background-color: #DADCE1;
    font-weight: 400;
    font-style: italic;
    font-size: 12px;
    line-height: 16px;
    color: #5D677E;
    padding: 0 10px;
    height: 20px;
}

.double-fullpage {
    display: flex;
    min-height: 100vh;
    position: relative;
}

.double-fullpage .container {
    max-width: 100%;
    padding: 0;
    justify-content: center;
    display: flex;
}

.double-fullpage .row--item {
    height: 100%;
    padding: 22px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.double-fullpage .row--item.bg-item {
    position: fixed;
    right: 0;
}

.bg-item {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.btn--56 {
    min-height: 56px;
    padding: 10px;
}

.input-icon {
    position: relative;
}

.input-icon.input-icon--right input {
    padding-right: 40px;
}

.input-icon .ico {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.input-icon.input-icon--right .ico {
    right: 10px;
}

.input-icon.input-icon--left input {
    padding-left: 36px;
}

.input-icon.input-icon--left .ico {
    left: 8px;
}

.text-18 {
    font-size: 18px;
    line-height: 28px;
}

.otp-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.otp-input {
    border-radius: 8px;
    background-color: var(--white);
    width: 74px;
    height: 80px;
    text-align: center;
    padding: 12px;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 4px 0px rgba(16, 24, 40, 0.05);
}

.otp-input.active {
    border: 1px solid var(--primary);
    box-shadow: none;
}

.otp-input:not(:last-child) {
    margin-right: 28px;
}

.img-50 {
    width: 50px;
    height: 50px;
    min-width: 50px;
}

.nophoto-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3fa5ff;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.03em;
    color: #fff;
    padding: 5px;
    width: 100%;
    height: 100%;
    border-radius: 300px;
    overflow: hidden;
}

.password-container {
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: 300px;
    text-align: center;
}

.password-strength {
    display: flex;
    align-items: center;
    width: 100%;
}

#progress {
    position: relative;
    flex: auto;
    max-width: 220px;
    height: 8px;
    border-radius: 4px;
    background: rgba(93, 103, 126, 0.13);
    filter: drop-shadow(0px 1px 4px rgba(16, 24, 40, 0.05));
    margin: 0 4px;
}

#progress span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 4px;
    color: transparent;
    filter: drop-shadow(0px 1px 4px rgba(16, 24, 40, 0.05));
    background: linear-gradient(270deg, currentColor 0%, #cfffd2 100%);
}

.strenght-text {
    font-size: 12px;
    line-height: 24px;
    color: #333;
}

.step-hotel-item.step-hotel-item--add {
    background-color: #F0F5F9;
    border-bottom: none;
    padding: 8px 12px 8px 8px;
}

.step-hotel-item.step-hotel-item--add .info {
    font-weight: 24px;
    font-size: 14px;
    text-align: left;
    color: #5D677E;
    opacity: 1;
}

/* .step-hotel-list.step-hotel-list--shadow {
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
} */

.pill-lightgray {
    font-family: Inter;
    font-weight: 500;
    font-size: 12px;
    text-align: left;
    color: #5d677e;
    background: rgba(0, 0, 0, 0.05);
}

.pill-blue {
    color: var(--white);
    background-color: #5AB5D6;
}

.color-danger {
    color: var(--danger) !important;
}

.color-success {
    color: #4bc248 !important;
}

.color-text {
    color: #667085;
}

.select-image-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b {
    background-image: url(../img/select-arrow--fill.svg);
    width: 10px;
    height: 8px;
}

.select-image-wrapper img {
    min-width: 30px;
    height: 100%;
}

.sidebar-2.sidebar-2--secondary {
    top: 0;
    height: 100%;
    width: 270px;
}

.sidebar-2,
.dashboard-header,
.sidebar-2-pl--secondary {
    transition: 0.2s;
}

.notification {
    position: relative;
}

.notification .badge {
    position: absolute;
    top: 0px;
    right: 0px;
    border-radius: 50%;
    color: white;
    width: 10px;
    height: 10px;
    background: #f54e4e;
    border: 2px solid var(--white);
}

.input-wrapper {
    position: relative;
    display: flex;
}

.btn--primary.disabled {
    background-color: #F7F7F7;
    color: rgba(19, 21, 21, 0.5);
    border-color: transparent;
    pointer-events: none;
    opacity: 1;
}

.btn--lg-2 {
    min-height: 40px;
    padding: 8px 16px;
}

.btn--outline-secondary-2 {
    border: 1px solid #ECECEC;
    background-color: var(--white);
    color: var(--primary);
}

.step-hotel-item__step {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: normal;
    font-weight: 500;
    position: relative;
    border-radius: 360px;
    background-color: #F7F7F7;
    color: rgba(19, 21, 21, 0.5);
    margin-right: 10px;
}

.step-hotel-item {
    display: flex;
    align-items: center;
    padding: 14px 24px;
}

.step-hotel-list {
    max-width: 270px;
    width: 100%;
    background-color: var(--white);
    border-right: 1px solid #ECECEC;
}

.step-hotel-item.step--active .info {
    opacity: 1;
}

.step-hotel-item .info {
    font-size: 14px;
    line-height: 24px;
    opacity: 0.5;
}

.step-list--secondary .info {
    opacity: 1;
}

.step-hotel-item.step--active {
    background-color: #E8ECED;
    position: relative;
}

.step-hotel-item.step--active .step-hotel-item__step {
    background-color: var(--white);
    color: var(--defaultTextColor);
    border: 1px solid #ECECEC;
}

.step-hotel-item.step--success .info {
    opacity: 1;
}

.step-hotel-item.step--success .step-hotel-item__step::after {
    content: '';
    background-image: url(../img/check-icon-white.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #10C01C;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.input-shadow {
    box-shadow: 0px 1px 4px 0px rgba(16, 24, 40, 0.05);
}

.select-wrapp--secondary .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
    color: var(--defaultTextColor);
    padding-right: 30px;
    font-size: 14px;
}

.select-wrapp--secondary .select2-container--default .select2-selection--single {
    border: 1px solid rgba(93, 103, 126, 0.53);
    border-radius: 0;
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    background: #FFF;
    box-shadow: 0px 1px 4px 0px rgba(16, 24, 40, 0.05);
    height: 36px;
}

.select-wrapp--secondary .select2-container--default .select2-selection--single .select2-selection__arrow b {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    margin-left: 0;
    margin-top: 0;
    background-image: url(../img/select-arrow-secondary.svg);
    background-size: auto;
}

.input.input--secondary {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding: 7px 10px;
    min-height: 36px;
}

.container-48 {
    width: 100%;
    padding-left: 48px;
    padding-right: 48px;
}

.border-bottom-2 {
    border-bottom: 1px solid #ECECEC;
}

.tabs-nav-secondary {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #D0D5DD;

}

.tabs-nav-secondary li {
    padding: 8px 12px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    color: #727272;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
}

.tabs-nav-secondary li:not(:last-child) {
    margin-right: 12px;
}

.tabs-nav-secondary li.active-tab {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.photo-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.border-dashed-primary {
    border: 1px dashed #A9AEBB;
}

.photo-preview__img {
    width: 100%;
    height: 100%;
}

.photo-preview__button {
    position: absolute;
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--white);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    padding: 8px;
    border: 1px solid #ECECEC
}

.card-border {
    padding: 14px 20px;
    border-radius: 16px;
    border: 1px solid #ECECEC;
}

hr {
    background-color: #ECECEC;
    height: 1px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
}

.swiper-images .swiper-slide img {
    height: 300px;
    border-radius: 16px;
}

.swiper-button-next,
.swiper-button-prev {
    width: 32px;
    height: 32px;
    padding: 8px;
    border-radius: 8px;
    background-color: rgba(80, 80, 80, 0.24);
    backdrop-filter: blur(8px);
    color: var(--white);
    background-image: url("../img/swiper-arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.swiper-button-next {
    transform: rotate(180deg);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: none;
}

.input.input--bg-secondary {
    background-color: #F7F7F7;
    border-color: transparent;
}

.map-wrapper {
    position: relative;
    height: 336px;
}

.map-search {
    position: absolute;
    top: 12px;
    left: 16px;
    right: 16px;
}

.select-wrapp--secondary .select2-container--default .select2-selection--multiple {
    border: 1px solid rgba(93, 103, 126, 0.53);
    border-radius: 0;
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    background: #FFF;
    box-shadow: 0px 1px 4px 0px rgba(16, 24, 40, 0.05);
    min-height: 36px;
    background-image: url(../img/select-arrow-secondary-up.svg);
    background-size: auto;
    background-position: center right 10px;
    background-repeat: no-repeat;
}

.select2-container--default .select2-search--inline .select2-search__field {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.select-multiple__dropdown .select2-container,
.select-multiple__dropdown .select2-dropdown {
    position: static !important;
}

.select-multiple__dropdown .select2-dropdown {
    margin-top: -5px;
    padding-top: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-image: url("../img/select-remove.svg");
    width: 16px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    right: 4px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove>* {
    display: none;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
    width: 6px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
    background-color: transparent;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
    border-radius: 360px;
    background-color: #E8ECED;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary);
}

.select-multiple__dropdown .select2-results__option--selected {
    background-color: transparent;
}

.select-multiple__dropdown .select2-results__option--selected .custom-checkbox__input-fake {
    background-image: url(../img/icon-checked-checkbox.svg);
}

.select-multiple__dropdown .select2-results__option span {
    display: flex;
    align-items: center;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    border-radius: 360px;
    background-color: var(--primary);
    height: 24px;
    padding: 0 22px 0 8px;
    border: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: rgba(255, 255, 255, 0.55);
    left: auto;
    right: 0;
    border: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background-color: transparent;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    color: var(--white);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 0;
}

.table-pills .tr-shadow {
    border-radius: 12px;
    border-radius: 12px;
    background-color: var(--white);
    box-shadow: 0px 1px 2px 0px rgba(91, 104, 113, 0.32), 0px 0px 1px 0px rgba(26, 32, 36, 0.32);
}

.table-pills th {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    padding: 16px;
}

.table-pills td {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    padding: 12px 16px;
}

.table-pills td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.table-pills td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.pill-status-danger {
    color: #E30A17;
    border: 1px solid #E30A17;
    background-color: #FFECED;
}

.img-24 {
    width: 24px;
    height: 24px;
    min-width: 24px;
}


.table-default {
    white-space: nowrap;
}

.table-default th,
.table-default td {
    padding: 12px 16px;
}

.table-default th {
    color: #516A78;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.table-default td {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.pill-lightgray-2 {
    background-color: #F0F0F0;
    color: #516A78;
}

.pill-darkgray {
    background-color: #928E8E;
    color: var(--white);
}



.ico-12 {
    min-width: 12px;
    width: 12px;
    height: 12px;
}

.ico-14 {
    min-width: 14px;
    width: 14px;
    height: 14px;
}

.ico-22 {
    min-width: 22px;
    width: 22px;
    height: 22px;
}

.ico-32 {
    min-width: 32px;
    width: 32px;
    height: 32px;
}


.text-13 {
    font-size: 13px;
    line-height: normal;
}

.text-11 {
    font-size: 11px;
    line-height: normal;
}

.color-gray-2 {
    color: #516A78;
}

.color-lightgray {
    color: #A8B4BB;
}

.color-lightgray-2 {
    color: #87909E;
}

.pill-shadow {
    border-radius: 5px;
    background-color: var(--white);
    box-shadow: 0px 1px 2px 0px rgba(91, 104, 113, 0.32), 0px 0px 1px 0px rgba(26, 32, 36, 0.32);
    color: #516A78;
}



.select2-container--default .select2-results__option--selected {
    background-color: transparent;
    background-image: url("/img/select--selected.svg");
    background-position: center right 10px;
    background-repeat: no-repeat;
}

.select-wrapp--secondary.select-wrapp--secondary-2 .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-radius: 8px !important;
    border-color: var(--primary);
    box-shadow: 0px 1px 3px 0px rgba(26, 101, 158, 0.36);
}


.data-table-wrapper {
    height: 100%;
    --footer-height: 45px;
    white-space: nowrap;
}

.data-table-container {
    width: 100%;
    overflow: auto;
    padding-bottom: 15px;
    height: calc(100% - var(--footer-height));
}

.data-table-container table.dataTable.no-footer {
    border-bottom: none;
    width: 100%;
    background-color: var(--white);
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.16));
    background-color: var(--white);
}

.data-table__footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    font-weight: normal;
    font-size: 12px;
    color: #516a78;
    border: 1px solid rgba(0, 0, 0, 0);
    min-height: var(--footer-height);
    padding-top: 15px;
}

.data-table__footer>* {
    margin-right: 20px;
    margin-bottom: 10px;
}

.data-table-container table.dataTable tr td {
    font-weight: normal;
    font-size: 14px;
    color: #000;
    padding: 7px 20px;
    box-sizing: border-box;
}

.data-table-container table.dataTable tr:not(:last-child) td {
    border-bottom: 1px solid #F0F5F9;
    ;
}

.data-table-container table.dataTable tr.checked td {
    background-color: #f0f5f9;
}

.data-table-container table.dataTable tr.disabled td {
    background-color: #F5F5F5;
    pointer-events: none;
}

.data-table-container table.dataTable tr.disabled .status {
    opacity: 0.5;
}

.data-table-container table.dataTable tr th {
    font-weight: normal;
    font-size: 14px;
    color: #516a78;
    padding: 14px 20px;
    border-bottom: none;
    white-space: nowrap;
    background-color: var(--white);
}

.data-table-container table.dataTable thead {
    position: sticky;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    top: 0;
    z-index: 5;
}

.data-table__footer .dataTables_paginate {
    display: flex;
    align-items: center;
}

.data-table__footer .dataTables_paginate span {
    display: flex;
    align-items: center;
    margin-right: 3px;
}

.data-table__footer .paginate_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    background-color: transparent;
    font-weight: normal;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #516a78;
    cursor: pointer;
    transition: all 0.3s ease;
}

.data-table__footer .paginate_button:hover {
    background-color: rgba(101, 101, 101, 0.25);
}

.data-table__footer .paginate_button:not(:last-child) {
    margin-right: 3px;
}

.data-table__footer .paginate_button.current {
    background-color: #516a78;
    color: var(--white);
}

table.data-table.dataTable .highlighted {
    background-color: rgba(0, 0, 0, 0.02);
}

table.data-table.dataTable thead>tr>th.no-sort:before {
    content: none;
}

table.data-table.dataTable thead>tr>th.no-sort::after {
    content: none;
}

.data-table-wrapper div.dataTables_length label {
    font-weight: normal;
    font-size: 12px;
    text-align: left;
    color: #516a78;
}

.rounded-rect-progress-wrapper {
    position: relative;
    display: flex;
}

.rounded-rect-progress-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: normal;
    font-size: 14px;
    color: #516a78;
}

.data-table-wrapper div.dataTables_length .select2-container {
    margin-right: 10px;
}

.data-table-wrapper div.dataTables_length .select2-container,
.tab-select .select2-container,
.data-table-wrapper div.dataTables_length .selection,
.tab-select .selection,
.data-table-wrapper div.dataTables_length .select2-selection,
.tab-select .select2-selection {
    width: 70px !important;
    height: 24px !important;
}

.data-table-wrapper div.dataTables_length .select2-selection {
    display: flex;
    align-items: center;
    padding-left: 12px;
    padding-right: 30px;
    border-color: transparent;
    border-radius: 3px !important;
    border: 1px solid #516a78;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.02);
}

.tab-select .select2-selection {
    display: flex;
    align-items: center;
    padding-left: 0;
    padding-right: 20px;
    border-color: transparent;
    border-bottom: 1px dashed #516a78;
}

.data-table-wrapper div.dataTables_length .select2-container--open .select2-selection__arrow::after {
    transform: rotate(180deg);
}

.data-table-wrapper div.dataTables_length .select2-selection__rendered,
.tab-select .select2-selection__rendered {
    height: max-content;
    padding: 0 !important;
    font-weight: normal;
    font-family: var(--fotnFamily);
    font-size: 12px !important;
    line-height: normal !important;
    color: #516a78 !important;
}

.data-table-wrapper div.dataTables_length .select2-selection__arrow,
.tab-select .select2-selection__arrow {
    height: 100% !important;
    top: 0 !important;
    right: 0 !important;
    /* margin-left: 12px;АА
    margin-right: 12px; */
}

.tab-select .select2-selection__arrow {
    margin-right: 0;
}

.data-table-wrapper div.dataTables_length .select2-selection__arrow::after,
.tab-select .select2-selection__arrow::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    background: url("../img/select-arrow.svg") no-repeat center center / 10px;
}

.data-table-wrapper div.dataTables_length .select2-selection__arrow b,
.tab-select .select2-selection__arrow b {
    display: none;
}

.select2-dropdown.select2-dropdown--above {
    transform: translateY(-10px);
}
.group {
    display: flex;
    align-items: center;
    --margin: 20px;
}

.group>*:not(:last-child) {
    margin-right: var(--margin);
}




.data-table-custom{
    font-family: var(--roboto);
    filter: none !important;
}
.widget-table .data-table__footer{
    padding: 10px 24px !important;
}

.widget-table .data-table__footer > *:last-child{
    margin-right: 0px !important;
}
.data-table-custom .even td{
    background: #F7F7F7 !important;
}
.data-table-custom thead th,
.data-table-custom thead td{
    padding: 10px 24px !important;
    color: #516A78 !important;
    font-size: 12px !important;
    font-style: normal;
    line-height: 24px !important;
}
.data-table-custom tbody td{
    padding: 12px 24px !important;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.color-danger-2 {
    color: #D32C02;
}
.bg-lightblue {
    background-color: #F0F5F9;
}

.tippy-box {
    background-color: transparent !important;
    color: var(--defaultTextColor);
}
.border-red {
    border: 1px solid #E33;
}

