@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
}

.btw_btn {
    font-size: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}

body::-webkit-scrollbar {
    width: 0.5em;
}

body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    outline: 1px solid black;
}

.cart_fixed::-webkit-scrollbar {
    width: 0.5em;
}

.cart_fixed::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.cart_fixed::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}

.cart_table_main::-webkit-scrollbar {
    width: 0.5em;
}

.cart_table_main::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.cart_table_main::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}

.categories_bar::-webkit-scrollbar {
    /*width: 0.5em;*/
    height: 0.4em;
}

.categories_bar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.categories_bar::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}


#wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    max-width:1920px;
    margin:0 auto;
}

header {
    width: 100%;
    height: auto;
    /*  background: linear-gradient( rgba(0, 0, 0, 0.81), rgba(47, 47, 48, 0.8) ),url('../media/header.jpg') no-repeat center; 
    background-size: cover;*/
    background-color: var(--header-color);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 110;
}

.nav_bar {
    width: 95%;
    height: 100%;
    margin: 0 auto;
}
.logo_div {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}
nav {
    padding-bottom: 0;
    width: 100%;
    height: 100%;
    padding: 16px 0;
    padding-top: 22px;
}

nav ul {
    width: 100%;
    border-left: 1px solid white;
    padding-left: 15px;
    margin-top: 3px;
}

nav ul li {
    display: inline-block;
    margin: 0 12px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    color: white;

}

nav ul li a {
    color: white;
    cursor: pointer;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
    -ms-transition: 0.2s all ease;
}

nav ul li a:hover {
    color: #cacaca;
    text-decoration: none;
}

.nav_btn_div {
    display: none;
    padding-right: 10px;
}

.nav_btn {
    float: right;
    width: 44px;
    height: 34px;
    border: 1px solid var(--primary-color);
    border-radius: 3px;
    padding: 9px 10px;
    padding-top: 5px;
    cursor: pointer;
}

.nav_btn .line {
    width: 100%;
    height: 2px;
    border-radius: 10px;
    margin: 4px 0;
    background-color: white;
}

/* header end */


/*content start*/

.content {
    width: 100%;
    min-height:335px;
}


.categories_bar {
    width: 75%;
    overflow: auto;
    background-color: white;
    padding: 0 20px;
    position: relative;
    top: 79px;
    margin: 0;
    box-shadow: 0.5px 0.5px 10px #d3d3d3;
    z-index: 100;
}

.categories_main_div {
    width: max-content;
    overflow: auto;
    text-align: center;
    padding: 0;
    margin: 0;
    position: relative;

}

.categories_main_div ul {
    width: 100%;
    margin: 0;
    padding: 0;

    float: left;
}

.categories_main_div ul li {
    display: inline-block;
    cursor: pointer;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    font-size: 12px;
    padding: 15px 10px;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    -moz-transition: 0.2s all ease-in-out;
    -ms-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    border-bottom: 3px solid white;
}

.categories_main_div ul li:hover {
    font-weight: bold;
    border-bottom: 3px solid var(--primary-color);
}

.active_category {
    font-weight: bold;
    border-bottom: 3px solid var(--primary-color) !important;
}


.cart_fixed {
    overflow: auto;
    width: 25%;
    height: 100%;
    position: fixed;
    right: 0;
    top: 75px;
    background-color: white;
    box-shadow: 0.2px 0.2px 10px lightgrey;
    padding: 10px;
    z-index: 100; 
}

.close_cart {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 20px;
    font-weight: thin;
    display: none !important;
}

.cart_fixed h3 {
    color: black;
    font-size: 22px;
    text-align: center;

}

.cart_table_main {

    max-height: 200px;
    overflow: auto;
}

.cart_table {
    width: 100%;
    overflow: auto;
}

.cart_table tr th:first-child {
    width: 40%;
}

.cart_table tr th:nth-child(2) {
    width: 30%;
}

.cart_table tr th:last-child {
    width: 30%;
}

.cart_table tbody tr td:first-child {
    width: 40%;
    font-size: 10px;
}

.cart_table tbody tr td:nth-child(2) {
    width: 30%;
    font-size: 12px;
}

.cart_table tbody tr td:last-child {
    width: 30%;
    font-size: 12px;
}

.cart_table tr {
    cursor: pointer;
    font-size: 14px;
    margin: 10px 0;
}

.qty_minus,
.qty_plus {
    margin: 0 4px;
    padding: 4px;
    color: var(--primary-color);
    cursor: pointer;
}

.cart_totals {
    width: 100%;
    /*border-top: 1px solid #eee;*/

}

.cart_totals tr {
    cursor: pointer;
    font-size: 14px;
    margin: 0;
    padding: 0;
}

.cart_totals tr td {
    padding-top: 0;
    padding-bottom: 0;
}

.cart_mobile {
    width: 100%;
    height: 50px;
    background-color: var(--primary-color);
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
    z-index: 200;
    padding: 10px 15px;
}

/*.cart_mobile p{
    width:100%;
    margin:0;
    text-align: center;
    }*/
/*.cart_mobile .row .fa-shopping-bag{
    color: white;
    padding: 5px;
    font-size: 20px;
    text-align: left;
}
*/
.cart_mobile .row {
    margin: 0;
}

.cart_mobile .row div {
    color: white;
    padding: 5px;
    font-size: 14px;
    text-align: left;
    font-weight: 600;
}

/*.sticky{
    position: fixed;
    top: 0 !important;
    float: none;
}*/

.products_main {
    float: left;
    margin-top: 80px;
    width: 75%;
    background-color: #f3f3f3;
    padding: 10px 0;
    padding-top: 60px;
    /*height: 1000px;*/

}

.products_categ_wise {
    margin: 10px 0;
    width: 100%;
    padding-bottom: 20px;
    background-color: white;
}

.products_categ_wise h2 {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    padding: 20px;

    color: black;
    text-transform: uppercase;

}

.products_div_main {
    width: 90%;
    margin: 0 auto;
}

.products {
    width: 100%;
    border-top: thin solid #eee;
    padding: 20px;
    margin:10px 0px;
}

.products:last-child {
    border-bottom: thin solid #eee;
}

.products:hover {
    border: none;
    box-shadow: 1px 1px 15px #eee, -1px -1px 15px #eee;
}

.product_title {
    width: 100%;
    font-size: 17px;
    font-weight: bold;
}

.product_description {
    width: 100%;
    margin: 0;
    font-size: 14px;
    color: gray;
    font-style: italic;
}

.product_price {
    width: 100%;
    height: auto;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.add_btn {
    padding: 4px;
    background-color: var(--primary-color);
    color: white;
    /*padding-top: 6px;*/
    /*border-radius: 2px;*/
    cursor: pointer;
    transition: 0.2s all ease-in-out;
    -webkit-transition: 0.2s all ease-in-out;
    -moz-transition: 0.2s all ease-in-out;
    -ms-transition: 0.2s all ease-in-out;
    -o-transition: 0.2s all ease-in-out;
    font-size: 12px;
    min-width: 22px;
    max-width: 22px;
    text-align: center;
}

.add_btn:hover {
    box-shadow: 1px 1px 10px lightgray;
}

.add_btn:active {
    transform: translate(1px, 1px);
}

.product-qty,
.deal-qty {
    padding: 3px;
    background: white;
    font-size: 12px;
}

.qty-main {
    height: max-content;
    display: flex;
    /*width: 80px;*/
    min-width: 80px;
    justify-content: center;
    border: 1px solid var(--primary-color);
    margin: 0;
}

.qty-main i,
.qty-main span {
    flex: 1;
    text-align: center;
}


/*content end*/


/*footer start*/

footer {
    float: left;
    width: 100%;
    height: auto;
    background: var(--footer-color);
    padding-top: 10px;
    padding-bottom: 20px;
}

.footer_para {
    font-weight: bold;
    color: #929292;
    text-align: center;
    width: 100%;
    margin-top: 0;
}

.footer_para a i {

    -webkit-transition: 0.2s all ease-in-out;
}

.footer_para a:hover {
    text-decoration: none;
}

.footer_para a:hover i {
    color: var(--primary-color) !important;
    font-size: 22px;
}

footer small {
    width: 100%;
    color: #ababab;
    text-align: center;
}

footer small a {
    color: white;
    font-weight: bold;
}

footer small a:hover {
    color: white;
}


/* loader */
.fullpage_loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
    padding-top: 10%;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    display: none;
}

.lds-hourglass {
    display: inline-block;
    position: relative;
    margin: 0 auto;
    width: 80px;
    height: 80px;
}

.lds-hourglass:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: 8px;
    box-sizing: border-box;
    border: 32px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    100% {
        transform: rotate(1800deg);
    }
}


#delivery_zone_modal {
    z-index: 1041;
}

.modal-body h4 {
    font-size: 14px;
    font-weight: bold;
}

.modal-body p {
    font-size: 12px;
}


/* checkout page */
.checkout_section {
    width: 80%;
    margin: 80px auto;
}

.checkout_cart {
    float: left;
    width: 40%;
    padding: 20px;
}

.checkout_fields {
    float: left;
    width: 60%;
    padding: 20px;
}


.checkout_cart_indiv {
    width: 100%;
    min-height: 400px !important;
    height: 100%;
    box-shadow: 1px 1px 10px #d3d3d3;
    padding: 16px 10px;
}

.checkout_cart_indiv h4 {
    width: 100%;
    padding: 0 16px;
    font-size: 28px;
}

.checkout_cart_table {
    /*background: rgba(196,140,83,0.3); */
}

.checkout_cart_table thead {
    /*background-color: var(--primary-color);*/
    font-size: 12px;
    /*color: white;*/
}

.checkout_cart_table tbody tr td {

    font-size: 12px;
    font-weight: 600;
}


.checkout_cart_table tbody tr td:nth-child(2) {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
}

.checkout_cart_table tbody tr td:last-child {
    text-align: right;
}


.checkout_form {
    width: 100%;
    height: 100%;
    padding: 20px;
}

.coupon_div {
    width: 100%;
    height: auto;
    padding: 20px;
    font-size: 12px;
}

.coupon_indiv {
    display: flex;
}

.coupon_div h6 {
    font-size: 14px;
}

#coupon_code {
    border-radius: 40px;
    justify-content: space-between;
    outline: none;
    margin-right: 10px;
    font-size: 12px;
}

.coupon_indiv .btn {
    flex: 1;
    font-size: 12px;
    border-radius: 40px !important;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: var(--variant-color);
    outline: 0;
    box-shadow: 0.5px 0.5px 8px var(--variant-color);
}

.coupon_message {
    padding: 5px 0;
    margin: 0;
    width: 100%;
    text-align: center;
    display: none;
}

.coupon_discount {
    width: 100%;
    text-align: right;
    font-weight: 600;
    font-size: 14px;
    padding: 10px;
    display: none;
}

.coupon_discount p {
    margin: 0;
    padding: 0;
    width: 100%;
}

.coupon_discount p span {
    text-align: right;

}

.confirm_order {
    width: 100%;
    padding: 10px;
}

.confirm_order .btn {
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    display: flex;
    /*box-shadow: 0 0 0 0.3rem rgb(185, 21, 16,0.52);*/
}

.confirm_order .btn span:first-child {
    justify-content: space-between;
}

.confirm_order .btn span:last-child {
    flex: 1;
    text-align: right;
    justify-content: space-between;
}

.order_received_div {
    width: 80%;
    margin: 0 auto;
    background-color: #eee;
    text-align: center;
    padding: 20px;
    margin-top: 200px;
}

.order_received_div h2 {
    font-size: 24px;
    margin-top: 10px;
    font-weight: 600;
    text-align: center;
}

.back_to_cart {
    color: black;
    float: right;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
}

.back_to_cart:hover {
    color: var(--primary-color);
}

.back_to_cart_mobile {
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50px;
    padding: 8px 9px;
    width: 40px;
    height: 40px;
    box-shadow: 0.5px 0.5px 10px gray;
    border: 1px solid #A8845E;
    z-index: 1100;
    display: none;
}

.back_to_cart_mobile:hover {
    color: white;
}

.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /*display: flex;*/
    justify-content: space-between;
}

/* Hide the browser's default radio button */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input~.checkmark {
    background-color: #ccc;
    transition: 0.5s all ease-in-out;
}

/* When the radio button is checked, add a blue background */
.container input:checked~.checkmark {
    background-color: var(--primary-color);

    transition: 0.5s all ease;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked~.checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
    top: 4px;
    left: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: transparent;
}

.product-img img {
    cursor: pointer;  
    border-radius: 3px;
    -webkit-transition: 0.2s all ease;
    transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
    -ms-transition: 0.2s all ease;
    border: 1px solid #eee;
    /*max-width: 70px;*/
    width: 100%;
    
}

.product-img img:hover {
    transform: scale(1.1);
}

.product-card-desc {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.product-card-price {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.badge-primary {
    background-color: var(--primary-color);
}

.badge-secondary {
    background-color: var(--variant-color);
}
.addons_parent{
    flex-basis:100%;
}
.mode-btns{
    background-color: transparent;
    border-radius: 2px;
    border:1px solid lightgray;
    font-size:12px;
    padding:10px 5px;
    font-weight: 600;
    box-shadow: 0.5px 1px 5px #f3f3f3;
    -webkit-transition: 0.5s all ease;
    -moz-transition: 0.5s all ease;
    -ms-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
    outline: none;
}
.mode-btns:hover{
    background-color: var(--primary-color);
    color:white;
    box-shadow: 1px 1px 5px #e3e3e3;
}
.mode-selected{
    background-color: var(--primary-color);
    color:white;
    box-shadow: 1px 1px 5px #e3e3e3;
}
.mode-btns:disabled{
    background-color: rgb(168, 168, 168);
    cursor: not-allowed;
    color:white;
}


/* top banner */

.top_banner {
    width: 75%;
    overflow: auto;
    background-color: white;
    padding: 0;
    position: relative;
    top: 79px;
    margin: 0;
    box-shadow: 0.5px 0.5px 10px #d3d3d3;
    z-index: 100;
    text-align: center;
    background-position: center;
    background-size: 100% 100%;
    height:auto;
}

.top_banner .payment_methods span {
    background-image: url(../public/media/2020-07-20.png);
    display: inline-block;
    height: 43px;
    background-size: cover;
}

.top_banner .cash_on_delivery {
    background-position: 77px;
    width: 77px;
}

.top_banner .visa_card {
    background-position: 147px;
    width: 70px;
}

.top_banner .master_card {
    background-position: 215px;
    width: 68px;
}

.top_banner h1 {
    color: #fff;
    font-weight: 700;
    font-size: 56px;
}

.top_banner .top_contact {
    display: block;
    margin: 10px 0px;
    font-size: 1.5em;
    color: #fff;
}

.top_banner p {
    color: #fff; 
    font-size: 0.9rem;
    margin: 10px 0px;
    font-family: 'Poppins', sans-serif !important;
}

.categories_bar {
    /*top: 335px;*/
    top:80px;
    
}

.products_main {
    /*padding-top: 296px;*/
    padding-top: 0px;
    margin-top:20px;
}

.sticky {
    position: fixed !important;
    top: 0 !important;
}

.delivery_zone_background{
    background-color:#545151;
    position:fixed;
    width:100%;
    height:100%;
    overflow:hidden;
    z-index: 111;
}
.logo-container{
    text-align:center;
    margin-bottom: 1.2rem;
    
}
.d-footer {
    margin:10px 0;
    text-align: center;
}
.d-footer button{
        background-color: #6e87e6;
    padding: 0.5rem 4rem;
    color: #fff;
    border-radius: 20px;
    font-family: 'Raleway';
    text-transform: uppercase;
    position:relative;
}

.d-footer .btn>i{
   position: absolute;
    top: 30%;
    right: 10%;
}

.d-footer button:hover{
   border-color: #3d3d3d;
    padding: 0.5rem 4rem;
    color: #3d3d3d;
    background-color: #fff;
    font-weight: 600;
}
.d-modal-content select:focus{
    border-color: transparent;
    box-shadow: 0.5px 0.5px 20px #545151
}
.d-modal-content label{
    text-align:center;
    display:block;
    font-weight: 600;
}
 
.modal_msg_container span.fa-info-circle:before{
     font-size: 3rem;
}
   
.modal_msg_container p{
    font-size:1rem;
    font-weight:600;
    text-align:left;
}

#delivery_zone_modal{ 
    background: #000;
    background-image:url('../public/media/back_desktop.jpg');
    background-position: top left;
    background-size: cover;
}
#delivery_zone_modal .modal-content{
    border-radius: 20px;
    border: none;
    box-shadow: 2px 2px 10px rgb(0 0 0 / 20%);
}
.d-modal-content label{
   font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 1.4rem;
    margin-bottom: 1rem; 
}
.d-modal-content .subtext{
    display: block;
    color: #8c8e94;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
    margin: 1rem auto;
    width: 65%;
}

.d-modal-content .select-area{
     margin-bottom: 1rem;
    border-radius: 40px;
    height: 55px;
    padding: 1rem 1.5rem;
    text-indent: 2px;
      appearance:none;
    -moz-appearance:none; /* Firefox */
    -webkit-appearance:none; /* Safari and Chrome */
}
.select-container i{
   position: absolute;
    top: 40%;
    right: 5%;
    font-size: 1rem;
}
.select-container{
    position:relative;
   
}
 
#delivery_zone_modal .modal-body{
    padding:2em;
}
.footer_para small{
    color:#fff!important;
}

.percent-tag{
    position: absolute;
    right: 15px;
    background: #f00;
    color: #ffff;
    padding: .1em .6em;
    font-size: .8em;
    font-weight: 600;
    
}

.percent-tag.no-image{
    position: absolute;
    background: #f00;
    color: #ffff;
    padding: 1px .6em;
    font-size: .7em;
    font-weight: 600;
    top: -20px;
    left: -5px;
    right: auto;
    
}

 
@media only screen and (max-width:768px) {
    .top_banner {
        width: 65%;
    }
}

@media only screen and (max-width:600px) {
    .percent-tag{ 
    right: 0px;
        
    }
    .d-modal-content .subtext{
        width:100%;
    }
    #delivery_zone_modal{
    background-image:url('../public/media/back_mobile.jpg');
    background-position: top left;
    background-size: cover;
}
    .top_banner .cash_on_delivery {
    background-position: 62px;
    width: 62px;
}
    .top_banner .master_card {
    background-position: 175px;
    width: 54px;
}
    .top_banner .visa_card {
    background-position: 104px;
    width: 50px;
}
    .top_banner .payment_methods span{
            height: 30px;
    }
    .content{
        min-height:140px;
    }
    .top_banner {
        width: 100%; 
        position: relative;
        top: 0px;
        height:auto;
    }
    header {
        position: relative;
    }
    .top_banner h1 {
        font-size: 1.5rem;
    }
    .top_banner .top_contact {
        font-size: .9rem;
        margin: 2px 0px;
    }
    .top_banner p {
        margin: 5px 0px;
        font-size: .75rem;
        
    }
    .categories_bar {
        top: auto;
        position: relative;
    }
    .products_main {
        padding-top: 0px;
        margin: 0;
    }
    .padding45 {
        padding-top: 50px;
    }
}

@media only screen and (max-width:375px) {
    .top_banner .top_contact {
        font-size: 1rem;
    }
    .categories_bar {
        /*top: 260px;*/
    }
}


/* !top banner */


