﻿body {
    margin: 0;
    background-image: url("/images/bodyBg.webp");
    background-attachment: fixed;
    -webkit-tap-highlight-color: transparent;
    touch-action: none;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
}

.content {
    width: 1250px;
    margin: 0 auto;
}

    .content > *:not(script) {
        padding: 15px;
        width: calc(100% - 30px);
        display: block;
    }

header {
    height: 100px;
    box-shadow: 0 10px 20px 5px #0a0a12;
    display: flex !important;
    align-items: center;
    user-select: none;
    position: relative;
    background-color: #20202a;
}

content {
    min-height: 1024px;
    background-color: #20202ad4;
    padding-bottom: 20px !important;
}

.logo {
    background-image: url("/images/logo.webp");
    width: 100px;
    height: 100px;
    background-size: 100%;
}

.headerTopLeft {
    margin-left: 15px;
    color: #fff;
}

.title {
    font-size: 25pt;
    font-weight: bold;
}

.headerMenu {
    display: flex;
    padding: 15px 0;
}

.headerMenuElement {
    margin-right: 20px;
    cursor: pointer;
    border-bottom: 1px dashed;
    transition: 0.3s;
    color: #fff;
    text-decoration: none;
}

    .headerMenuElement:hover {
        border-bottom: 1px solid;
    }

.headerTopRight {
    position: absolute;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

    .headerTopRight a {
        color: #6f6f6f;
        font-weight: bold;
        text-decoration: none;
        border-bottom: 1px dashed;
        font-size: 18pt;
        transition: 0.3s;
    }

        .headerTopRight a:hover {
            border-bottom: 1px solid;
        }

.signButtons {
    display: flex;
    color: #fff;
    margin-top: 10px;
    justify-content: flex-end;
}

.button {
    border: 1px solid #000000;
    font-weight: 400;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 15pt;
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.coloredButton {
    background-color: #694d4966;
    border-color: #fff0;
}

.button:hover {
    background-color: #00000066;
}

.coloredButton:hover {
    background-color: #694d49;
}

.menuElement {
    display: inline-block;
    width: 250px;
    height: 250px;
    position: relative;
    box-shadow: 0px 0px 1px 0px #000;
    transition: 0.3s;
    margin: 10px 26px;
}

    .menuElement:hover {
        box-shadow: 0px 0px 10px 10px #0000007a;
    }

.menuElementTitle {
    color: #fff;
    position: absolute;
    left: 10px;
    bottom: 0px;
    font-size: 35pt;
    text-shadow: 1px 1px 1px #000;
}

footer {
    box-shadow: 0 -10px 20px 5px #0a0a12;
    color: #fff;
    background-color: #20202a;
}

.address {
    font-size: 19pt;
    font-weight: bold;
    margin-bottom: 10px;
}

.workTime {
    font-size: 16pt;
    font-weight: bold;
}

.menuForImage {
    width: 100%;
}

.menu {
    display: flex;
    padding-top: 30px;
}

.leftMenu {
    width: 140px;
    padding: 10px 30px;
    display: flex;
    flex-direction: column;
    color: #fff;
    border: 1px solid #ffffff7d;
    height: fit-content;
    user-select: none;
}

.leftMenuTitle {
    font-size: 20pt;
    margin-bottom: 10px;
}

a.leftMenuElement {
    cursor: pointer;
    font-size: 14pt;
    border-top: 1px solid #ffffff63;
    padding: 7px 0;
}

    a.leftMenuElement:hover, a.leftMenuElement.active, .navagation a {
        color: #f00;
    }

    a.leftMenuElement.active {
        cursor: default;
    }

.menuElements {
    width: calc(100% - 60px);
    padding: 0 30px;
}

.navagation {
    color: #fff;
    user-select: none;
}

.menuBlock {
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
}

.menuBlockElement {
    display: inline-block;
    width: 260px;
    position: relative;
    box-shadow: 0px 0px 1px 0px #000;
    margin: 10px 26px;
    padding: 5px;
    color: #fff;
}

.menuBlockElementName {
    font-size: 20pt;
    padding: 0 15px;
}

.flexBlock {
    display: flex;
    align-items: center;
    margin: 10px 0;
    justify-content: space-between;
    padding: 0 18px;
}

.menuBlockElementDesc {
    padding: 0 15px;
}

.countMinus {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    background: #3d323670;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #604845;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.currentCount {
    background: #3d323670;
    width: 140px;
    height: 40px;
    display: flex;
    justify-content: center;
    font-size: 19pt;
    align-items: center;
    border-top: 1px solid #604845;
    border-bottom: 1px solid #604845;
    user-select: none;
}

.countPlus {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    background: #3d323670;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #604845;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.countDisable {
    background: #ff00008a;
}

.countAvailable {
    background: #ff00008a;
}

.countAvailable:hover {
    background: #ff0000;
}

.countPlus::before, .countPlus::after {
    content: "";
    position: absolute;
    width: 15px;
    height: 3px;
    background: #fff;
    top: 19px;
}

.countPlus::before {
    transform: rotate(-90deg);
}

.countMinus::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 3px;
    background: #fff;
    top: 19px;
}

.price {
    font-size: 20pt;
}

.button.buyButton {
    margin: 0;
}

.wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100;
    top: 0;
    display: none; /*toggle to flex*/
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.signinBlock {
    width: 350px;
    background: #101010;
    color: #fff;
    padding: 15px 20px;
    border: 1px solid #000;
    border-radius: 5px;
    position: relative;
    user-select: none;
}

.signinButton {
    background-color: #694d4966;
    border-color: #fff0;
    border: 1px solid #000000;
    font-weight: 400;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 15pt;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
    width: 100%;
}

.signinButton:hover {
    background-color: #694d49;
}

.signinTitle {
    font-weight: bold;
    font-size: 13pt;
}

#phone, #code {
    padding: 8px 15px;
    font-size: 12pt;
    width: calc(100% - 32px);
    outline: none;
    border: 1px solid #fff;
    border-radius: 2px;
    height: 23px;
    font-weight: bold;
    margin: 10px 0;
}

#code {
    text-align: center;
}

.info {
    margin-top: 10px;
    font-size: 13pt;
    text-align: center;
}

.link {
    color: #a98a84;
    font-weight: bold;
}

.link:hover {
    text-decoration: none;
}

.close {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.close::before, .close::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 3px;
    background: #fff;
    top: 9px;
    background-color: #a98a84;
}

.close::before {
    transform: rotate(-45deg);
}

.close::after {
    transform: rotate(45deg);
}

.close:hover::before, .close:hover::after {
    background-color: #fff;
}

.sendAgainButton {
    background-color: #694d4900;
    border-color: #fff0;
    border: 1px solid #000000;
    font-weight: 400;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 15pt;
    cursor: pointer;
    transition: 0.3s;
    color: #fff;
    width: 100%;
}

.sendAgainButton:hover {
    background-color: #694d4944;
}

button[disabled], .button[disabled] {
    color: #fff;
    background-color: #00000000 !important;
    cursor: default;
}

#writeCode > .signinTitle {
    text-align: right;
}

.signinBlock p {
    text-align: center;
    font-weight: bold;
    font-size: 14pt;
}

.back {
    width: 15px;
    height: 20px;
    position: absolute;
    left: 10px;
    top: 10px;
    cursor: pointer;
}

.back::before, .back::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 3px;
    background: #fff;
    top: 12px;
    background-color: #a98a84;
}

.back::before {
    transform: rotate(-45deg);
    top: 5px;
}

.back::after {
    transform: rotate(45deg);
}

.back:hover::before, .back:hover::after {
    background-color: #fff;
}

.CartBtn {
    width: 180px;
    height: 40px;
    border-radius: 5px;
    border: none;
    background-color: #694d4966;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition-duration: .5s;
    overflow: hidden;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.103);
    position: relative;
    border: 1px solid #000000;
    margin: 0 auto;
}

.IconContainer {
    position: absolute;
    left: -50px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
    transition-duration: .5s;
}

.icon {
    border-radius: 1px;
}

.text {
    height: 100%;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 1;
    transition-duration: .5s;
    font-size: 1.04em;
    font-weight: 600;
}

.CartBtn:hover .IconContainer {
    transform: translateX(58px);
    border-radius: 40px;
    transition-duration: .5s;
}

.CartBtn:hover .text {
    transform: translate(10px,0px);
    transition-duration: .5s;
}

.CartBtn:active {
    transform: scale(0.95);
    transition-duration: .5s;
}

.IconContainer svg {
    fill: rgb(255, 255, 255);
}

.stepsBlock {
    border: 1px solid #fff;
    display: flex;
    width: 750px;
    margin: 20px auto;
    color: #fff;
    position: relative;
    padding: 10px 20px;
    border-radius: 25px;
    user-select: none;
}

.step {
    margin-right: 10px;
    color: #ffffff87;
}

.step.active {
    color: #fff;
}

.cartBlock {
    width: 792px;
    margin: 0 auto;
    color: #fff;
}

.cartTitle {
    font-size: 22pt;
    font-weight: bold;
    position: relative;
}

.cartClose {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

    .cartClose::before, .cartClose::after {
        content: "";
        position: absolute;
        width: 20px;
        height: 3px;
        background: #fff;
        top: 9px;
        background-color: #fff;
    }

    .cartClose::before {
        transform: rotate(-45deg);
    }

    .cartClose::after {
        transform: rotate(45deg);
    }

    .cartClose:hover::before, .cartClose:hover::after {
        background-color: #a98a84;
    }

.cartIsEmpty {
    font-size: 15pt;
    text-align: center;
    font-weight: bold;
}

.iGotPromo {
    margin: 10px auto;
    cursor: pointer;
    width: fit-content;
    border-bottom: 1px dashed;
}

.iGotPromo:hover {
    border-bottom: 1px solid;
}

.promoButton {
    background-color: #694d493b;
    width: 60px;
    border-radius: 20px;
    cursor: default;
    height: 25px;
    position: relative;
}

.promoButton.active {
    background-color: #694d49c2;
    cursor: pointer;
}

.promoBlock {
    display: none;
    width: 305px;
    margin: 10px auto;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    border-radius: 15px;
    font-size: 14pt;
    align-items: center;
}

.promoText {
    padding-left: 10px;
}

.promoBlock input {
    border: none;
    outline: none;
    width: 130px;
    font-size: 14pt;
    padding: 0 10px;
}

.promoButton::before, .promoButton::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 3px;
    background: #fff;
    top: 15px;
    background-color: #a98a84;
    left: 25px;
}

.promoButton::before {
    transform: rotate(45deg);
    top: 8px;
}

.promoButton::after {
    transform: rotate(-45deg);
}

.promoButton.active:hover::before, .promoButton.active:hover::after {
    background-color: #fff;
}

.cartElementBottom .flexBlock {
    width: 150px;
    padding: 10px 0;
}

.cartElementTop {
    display: flex;
    justify-content: flex-start;
    padding: 0 25px;
}

.elementName {
    font-size: 15pt;
}

.cartElementBottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}

.cartElementPrice {
    font-size: 16pt;
}

.cartElement {
    padding: 15px 0;
}

.cartElementTop img {
    width: 100px;
    height: 100px;
    margin-right: 25px;
}

.goNext {
    display: flex;
    margin: 20px auto 0 auto;
    width: calc(100% - 90px);
    justify-content: space-between;
    font-size: 20pt;
    border: 1px solid #000000;
    background-color: #694d4966;
    border-radius: 30px;
    padding: 5px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.goNext:hover {
    background-color: #694d49;
}

.step.complete {
    color: #66cf82;
}