/* ===================================
    General Style
=======================================*/
/* Loading container */
.loading-container{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.44);
    z-index: 2;
    display: none;
    justify-content: center;
    align-items: center;
}
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
    background-color: #fff !important;
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }
  
button{
    -webkit-appearance: none;
}
.theme-btn{
    color: #fff;
    border-radius: 5px;
    padding: 8px 35px 10px 35px;
    border: 2px solid #dfa700;
    transition: all ease-in-out 0.3s;
    display: inline-block;
    background: #dfa700;
    -webkit-appearance: none;
}
.theme-btn:hover{
    background-color: transparent;
    color: #dfa700;
}
/* products Card */
.product-card-container{
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}
.owl-carousel .product-card-container{
    height: auto;
    display: flex;
}
.product-card{
    /* width: 257px; */
    background-color: #fff;
    box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
    height: 100%;
}
.product-card-container .product-info{
    text-align: center;
    padding: 10px 0px;
    margin: 0px 5px;
    border-top: 1px solid #E4E7ED;
}
.product-card-container .product-info .category{
    text-transform: capitalize;
    font-size: 12px;
    color: #8D99AE;
}
.product-card-container .product-info .product-name{
    font-size: 16px;
    font-weight: 600;
    color: #444444;
    text-transform: capitalize;
    height: unset;
    margin-top: 5px;
}
.product-card-container .product-info .price{
    color: #dfa700;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}
.product-card-container .product-info .price .old-price{
    text-decoration: line-through;
    color: red;
}
/* overlayer loader */
.overlay-loader{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.567);
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
  }
  .lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgb(149, 149, 149);
    margin: -4px 0 0 -4px;
  }
  .lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
  }
  .lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
  }
  .lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
  }
  .lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
  }
  .lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
  }
  .lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
  }
  .lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
  }
  .lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
  }
  .lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
  }
  .lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
  }
  .lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
  }
  .lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
  }
  .lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
  }
  .lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
  }
  .lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
  }
  .lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
  }
  @keyframes lds-roller {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
/* ===================================
    Select City Style
=======================================*/
.select-city-section{
    width: 100%;
}
.select-city-section h1{
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    font-family: "Poppins", sans-serif;
}
.select-city-section .select-city-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.select-city-section .select-city-wrap .each-city-container{
    border: 2px solid #dfa700;
    padding: 40px 20px;
    border-radius: 8px;
    background-color: #fff;
    text-align: center;
    margin-top: 30px;
}
.select-city-section .select-city-wrap .each-city-container h3{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 35px;
}
.select-city-section .select-city-wrap .each-city-container p{
    font-size: 12px;
    word-break: break-word;
}
.select-city-section .select-city-wrap .each-city-container .theme-btn{
    padding-left: 60px;
    padding-right: 60px;
}
/* ===================================
    Product Page Style
=======================================*/
.products-section .products-wrap{
    padding: 0px 15px;
}
/* Filter Sections */
.products-section .search-section{
    margin-bottom: 20px;
}
.products-section .search-section .input-container{
    position: relative;
}
.products-section .search-section .input-container input{
    display: flex;
    width: 100%;
    padding: 15px 30px 15px 15px;
    height: unset;
}
.products-section .search-section .input-container input:focus{
    outline: none;
    box-shadow: none;
}
.products-section .search-section .input-container button{
    position: absolute;
    top: 0;
    bottom: 0;
    right: .375rem;
    margin-bottom: auto;
    background-color: unset;
    border: none;
}
.products-section .filter-section {
    margin-bottom: 15px;
}
.products-section .filter-section.search-section{
    display: flex;
}
.products-section .filter-section.search-section form{
    width: 100%;
}
.products-section .filter-section .filter-card{
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #E4E7ED;
}
.products-section .filter-section .filter-card h4{
    position: relative;
    border-bottom: 1px solid #E4E7ED;
    padding: 15px 15px 10px;
    margin-bottom: 0px;
    font-weight: 600;
}
.products-section .filter-section .filter-card .list{
    padding: 0px 15px;
    height: 340px;
    overflow-y: auto;
    scrollbar-color: rgb(68, 68, 68) rgb(100, 100, 100);
    scrollbar-width: thin;
}

.products-section .filter-section .filter-card .list::-webkit-scrollbar {
    width: 10px;
}

.products-section .filter-section .filter-card .list::-webkit-scrollbar-track {
    background: rgb(179, 177, 177);
}

.products-section .filter-section .filter-card .list::-webkit-scrollbar-thumb {
    background: rgb(136, 136, 136);
    border-radius: 10px;
}

.products-section .filter-section .filter-card .list::-webkit-scrollbar-thumb:hover {
    background: rgb(100, 100, 100);
    border-radius: 10px;
}

.products-section .filter-section .filter-card .list::-webkit-scrollbar-thumb:active {
    background: rgb(68, 68, 68);
    border-radius: 10px;
}

.products-section .filter-section .filter-card ul{
    padding-left: 0px;
}
.products-section .filter-section .filter-card ul li{
    list-style: none;
    border-bottom: 1px solid #E4E7ED;
    padding: 10px 10px;
}
.products-section .filter-section .filter-card .subCategory ul li{
    margin-left: 50px;
}
.products-section .filter-section .filter-card ul li a{
    color: inherit;
    cursor: pointer;
}
.products-section .filter-section .filter-card ul li span{
    margin-right: 10px;
    cursor: pointer;
}
.products-section .filter-section .filter-card ul li a.active{
    color: #dfa700;
}
.products-section .filter-section .subCategory{
    display: none;
}
.products-section .filter-section .subCategory.show{
    display: block;
}
.filter-button-container{
    display: none;
}
.filter-button-container button{
    background-color: transparent;
    border: 1px solid #ced4da;
    border-radius: 5px;
    margin-left: 5px;
    padding: 0px 15px;
}
.filter-button-container button:focus{
    outline: none;
}
#filter-products .modal-header{
    border: none;
}
#filter-products .modal-content{
    height: unset;
}
#filter-products .modal-body{
    padding-top: 0px;
}
#filter-products .products-section .filter-section .filter-card .list{
    height: 200px;
}
.modal .modal-body .products-section .filter-section .filter-card{
    border: none;
}
.product-list-container .load-more-container{
    display: flex;
    justify-content: center;
}
#filter-products{
    z-index: 99999;
}
#filter-products .modal-dialog{
    top: 0px;
}
#filter-products button.close span{
    color: #000;
}
#filter-products .products-section .filter-section:not(.show) .filter-card .list{
    height: 0px;
}
#filter-products .products-section .filter-section.show .filter-card .list{
    height: unset;
}
#filter-products .products-section .filter-section:not(.show) .filter-card h4{
    border: none;
}
#filter-products .products-section .filter-section .filter-card h4{
    cursor: pointer;
}
#filter-products .products-section .filter-section .filter-card h4::after{
    content: "\e876";
    font-family: 'Linearicons-Free';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}
#filter-products .products-section .filter-section.show .filter-card h4::after{
    content: "\e874";
}
/* ===================================
    Product preview Page Style
=======================================*/   
.product-view-section .product-img-container{
    width: 100%;
    overflow: hidden;
 
}
.product-view-section .product-img-container img{
    border-radius: 5px;
    margin: 5;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.26);
}
.product-view-section .product-info h1{
    font-size: 24px;
    text-transform: capitalize;
    margin: 2px 0 14px 0;
}
.product-view-section .product-info .price-info {
    border-bottom: 1px solid #c9c9c9;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.product-view-section .product-info .price-info p{
    color: #787676;
}
.product-view-section .product-info h2{
    font-size: 28px;
    font-weight: 600;
}
.product-view-section .product-info h2 span.old-price{
    color: red;
    position: relative;
}
.product-view-section .product-info h2 span.old-price::after{
    position: absolute;
    content: "";
    left: -1;
    right: -1;
    top: 48%;
    transform: translateY(-50%);
    background-color: red;
    height: 3px;

}
.product-view-section .product-info p{
    margin-bottom: 3px;
}
.product-view-section .other-product-info{
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #c9c9c9;
}
.product-view-section .quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 0px;
    margin-left: 0px;
    padding: 0px;
}
.product-view-section .other-products{
    margin-bottom: 10px;
}
.product-view-section .other-products .row{
    width: 100%;
    margin: 0;
}
.product-view-section .other-products .each-other-product-wrap{
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}

.qty{
    margin-top: 10px;
}
.quantity .pro-qty {
    width: 100px;
    border: 1px solid #ddd;
    padding: 0 10px;
    border-radius: 5px;
    float: left;
    display: flex;
}
.quantity .pro-qty span{
    font-size: 11px;
}
.quantity .pro-qty .qtybtn {
    width: 25px;
    display: flex;
    float: left;
    line-height: 30px;
    cursor: pointer;
    text-align: center;
    font-size: 18px;
    color: #404040;
    align-items: center;
    justify-content: center;
}
.quantity .pro-qty input {
    width: 28px;
    float: left;
    border: none;
    height: 40px;
    line-height: 40px;
    padding: 0;
    font-size: 1.25rem;
    text-align: center;
    background-color: transparent;
}
.other-products .each-other-product-container{
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.26);
}
.product-info button{
    margin-top: 20px;
}

/* ===================================
    Cart Page Style
=======================================*/
.cart-container .table-list .table-header ul{
    list-style: none;
    display: flex;
    width: 100%;
    background-color: #000;
    border-radius: 5px;
    padding: 0px;
}
.cart-container .table-list .table-header ul li{
    color: #fff;
    padding: 20px;
    font-weight: 600;
}
.cart-container .table-list .table-body ul{
    list-style: none;
    display: flex;
    width: 100%;
    border-radius: 5px;
    background-color: #fff;
    margin: 8px 0px;
    box-shadow: 1px 0px 6px rgba(0,0,0,30%);
    padding: 0px;
    margin-bottom: 15px;
}

.cart-container .table-list .table-body ul li{
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.cart-container .table-list .table-header ul li:nth-child(1), .cart-container .table-list .table-body ul li:nth-child(1) {
    width: 8%;
    padding: 15px 10px;
    margin-right: 10px;
}
.cart-container .table-list .table-header ul li:nth-child(2), .cart-container .table-list .table-body ul li:nth-child(2) {
    width: 40%;
}
.cart-container .table-list .table-header ul li:nth-child(3), .cart-container .table-list .table-body ul li:nth-child(3) {
    width: 16%;
}
.cart-container .table-list .table-header ul li:nth-child(4), .cart-container .table-list .table-body ul li:nth-child(4) {
    width: 16%;
}
.cart-container .table-list .table-header ul li:nth-child(5), .cart-container .table-list .table-body ul li:nth-child(5) {
    width: 16%;
}
.cart-container .table-list .table-body ul li button.delete{
    border-radius: 100%;
    height: 40px;
    width: 40px;
    background-color: transparent;
    border: 1px solid #E6E6E6;
}
.cart-container .table-list .table-body ul li button.delete:hover{
    background-color: #dadada;
}
.cart-container .table-list .table-body ul li.product-img-name .img-container{
    width: 60px;
    margin-right: 10px;
}
.cart-container .table-list .table-body ul li.product-img-name .name-price{
    display: grid;
}
.cart-container .table-list .table-body ul li.product-img-name p{
    margin-bottom: 0px;
    font-weight: 600;
}
.cart-container .table-list .table-body ul li.product-img-name span{
    display: none;
}
.cart-container .cart-action-button{
    display: flex;
    justify-content: end;
}
.cart-container .cart-action-button button:first-child{
    margin-right: 10px;
}
.cart-container .cart-action-button button{
    margin: 0px;
}
.cart-checkout-summary-container{
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.cart-checkout-summary-container .cart-checkout-summary-card{
    margin-top: 20px;
    background-color: #fff;
    padding: 30px 20px;
    box-shadow: 1px 0px 6px rgba(0,0,0,30%);
    border-radius: 5px;
}
.cart-checkout-summary-container .cart-checkout-summary-card h5{
    font-weight: 600;
}
.cart-checkout-summary-container .cart-checkout-summary-card p{
    display: flex;
    width: 100%;
    margin-bottom: 5px;
}
.cart-checkout-summary-container .cart-checkout-summary-card p span.variable{
    margin-right: 5px;
}
.cart-checkout-summary-container .cart-checkout-summary-card p span.value{
    margin-left: auto;
}
.cart-checkout-summary-container .cart-checkout-summary-card .button-container{
    margin-top: 10px;
    display: flex;
    justify-content: center;
}
/* ===================================
    checkout Register Page Style
=======================================*/
.checkout-container .cart-checkout-summary-container .cart-checkout-summary-card{
    width: 100%;
    margin-top: 0px;
}
.checkout-section .address-side-container .top-address-side{
    padding: 20px 0px;
    display: flex;
    align-items: center;
}
.checkout-section .address-side-container .top-address-side h4{
    font-weight: bolder;
    margin-bottom: 0px;
}
.checkout-section .address-side-container .top-address-side button{
    margin-left: auto;
    margin-right: 0;
}
.address-list-container .each-address-container{
    position: relative;
    padding: 30px 20px 30px 40px;
    background-color: #fff;
    width: 100%;
    border-radius: 5px;
    box-shadow: 1px 0px 6px rgba(0,0,0,30%);
    cursor: pointer;
    margin-bottom: 10px;
    border: 2px solid #fff;
}
.address-list-container .each-address-container input[type=radio] {
    accent-color: #dfa700;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
}
.address-list-container .each-address-container.active, .address-list-container .each-address-container:hover{
    border: 2px solid #dfa700;
}
.address-list-container .each-address-container .address-content{
    margin-right: 40px;
}
.address-list-container .each-address-container .address-content h6{
    margin-bottom: 5px;
    font-weight: 600;
}
.address-list-container .each-address-container .address-content p{
    margin-bottom: 0px;
}
.address-list-container .each-address-container .action-buttons-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    display: flex;
    align-items: center;
}
.address-list-container .each-address-container .action-buttons-container button{
    border-radius: 50%;
    height: 35px;
    width: 35px;
    padding: 0px;
    border: 1px solid #E6E6E6;
    display: block;
    margin: 5px 0px;
}
.address-list-container .each-address-container .action-buttons-container button:hover{
    background-color: #dadada;
}
.checkout-section .modal-dialog{
    top: unset;
    display: block;
}
.checkout-section .modal input, .checkout-section .modal select, .profile-section .modal input, .profile-section .modal select{
    margin-bottom: 10px;
}
.checkout-section .modal-content, .profile-section .modal-content{
    height: unset;
    width: unset;
}
.checkout-section .modal-dialog, .profile-section .modal-dialog{
    max-width: 600px;
}
.checkout-section .cart-checkout-summary-card .products-list-container{
    margin: 0px;
}
/* ===================================
    forget password request Page Style
=======================================*/
.forget-password-section .card-container{
    width: 600px;
    background-color: #fff;
    border-radius: 5px;
    border: 2px solid #dfa700;
    margin: auto;
    padding: 30px 40px;
    margin-top: 40px;
    text-align: center;
}
.forget-password-section .card-container .company-logo-container{
    width: 100px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}
.forget-password-section .card-container input{
    margin-top: 30px;
}
.forget-password-section .card-container button{
    margin-top: 20px;
}
/* ===================================
    Profile Page Style
=======================================*/
.profile-section .tabes-button-container button{
    background-color: #fff;
    box-shadow: 0px 0px 6px rgba(0,0,0,30%);
    width: 100%;
    border-radius: 5px;
    border: 2px solid #fff;
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}
.profile-section .tabes-button-container button.active{
    border-color: #dfa700;
}
.profile-section .tabes-button-container button:focus{
    outline: unset;
}
.profile-section .profile-info-section.personal-info-section{
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0,0,0,30%);
    padding: 30px;
}
.profile-section .profile-info-section.hide{
    display: none;
}
.profile-section .profile-info-section .submit-container{
    padding-right: 15px;
}
.profile-section .profile-info-section h5{
    font-weight: bold;
}
.profile-section .profile-info-section .personal-info{
    margin-bottom: 20px;
}
.profile-section .profile-info-section .personal-info .input-container, .profile-section .profile-info-section .billing-info .input-container{
    padding-left: 0px;
    margin-bottom: 15px;
}
.profile-section .profile-info-section .input-container label{
    color: #868686;
    margin-bottom: 5px;
}
.profile-section .profile-info-section .input-container input{
    border: 1px solid #E6E6E6;
}
.profile-section .profile-info-section .billing-info{
    margin-bottom: 20px;
}
.deliveries-addresses-section.profile-info-section{
    padding: 0px 5px;
}
.deliveries-addresses-section.profile-info-section .add-new-address{
    margin-left: 0px;
    margin-bottom: 20px;
}
.orders-info-section.profile-info-section{
    padding: 0px;
}
.orders-info-section td .view-order{
    cursor: pointer;
    color: #1c64f2;
}
#viewOrder .modal-header{
    border-bottom: unset;
}
#viewOrder .modal-dialog{
    max-width: 800px;
}
#viewOrder .modal-content{
    width: 100%;
}
#viewOrder .delivery-info-container{
    margin-top: 20px;
}
#viewOrder .delivery-info-container h5{
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}
/* ===================================
    Payment success Page Style
=======================================*/
.payment-section{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.payment-section .payment-wrap{
    text-align: center;
}
.payment-section .payment-wrap .icon-container{
    margin-bottom: 23px;
}
.payment-section.success .payment-wrap .icon-container span{
    color: green;
    font-size: 130px;
}
.payment-section.failed .payment-wrap .icon-container span{
    color: red;
    font-size: 130px;
}
.payment-section .payment-wrap h1{
    margin-bottom: 20px;
}
.payment-section .payment-wrap a{
    display: inline-block;
    margin: 0px 5px;
}
/* Login */
.login-container{
    height: 100vh;
}
.login-form, .signup-container .signup-form{
    margin: 30px auto;
}

/* opacity loader */
.opacity-loader-container{
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: rgba(0, 0, 0, 60%);
    z-index: 0;
    /* display: flex; */
    display: none;
    justify-content: center;
    align-items: center;
}
.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ripple div {
    position: absolute;
    border: 4px solid #fff;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  .lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
  }
  @keyframes lds-ripple {
    0% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    4.9% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 0;
    }
    5% {
      top: 36px;
      left: 36px;
      width: 0;
      height: 0;
      opacity: 1;
    }
    100% {
      top: 0px;
      left: 0px;
      width: 72px;
      height: 72px;
      opacity: 0;
    }
  }