* {
    margin: 0;
    padding: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
    transition: background-color 600000s 0s, color 600000s 0s;
}

body {
    font-family: var(--main-font);
    height: 100vh;
    width: 100%;
    overflow-y: hidden;
    color: var(--theme-font-color);
    background-color: var(--theme-second-background);
    transition: 0.5s;
}

.row {
    display: flex;
    flex-direction: row;
}

.column {
    display: flex;
    flex-direction: column;
}

.left-wrapper {
    width: 80%;
    height: 100vh;
}

.pointer {
    cursor: pointer;
}

.header {
    height: 80px;
    align-items: center;
    border-bottom: 1px solid var(--theme-border-color);
    box-shadow: -5px 2px 4px rgba(0, 0, 0, 0.1);
    background-color: var(--theme-second-background);
    user-select: none;
}

.title {
    padding-left: 100px;
    padding-right: 22px;
    color: var(--main-font-color);
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    background-image: url("../img/logo-cust.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: center;
    width: 111px;
    height: 32px;
}

.title-light {
    background-image: url("../img/logo_light.png");
}

.nav-button {
    user-select: none;
    font-family: var(--main-second-font);
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    background-color: var(--theme-header-item-color);

    display: flex;
    align-items: center;
    padding: 4px 14px;
    margin-left: 12px;
    height: 28px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    white-space: nowrap;
    transition: 0.5s;
}

.active-nav-button {
    background-color: var(--main-color);
    color: var(--main-light-color);
    transition: 0.5s;
}

.canvas {
    flex: 1;
    background-color: var(--theme-background);
    overflow-y: auto;
    transition: 0.4s;
}

.question {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background-color: var(--main-light-color);
    position: absolute;
    left: 32px;
    bottom: 32px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
}

.right-wrapper {
    height: 100vh;
    width: 20%;
    border-left: 1px solid var(--theme-border-color);
    box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.25);
    border-radius: 20px 0 0 20px;
    background-color: var(--theme-second-background);
    transition: 0.5s;
}

.menu-header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    padding-top: 32px;
}

.logo-icon {
    background-image: url("../img/logo_front.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 140px;
    height: 31px;
}

.logo-label {
    color: var(--main-color);
    font-size: 24px;
    font-weight: 600;
    padding-left: 10px;
}

.menu-content {
    flex: 1 0 auto;
}

.menu-footer {
    flex: 0 0 auto;
    padding: 32px 16px;
}

.days-numbers {
    padding-top: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.day-number {
    width: 30px;
    height: 30px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.day-number:hover {
    background-color: rgba(112, 112, 119, 0.25);
    border-radius: 50%;
    transition: 0.3s;
}

.start-point, .start-point:hover {
    background-color: var(--main-color);
    color: white;
    border-radius: 50%;
}

.start, .start:hover {
    background-color: var(--main-color);
    color: white;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.start:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    border-radius: 50% 0 0 50%;
    height: 100%;
    background-color: #7f56d917;
    z-index: 1;
}

.end, .end:hover {
    position: relative;
    background-color: var(--main-color);
    color: white;
    border-radius: 50%;
}

.end:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 50% 50% 0;
    background-color: #7f56d917;
    z-index: 1;
}

.range {
    font-weight: 500;
    border-radius: 0;
    background-color: #7f56d917;
    color: var(--main-color);
}

.range:hover {
    position: relative;
    border-radius: 50%;
    background-color: var(--main-color);
    color: white;
}

.range:hover:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    border-radius: 0;
    height: 100%;
    background-color: #7f56d917;
    z-index: 1;
}

.calendar-wrapper {
    font-family: 'Inter', sans-serif;
    width: 330px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-content {
    display: flex;
}

.menu-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar {
    padding-top: 16px;
    user-select: none;
}

.slider-date {
    display: flex;
    flex-direction: row;
    color: var(--theme-font-color);
    justify-content: space-between;
    width: 100%;
    max-width: 330px;
    font-size: 20px;
    font-weight: 500;
    padding-top: 32px;
    line-height: 24px;
    font-family: 'Inter', sans-serif;
}

.arrow-left, .arrow-right {
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
}

.arrow > svg > path {
    fill: var(--theme-arrow-color) !important;
}

.days {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    font-weight: 600;
}

.input-dates {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--theme-border-color);
    padding-top: 12px;
}

.input-date:focus-visible {
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    border: 0;
    outline: #D0D5DD;
}

.input-date {
    user-select: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    padding: 10px 5px;
    max-width: 120px;
    border: 0;
    text-align: center;
    background-color: var(--theme-second-background);
    color: var(--theme-font-color);
    transition: 0.5s;
}

.buttons-calendar-wrapper {
    user-select: none;
    padding-top: 20px;
    padding-left: 16px;
    padding-right: 16px;
    border-top: 1px solid var(--theme-border-color);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
}

#calendar {
    padding-bottom: 10px;
}

.time-calendar-wrapper {
    display: flex;
    justify-content: start;
    flex-direction: column;
    padding-bottom: 26px;
}

#highload0 {
    opacity: 0;
}
#highload0 ~ label::before {
    content: '\2714';
    text-align: center;
    color: var(--theme-second-background);
    line-height: 1em;
    width: 1em;
    height: 1em;
    border: 2px solid var(--theme-font-color);
    border-radius: 0.25em;
    margin: 0.25em;
    margin-right: 8px;
    display: inline-block;
}
#highload0:checked ~ label::before {
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

.time-checkbox {
    padding-left: 7px;
}

.time:focus-visible {
    outline: 0;
}

.checkbox-custom-label {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--theme-font-color);
}

.button-reset {
    user-select: none;
    display: flex;
    align-items: center;
    width: 150px;
    justify-content: center;
    padding-top: 12px;
    padding-bottom: 12px;
    border: 1px solid var(--theme-border-color);
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.5s;
}

.button-ok {
    user-select: none;
    cursor: pointer;
    color: #F1F1F2;
    display: flex;
    align-items: center;
    width: 150px;
    justify-content: center;
    padding-top: 12px;
    padding-bottom: 12px;
    background: var(--main-color);
    border: 1px solid var(--main-color);
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
}

.select-time-wrapper {
    display: none;
    padding: 0 16px;
    padding-top: 16px;
    justify-content: space-around;
}

.time {
    width: 136px;
    padding: 10px 16px;
    font-size: 16px;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    background-color: var(--theme-second-background);
    color: var(--theme-font-color);
}

.sep-time {
    display: flex;
    align-items: center;
}

.disable-day:hover {
    background-color: var(--theme-second-background);
    border-radius: 0;
}

.disable-day {
    color: var(--main-disable-color);
}

.button-ok-disable {
    user-select: none;
    border: 1px solid var(--theme-border-color);
    background: var(--main-disable-color);
    cursor: default;
}

.reserved-day {
    color: var(--main-reserved-color);
    cursor: default;
}

.reserved-day:hover {
    background-color: #fff;
    border-radius: 0;
}

.separate-calendar {
    width: 100%;
    height: 2px;
}

.button-order {
    display: flex;
    align-items: center;
    height: 44px;
    justify-content: center;
    background-color: var(--main-color);
    color: var(--main-light-color);
    border: 1px solid var(--second-color);
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
}

.button-order > svg {
    padding-left: 10px;
}

.loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid var(--main-color);
    width: 40px;
    height: 40px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
    display: none;
}

.spinner {
    animation: spin 1.5s linear;
}

.order-disable {
    border: 1px solid var(--theme-border-color) !important;
    background: var(--main-disable-color) !important;
    cursor: default !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0);
    }
}

.table-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.table-line {
    display: flex;
    justify-content: center;
    padding-top: 100px;
    padding-right: 200px;
}

#left-tables{
    padding-top: 20px;
    justify-content: start;
    align-items: start;
    padding-left: 200px;
}

.table {
    color: white;
    font-size: 20px;
    text-align: right;
    padding-top: 7px;
    padding-right: 7px;
    cursor: pointer;
    width: 160px;
    height: 80px;
    background-color: var(--main-bg-color);
    margin-left: 3px;
    transition: 0.5s;
}

.table-talk-medium {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    width: 320px;
    height: 160px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hall {
    width: 500px;
    height: 160px;
}

#table26 {
    margin-right: 30px;
}

#table26 {
    margin-left: 30px;
}

.chair {
    fill: var(--main-bg-color);
    transition: 0.5s;
}

.table-wrapper:hover > .chair-wrapper>svg>.chair {
    fill: var(--third-color);
    cursor: pointer;
    transition: 0.5s;
}

.table-wrapper:hover > .table {
    cursor: pointer;
    background-color: var(--third-color);
    transition: 0.5s;
}

.active-table-wrapper:hover > .chair-wrapper>svg>.chair {
    fill: var(--main-color);
    cursor: pointer;
    transition: 0.5s;
}

.active-table-wrapper:hover > .table {
    background-color: var(--main-color);
    transition: 0.5s;
}

.active-table-wrapper > .table {
    background-color: var(--main-color);
    transition: 0.5s;
}

.active-table-wrapper > .chair-wrapper>svg>.chair {
    fill: var(--main-color);;
    transition: 0.5s;
}

.active-table-wrapper > .chair-row-wrapper > .chair-wrapper > svg > .chair {
    fill: var(--main-color);;
    transition: 0.5s;
}


.inactive-table > .chair-wrapper > svg >.chair {
    fill: var(--main-inactive-color);
    cursor: default;
}

.inactive-table > .chair-row-wrapper > .chair-wrapper > svg > .chair {
    fill: var(--main-inactive-color);
    cursor: default;
}

.inactive-table > .table {
    background-color: var(--main-inactive-color);
    cursor: default;
}

.inactive-table:hover > .chair-wrapper>svg>.chair {
    cursor: default;
    fill: var(--main-inactive-color);
    transition: 0.5s;
}

.inactive-table:hover > .table {
    background-color: var(--main-inactive-color);
    cursor: default;
}

.inactive-table:hover > .chair-wrapper {
    cursor: default;
}

.inactive-table {
    cursor: default;
}

.disable-table > .chair-row-wrapper > .chair-wrapper > svg > .chair {
    fill: var(--main-disable-color);
    cursor: default;
}

.disable-table > .chair-wrapper>svg>.chair {
    fill: var(--main-disable-color);
    cursor: default;
}

.disable-table > .table {
    background-color: var(--main-disable-color);
    cursor: default;
}

.disable-table:hover > .chair-wrapper>svg>.chair {
    cursor: default;
    fill: var(--main-disable-color);
    transition: 0.5s;
}

.disable-table:hover > .table {
    background-color: var(--main-disable-color);
    cursor: default;
}

.disable-table:hover > .chair-wrapper {
    cursor: default;
}

.disable-table {
    cursor: default;
}

.chair-bottom {
    display: inline-block;
    margin: 5px auto 0;
    cursor: pointer;
}

.chair-top {
    transform: rotate(180deg);
    margin: 0 auto 5px;
    cursor: pointer;
}

.chair-column-wrapper {
    justify-content: space-evenly;
}

.large-table {
    width: 500px;
    height: 150px;
}

.vertical-table {
    width: 80px;
    height: 160px;
}

.vertical-table-wrapper {
    display: flex;
    flex-direction: row;
    margin-top: 3px;
}

.chair-left {
    display: flex;
    align-items: center;
}

.chair-right {
    display: flex;
    align-items: center;
    margin-left: 3px;
}

.help-labels {
    position: absolute;
    display: flex;
    flex-direction: row;
    bottom: 70px;
    left: 70px;
}

.label-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.label {
    width: 40px;
    height: 15px;
    border-radius: 7px;
    background-color: black;
}

.grey-label {
    background-color: var(--main-disable-color);
}

.viol-label {
    background-color: var(--main-color);
}

.info {
    padding-left: 10px;
    padding-right: 10px;
    font-weight: bold;
}

.arrow-wrapper {
    cursor: pointer;
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: 0.5s;
}

.arrow-wrapper:hover .arrow>svg>path {
    fill: #383838;
    transition: 0.5s;
}

.first-floor-wrapper {
    top: 130px;
    right: 500px;
}

.icon-confirm {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.title-confirm {
    padding: 6px 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: var(--theme-font-color);
}

#mail-order {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #667085;
}

.description-confirm {
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #667085;
}

.puff-wrapper {
    bottom: 230px;
    right: 500px;
}

.info-arrow {
    text-align: center;
    animation: float 2s linear infinite;
}

@keyframes float {
    0% {
        margin-right: 0;
    }
    50% {
        margin-right: 10px;
    }
    100% {
        margin-right: 0;
    }
}

.location {
    margin-left: -2000px;
    display: none;
}

.active-location {
    display: block;
    margin-left: 0px;
    transition: 1s;
}

.sofa {
    padding-right: 300px;
}

.ml-3 {
    margin-left: 20px;
}

.puff-line {
    padding-top: 60px;
    justify-content: space-evenly;
}

.puff {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.line-first-floor {
    padding-top: 50px;
    justify-content: space-evenly;
}

.table-group-first-floor {
    margin-top: 200px;
}

#table1, #table2, #table3, #table4 {
    height: 150px;
}
#table1 {
    border-radius: 0 20px 0 0;
}
#table4 {
    border-radius: 0 0 20px 0;
}

#table5, #table13 {
    border-radius: 20px 0 0 0;
}

#table6, #table14 {
    border-radius: 0 0 0 20px;
}

#table7, #table15 {
    border-radius: 0 20px 0 0;
}
#table8, #table16 {
    border-radius: 0 0 20px 0;
}

#table9 {
    border-radius: 20px 0 0 20px;
}

#table12 {
    border-radius: 0 20px 20px 0;
}

#table25 {
    border-radius: 20px;
}

.modal-order-wrapper {
    background: rgba(52, 64, 84, 0.2);
}

.modal-order-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: var(--theme-font-color);
}

.mo-date-start > div {
    padding: 10px 14px;
}

.mo-date-start {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #101828;
}

.mo-date-labels, .mo-date {
    gap: 10px;
}

.mo-label {
    color: var(--theme-font-color) !important;
}

.modal-order {
    width: 330px;
}

.button-modal-ok, .button-modal-cancel {
    width: 110px;
}

.mo-price {
    padding-top: 20px;
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Inter', sans-serif;
}

.mo-date-wrapper {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.mo-label {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #344054;
}

.mo-input {
    margin-top: 5px;
}

.mo-label-date {
    padding-left: 10px;
    padding-top: 7px;
}

.mo-date {
    padding-left: 20px;
}

.promo-wrapper {
    position: relative;
}

.promo-button {
    user-select: none;
    padding: 9px 0;
    position: absolute;
    right: 0;
    top: 50px;
}

.promocode-input {
    width: 158px;
}

.old-price {
    color: #D0D5DD;
    position: relative;
    padding-right: 10px;
}

.old-price:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 1px;
    top: 8px;
    background-color: #D0D5DD;
    transform: rotate(25deg);
}

#new-sum-order {
    color: #039855;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.promo-label {
    /* Text sm/Normal */
    font-family: Inter, serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    padding-top: 10px;
}

.promo-success {
    color: #039855;
}

.promo-error {
    color: #D92D20;
}


#sum-order {
    font-weight: 500;
}

.header {
    transition: 0.5s;
    overflow-x: auto;
}

/*=========events=======*/
.events {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 40px;
}

.event-wrapper {
    min-height: 200px;
    margin-top: 30px;
    width: 70%;
    border: 1px solid var(--theme-border-sec-color);
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
    border-radius: 12px;
}

.event-title-wrapper {
    justify-content: space-between;
}

.event-description-wrapper {
    width: 100%;
    justify-content: space-between;
    padding: 24px 60px;
}

.event-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: var(--theme-font-color);
}

.event-date {
    font-weight: 300;
    font-size: 14px;
    line-height: 28px;
    color: var(--theme-font-color);
    white-space: nowrap;
}

.event-description {
    padding: 12px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    color: var(--theme-font-color);
    overflow-wrap: break-word;
    max-width: 728px;
}

.event-pinned {
    margin-right: -20px;
}

.event-pinned::after {
    content: '';
    display: inline-block;
    background-image: url('data:image/svg+xml,<svg width="15" height="15" viewBox="0 0 15 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M14.5459 4.72116L10.2787 0.454596C10.1742 0.350103 10.0502 0.267213 9.91365 0.21066C9.77714 0.154107 9.63083 0.125 9.48307 0.125C9.33531 0.125 9.189 0.154107 9.05249 0.21066C8.91599 0.267213 8.79195 0.350103 8.68749 0.454596L4.91663 4.23741C4.1671 4.00256 2.45569 3.7192 0.669751 5.16131C0.546651 5.2603 0.445777 5.3841 0.373693 5.52465C0.30161 5.66521 0.259933 5.81937 0.251377 5.97709C0.242821 6.13482 0.267576 6.29259 0.324032 6.44011C0.380488 6.58764 0.467378 6.72163 0.579048 6.83335L3.97655 10.2294L0.977017 13.2269C0.871469 13.3324 0.812173 13.4756 0.812173 13.6248C0.812173 13.7741 0.871469 13.9173 0.977017 14.0228C1.08256 14.1283 1.22572 14.1876 1.37499 14.1876C1.52425 14.1876 1.66741 14.1283 1.77295 14.0228L4.77038 11.0233L8.16577 14.4187C8.27015 14.5235 8.39418 14.6067 8.53076 14.6635C8.66733 14.7203 8.81378 14.7497 8.9617 14.7498H9.04116C9.20153 14.7387 9.35762 14.6932 9.49885 14.6164C9.64007 14.5396 9.7631 14.4333 9.85959 14.3048C11.2405 12.4696 11.1076 10.9776 10.787 10.086L14.5466 6.31233C14.6511 6.20781 14.7339 6.08375 14.7904 5.94721C14.8469 5.81068 14.8759 5.66436 14.8759 5.5166C14.8758 5.36884 14.8466 5.22254 14.79 5.08606C14.7334 4.94957 14.6505 4.82558 14.5459 4.72116ZM13.75 5.5171L9.72319 9.55725C9.64003 9.64072 9.58518 9.7482 9.56638 9.86452C9.54759 9.98083 9.56579 10.1001 9.61842 10.2055C10.2836 11.5365 9.49186 12.9189 8.9617 13.6241L1.37499 6.03671C2.22436 5.35186 3.03717 5.17116 3.65874 5.17116C4.05314 5.16577 4.44428 5.24314 4.80694 5.39827C4.91274 5.45122 5.03254 5.46946 5.14931 5.4504C5.26608 5.43134 5.37386 5.37594 5.45733 5.2921L9.48342 1.24983L13.75 5.51639V5.5171Z"/></svg>');
    fill: var(--theme-font-color);
    background-size: cover;
    width: 15px;
    height: 15px;
    margin-left: 5px;
}

.event-buttons-wrapper {
    justify-content: space-between;
}

.event-price {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 45%;
    max-width: 300px;
}

.event-button {
    user-select: none;
    width: 45%;
    max-width: 300px;
    background: var(--main-color);
    color: var(--main-light-color);
}

.event-image > img {
    border-radius: 12px 0 0 12px;
}

.modal-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #101828;
}

.modal-event-title {
    padding-bottom: 10px;
    padding-top: 10px;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: var(--theme-font-color);
}

.button-change-date-wrapper {
    user-select: none;
    display: none;
}

.event-price-modal {
    padding-bottom: 0;
}

.button-order-mobile {
    user-select: none;
    display: none;
}

.order-mobile {
    display: none;
}

.hide {
    display: none;
}

.payment-wrapper {
    justify-content: space-between;
}

.select-pay {
    width: 45%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border: 1px solid var(--theme-border-color);
    border-radius: 8px;
}

.icon-pay {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #EAECF0;
    border-radius: 6px;
    padding: 4px 11px;
}

.label-pay {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--main-disable-color);
}

.active-method {
    background-color: var(--theme-active-method);
    border: 1px solid var(--theme-border-color);
}

.active-method > .icon-pay {
    border: 1px solid #D6BBFB;
}

.icon-pay > svg > .pay-c {
    fill: #EAECF0;
}

.active-method > .icon-pay > svg > .pay-c {
    fill: #EAECF0;
}

.active-method > .icon-pay > svg > .pay-sh {
    stroke: var(--theme-active-font-color);
}


.active-method > .label-pay {
    color: var(--theme-active-font-color);
}

.medium-table {
    width: 125px;
    height: 250px;
    border-radius: 20px;
}

.button-change-theme {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 20px;
    background-color: var(--theme-second-background);
    left: 20px;
    width: 50px;
    height: 50px;
    transition: 0.5s;
}

@media (max-width: 1700px) {
    .right-wrapper {
        width: 24%;
    }
    .left-wrapper {
        width: 76%;
    }
    .table-line {
        padding-top: 45px;
    }
    .puff-line {
        padding-top: 50px;
    }
    .menu-header {
        display: none;
    }
    .time-calendar-wrapper {
        padding-bottom: 14px;
    }
    .ml-3 {
        margin-left: 70px;
    }
    #table1, #table2, #table3, #table4 {
        height: 130px;
    }
    .table-group-first-floor {
        margin-top: 100px;
    }
}

@media (max-width: 1460px) {
    .right-wrapper {
        width: 25%;
    }
    .left-wrapper {
        width: 75%;
    }
    .first-floor-wrapper, .puff-wrapper {
        right: 400px;
    }
}

@media (max-width: 1350px) {
    .right-wrapper {
        width: 27%;
    }
    .left-wrapper {
        width: 73%;
    }
}

@media (max-width: 1240px) {
    .right-wrapper {
        width: 29%;
    }
    .left-wrapper {
        width: 71%;
    }
}

@media (max-width: 1240px) {
    .right-wrapper {
        width: 33%;
    }
    .left-wrapper {
        width: 67%;
    }
    .table-line {
        padding-right: 30px;
    }
    .puff-wrapper {
        right: 375px;
        bottom: 70px;
    }
    .first-floor-wrapper {
        right: 375px;
        top: 95px;
    }

    .event-wrapper {
        width: 80%;
        height: 220px;
    }

    .vertical-table {
        width: 70px;
        height: 140px;
    }

    .horizontal-table {
        width: 140px;
        height: 70px;
    }

    .large-table {
        width: 500px;
        height: 140px;
    }

    .medium-table {
        width: 125px;
        height: 250px;
    }

    .puff {
        width: 130px;
        height: 130px;
    }

    .event-image > img {
        height: 100%;
    }
}

@media (max-width: 1000px) {
    .button-order {
        display: none;
    }

    .button-order-mobile {
        display: flex;
        width: 90%;
    }

    .right-wrapper {
        width: 100%;
    }

    .left-wrapper {
        width: 100%;
    }

    .table-line {
        padding-top: 20px;
        padding-right: 0;
    }

    .arrow-wrapper {
        display: none;
    }

    .help-labels {
        display: none;
    }

    .order-mobile {
        width: 80%;
    }

    .footer-left {
        position: fixed;
        width: 100%;
        justify-content: center;
        display: flex;
        bottom: 0;
        padding-bottom: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--theme-border-color);
    }

    .label-price-footer {
        position: fixed;
        bottom: 87px;
        padding-left: 12px;
        padding-bottom: 6px;
        font-weight: 700;
        font-size: 16px;
        line-height: 24px;
        color: var(--theme-font-color);
    }

    .table {
        font-size: 14px;
    }

    .menu-footer {
        padding: 0;
        justify-content: center;
        position: fixed;
        padding-bottom: 25px;
        display: flex;
        bottom: 0;
        width: 100%;
    }
    .order-mobile {
        display: flex;
    }
    .sofa {
        display: none;
    }
    .vertical-table {
        width: 60px;
        height: 120px;
    }
    .horizontal-table {
        height: 60px;
        width: 120px;
    }

    .large-table {
        width: 400px;
        height: 90px;
    }

    .medium-table {
        width: 90px;
        height: 225px;
    }

    .chair {
        width: 40px;
    }
    .title {
        display: none;
    }
    #table1, #table2, #table3, #table4 {
        height: 120px;
    }

    #table5, #table13 {
        border-radius: 10px 0 0 0;
    }

    #table6, #table14 {
        border-radius: 0 0 0 10px;
    }

    #table7, #table15 {
        border-radius: 0 10px 0 0;
    }

    #table8, #table16 {
        border-radius: 0 0 10px 0;
    }

    #table9 {
        border-radius: 10px 0 0 10px;
    }

    #table12 {
        border-radius: 0 10px 10px 0;
    }

    .chair-bottom > .chair {
        width: 80px;
    }

    .chair-bottom {
        margin: -4px auto 0;
    }

    .chair-top {
        margin: 0 auto -4px;
    }

    .chair-top > .chair {
        width: 80px;
    }

    .puff {
        width: 80px;
        height: 80px;
    }

    .event-image > img {
        width: 100%;
        height: 100%;
        border-radius: 12px 12px 0 12px;
    }

    .event-description-wrapper {
        padding: 13px 15px;
        width: 90%;
    }

    .button-change-date-wrapper {
        padding-top: 6px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .button-change-date {
        color: white;
        background-color: var(--main-color);
    }

    .event-title {
        font-size: 18px;
    }

    .event-date {
        font-size: 10px;
    }

    .event-button {
        width: 30%;
    }

    .event-wrapper {
        flex-direction: column;
        height: auto;
    }

    .btn {
        user-select: none;
        font-size: 14px;
        width: 100px;
    }

    .modal {
        width: 310px;
    }

    .input-default {
        width: 280px;
    }

    .hide-mobile {
        display: none;
    }

    .ml-3 {
        margin-left: 50px;
    }

    #left-tables{
        padding-left: 100px;
    }
}

@media (max-width: 760px) {
    .hall {
        width: 320px;
        height: 160px;
    }

    .button-change-theme {
        bottom: 110px;
        left: auto;
        right: 30px;
    }

    .button-order-mobile {
        width: 80%;
    }
    #table1, #table2, #table3, #table4 {
        height: 100px;
    }
    .calendar-wrapper {
        padding: 15px 16px 0;
    }
    .input-date {
        padding: 7px 5px;
    }
    .input-dates {
        padding: 15px 0;
    }
    .select-time-wrapper {
        padding: 12px 16px;
    }
    .buttons-calendar-wrapper {
        padding-top: 12px;
    }
    .menu-header {
        display: none;
    }
    .header {
        overflow-x: auto;
    }
    .time-calendar-wrapper {
        font-size: 14px;
        padding-bottom: 6px;
    }
    .event-pinned {
        margin-right: -10px;
    }
    .event-pinned::after {
        width: 10px;
        height: 10px;
    }
    .event-wrapper {
        max-width: 400px;
    }
    .vertical-table {
        width: 50px;
        height: 100px;
    }
    .horizontal-table {
        height: 40px;
        width: 80px;
    }
    .large-table {
        width: 300px;
        height: 65px;
    }
    .medium-table {
        width: 65px;
        height: 170px;
    }

    .chair {
        width: 24px;
    }
    .chair-top > .chair {
        width: 50px;
    }
    .chair-right > .chair {
        width: 24px;
        height: 55px;
    }
    .chair-left > .chair {
        width: 24px;
        height: 55px;
    }

    .chair-bottom > .chair {
        width: 50px;
    }
    .chair-bottom {
        margin: -9px auto 0;
    }
    .chair-top {
        margin: 0 auto -9px;
    }
    .ml-3 {
        margin-left: 30px;
    }
    #left-tables{
        padding-left: 40px;
    }
}

@media (max-height: 700px) {
    .vertical-table {
        width: 40px !important;
        height: 80px !important;
    }
    .large-table {
        width: 300px;
        height: 65px;
    }
    .medium-table {
        width: 65px  !important;
        height: 170px  !important;
    }
    .input-dates {
        padding: 7px 0;
    }
    .slider-date {
        padding-top: 16px;
    }
}

@media (max-height: 600px) {
    .vertical-table {
        width: 30px !important;
        height: 60px !important;
    }
    .large-table {
        width: 300px;
        height: 65px;
    }
    .medium-table {
        width: 65px  !important;
        height: 170px  !important;
    }
    .input-dates {
        padding: 0px 0;
    }
    .slider-date {
        padding-top: 8px;
    }
    .chair-right > .chair {
        width: 24px;
        height: 40px;
    }
    .chair-left > .chair {
        width: 24px;
        height: 40px;
    }
    .calendar-wrapper {
        padding: 2px 4px 0;
    }
}

.show {
    display: flex;
}

.full-size {
    width: 100%;
}


