*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --container-padding: 16px;
    --containerPrimary: #0a1214;
    --containerOverlayLightest: rgba(255, 255, 255, 0.02);
    --containerSecondary: #0e1b21;
    --containerOverlayLight: rgba(255, 255, 255, 0.05);
    --containerAccent: #232d3d;
    --textField: #8c8c8c;
    --textGray: #7e7d7d;
    --textLightTheme: #aeb9e1;
    --weightRegular: normal;
    --weightSemibold: 600;
    --weightBold: Bold;
    @media screen and (width >= 1440px) {
        --container-padding: 48px;
    }
}

body ul,
body ol {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    margin: 0;
}

body {
    background-color: var(--containerPrimary);
    color: var(--font-color);
}

.field,
.ui-datepicker {
    --font-color: rgba(29, 29, 31, 1);
}

.container {
    margin: 0 auto;
    padding-inline: var(--container-padding);
    @media screen and (width >= 1440px) {
        max-width: 1920px;
    }
}

dialog:focus-visible {
    outline: none;
}

html::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

html::-webkit-scrollbar {
    width: 8px;
    background-color: #f5f5f5;
}

html::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: var(--primary-color);
}

body {
    margin: 0;
    padding: 0;
    font-weight: var(--weightRegular);
    font-size: var(--font-size);
    font-family: var(--primary-font);
    color: var(--font-color);
    line-height: 1.6;
}

button:focus-visible {
    outline: none;
}

.btn,
button,
input[type="button"],
.checkout-index-index .modal-popup .modal-footer .action-hide-popup,
.checkout-index-index .modal-popup .modal-footer .action-hide-popup:hover {
    padding: 16px 32px;
    border-radius: 110px;
    color: var(--font-color);
    font-weight: var(--weightRegular);
    border: 0;
    font-size: 20px;
    border: 1px solid var(--primary-color);
    text-align: center;
    min-width: 130px;
    cursor: pointer;
    text-decoration: none;
    @media screen and (width <= 767px) {
        font-size: 14px;
    }
    @media screen and (width >= 1440px) {
        padding: 20px 40px;
        font-size: 24px;
    }
}

input[type="button"].btn-primary,
button.btn-primary,
.btn.btn-primary {
    background-color: var(--primary-color);
    font-size: 25px;
    text-align: center;
}

.action-primary,
.action.primary,
.action-primary:hover,
.action-primary:focus,
.action.primary:hover,
.action.primary:focus {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: inherit;
}

a.btn {
    text-decoration: none;
    border: 1px solid var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.minicart-wrapper span.counter-label {
    display: none;
}

.btn-with-icon {
    column-gap: 8px;
}

.btn-with-icon .btn-icon {
    font-size: 24px;
}

a {
    text-decoration: none;
    color: var(--font-color);
}

p {
    margin-top: 0;
    margin-bottom: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}
/* 
input[type="text"],
input[type="date"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="search"],
input[type="time"],
select,
textarea {
    width: 100%;
    border-radius: 110px;
    background-color: rgba(191, 190, 190, 1);
    outline: none;
    padding: 16px 28px;
    font-size: 18px;
    border: 0;
    font-weight: var(--weightRegular);
    color: var(--containerSecondary);
    &::placeholder {
        color: var(--textGray);
    }
    @media screen and (width >= 1440px) {
        padding: 20px 32px;
        font-size: 21px;
    }
    @media screen and (width <= 767px) {
        padding: 14px 20px;
        font-size: 12px;
    }
}

input[type="text"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus {
    outline: none;
} */

input,
select,
textarea {
    width: 100%;
    border-radius: 110px;
    background-color: rgba(191, 190, 190, 1);
    outline: none;
    min-height: 55px;
    padding: 16px 28px;
    font-size: 18px;
    border: 0;
    box-sizing: border-box;
    font-weight: var(--weightRegular);
    color: var(--containerSecondary);
    -webkit-appearance: none;
    appearance: none;
}

/* Placeholder */
::placeholder {
    color: var(--textGray);
}

::-webkit-input-placeholder {
    color: var(--textGray);
}

::-moz-placeholder {
    color: var(--textGray);
}

/* Desktop */
@media screen and (min-width: 1440px) {
    input,
    select,
    textarea {
        font-size: 21px;
        min-width: 55px;
    }
}

/* Mobile */
@media screen and (max-width: 767px) {
    input,
    select,
    textarea {
        min-height: 55px;
    }
}

textarea {
    resize: none;
    padding: 10px;
}

input[type="number"]::-webkit-inner-spin-button {
    display: none;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    width: 20px;
    height: 12px;
}

select,
.field.date input[type="text"] {
    width: 100%;
    border-radius: 110px;
    background-color: rgba(191, 190, 190, 1);
    outline: none;
    padding: 16px 40px 16px 28px;
    font-size: 18px;
    appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath stroke='%2300263A' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    background-size: 24px;
    font-weight: var(--weightRegular);
    color: var(--containerSecondary);
    @media screen and (width >= 1440px) {
        padding: 20px 40px 20px 32px;
        font-size: 21px;
    }
}

.field.date input[type="text"] {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIgMjAuMTI1MVY5LjUwMDAySDIyVjIwLjEyNTFDMjIgMjEuMTc5NyAyMS4wMTc5IDIyIDE5Ljg1NzIgMjJINC4xNDI4NkMyLjkzNzUgMjIgMiAyMS4xNzk3IDIgMjAuMTI1MVpNMTYuMjg1NyAxMi40Njg4VjE0LjAzMTJDMTYuMjg1NyAxNC4zMDQ3IDE2LjUwODkgMTQuNSAxNi44MjE1IDE0LjVIMTguNjA3MkMxOC44NzUgMTQuNSAxOS4xNDI5IDE0LjMwNDcgMTkuMTQyOSAxNC4wMzEyVjEyLjQ2ODhDMTkuMTQyOSAxMi4yMzQ0IDE4Ljg3NSAxMiAxOC42MDcyIDEySDE2LjgyMTVDMTYuNTA4OSAxMiAxNi4yODU3IDEyLjIzNDQgMTYuMjg1NyAxMi40Njg4Wk0xNi4yODU3IDE3LjQ2ODhWMTkuMDMxM0MxNi4yODU3IDE5LjMwNDcgMTYuNTA4OSAxOS41IDE2LjgyMTUgMTkuNUgxOC42MDcyQzE4Ljg3NSAxOS41IDE5LjE0MjkgMTkuMzA0NyAxOS4xNDI5IDE5LjAzMTNWMTcuNDY4OEMxOS4xNDI5IDE3LjIzNDQgMTguODc1IDE3IDE4LjYwNzIgMTdIMTYuODIxNUMxNi41MDg5IDE3IDE2LjI4NTcgMTcuMjM0NCAxNi4yODU3IDE3LjQ2ODhaTTEwLjU3MTQgMTIuNDY4OFYxNC4wMzEyQzEwLjU3MTQgMTQuMzA0NyAxMC43OTQ3IDE0LjUgMTEuMTA3MiAxNC41SDEyLjg5MjlDMTMuMTYwNyAxNC41IDEzLjQyODYgMTQuMzA0NyAxMy40Mjg2IDE0LjAzMTJWMTIuNDY4OEMxMy40Mjg2IDEyLjIzNDQgMTMuMTYwNyAxMiAxMi44OTI5IDEySDExLjEwNzJDMTAuNzk0NyAxMiAxMC41NzE0IDEyLjIzNDQgMTAuNTcxNCAxMi40Njg4Wk0xMC41NzE0IDE3LjQ2ODhWMTkuMDMxM0MxMC41NzE0IDE5LjMwNDcgMTAuNzk0NyAxOS41IDExLjEwNzIgMTkuNUgxMi44OTI5QzEzLjE2MDcgMTkuNSAxMy40Mjg2IDE5LjMwNDcgMTMuNDI4NiAxOS4wMzEzVjE3LjQ2ODhDMTMuNDI4NiAxNy4yMzQ0IDEzLjE2MDcgMTcgMTIuODkyOSAxN0gxMS4xMDcyQzEwLjc5NDcgMTcgMTAuNTcxNCAxNy4yMzQ0IDEwLjU3MTQgMTcuNDY4OFpNNC44NTcxNSAxMi40Njg4VjE0LjAzMTJDNC44NTcxNSAxNC4zMDQ3IDUuMDgwMzYgMTQuNSA1LjM5Mjg2IDE0LjVINy4xNzg1OEM3LjQ0NjQ1IDE0LjUgNy43MTQzIDE0LjMwNDcgNy43MTQzIDE0LjAzMTJWMTIuNDY4OEM3LjcxNDMgMTIuMjM0NCA3LjQ0NjQ1IDEyIDcuMTc4NTggMTJINS4zOTI4NkM1LjA4MDM2IDEyIDQuODU3MTUgMTIuMjM0NCA0Ljg1NzE1IDEyLjQ2ODhaTTQuODU3MTUgMTcuNDY4OFYxOS4wMzEzQzQuODU3MTUgMTkuMzA0NyA1LjA4MDM2IDE5LjUgNS4zOTI4NiAxOS41SDcuMTc4NThDNy40NDY0NSAxOS41IDcuNzE0MyAxOS4zMDQ3IDcuNzE0MyAxOS4wMzEzVjE3LjQ2ODhDNy43MTQzIDE3LjIzNDQgNy40NDY0NSAxNyA3LjE3ODU4IDE3SDUuMzkyODZDNS4wODAzNiAxNyA0Ljg1NzE1IDE3LjIzNDQgNC44NTcxNSAxNy40Njg4Wk0xOS44NTcyIDQuNTAwMDFDMjEuMDE3OSA0LjUwMDAxIDIyIDUuMzU5MzggMjIgNi4zNzUwMVY4LjI1MDAxSDJWNi4zNzUwMUMyIDUuMzU5MzggMi45Mzc1IDQuNTAwMDEgNC4xNDI4NiA0LjUwMDAxSDYuMjg1NzNWMi42MjVDNi4yODU3MyAyLjMxMjUgNi41OTgyMyAyIDcuMDAwMDEgMkg4LjQyODU5QzguNzg1NzMgMiA5LjE0Mjg4IDIuMzEyNSA5LjE0Mjg4IDIuNjI1VjQuNTAwMDFIMTQuODU3MlYyLjYyNUMxNC44NTcyIDIuMzEyNSAxNS4xNjk3IDIgMTUuNTcxNSAySDE3QzE3LjM1NzIgMiAxNy43MTQzIDIuMzEyNSAxNy43MTQzIDIuNjI1VjQuNTAwMDFIMTkuODU3MloiIGZpbGw9IiMwRTFCMjEiLz4KPC9zdmc+Cg==");
    background-size: 20px;
}

.field.date input[type="text"]::-webkit-input-placeholder,
.field.date input[type="text"]::-moz-placeholder,
.field.date input[type="text"]:-ms-input-placeholder,
.field.date input[type="text"]:-moz-placeholder {
    color: var(--textGray);
}

.field.choice {
    position: relative;
}

body:not(.checkout-index-index) .loading-mask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    background-color: rgba(266, 266, 266, 0.7);
}

body:not(.checkout-index-index) .loading-mask .loader > p {
    display: none;
}

.page-main > .columns {
    /* min-height: calc(100vh - 135px); */
    min-height: calc(100vh - 260px);
}

.fieldset {
    display: grid;
    row-gap: 20px;
    column-gap: 16px;
    margin-bottom: 24px;
    grid-template-columns: 1fr;
}

fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}

.menubuilder-index-index .fields-wrap .fieldset-2col {
    margin-bottom: 20px;
}
.menubuilder-index-index .fields-wrap .fieldset-1col textarea {
    resize: vertical;
    padding: 20px 32px;
    border-radius: 56px;
    text-align: justify;
}

.fieldset-2col {
    display: grid;
    row-gap: 24px;
    column-gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

.full-grid-field {
    grid-column: span 2;
}

.fieldset-2col > .note {
    grid-column: span 2;
    display: inline-flex;
    align-items: center;
    column-gap: 6px;
    flex-wrap: wrap;
}

fieldset div.mage-error {
    font-size: 12px;
}

.note > a {
    color: var(--primary-color);
}

.note > i {
    font-size: 20px;
}

div.mage-error,
.password-weak,
.error-message:not(input),
.validation-error:not(input, select),
.field-error {
    margin-top: 6px;
    font-size: 12px;
    color: #cc3340;
    display: block;
}

body:not(.cms-home) .page.messages {
    margin-top: 8px;
    flex-basis: 100%;
}

.page.messages .message {
    padding: 6px 12px;
    font-size: 14px;
}

.messages .message-success {
    color: white;
    background-color: rgba(3, 129, 83, 0.2);
}

.page.messages .message a {
    text-decoration: underline;
}

.messages .message-error {
    color: #cc3340;
    background-color: rgba(204, 51, 64, 0.2);
}

.password-very-strong,
.password-strong {
    color: #03a10e;
}

.password-weak #password-strength-meter-label {
    font-weight: var(--weightBold);
}

.password-medium {
    color: #ad5918;
}

#password-strength-meter {
    font-size: 12px;
}

.field:not(.choice) .label {
    display: block;
    font-size: 12px;
    margin-bottom: 8px;
    line-height: 1;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th {
    background-color: color-mix(in srgb, var(--primary-color) 10%, white 90%);
    font-size: 14px;
}

.quotation-service-table {
    .locked-cell {
        .unit-price.disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }
    }
    .grand-total {
        text-align: end;
    }
}
table th,
table td {
    text-align: left;
    padding: 16px;
}

table tbody td {
    border-bottom: 1px solid #d2d2d7;
}

.hidden {
    display: none;
}

dialog {
    border: 0;
    border-radius: 16px;
    width: 100%;
    max-width: 616px;
    padding: 0;
    overflow: hidden;
}

dialog::backdrop {
    background-color: rgba(25, 27, 29, 0.7);
}

dialog .modal-wrapper {
    padding: 56px 40px;
    position: relative;
    max-height: calc(100vh - 2em - 6px);
    overflow-y: auto;
}

.modal-wrapper > .close-dialog {
    padding: 0;
    border: 0;
    min-width: auto;
    font-size: 0;
    position: absolute;
    top: 32px;
    right: 32px;
    background-color: transparent;
    @media screen and (width <= 767px) {
        top: 16px;
        right: 16px;
    }
}

dialog .modal-header {
    color: #1d1d1f;
    font-size: 32px;
    font-family: var(--secondary-font);
    font-weight: var(--weightSemibold);
    line-height: 1;
    margin-bottom: 24px;
}

.modal-wrapper > .close-dialog::before {
    font-family: "airline-icon";
    font-style: normal;
    content: "\e901";
    font-size: 24px;
    line-height: 1;
}

dialog .modal-actions {
    display: flex;
    gap: 16px;
}

dialog .modal-actions > button {
    flex-grow: 1;
}
#delete-confirm-modal {
    .content {
        color: #fff;
        h2 {
            font-size: 30px;
            line-height: normal;
            font-weight: 600;
        }
        p {
            font-size: 18px;
            line-height: normal;
            margin-top: 12px;
            display: block;
            font-weight: 600;
        }
        .modal-actions {
            margin-top: 24px;
            display: flex;
            gap: 10px;
            align-items: center;
            flex-direction: row-reverse;
            justify-content: flex-end;
            .action-primary {
                padding: 14px;
                font-size: 18px;
                line-height: normal;
                flex-grow: 0;
            }
            .action-secondary {
                padding: 0;
                background: none;
                border: none;
                color: var(--primary-color);
                font-size: 18px;
                line-height: normal;
                flex-grow: 0;
            }
        }
    }
}

.bootstrap-select.dropdown,
.bootstrap-select.dropleft,
.bootstrap-select.dropright,
.bootstrap-select.dropup {
    position: relative;
}

.bootstrap-select .dropdown-menu.show {
    display: block;
}

.bootstrap-select .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

.bootstrap-select.dropup .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem;
}

.bootstrap-select .dropdown-menu li {
    position: relative;
}

.bootstrap-select .dropdown-menu li a {
    cursor: pointer;
    white-space: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bootstrap-select .dropdown-item {
    display: block;
    width: 100%;
    padding: 4px 8px;
    clear: both;
    font-weight: var(--weightRegular);
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff;
}

.bootstrap-select .dropdown-menu li a span.text {
    display: inline-block;
}

.bootstrap-select .dropdown-menu[x-placement^="bottom"],
.bootstrap-select .dropdown-menu[x-placement^="left"],
.bootstrap-select .dropdown-menu[x-placement^="right"],
.bootstrap-select .dropdown-menu[x-placement^="top"] {
    right: auto;
    bottom: auto;
}

.dropdown.bootstrap-select > .dropdown-toggle {
    padding: 12px 40px 12px 16px;
    min-height: 32px;
    line-height: normal;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.7px;
    color: var(--font-color);
    border-color: #424245;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath stroke='%2300263A' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    background-color: rgba(191, 190, 190, 1);
    @media screen and (width >= 1440px) {
        padding: 20px 40px 20px 16px;
        font-size: var(--font-size);
        min-height: 48px;
    }
}

.field.time .bootstrap-select > .dropdown-toggle,
.field.time select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath stroke='%2300263A' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 6v6l4 2m6-2c0 5.523-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2s10 4.477 10 10Z'/%3E%3C/svg%3E");
    background-size: 20px;
}

.dropdown.bootstrap-select > .dropdown-toggle.bs-placeholder,
.dropdown.bootstrap-select > .dropdown-toggle.bs-placeholder:active,
.dropdown.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.dropdown.bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
    color: var(--textGray);
}

.dropdown.bootstrap-select > .dropdown-toggle:focus,
.dropdown.bootstrap-select > .dropdown-toggle.bs-placeholder:focus {
    outline: none !important;
    /* stylelint-disable-line declaration-no-important */
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    background-color: var(--primary-color) !important;
    /* stylelint-disable-line declaration-no-important */
}

.bootstrap-select .dropdown-item:hover {
    background-color: #f5f5f7;
}

.bootstrap-select .dropdown-menu .inner::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f1f1f1;
}

.bootstrap-select .dropdown-menu .inner::-webkit-scrollbar {
    width: 4px;
    background-color: #f1f1f1;
}

.bootstrap-select .dropdown-menu .inner::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #999;
}

.e-select[multiple] {
    max-height: 48px;
    overflow: hidden;
}

.e-select[multiple] option {
    min-height: 48px;
}

.bs-ok-default.check-mark::before {
    font-family: "catrion";
    font-style: normal;
    font-weight: normal;
    content: "\e931";
    font-size: 24px;
    line-height: 1;
    vertical-align: middle;
    margin-right: 8px;
}

.dropdown-item.selected .bs-ok-default.check-mark::before {
    content: "\e932";
}

.color-primary {
    color: var(--primary-color);
}

.order-tips {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.order-tips li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px;
}

.order-tips li::before {
    font-family: "catrion";
    font-style: normal;
    font-weight: normal;
    content: "\e910";
    font-size: 24px;
    line-height: 1;
    position: absolute;
    left: 0;
    top: 0;
}

.ui-datepicker {
    background-color: #fff;
    box-shadow: 0 3.22px 9.67px 0 rgba(0, 0, 0, 0.3);
    border-radius: 0 0 16px 16px;
    padding: 8px;
    z-index: 99 !important;
    --primary-color: #0a1214;
}

.ui-datepicker:empty {
    padding: 0;
}

.ui-datepicker-header {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-block: 8px;
}

.ui-datepicker-next {
    order: 3;
}

.ui-datepicker-title {
    display: flex;
    width: 100%;
    gap: 8px;
    justify-content: center;
}

.bootstrap-select[class*="ui-datepicker"] {
    max-width: 130px;
    width: 100px !important;
    /* stylelint-disable-line declaration-no-important */
}

.bootstrap-select[class*="ui-datepicker"] .dropdown-toggle {
    padding: 0;
    border: 0;
    background: unset;
    min-width: unset;
}

.dropdown.bootstrap-select[class*="ui-datepicker"] > .dropdown-toggle {
    font-size: 16px;
    outline: none !important;
    /* stylelint-disable-line declaration-no-important */
}

.ui-datepicker-month .dropdown-toggle .filter-option-inner-inner {
    text-align: right;
}

select.ui-datepicker-month,
select.ui-datepicker-year {
    padding: 8px;
    min-height: auto;
}

.ui-datepicker-header .ui-datepicker-prev .ui-icon,
.ui-datepicker-header .ui-datepicker-next .ui-icon {
    font-size: 0;
    display: block;
}

.ui-datepicker-header .ui-datepicker-prev,
.ui-datepicker-header .ui-datepicker-next {
    display: block;
    cursor: pointer;
}

.ui-datepicker-header .ui-datepicker-prev .ui-icon::before,
.ui-datepicker-header .ui-datepicker-next .ui-icon::before {
    font-family: "catrion";
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    font-size: 30px;
    content: " ";
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgiIGhlaWdodD0iMzgiIHZpZXdCb3g9IjAgMCAzOCAzOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgb3BhY2l0eT0iMC44Ij4KPHBhdGggZD0iTTE0LjMyODEgMjguMTcxOUwyMy42MDI4IDE4Ljg5NzJMMTQuMzI4MSA5LjYyMjU2IiBzdHJva2U9IiMwRTFCMjEiIHN0cm9rZS13aWR0aD0iMi40NzMyNCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjwvZz4KPC9zdmc+Cg==");
    width: 24px;
    height: 24px;
    background-size: 24px;
    background-position: center;
    display: block;
}

.ui-datepicker-header .ui-datepicker-prev .ui-icon::before {
    transform: rotate(180deg);
}

.ui-datepicker-calendar > thead tr th {
    font-weight: normal;
    text-align: center;
    padding: 14px;
    line-height: 1;
    color: rgba(29, 29, 31, 1);
}

.ui-state-disabled {
    opacity: 0.4;
}

.ui-datepicker-calendar tbody td {
    padding: 0;
    text-align: center;
    border: 0;
}

.ui-datepicker-calendar tbody td > a,
.ui-datepicker-calendar tbody td > span {
    padding: 14px;
    display: block;
    text-align: center;
    line-height: 1;
    border-radius: 8px;
    color: rgba(29, 29, 31, 1);
}

.ui-datepicker-calendar tbody td > a.ui-state-active {
    background-color: var(--primary-color);
    color: #fff;
}

.flex {
    display: flex;
}

.gap-15 {
    gap: 15px;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-start {
    justify-content: flex-start;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.p-t-0 {
    padding-top: 0;
}

.p-t-4 {
    padding-top: 4px;
}

.p-t-5 {
    padding-top: 5px;
}

.p-t-6 {
    padding-top: 6px;
}

.p-t-7 {
    padding-top: 7px;
}

.p-t-8 {
    padding-top: 8px;
}

.p-t-9 {
    padding-top: 9px;
}

.p-t-10 {
    padding-top: 10px;
}

.p-t-11 {
    padding-top: 11px;
}

.p-t-12 {
    padding-top: 12px;
}

.p-t-13 {
    padding-top: 13px;
}

.p-t-14 {
    padding-top: 14px;
}

.p-t-15 {
    padding-top: 15px;
}

.p-t-16 {
    padding-top: 16px;
}

.p-t-17 {
    padding-top: 17px;
}

.p-t-18 {
    padding-top: 18px;
}

.p-t-19 {
    padding-top: 19px;
}

.p-t-20 {
    padding-top: 20px;
}

.p-t-21 {
    padding-top: 21px;
}

.p-t-22 {
    padding-top: 22px;
}

.p-t-23 {
    padding-top: 23px;
}

.p-t-24 {
    padding-top: 24px;
}

@media (max-width: 767px) {
    dialog {
        max-width: calc(100% - 40px);
    }

    dialog .modal-wrapper {
        padding: 20px;
    }

    dialog .modal-header {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .fieldset-2col {
        grid-template-columns: repeat(1, 1fr);
    }

    .fieldset-2col > .note {
        grid-column: unset;
    }
}

.breadcrumbs {
    margin: 0 0 15px;
}
.breadcrumbs .items {
    font-size: 16px;
    @media screen and (width >= 1440px) {
        font-size: 20px;
    }
}
.breadcrumbs .items > li {
    display: inline-block;
    vertical-align: top;
}
.breadcrumbs .item {
    margin: 0;
}
.breadcrumbs a {
    text-decoration: none;
}
.breadcrumbs a:visited {
    text-decoration: none;
}
.breadcrumbs a:active {
    text-decoration: none;
}
.breadcrumbs strong {
    font-weight: var(--weightRegular);
    color: rgba(45, 62, 90, 1);
}
.breadcrumbs .item:not(:last-child) {
    display: inline-block;
    text-decoration: none;
}
.breadcrumbs .item:not(:last-child):after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "/";
    margin: 0 4px;
    vertical-align: top;
    display: inline-block;
    font-weight: var(--weightRegular);
    overflow: hidden;
    speak: none;
    text-align: center;
}

body._has-modal {
    height: 100%;
    overflow: hidden;
    width: 100%;
}
.modals-overlay {
    z-index: 899;
}
.modal-slide,
.modal-popup {
    bottom: 0;
    left: 0;
    min-width: 0;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition:
        visibility 0s 0.3s,
        opacity 0.3s ease;
    transition:
        visibility 0s 0.3s,
        opacity 0.3s ease;
}
.modal-slide._show,
.modal-popup._show {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
.modal-slide._show .modal-inner-wrap,
.modal-popup._show .modal-inner-wrap {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.modal-slide .modal-inner-wrap,
.modal-popup .modal-inner-wrap {
    background-color: #ffffff;
    box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.35);
    opacity: 1;
    pointer-events: auto;
}
.modal-slide {
    left: 44px;
    z-index: 900;
}
.modal-slide._show .modal-inner-wrap {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.modal-slide .modal-inner-wrap {
    height: 100%;
    overflow-y: auto;
    position: static;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    width: auto;
}
.modal-slide._inner-scroll .modal-inner-wrap {
    overflow-y: visible;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.modal-slide._inner-scroll .modal-header,
.modal-slide._inner-scroll .modal-footer {
    -webkit-flex-grow: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}
.modal-slide._inner-scroll .modal-content {
    overflow-y: auto;
}
.modal-slide._inner-scroll .modal-footer {
    margin-top: auto;
}
.modal-slide .modal-header,
.modal-slide .modal-content,
.modal-slide .modal-footer {
    padding: 0 2.6rem 2.6rem;
}
.modal-slide .modal-header {
    padding-bottom: 2.1rem;
    padding-top: 2.1rem;
}
.modal-popup {
    z-index: 900;
    left: 0;
    overflow-y: auto;
}
.modal-popup.confirm .modal-inner-wrap {
    max-width: 50rem;
}
.modal-popup._show .modal-inner-wrap {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.modal-popup .modal-inner-wrap {
    margin: 5rem auto;
    width: 75%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    box-sizing: border-box;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
}
.modal-popup._inner-scroll {
    overflow-y: visible;
}
.ie11 .modal-popup._inner-scroll {
    overflow-y: auto;
}
.modal-popup._inner-scroll .modal-inner-wrap {
    max-height: 90%;
}
.ie11 .modal-popup._inner-scroll .modal-inner-wrap {
    max-height: none;
}
.modal-popup._inner-scroll .modal-content {
    overflow-y: auto;
}
.modal-popup .modal-header,
.modal-popup .modal-content,
.modal-popup .modal-footer {
    padding-left: 3rem;
    padding-right: 3rem;
}
.modal-popup .modal-header,
.modal-popup .modal-footer {
    -webkit-flex-grow: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}
.modal-popup .modal-header {
    padding-bottom: 1.2rem;
    padding-top: 3rem;
}
.modal-popup .modal-footer {
    margin-top: auto;
    padding-bottom: 3rem;
    padding-top: 3rem;
}
.modal-popup .modal-footer-actions {
    text-align: right;
}
.modal-custom .action-close,
.modal-popup .action-close,
.modal-slide .action-close {
    background-image: none;
    background: none;
    -moz-box-sizing: content-box;
    border: 0;
    box-shadow: none;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-shadow: none;
    font-weight: 400;
    display: inline-block;
    text-decoration: none;
    position: absolute;
    right: 0;
    top: 0;
}
.modal-custom .action-close:focus,
.modal-popup .action-close:focus,
.modal-slide .action-close:focus,
.modal-custom .action-close:active,
.modal-popup .action-close:active,
.modal-slide .action-close:active {
    background: none;
    border: none;
}
.modal-custom .action-close:hover,
.modal-popup .action-close:hover,
.modal-slide .action-close:hover {
    background: none;
    border: none;
}
.modal-custom .action-close.disabled,
.modal-popup .action-close.disabled,
.modal-slide .action-close.disabled,
.modal-custom .action-close[disabled],
.modal-popup .action-close[disabled],
.modal-slide .action-close[disabled],
fieldset[disabled] .modal-custom .action-close,
fieldset[disabled] .modal-popup .action-close,
fieldset[disabled] .modal-slide .action-close {
    pointer-events: none;
    opacity: 0.5;
}
.modal-custom .action-close > span,
.modal-popup .action-close > span,
.modal-slide .action-close > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.modal-custom .action-close:before,
.modal-popup .action-close:before,
.modal-slide .action-close:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    line-height: 14px;
    color: #757575;
    content: "\e616";
    font-family: "luma-icons";
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
}
.modal-custom .action-close:hover:before,
.modal-popup .action-close:hover:before,
.modal-slide .action-close:hover:before {
    color: inherit;
}
.modal-custom .action-close:active:before,
.modal-popup .action-close:active:before,
.modal-slide .action-close:active:before {
    color: inherit;
}
.modal-custom .action-close:hover:before,
.modal-popup .action-close:hover:before,
.modal-slide .action-close:hover:before {
    color: #1a1a1a;
}
.modal-custom .action-close {
    margin: 15px;
}
.modal-popup {
    pointer-events: none;
}
.modal-popup .modal-title {
    border-bottom: 1px solid #c1c1c1;
    font-weight: 300;
    padding-bottom: 10px;
    font-size: 26px;
    margin-bottom: 0;
    min-height: 1em;
    word-wrap: break-word;
}
.modal-popup .action-close {
    padding: 20px;
}
.modal-slide .action-close {
    margin: 15px;
    padding: 0;
}
.modal-slide .page-main-actions {
    margin-bottom: -12.9rem;
    margin-top: 2.1rem;
}
.modals-overlay {
    background-color: rgba(51, 51, 51, 0.55);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
}
body._has-modal-custom .modal-custom-overlay {
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 899;
}

.modal-custom .action-close,
.modal-popup .action-close,
.modal-slide .action-close {
    background-image: none;
    background: none;
    -moz-box-sizing: content-box;
    border: 0;
    box-shadow: none;
    line-height: inherit;
    margin: 0;
    padding: 0;
    text-shadow: none;
    font-weight: 400;
    display: inline-block;
    text-decoration: none;
    position: absolute;
    right: 0;
    top: 0;
}
.modal-custom .action-close:focus,
.modal-popup .action-close:focus,
.modal-slide .action-close:focus,
.modal-custom .action-close:active,
.modal-popup .action-close:active,
.modal-slide .action-close:active {
    background: none;
    border: none;
}
.modal-custom .action-close:hover,
.modal-popup .action-close:hover,
.modal-slide .action-close:hover {
    background: none;
    border: none;
}
.modal-custom .action-close.disabled,
.modal-popup .action-close.disabled,
.modal-slide .action-close.disabled,
.modal-custom .action-close[disabled],
.modal-popup .action-close[disabled],
.modal-slide .action-close[disabled],
fieldset[disabled] .modal-custom .action-close,
fieldset[disabled] .modal-popup .action-close,
fieldset[disabled] .modal-slide .action-close {
    pointer-events: none;
    opacity: 0.5;
}
.modal-custom .action-close > span,
.modal-popup .action-close > span,
.modal-slide .action-close > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.modal-custom .action-close:before,
.modal-popup .action-close:before,
.modal-slide .action-close:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 14px;
    line-height: 14px;
    color: #757575;
    content: "\e616";
    font-family: "luma-icons";
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
}
.modal-custom .action-close:hover:before,
.modal-popup .action-close:hover:before,
.modal-slide .action-close:hover:before {
    color: inherit;
}
.modal-custom .action-close:active:before,
.modal-popup .action-close:active:before,
.modal-slide .action-close:active:before {
    color: inherit;
}
.modal-custom .action-close:hover:before,
.modal-popup .action-close:hover:before,
.modal-slide .action-close:hover:before {
    color: #1a1a1a;
}
.modal-custom .action-close {
    margin: 15px;
}
.modal-popup {
    pointer-events: none;
}
.modal-popup .modal-title {
    border-bottom: 1px solid #c1c1c1;
    font-weight: 300;
    padding-bottom: 10px;
    font-size: 26px;
    margin-bottom: 0;
    min-height: 1em;
    word-wrap: break-word;
}
.modal-popup .action-close {
    padding: 20px;
}
.modal-slide .action-close {
    margin: 15px;
    padding: 0;
}

.load.indicator {
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    position: absolute;
}
.load.indicator:before {
    background: transparent url("../images/loader-2.gif") no-repeat 50% 50%;
    border-radius: 5px;
    height: 160px;
    width: 160px;
    bottom: 0;
    box-sizing: border-box;
    content: "";
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
}
.load.indicator > span {
    display: none;
}
.loading-mask {
    bottom: 0;
    left: 0;
    margin: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.5);
}
.loading-mask .loader > img {
    bottom: 0;
    left: 0;
    margin: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
}
.loading-mask .loader > p {
    display: none;
}
body > .loading-mask {
    z-index: 9999;
}
