.menu-loader {
    width: 20em;
    height: 20em;
    font-size: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-loader .face {
    position: absolute;
    border-radius: 50%;
    border-style: solid;
    animation: animate 3s linear infinite;
}

.menu-loader .face:nth-child(1) {
    width: 100%;
    height: 100%;
    color: gold;
    border-color: currentColor transparent transparent currentColor;
    border-width: 0.2em 0.2em 0em 0em;
    --deg: -45deg;
    animation-direction: normal;
}

.menu-loader .face:nth-child(2) {
    width: 70%;
    height: 70%;
    color: lime;
    border-color: currentColor currentColor transparent transparent;
    border-width: 0.2em 0em 0em 0.2em;
    --deg: -135deg;
    animation-direction: reverse;
}

.menu-loader .face .circle {
    position: absolute;
    width: 50%;
    height: 0.1em;
    top: 50%;
    left: 50%;
    background-color: transparent;
    transform: rotate(var(--deg));
    transform-origin: left;
}

.menu-loader .face .circle::before {
    position: absolute;
    top: -0.5em;
    right: -0.5em;
    content: '';
    width: 1em;
    height: 1em;
    background-color: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 2em,
    0 0 4em,
    0 0 6em,
    0 0 8em,
    0 0 10em,
    0 0 0 0.5em rgba(255, 255, 0, 0.1);
}

@keyframes animate {
    to {
        transform: rotate(1turn);
    }
}







#e-namad {
    width: 120px;
    height: 135px;
    border-radius: 7px;
    background: #b9b9b9;
    padding: 10px;
    display: flex;
    margin: 15px auto;
    align-items: center;
    justify-content: center;
}
#e-namad a{
    margin-bottom: 0;
}
#e-namad img{
    max-width:125px;
}

.copyright ul {
    text-align: right;
}
.footer {
    padding-bottom: 0;
}





input.code-input::-webkit-outer-spin-button,
input.code-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.code-input {
    -moz-appearance: textfield;
}




img.edit-customer-address-location-modal{
    width: 25px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    margin: 5px 70px;
    font-size: 20px;
    cursor: alias;
    z-index: 10;
}
@media (max-width: 600px){
    img.edit-customer-address-location-modal{
        margin: 5px 80px;
    }
}



.my-modal{
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    background-color: #4a4a4abd;
    z-index: 1040;
    align-items: center;
    justify-content: center;
    display: flex;
    opacity: 0;
    transform: scale(0);
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.my-modal.active{
    opacity: 1;
    transform: scale(1);
}

.my-modal-content{
    width: 350px;
    height: auto;
    background: #0000008c;
    padding: 35px 40px;
    border-radius: 10px;
    border: 1px solid #b3b3b3;
}

.online-call {
    background-position: 260px;
}

.add-cart{
    font-size: 15px;
}
















/*-----------------------------  PRE LOADER ------------------------*/
#my-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: #3f51b53d;
}
#my-loader {
    display: block;
    position: relative;
    right: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#my-loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #BA55D3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#my-loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FF00FF;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@media (min-width: 1200px){
    .container {
        max-width: 1200px;
    }
}

@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes  spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/*-----------------------------  PRE LOADER ------------------------*/







*{
    transition: all;
    transition-duration: 300ms;
}

.modal-content{
    padding: 0;
}















.customer-addresses-label h3 {
    font-size: 17px !important;
    color: #696969;
}
.customer-addresses-label span {
    color: #262626;
}
input[type="radio"].customer-addresses-radio:checked + label h3{
    color: #3a3a3a;
}
input[type="radio"].customer-addresses-radio:checked + label span{
    color: #fff;
}

input[type="radio"].customer-addresses-radio:checked + label::after {
    font-size: 20px !important;
    top: -15px !important;
    height: 40px !important;
    width: 40px !important;
    line-height: 40px !important;
}
/* ---------------   START   for custom input label with animate   START  ---------------------  */
table{
    text-align: center;
}
.form-group{
    position: relative;
}
.float-label{
    position: absolute;
    top: 9px;
    right: 15px;
    cursor: text;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition:    all .3s ease-in-out;
    -o-transition:      all .3s ease-in-out;
    -ms-transition:     all .3s ease-in-out;
    transition:         all .3s ease-in-out;
    color: #b1b1b1;
}
.input-with-float-label:focus ~ .float-label,
.input-with-float-label:not(:placeholder-shown) ~ .float-label,
.selectbox-float-label{
    top: -18px;
    right: 15px;
    font-size: 12px !important;
    /*z-index: 0;*/
    z-index: 70;
    color: #424242;
}
.selectbox-float-label{
    position: absolute;
}
.input-with-float-label:focus ~ .float-label::after,
.input-with-float-label:not(:placeholder-shown) ~ .float-label::after,
.selectbox-float-label::after {
    content: " ";
    display: block;
    position: absolute;
    background: #fff;
    /*height: 3px;*/
    /*margin-top: 1px;*/
    height: 2px;
    margin-top: 2px;
    top: 50%;
    left: -.2em;
    right: -.2em;
    z-index: -1;
}
.input-with-float-label{
    text-align:center;
}
/* ---------------   END   for custom input label with animate   END  ---------------------  */

img.edit-customer-address-location-modal{
    width: 25px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    margin: 5px 70px;
    font-size: 20px;
    cursor: alias;
    z-index: 10;
}
@media (max-width: 600px){
    img.edit-customer-address-location-modal{
        margin: 5px 80px;
    }
}

#map {
    height: 450px;
    width: 100%;
}
.map-popup{
    font-family: IRANSans;
}
#bx-current-location{
    width: 35px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10000;
    margin: 15px 25px;
    fill: #5f5f5f;
    cursor: pointer;
}
.info-current{
    font-size: 13px;
    color: black;
}

#btn-show-address-part > span{
    padding: 0.55rem 0.75rem 0.3rem;
}
input[type="radio"].customer-addresses-radio {
    display: none;
}
input[type="radio"].customer-addresses-radio:not(:disabled) ~ label {
    cursor: pointer;
}
input[type="radio"].customer-addresses-radio:disabled ~ label {
    color: rgba(188, 194, 191, 1);
    border-color: rgba(188, 194, 191, 1);
    box-shadow: none;
    cursor: not-allowed;
}
.customer-addresses-label {
    height: 100%;
    display: block;
    background: white;
    border: 2px solid rgba(32, 223, 128, 1);
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 0px 3px 10px -2px rgba(161, 170, 166, 0.5);
    position: relative;
}
input[type="radio"].customer-addresses-radio:checked + label {
    background: rgba(32, 223, 128, 1);
    color: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 20px rgba(0, 255, 128, 0.75);
}
input[type="radio"].customer-addresses-radio:checked + label::after {
    color: rgba(61, 63, 67, 1);
    font-family: FontAwesome;
    border: 2px solid rgba(29, 201, 115, 1);
    content: "\f00c";
    font-size: 24px;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0px 2px 5px -2px rgba(0, 0, 0, 0.25);
}
.customer-addresses-text {
    font-weight: 900;
}
@media  only screen and (max-width: 700px) {
    section {
        flex-direction: column;
    }
}

.customized-fieldset{
    border: 1px dashed #797979;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}
.customized-fieldset > legend{
    all: revert !important;
    padding: 0 5px;
    width: auto;
    font-size: 17px;
}
#customer-addresses-row > .col-lg-6 {
    position: relative;
}


.update-customer-address-modal,.delete-customer-address-modal,.edit-customer-address-location-modal {
    position: absolute;
    top: 0;
    left: 0;
    margin: 16px 50px;
    font-size: 20px;
    cursor: alias;
    z-index: 10;
}

.delete-customer-address-modal {
    margin: 15px 25px;
}

.edit-customer-address-location-modal{
    margin: 15px 78px;
}


#map-modal{
    min-height: 500px;
}

@media only screen and (max-width: 600px) {
    .update-customer-address-modal,.delete-customer-address-modal,.edit-customer-address-location-modal {
        font-size: 25px;
    }

    .update-customer-address-modal{
        margin: 16px 55px;
    }

    .edit-customer-address-location-modal{
        margin: 15px 90px;
    }

    #map {
        height: 350px;
    }

    #map-modal{
        min-height: 300px;
    }
}

.form-group{
    font-size: 15px;
}
.form-group textarea{
    min-height: 70px;
}





.my-modal{
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    background-color: #4a4a4abd;
    z-index: 1040;
    align-items: center;
    justify-content: center;
    display: flex;
    opacity: 0;
    transform: scale(0);
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.my-modal.active{
    opacity: 1;
    transform: scale(1);
}

.my-modal-content{
    width: 350px;
    height: auto;
    background: #0000008c;
    padding: 35px 40px;
    border-radius: 10px;
    border: 1px solid #b3b3b3;
}


input.code-input::-webkit-outer-spin-button,
input.code-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.code-input {
    -moz-appearance: textfield;
}



body,input,textarea{
    font-family: IRANSans !important;
}

.nav-cart-count {
    color: white;
    width: 20px;
    height: 20px;
    background: #fd9d3e;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    margin: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding-top: 3px;
}

.special-tab .nav-tabs li a {
    font-size: 13px;
    padding: 13px 20px;

}



.opening-hours ul {
    max-width: 300px;
}









/* ************** START card pre loader START ******************* */
:root {
    --loading-grey: #c9c9c9;
}

.pre-loader-card {
    width: 270px;
    background-color: transparent;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .12);
}

.pre-loader-card > .pre-loader-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}

.loading .pre-loader-image,
.loading h4,
.loading .pre-loader-button,
.loading.category-tabs-pre-loader{
    background-color: var(--loading-grey);
    background: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, .5) 50%,
        rgba(255, 255, 255, 0) 60%
    ) var(--loading-grey);
    background-size: 200% 100%;
    background-position-x: 180%;
    animation: 1s loading ease-in-out infinite;

}
.pre-loader-image{
    border-radius: 50% !important;
}

@keyframes loading {
    to {
        background-position-x: -20%;
    }
}

.category-tabs-pre-loader{
    height: 45px;
    border-radius: 50px;
    margin-bottom: 50px;
}

.pre-loader-card .pre-loader-content {
    padding: 2rem 0.4rem;
}
.pre-loader-card.loading h4 {
    margin: 0 0 1rem;
    min-height: 1.6rem;
    border-radius: 4px;
    animation-delay: .05s;
}

.pre-loader-card.loading .pre-loader-button {
    min-height: 40px;
    margin: 0 20px;
    border-radius: 70px;
    animation-delay: .06s;
}
/* ************** END card pre loader END ******************* */





.menu-image{
    border-radius: 10px;
}
@media only screen and (max-width: 600px) {
    .menu-box{
        margin-bottom: 25px;
    }
    .pre-loader-card{
        width: 100%;
    }
    .pre-loader-image{
        width: 90% !important;
    }
    .number .minus, .number .plus {
        width: 23px;
        height: 23px;
    }
}

.cart-totals .totals , .cart-sub-totle{
    color: #595959 !important;
    font-weight: bold;
}




.apply-coupon {
    margin-bottom: 10px;
}

.apply-coupon div input {
    height: 40px;
}
.apply-coupon div button {
    cursor: auto;
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
    min-height: 40px;
}

.menu-box .menu-img{
    width: 270px;
    height: 270px;
    padding:10px;
}


@media (max-width: 600px)  {
    .menu-box .menu-img{
        width: 160px;
        height: 160px;
    }
    .add-cart {
        font-size: 12px;
    }
    .menu-img > .menu-part-products {
        font-size: 10px !important;
    }
    .menu-title {
        font-size: 13px !important;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.menu-box .menu-img img {
    border-radius: 50%;
    border:2px solid white;
    /*box-shadow: 5px 5px 5px white;*/

}

.add-cart{
    background: none;
    color: #fd9d3e;
}
.add-cart a{

    color: #fd9d3e;
}
.add-cart:hover{
    background: #fd9d3e;
}
.add-cart:hover a{
    color: black;
}

.menu-img .menu-image {
    width: 100%;
    height: unset;
}






#menu a.nav-icon{
    display: none;
}

@media (max-width: 600px) {
    .navbar-toggle span {
        width: 80% !important;
        margin-right: 20%;
        background:#fd9d3e;
    }
    .navbar-toggle span:before, .navbar-toggle span:after{
        background:#fd9d3e;
    }

    #menu{
        left: -140px !important;
        background: #000000bd;
        right: unset !important;
        border-radius: 50px;
        height: 0 !important;
        -moz-transition: all 400ms ease;
        -webkit-transition: all 400ms ease;
        -o-transition: all 400ms ease;
        transition: all 400ms ease;
        width: 60px;
    }

    #menu.show a.nav-icon{
        display: block;
    }
    #menu.show {
        margin: 30px 11px !important;
        left: 0 !important;
        height: fit-content !important;
    }
    #menu a.page-scroll{
        display: none;
    }
    .nav-icon svg{
        stroke: white;
        width: 30px;
        height: 20px;
        fill: white;
    }
    .navbar-collapse > ul {
        padding-bottom: 20px;
    }
}
@media (max-width: 600px) {
    .section-heading.section-heading-left{
        margin-top:45px ;
    }
}









.address-box {
    display: flex;
    border: 2px solid #e7e7e7;
    padding:15px;
    border-radius: 10px;
    gap: 15px;
    justify-content: center;
    align-items: center;
}
.address-box.form{
    display: none;
}
.address-box.selectable,.address-box.add{
    cursor: pointer;
}
.address-box.default  {
    border-color: #62cf67a1;
}
.address .default-text{
    color:#15831aa1 ;
}
.check-or-not svg:first-child,.address-box .address .default-text:first-child{
    display: none;
}
.address-box.default .check-or-not svg:first-child,.address-box.default .address .default-text:first-child {
    display: block;
}
.address-box.default .check-or-not svg:nth-child(2) {
    display: none;
}
.success-svg{
    fill:#049a0ba1 !important; ;
}
.address-box svg {
    width: 23px;
    fill: #4b6ba3;
}
.address-box  .operation-icon {
    cursor: pointer;
}
.address-icon{
    padding: 10px;
    cursor: default;
}
.address-icon svg{
    cursor: pointer;
}
.address-icon svg:last-child{
   fill: #e76262;
}
@media (max-width: 600px) {
    .address-lists div{
        font-size: 14px;
    }
    .address-box {
        gap: 5px;
    }
}
#btn-addresses-cart{
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    border: 1px solid #d1d1d1;
    font-size: 15px;
    text-align: start;
    padding: 7px 10px;
}
#btn-addresses-cart .arrow svg{
    width: 15px;
}
#btn-addresses-cart.expanded svg{
    transform: rotate(180deg);
    transition: all 600ms ease-in-out;
}
#user-addresses-cart {
    transition: all 400ms linear;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
}
#user-addresses-cart li{
    width: 100%;
    font-size: 13px;
    padding: 0 10px;
    cursor: pointer;
}
#user-addresses-cart li.selected{
    background: #f1f1f1;
}
#user-addresses-cart li:not(:last-child){
    border-bottom: 1px solid #d1d1d1 ;
}
#user-addresses-cart li:hover{
    background: #fbb200;
    color: white;
}
#btn-addresses-cart.expanded + ul {
    max-height:400px ;
    border: 1px solid #d1d1d1;
}
#user-addresses-cart li:last-child{
    display: flex;
    color: #fbb200;
    text-align: center;
    justify-content: space-between;
}
#user-addresses-cart li:last-child:hover{
    color: white;
}
#user-addresses-cart li:last-child svg{
    width: 20px;
    fill: #fbb200;
}

#new-address{
    text-align: start;
    font-size: 15px;
    border-color: #fbb200;
}
#new-address-box{
    display: none;
}

#user-addresses-cart li:last-child:hover svg{
    fill: white;
}

#confirm-address{
    cursor: pointer;
    border-radius: 10px;
    color: #fff;
    background: #fbb200;
    font-size: 12px;
    padding: 5px 13px;
    margin-bottom: 2px;
    box-sizing: content-box;
}






.menu-box{
    position: relative;
}



.menu-img.active img{
    transform: rotateY(180deg);
}
.menu-img.active > .menu-part-products{
    transform: rotateY(0);
}

.menu-img > .menu-part-products {
    background: #121619;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 50%;
    color: white;
    gap: 4px;
    border: 2px solid white;
}
.menu-part-products, .menu-img > .menu-image {
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    right: 0;
}
