
/* Create order page */

.content-bg {
    background-color: #f2f2f2;
    padding: 30px 15px;
}

.order {
    background-color: #ffffff;
    display: grid;
    grid-template-rows: max-content max-content max-content;
    grid-template-areas: "title title" "tickets payment" "tickets info";
    grid-auto-flow: dense;
    grid-template-columns: 55% 45%;
    width: 100%;
    padding: 0;
}

.order__title {
    padding: 40px 35px 15px 35px;
    grid-area: title;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-bottom: 1px solid #F2F2F2;
    /* position: sticky;
    background: white;
    top: 0;
    z-index: 2; */
}

.order__title-text {
    font-family: "Proxima Nova";
    font-size: 36px;
    font-weight: 500;
    text-align: left;
    color: #1D2D53;
}

.order__title-subtext {
    padding-top: 25px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.order__title-subtext__item {
    padding-right: 20px;
    padding-bottom: 10px;
}

.order__title-subtext__item-icon {
    width: 15px;
    height: 15px;
    fill: #1D2D53;
}

.order__title-subtext__item-text {
    text-align: left;
    vertical-align: bottom;
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.035em;
    color: #1D2D53CF;
}

.order__tickets {
    grid-area: tickets;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 25px 35px 50px 35px;
}

.order__tickets-title {
    margin-bottom: 16px;
    text-align: left;
    font-family: "Proxima Nova";
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #1D2D53;
}

.order__tickets-instock,
.tickets-remain--value {
    align-self: flex-end;
    padding-top: 25px;
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    color: #76819E;
}

.order__tickets__max_notification, .order__tickets__min_notification {
    width: 100%;
    height: 50px;
    background: rgb(255, 249, 229);
    margin-top: 16px;
    border-radius: 4px;
    display: none;
    justify-content: space-around;
    align-items: center;
}

.order__tickets__max_notification-text, .order__tickets__min_notification-text {
    color: rgb(173, 92, 0);
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 14px;
    padding: 1em;
}

.order__tickets__max_notification.active, .order__tickets__min_notification.active {
    display: flex;
    animation: slide-down .1s ease-out;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

hr.order_items_divider {
    width: 100%;
    border-bottom: 1px solid #F2F2F2;
    margin-top: 15px;
    margin-bottom: 0px;
}

.order__tickets-item {
    margin: 15px 0 0 0;
    /* height: 85px; */
    width: 100%;
    display: grid;
    grid-template-areas: "title counter" "subtitle counter";
    grid-template-rows: 45% 50%;
    grid-auto-flow: dense;
    grid-template-columns: 65% 35%;
    border: 2px solid #F2F2F2;
    border-radius: 8px;
}

.order__tickets-item--transfer {
    grid-template-areas: "title counter" "subtitle counter" "options counter";
    grid-template-rows: 25% 15% max-content;
}

.order__tickets-item__ticket {
    grid-template-columns: 65% 35%;
}

.order__tickets-item__service {
    grid-template-columns: 75% 25%;
}

.order__tickets-item__title {
    grid-area: title;
    margin: 20px 0 0 20px;
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 21px;
    line-height: 22px;
    color: #1D2D53;
}

.order__tickets-item__subtitle {
    grid-area: subtitle;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 5px 20px 5px 20px;
}

.order__tickets-item__subtitle--transfer {
    grid-area: options;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: left;
    margin: 5px 20px 5px 20px;
}

.order__tickets-item__subtitle-text {
    display: inline;
    padding-top: 2px;
    padding-left: 5px;
    vertical-align: bottom;
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    color: #76819e;
}

.item__subtitle-text-block {
    display: block;
    margin-bottom: 4px;
}

.item__subtitle-text-block--notification {
    display: block;
    margin-top: 8px;
}

.order__tickets-item__subtitle-img {
    width: 18px;
    height: 18px;
}

.order__tickets-item__counter {
    grid-area: counter;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 20px auto;
    width: 135px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.order__tickets-item__counter-minus {
    border: 1px solid #F2F2F2;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.order__tickets-item__counter-minus.inactive {
    pointer-events: none;
    cursor: default;
}

.order__tickets-item__counter-minus.inactive img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    filter: opacity(50%);
}

.order__tickets-item__counter-minus:hover {
    cursor: pointer;
}

.order__tickets-item__counter-minus-img {
    width: 30px;
    height: 30px;
}

.order__tickets-item__counter-value {
    border-top: 1px solid #F2F2F2;
    border-bottom: 1px solid #F2F2F2;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 22px;
    line-height: 31px;
    color: #1D2D53;
    background: rgb(246, 247, 249);
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
    border-top-color: rgb(211, 216, 227);
    transition: 0.1s ease background-color;
}

#counter-base-value.active {
    background: #85B562CC;
}

#counter-priveleged-value.active {
    background: #85B562CC;
}

#counter-preschool-value.active {
    background: #85B562CC;
}

/* Универсальный класс для всех категорий билетов */
.order__tickets-item__counter-value.active {
    background: #85B562CC;
}

.order__tickets-item__counter-plus {
    border: 1px solid #F2F2F2;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.order__tickets-item__counter-plus.inactive {
    pointer-events: none;
    cursor: default;
}

.order__tickets-item__counter-plus.inactive img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    filter: opacity(50%);
}

.order__tickets-item__counter-plus:hover,
.order__tickets-item__counter-plus:active {
    cursor: pointer;
    border: 1px solid #F2F2F2;
}

.order__tickets-item__counter-plus-img {
    width: 30px;
    height: 30px;
}

@media screen and (max-width: 550px) {
    .order__tickets-item:nth-child(3) {
        grid-template-areas: "title" "counter";
        grid-template-rows: 50% 50%;
        grid-template-columns: 100%;
        height: 120px;
    }
    .order__tickets-item {
        grid-template-areas: "title" "subtitle" "counter";
        grid-template-rows: 33% 33% 33%;
        grid-template-columns: 100%;
        height: 160px;
    }
    .order__tickets-item--transfer {
        grid-template-areas: "title" "subtitle" "options" "counter";
        grid-template-rows: 18% 15% 40% 25%;
        grid-template-columns: 100%;
        height: 350px;
    }
    .order__tickets-item__counter {
        height: 40px;
        margin: 0px 20px;
    }
}

.order__tickets-item__last_ticket {
    display: none;
    text-align: right;
    width: 100%;
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 12px;
    color: #4da712d8;
    margin-top: 4px;
}

.order__tickets-item__last_ticket.active {
    display: block;
}

.order__tickets-item__checkbox {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin: 20px auto;
    /* height: 100%; */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.order__tickets-item__checkbox-radio {
    display: none;
}

.order__tickets-item__checkbox-label {
    margin: 0 auto;
    height: 38px;
    width: 38px;
    border: 1px solid #F2F2F2;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.1s ease background-color;
    overflow: hidden;
    z-index: 1;
    background: rgb(246, 247, 249);
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
    border-top-color: rgb(211, 216, 227);
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#tick_mark-rg,
#tick_mark-ag,
#tick_mark-pg,
#tick_mark-tr {
    width: 30px;
    height: 30px;
    opacity: 0;
    transition: 0.1s ease opacity;
}

.order__tickets-item__checkbox-radio:checked+label {
    background-color: #85B562CC;
}

.order__tickets-item__checkbox-radio:checked+label #tick_mark-rg,
.order__tickets-item__checkbox-radio:checked+label #tick_mark-ag,
.order__tickets-item__checkbox-radio:checked+label #tick_mark-pg,
.order__tickets-item__checkbox-radio:checked+label #tick_mark-tr {
    opacity: 1;
}


/* Make order tickets item inactive */

.order__tickets-item__service.disabled .order__tickets-item__title,
.order__tickets-item__service.disabled .order__tickets-item__subtitle-text {
    color: #1d2d537e;
}

.order__tickets-item__service.disabled img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    filter: opacity(50%);
}

.order__tickets-item__service.disabled .order__tickets-item__checkbox-label {
    cursor: auto;
    overflow: hidden;
    z-index: 1;
    background: rgb(226, 226, 226);
}


/* //Make order tickets item inactive */

.order__tickets-promocode-text {
    margin-top: 15px;
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    color: #76819E;
}

.order__tickets-promocode-text-action {
    font-weight: bold;
    color: #85B563;
    cursor: pointer;
}

.order__tickets-promocode-text-action:hover {
    color: #7AAA5A;
}

.order__tickets-promocode-text-action.hidden {
    display: none;
}

.order__tickets-promocode-field {
    display: none;
}

.order__tickets-promocode-field.visible {
    margin-top: 15px;
    width: 100%;
    display: flex;
    flex-direction: row;
    animation: slide-down .1s ease-out;
}

.order__tickets-promocode-field-input {
    height: 50px;
    width: 50%;
    padding-left: 25px;
    border-radius: 4px;
    border: 1px solid #F2F2F2;
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: rgb(39, 42, 49);
}

.order__tickets-promocode-field-submit {
    margin-left: 15px;
    height: 50px;
    width: 50px;
    background: #85B563;
    border-radius: 4px;
    border: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.order__tickets-promocode-field-submit-img {
    width: 25px;
    height: 25px;
}

.order__tickets-promocode-field-submit:hover {
    cursor: pointer;
    background: #7AAA5A;
}

.order__tickets-promocode-not-found {
    display: none;
    padding-left: 5px;
    padding-top: 12px;
    font-family: "Proxima Nova";
    font-weight: 400;
    color: rgb(237, 74, 90);
    font-size: 14px;
}

.order__tickets-promocode-not-found.active {
    display: block;
}

.order__tickets-total,
#totalTicketSum {
    align-self: flex-end;
    padding-top: 25px;
    font-family: "Proxima Nova";
    font-weight: 500;
    font-size: 25px;
    line-height: 36px;
    color: #1D2D53;
}

.order__tickets-total-sale {
    padding-top: 5px;
    display: none;
}

.order__tickets-total-sale.active {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

#totalTicketSumDiscount {
    padding-left: 1em;
}

.totalTicketSumDiscount {
    display: inline;
}

.order__tickets-total-sale-label {
    margin-top: 6px;
    background: #c72c32ed;
    border-radius: 4px;
    height: 70%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.order__tickets-total-sale-label-text {
    padding: 1px 10px;
    color: white;
    font-size: 13px;
}

.order__tickets-shoplist {
    padding-top: 15px;
    align-self: flex-end;
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    color: #76819E;
}

.order__payment {
    grid-area: payment;
    padding: 25px 35px;
    border-left: 1px solid #F2F2F2;
    border-bottom: 1px solid #F2F2F2;
}

.order__payment-title {
    margin-bottom: 16px;
    text-align: left;
    font-family: "Proxima Nova";
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #1D2D53;
}

.order__payment-item {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    border: 2px solid #F2F2F2;
    border-radius: 4px;
    padding: 10px 30px;
    z-index: 1;
}

.order__payment-item:hover {
    cursor: pointer;
}

.order__payment-item-icon {
    width: 35px;
    height: 35px;
}

.order__payment-item-text {
    padding-left: 30px;
    font-family: "Proxima Nova";
    font-weight: 500;
    font-size: 18px;
    line-height: 38px;
    text-align: center;
    color: #1d2d53b5;
}

.order__payment-item.active {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    border: 2px solid #85b5639e;
    transition: 0.2s ease border-color;
}

.order__payment-item.active .order__payment-item-text {
    color: #1d2d53;
}

.order__payment-item-mark {
    display: none;
}

.order__payment-item.active .order__payment-item-mark {
    display: block;
    margin-left: auto;
    width: 38px;
    height: 38px;
}

@media screen and (max-width: 425px) {
    .order__payment-item {
        padding: 6px 15px;
    }
    .order__payment-item-text {
        padding-left: 15px;
    }
}

@media screen and (max-width: 320px) {
    .order__payment-item {
        padding: 4px 10px;
    }
    .order__payment-item-text {
        padding-left: 10px;
        font-size: 14px;
        line-height: 14px;
        text-align: left;
    }
}

.order__info {
    grid-area: info;
    padding: 25px 45px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #F2F2F2;
}

.order__info-title {
    margin-bottom: 16px;
    text-align: left;
    font-family: "Proxima Nova";
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: #1D2D53;
}

.order__info-subtitle {
    margin-bottom: 15px;
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    color: #76819E;
}

.order__tickets-label {
    margin: 15px 0 0 0;
    font-family: 'Proxima Nova';
    font-size: 17px;
    color: #1D2D53;
}

.order__info-field {
    padding: 12px 25px;
    margin-top: 8px;
    height: 50px;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #F2F2F2;
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: rgb(39, 42, 49);
}
/* select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 5px;
} */

.order__info__invoice,
.order__info__transfer {
    display: none;
}

.order__info__invoice.active,
.order__info__transfer.active {
    display: block;
}

.order__info-field-submit {
    margin-top: 25px;
    height: 50px;
    width: 100%;
    background: #85B563;
    border-radius: 4px;
    border: none;
    font-family: "Proxima Nova";
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    color: #FFFFFF;
}

.order__info-field-submit.inactive {
    background: #b4b4b4;
}


.order__info-field-submit:hover {
    cursor: pointer;
    background: #7AAA5A;
}

.order__info-field-submit.inactive:hover {
    cursor: auto;
    background: #b4b4b4;
}

.order__info-agreement {
    margin-top: 20px;
    margin-bottom: 50px;
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    color: #76819E;
}

.order__info-agreement-action {
    font-weight: bold;
    color: #85B563;
    cursor: pointer;
}

.order__info-agreement-action:hover {
    color: #7AAA5A;
}

@media screen and (max-width: 875px) {
    .order {
        grid-template-rows: max-content max-content max-content max-content;
        grid-template-areas: "title" "tickets" "payment" "info";
        grid-template-columns: 100%;
    }
    .order__payment {
        border: none;
        border-top: 1px solid #F2F2F2;
    }
    .order__info {
        border: none;
        border-top: 1px solid #F2F2F2;
    }
}

@media screen and (max-width: 550px) {
    .order__tickets-item__checkbox {
        margin: 0px;
        justify-content: flex-start;
        padding-left: 1em;
    }
    .order__tickets-item__checkbox-label {
        margin: 0px;
    }
}

@media screen and (max-width: 425px) {
    .order__title {
        padding: 30px 25px 5px 25px;
    }
    .order__title-text {
        font-size: 30px;
    }
    .order__tickets {
        padding: 15px 25px;
    }
    .order__tickets-title {
        font-size: 22px;
    }
    .order__tickets-item {
        margin: 15px 0 0 0;
        height: 140px;
        grid-template-rows: 33% 33% 33%;
        align-items: flex-start;
    }
    .order__tickets-item__service {
        height: 170px;
    }
    .order__tickets-item__checkbox {
        margin: 0px;
    }
    .order__tickets-item__checkbox-label {
        margin: 0px;
    }
    .order__tickets-item__title {
        margin: 10px 0 0 15px;
    }
    .order__tickets-promocode-text {
        font-size: 14px;
        line-height: 18px;
    }
    .order__tickets-promocode-field-input {
        padding-left: 15px;
        font-size: 15px;
    }
    .order__payment-title {
        font-size: 22px;
    }
    .order__info-title {
        font-size: 22px;
    }
    .order__info-subtitle {
        font-size: 15px;
        line-height: 20px;
    }
    .order__info-field-submit {
        margin-top: 30px;
    }
}

@media screen and (max-width: 400px) {
    .order__payment-item-text {
        line-height: 22px;
        text-align: left;
    }
    .order__tickets-total,
    #totalTicketSum {
        font-size: 23px;
        line-height: 30px;
    }
    .order__info-field {
        padding: 12px 15px;
        font-size: 14px;
    }
    .order__info-agreement {
        font-size: 14px;
        line-height: 18px;
    }
}

@media screen and (max-width: 375px) {
    .order__tickets-title,
    .order__payment-title {
        font-size: 20px;
    }
    .order__tickets-item__title {
        font-size: 19px;
    }
    .order__tickets-total {
        font-size: 19px;
    }
    .order__tickets-promocode-field-input {
        padding-left: 10px;
        font-size: 14px;
    }
    .order__tickets-total,
    #totalTicketSum {
        font-size: 19px;
    }
}

s {
    text-decoration: none;
    position: relative;
}


.popup_pay {
    display: none;
    position: fixed;
    z-index: 120;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow-x: hidden;
}

.popup_pay::-webkit-scrollbar-track {
    border-radius: 0px;
    background-color: transparent;
}

.popup_pay::-webkit-scrollbar {
    width: 0px;
}

.popup_pay::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: transparent;
}

.popup_pay::-webkit-scrollbar-thumb:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
}

.popup_pay::-moz-scrollbar-track {
    border-radius: 0px;
    background-color: transparent;
}

.popup_pay::-moz-scrollbar {
    background-color: transparent;
}

.popup_pay::-moz-scrollbar-thumb {
    border-radius: 0px;
    background-color: transparent;
}

.popup_pay::-moz-scrollbar-thumb:hover {
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
}

.popup_pay::-moz-scrollbar-track {
    border-radius: 0px;
    background-color: transparent;
}

.popup_pay::-moz-scrollbar {
    background-color: transparent;
}

.popup_pay::-moz-scrollbar-thumb {
    border-radius: 0px;
    background-color: transparent;
}

.popup_pay::-moz-scrollbar-thumb:hover {
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
}

.popup_pay .popup_block {
    margin: 50px auto;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    max-width: 365px;
    height: 650px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

@media screen and (max-height: 730px) {
    /* .popup_pay {
    display: flex;
    align-items: center;
    justify-content: center;
  } */
    .popup_pay .popup_block {
        height: 100vh;
        margin: auto;
    }
}

@media screen and (max-width: 768px) {
    .popup_pay .popup_block {
        max-width: unset;
        width: 100vw;
    }
}

.popup_pay .popup_block .popup {
    padding: 60px 90px;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    position: relative;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.popup_pay .popup_block .popup .close {
    max-width: 186px;
    width: 100%;
    min-height: 37px;
    border: 1px solid #606262;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 6px;
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #4a4a4a;
}

.popup_pay .popup_block .popup .title {
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #000000;
}

.popup_pay .popup_block .popup .time {
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    text-align: center;
    color: #000000;
}

.popup_pay .popup_block .popup .qr-wrapper {
    margin-top: 63px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
}

.popup_pay .popup_block .popup .qr-wrapper .qr {
    width: 140px;
    height: 140px;
    max-width: 140px;
    max-height: 140px;
}

.popup_pay .popup_block .popup .qr-wrapper .qr.hidden {
    display: none;
}

.popup_pay .popup_block .popup .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.popup_pay .popup_block .popup .logo__text {
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #000000;
    margin-top: 10px;
    margin-bottom: 10px;
}


#progress {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.1);
}

#progress.active {
    display: flex;
}

#progress .text {
    font-family: "Proxima Nova";
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: black;
    margin-top: 10px;
}

#progress .icon {
    width: 50px;
    height: 50px;
    background: url("../images/order/progress.svg");
    -moz-animation: rotate 1.5s infinite linear;
    -webkit-animation: rotate 1.5s infinite linear;
    animation: rotate 1.5s infinite linear;
}

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

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

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

.promocode-disabled {
    display: none;
}

.discount s::before {
    top: 50%;
    background: red;
    opacity: .7;
    content: '';
    width: 110%;
    position: absolute;
    height: 0.1em;
    border-radius: 0.1em;
    left: -5%;
    white-space: nowrap;
    display: block;
    transform: rotate(-15deg);
}
