
/* Hide the spin buttons in WebKit browsers */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.shop-page-wrap{
    padding-top: 120px;
    padding-bottom: 120px;
}
.widget.widget_search {
    padding: 0;
    border: 0;
}
.sidebar-area .widget {
    /* margin-bottom: 35px; */
    padding: 23px 30px 30px;
    border-radius: 6px;
    /* background: #F6F1E7; */
}
.widget {
    /* margin-bottom: 50px; */
}
.widget.widget_search .search-form {
    position: relative;
    /* background: #fff; */
    border-radius: 6px;
}
.widget.widget_search .search-form input {
    letter-spacing: 0.3px;
    color: #5F5F5F;
    width: 100%;
    font-weight: 400;
    border: 0;
    /* background: transparent; */
    padding: 0 60px 0 24px;
    height: 56px;
    line-height: 56px;
}
.widget.widget_search .search-form button {
    position: absolute;
    right: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 20px;
    padding: 0 23px;
    height: 56px;
    line-height: 56px;
    top: 0;
    right: 0;
    color: rgb(228, 197, 144);
}
.widget_categories {
    padding: 23px 30px;
}
.widget_categories .widget-title {
    margin-bottom: 19px;
}

.sidebar-area .widget-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 27px;
    font-family: var(--font-family-DMsans);
}
.widget_categories ul {
    margin: 0;
    padding: 0;
    overflow-y: auto;
    height: 500px;
}
.widget_categories.style-2 ul li {
    margin-bottom: 23px;
}
.widget_categories ul li {
    list-style: none;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: capitalize;
}
.widget_categories ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}
.widget_categories ul li a:hover{
    color: rgb(228, 197, 144);
}
.widget_categories ul li img {
    object-fit: cover;
}
.widget_categories ul li img {
    margin-right: 15px;
}

.widget_filter .ui-widget.ui-widget-content {
    border: 0;
    border-radius: 50px;
    height: 10px;
    margin-bottom: 25px;
}
.widget_filter .ui-widget-header {
    background-color:  rgb(228, 197, 144);
}


.widget_filter .ui-state-default, .widget_filter .ui-widget-content .ui-state-default, .widget_filter .ui-widget-header .ui-state-default, .widget_filter .ui-button, .widget_filter html .ui-button.ui-state-disabled:hover, .widget_filter html .ui-button.ui-state-disabled:active {
    height: 20px;
    width: 12px;
    background: #fdc913;
    border: 0;
    border-radius: 50px;
}

.widget_filter .btn-base {
    height: 36px;
    line-height: 36px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    padding: 0 20px;
    color: #fff;
}
.widget_filter p {
    text-align: right;
    margin-bottom: 0;
}
.widget_filter input {
    border: 0;
    background: transparent;
    width: 113px;
    color: var(--paragraph-color);
    margin-right: -10px;
}
.filter-btn{
    padding: 11px 13px;
}

 #style-3::-webkit-scrollbar-track
 {
   -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
   background-color: #F5F5F5;
 }

 #style-3::-webkit-scrollbar
 {
   width: 6px;
   background-color: #F5F5F5;
 }

 #style-3::-webkit-scrollbar-thumb
 {
   background-color: rgb(228, 197, 144);
 }
 .collect-area{
    font-family: var(--font-family-DMsans);
 }
 .slider_text a {
    display: flex;
    width: inherit;
    border: 1px solid;
    justify-content: center;
    border-radius: 50px;
    padding: 5px;
    color: #fff;
}
.slider_text a:hover{
    color: var(--main-color);
}
.slider-text-widget{
    margin-right: 20px;
}
.slick-prev:before {
    content: '←';
    display: none;
}
.slick-next:before {
    color: #fff !important;
        opacity: 1;
}
/* START TOOLTIP STYLES */
    .custom_info_icon{
        position: absolute;
        /* font-size: 20px; */
        left: 7px;
        top: 20px;
    }

    [tooltip] {
    position: relative; /* opinion 1 */
    }

    /* Applies to all tooltips */
    [tooltip]::before,
    [tooltip]::after {
    text-transform: none; /* opinion 2 */
    font-size: .9em; /* opinion 3 */
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0;
    }
    [tooltip]::before {
    content: '';
    border: 5px solid transparent; /* opinion 4 */
    z-index: 1001; /* absurdity 1 */
    }
    [tooltip]::after {
    content: attr(tooltip); /* magic! */
    width: 300px;
    padding: 1ch 1.5ch;
    border-radius: .3ch;
    box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
    background: black;
    color: #fff;
    z-index: 1000; /* absurdity 2 */
    }

    /* Make the tooltips respond to hover */
    [tooltip]:hover::before,
    [tooltip]:hover::after {
    display: block;
    }

    /* don't show empty tooltips */
    [tooltip='']::before,
    [tooltip='']::after {
    display: none !important;
    }

    /* FLOW: RIGHT */
    [tooltip][flow^="right"]::before {
    top: 50%;
    border-left-width: 0;
    border-right-color: black;
    right: calc(0em - 5px);
    transform: translate(.5em, -50%);
    }
    [tooltip][flow^="right"]::after {
    top: 50%;
    left: calc(100% + 5px);
    transform: translate(.5em, -50%);
    }

    /* KEYFRAMES */
    @keyframes tooltips-vert {
    to {
        opacity: .9;
        transform: translate(-50%, 0);
    }
    }

    @keyframes tooltips-horz {
    to {
        opacity: .9;
        transform: translate(0, -50%);
    }
    }

    /* FX All The Things */
    [tooltip]:not([flow]):hover::before,
    [tooltip]:not([flow]):hover::after,
    [tooltip][flow^="up"]:hover::before,
    [tooltip][flow^="up"]:hover::after,
    [tooltip][flow^="down"]:hover::before,
    [tooltip][flow^="down"]:hover::after {
    animation: tooltips-vert 300ms ease-out forwards;
    }

    [tooltip][flow^="left"]:hover::before,
    [tooltip][flow^="left"]:hover::after,
    [tooltip][flow^="right"]:hover::before,
    [tooltip][flow^="right"]:hover::after {
    animation: tooltips-horz 300ms ease-out forwards;
    }

    @media screen and (max-width:400px){
        [tooltip]::after {
            width: 200px;
        }
    }


    .fav-btn{
        position: absolute;
        top: 22px;
        right: 5px;
        font-size: 20px;
    }
    .fav-btn .fa-heart:hover {
        color: red;
        cursor: pointer;
    }

    /* Red when active (clicked) */
    .fav-btn .fa-heart.active {
        color: red;
    }
    .checkout-title{
        font-size: 28px;
        font-family: var(--font-family-DMsans);
    }
    .Checkout-card-wrap{
        border: 1px solid var(--white-color-opacity-four);
        padding: 1rem;
        border-radius: 3px;
    }
    .checkout-card-head{
        border-bottom: 1px solid var(--white-color-opacity-four);
        padding-bottom: 10px;
    }
.order_added_area {
    overflow: hidden;
    position: relative;
}
.product-title{
    font-family: var(--font-family-DMsans);
}
.location-area{
    display: flex;
    align-items: center;
    gap: 5px;
}
.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.product-image__body {
        display: block;
        position: relative;
        padding-bottom: 100%;
        width: 100%;
    }
    .quantity {
    display: inline-block;
    border: 0;
}
.product-image__img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100% !important;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}
.quantity input.minus {
    border-radius: 0 !important;
}
.quantity input {
    margin-left: 0;
}
.quantity input {
    background: #FAF7F2;
    border: 0;
    height: 56px;
    padding: 0;
    width: 47px;
    text-align: center;
    cursor: pointer;
    /*margin-left: -3px;*/
}
.quantity input.plus {
    border-radius: 0 !important;
}
.cart__actions {
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.cart__coupon-form {
    width: calc(50% - 15px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.cart__totals-body tr th {
    padding-bottom: 10px;
}
.ah-input-coupon input {
    border-radius: 5px 0 0 5px !important;
}
.ah-input-coupons input{
    border-radius: 0 !important;
    padding: 20px .75rem;
    height: 56px;
}
.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.ah-input-coupon button#coupon-code {
    border-radius: 0;
}
.btn-base:after {
    background: #fff;
}
.btn-base {
    color: #000;
    border: 0;
    background: var(--main-color);
}
.ah-input-coupon {
    border-radius: 5px;
    overflow: hidden;
}

.btn {
    height: 56px;
    line-height: 56px;
    padding: 0 50px;
    overflow: hidden;
    position: relative;
    border: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    border-radius: 50px;
}
.ah-input-coupon button#coupon-code {
    border-radius: 0;
}
.card-title{
    font-family: var(--font-family-DMsans);
}
.cart-card{
    background-color: transparent;
    border: 1px solid;
}
.btn-style-one .proceed-btn-wrap{
    float: inherit;
    vertical-align: middle;
}
.cart-table__column {
    padding: 12px 18px;
    border-top: 1px solid #ebebeb;
}
.cart-table__column:first-child {
    border-left: 1px solid #ebebeb;
}
.cart-table__body .cart-table__row:last-child .cart-table__column{
    border-bottom: 1px solid #ebebeb;
}
.cart-table__body .cart-table__column {
    padding-top: 18px;
    padding-bottom: 18px;
}
.cart-table__column--quantity {
    padding-left: 90px;
    text-align: center;
    width: 1px;
}
.cart-table__column:last-child {
    border-right: 1px solid #ebebeb;
}
.shop-page-card .inner-box .image img{
    height: 300px;
    object-fit: cover;
}
.modal-content{
    color: #000;
}
.shop-page-modal-title{
    color: #000;
    font-family: var(--font-family-DMsans);
}
.modal-image{
    height: 330px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

/* modal-card-styling-start */
.card_content {
    padding: 1rem;
}
.card_content .card_title {
    font-size: 22px !important;
    color: #000;
}
.card_content .sub_title_sp {
    font-size: 22px !important;
    font-family: var(--font-family-DMsans);
    color: #000;
}
.summary-title{
    font-family: var(--font-family-DMsans);
    color: #000;
}
.text-para {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #5F5F5F;
}
.ah-custom-checkbox {
    position: relative;
    outline: none;
    margin-bottom: 5px;
    display: inline-block;
    min-width: 50%;
}
.product-variations [name="product_variation"] {
    margin-right: 5px;
    vertical-align: middle;
}

.checkbox-custom, .checkbox-custom-label, .radio-custom, .radio-custom-label {
    display: inline-block;
    cursor: pointer;
}
.checkbox-custom, .radio-custom {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    outline: none;
    z-index: 1;
}
.checkbox-custom-label, .radio-custom-label {
    position: relative;
}
.checkbox-custom, .checkbox-custom-label, .radio-custom, .radio-custom-label {
    display: inline-block;
    cursor: pointer;
}
.radio-custom:checked + .radio-custom-label:before {
    border: 0px solid #ddd;
}
.radio-custom + .radio-custom-label:before {
    border-radius: 50%;
}
.checkbox-custom + .checkbox-custom-label:before, .radio-custom + .radio-custom-label:before {
    content: '';
    background: #fff;
    border: 2px solid #ddd;
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    padding: 2px;
    margin-right: 7px;
    text-align: center;
    position: relative;
    top: -3px;
}
.variationPrice {
    float: right;
}
.radio-custom:checked + .radio-custom-label:after {
    content: "\f058";
    font-family: 'Font Awesome 5 pro';
    color: var(--main-color);
    position: absolute;
    left: 0;
    font-size: 19px;
    top: -2px;
}
.modal-footer_sp {
    padding: 1rem;
    border-top: 1px solid;
}
.footer_total {
    display: flex;
    flex-direction: column;
    color: #000;
}
.footer_total p {
    display: flex;
    justify-content: end;
    margin: 0;
    font-size: 12px;
    line-height: 16px;
}
.footer_total h6 {
    display: flex;
    font-family: var(--font-family-DMsans);
    justify-content: end;
    color: #000;
}
.BackStepBtn {
    cursor: pointer;
}
.ahDealItemsWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ahDealItemsWrap .ahChecBoxWrapper {
    width: calc(100% - 210px);
}
.ahDealSeclect{
    appearance: auto;
    margin: 0 10px;
}

.ahDealSeclect {
    width: 160px;
    font-size: 14px;
    padding: 5px 8px;
}
.ahDealItemsWrap .ahDealQty {
    width: 0;
    padding: 0;
}
.ahDealQty {
    width: 50px;
    font-size: 14px;
    padding: 5px 8px;
}
.addCustomBtn {
    color: #ce2829;
    margin-left: 7px;
    font-weight: 800;
    font-size: 20px;
}
.summary_details {
    background: #EDEDED;
    padding: 1rem;
    min-height: 200px;
}
.productChoicesHeading, .productExtrasHeading{
    font-family: var(--font-family-DMsans);
    color: #000;
}
.ahCustomQuantity {
    display: inline-block;
    border: 0;
    border-radius: 6px;
    border: 1px solid #5f5f5f;
}
.ahCustomQuantity input {
    background: transparent;
    border: 0;
    padding: 0;
    width: 20px;
    height: 25px;
    text-align: center;
    cursor: pointer;
    margin-left: -3px;
    line-height: normal;
}
.ahCustomQuantity input[type="number"] {
    width: 30px;
}
.ahCustomQuantity input.input-text {
    border-right: 0;
    border-left: 0;
}
.circle_icon-holder-ss {
    width: 30px !important;
    height: 30px !important;
    background: #EDEDED !important;
    border-radius: 50% !important;
    cursor: pointer;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.wishlist-btn-wrap{
    width: 200px;
}
.cart-table__product-name:hover{
    color: #fff;
}
.slick-next:before {
    content: "\f061";
    font-family: 'Font Awesome 6 Pro';
    font-weight: 100;
}
.footer-btn-add input{
        color: #5F5F5F;
}
.shop_page_select{
    width: 260px;
    float: right;
}
.shop_page_select select{
    border: transparent !important;
}
.shop-page-select{
    margin-top: 25px;
}
.checkout_time{
    background-color: var(--color-six) !important;
    border: 1px solid var(--white-color-opacity-five) !important;
    color:#fff !important;
    height: 56px;
}
.time-picker-wrapper {
  position: relative;
}

.time-icon {
  position: absolute;
  right: 10px;               /* adjust for your design */
  top: 50%;
  transform: translateY(-50%);
  color: #fff;               /* desired icon color */
  pointer-events: none;     /* so clicks go through to input */
}

input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;               /* hide native icon */
  -webkit-appearance: none; /* remove default styling */
}
.checkout_time:focus{
        box-shadow: none !important;
}
.custom-dropdown-menu-s{
    position: absolute; 
    top: 100%; 
    right: 0;
}






@media (max-width: 1200px) {

    .wishlist-btn-wrap{
        width: 250px;
    }
}
@media (max-width: 992px) {
    .md-screen-order{
        order: -1;
    }
    .cart__actions {
        flex-direction: column;
    }
    .cart__coupon-form {
        width: 100%;
    }
    .cart__buttons{
        margin-top: 15px;
    }
    .cart__buttons a,button{
        margin-bottom: 5px;
    }
    .filter-btn {
        padding: 11.5px 13px;
    }
    .wishlist-btn-wrap{
        width: 300px;
    }
    .search_area-wrap{
        padding: 23px 0px 30px !important;
    } 
}

@media (max-width: 768px){
    .wishlist-btn-wrap{
        width: 450px;
    }
    .cart__table.cart-table{
        width: 780px;
    }
    .shop-page-mobile{
        padding-top: 30px;
    }
    .shop-page-select {
        margin-top: 10px;
        margin-bottom: 0px !important;
    }
}
@media (max-width: 600px){
    .custom-dropdown-menu-s{
        left: -100px !important;
    }
}

@media (max-width: 576px){
    .shop_page_select{
        float: inherit;
    }
    
    .pb-sm-0{
        padding-botoom:0;
    }
    
    
}
