/*   RunCafe   */

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'IranSansWeb';
    src: url('../Fonts/IRANSansWeb.woff2') format('woff2'), url('../Fonts/IRANSansWeb.woff') format('woff'), url('../Fonts/IRANSansWeb.ttf') format('truetype');
}

body {
    font-family: IranSansWeb;
    font-size: 16px;
}

.clearfix {
    clear: both;
    margin: 0;
    padding: 0;
}

/* ------- loading ------- */
.loading {
    width: 100vw;
    height: 100vh;
    background-color: #092c28;
}

.loading-text {
    width: 100%;
    /*height: 100%;*/
    text-align: center;
    padding-top: 25vh;
    font-size: 9vw;
    font-weight: 700;
    color: #81BEB8;
    margin-bottom: 3vw;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 100%;
    /*   height: 80px;*/
}

    .lds-ring div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        left: 44vw;
        width: 11vw;
        height: 11vw;
        margin: 8px auto;
        border: 1.3vw solid #fff;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #81BEB8 transparent transparent transparent;
    }

        .lds-ring div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .lds-ring div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .lds-ring div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* ------- nav ------- */
nav {
    background-color: #092c28;
    padding: 5px;
    width: 25%;
    max-width: 120px;
    text-align: center;
    float: right;
    position: fixed;
    height: 100vh;
}

.header {
    /*max-height: 142px;*/
}

.header-logo-img {
    width: 65%;
    /*height: 90px;*/
    /*background-color: #fff;*/
    border: none;
    /*border-radius: 50px;*/
    display: block;
    margin: 0 auto 5px;
    padding: 5px;
    background-size: contain;
}

.header-logo-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 7px auto 5px;
}

.header-logo-type {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

#header-divider {
    height: 2px;
    margin: 5px 0 !important;
}

.navbar-swiper {
    background-color: #092c28;
    border-bottom: 1px solid #9f0000;
    /* margin: 10px 0;
    padding: 10px 0; */
    height: calc(100vh - 63vw);
    min-height: 350px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #092c28;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    width: 100% !important;
    height: 87px !important;
    position: relative;
    border-radius: 10px;
    margin: 0 auto;
}

    .swiper-slide:active {
        background-color: #00302a;
    }

.swiper-slide-link {
    text-decoration: none;
    color: #fff;
    margin-bottom: 5px;
}

.swiper-slide-link-content {
    display: flex;
    justify-content: center;
}

.swiper-slide img {
    display: block;
    width: 95%;
    max-width: 52px;
    /* height: 60%; */
    object-fit: cover;
    margin-top: 10px;
}

/* .swiper-slide > a > img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-top: 5px;
} */

.swiper-slide-title {
    display: block;
    position: absolute;
    margin: 0 2px;
    bottom: 7px;
    /*font-size: 3vw;*/
    font-size: 11px;
    font-weight: 500;
}

/* ------- main ------- */
main {
    background-color: black;
    width: 75%;
    min-width: calc(100% - 120px);
    float: left;
}

.category-items {
    margin: 0 auto;
    text-align: center;
    padding: 10px;
}

.category-items-title-line {
    height: 3px;
    background-color: #A8A8A8;
    /* display: inline-block; */
    width: 98%;
    margin: 0 auto;
}

.category-items-title {
    color: #9f0000;
    background-color: black;
    display: inline-block;
    font-weight: 700;
    font-size: 23px;
    /* position: relative;
    bottom: 23px; */
    margin: 15px auto 20px;
    border-bottom: 2px solid #a8a8a8;
    padding-bottom: 5px;
}

.item-card {
    background-color: black;
    /*   background-image: linear-gradient(to left, rgba(71,4,4,1),rgba(255,255,255,0.6));*/
    border-radius: 5px;
    /* height: 120px; */
    width: calc(calc(100% / 2) - 10px);
    position: relative;
    margin: 0 5px 15px;
    /* border: 3px solid #B89C40; */
    float: right;
    display: inline-block;
    border: 1px solid #a8a8a8;
}

.item-card-out-of-stock {
    background-image: url("../Images/FoodIsOver.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
    width: calc(calc(100% / 2) - 24px);
    position: relative;
    margin: 0 5px 15px;
    border: 3px solid #B89C40;
    float: right;
    display: inline-block;
    opacity: 0.3;
}

.item-card-content {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100px;
}

.item-card-img {
    display: block;
    height: 90px;
    margin: 5px;
    border-radius: 5px;
    float: right;
    width: 90px;
}

.item-card-details {
    float: left;
    text-align: right;
    width: calc(100% - 100px);
    position: relative;
    height: 100px;
    padding: 10px;
}

.item-card-details-whitout-image {
    float: left;
    text-align: right;
    width: 100%;
    position: relative;
    height: 100px;
    padding: 10px;
}

.item-card-title {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.item-card-description {
    color: #c3c3c3;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    padding: 2px 7px 7px 10px;
    text-align: right;
}

.item-card-price {
    color: #fff;
    position: absolute;
    bottom: 5px;
    margin: 0;
}

.item-card-price-from {
    color: #c3c3c3;
    font-size: 13px;
    font-weight: 500;
}

.item-card-price-number {
    font-size: 15px;
    font-weight: 500;
}

.item-card-price-currency {
    color: #c3c3c3;
    font-size: 13px;
    font-weight: 500;
}

/* ------- accordion ------- */
.accordion {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-border-color: none;
}

.accordion-item {
    border: none;
    background-color: #434344;
}

.accordion-header {
    border: none;
}

.accordion-button {
    padding: 6px 12px;
    background-color: #434344;
    color: #fff;
}

    .accordion-button:not(.collapsed) {
        color: #fff;
        background-color: #434344;
    }

    .accordion-button:focus {
        border: none;
        box-shadow: none;
    }

.accordion-button-p {
    padding: 0;
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.accordion-button-span {
    padding: 0;
    margin: 0;
    color: #037064;
    font-size: 14px;
    font-weight: 600;
}

.accordion-collapse {
    color: #fff;
}

.accordion-body {
    padding: 6px 12px;
}

.accordion-body-item-name {
    padding: 0;
    margin: 0;
    float: right;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.accordion-body-item-price {
    padding: 0;
    margin: 0;
    float: left;
    color: #037064;
    font-size: 14px;
    font-weight: 600;
}

.accordion-body-item-price-currency {
    color: #037064;
    font-size: 12px;
    font-weight: 600;
}

.accordion-body-item-divider {
    border-bottom: 2px dashed #4f4f4f;
    margin: 7px 0;
}

    .accordion-body-item-divider:nth-last-of-type(1) {
        display: none;
    }


/* ------- payanita team ------- */
#about-payanita-divider {
    width: 100%;
    height: 3px;
    background-color: #fff;
    margin: 15px 0;
}

#about-payanita {
}

#about-payanita-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

#about-payanita-link {
    text-decoration: none;
    color: #037064;
    font-size: 16px;
    font-weight: 500;
}


/* ------- shop cart ------- */
.add-to-shopCart {
    position: absolute;
    left: 10px;
    bottom: 3px;
    color: white;
    font-size: 14px;
    border: 2px solid white;
    border-radius: 7px;
    padding: 5px;
    display: none;
}


/* ------- offcanvas ------- */
#haeder-link {
    text-decoration: none;
}

.offcanvas-header {
    padding: 20px 20px 0 0;
}

.offcanvas-body {
    padding: 0;
}

.header-modal-logo {
    border-bottom: 2px solid black;
}


/* ------- media ------- */
@media (max-width:767.98px) {
    .item-card {
        width: 100%;
        margin: 0 auto 15px;
    }

    .item-card-out-of-stock {
        width: 100%;
        margin: 0 auto 15px;
    }
}
