@import url(typography.css);
@media (min-width: 1260px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1226px;
    }
}

#main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: white;
    padding-bottom: 0 !important;
}

a:hover {
    color: var(--colorBB5F30);
}

.header_icons a:hover {
    color: var(--colorBB5F30);
}

.dropdown-toggle::after {
    content: "\f282";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: text-bottom;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border: none;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
}

ul.dropdown-menu {
    padding: 0;
    /* overflow: hidden; */
}

ul.dropdown-menu a {
    padding: 10px;
}

ul.dropdown-menu li+li a {
    border-top: 1px solid #eee;
}

ul.dropdown-subsubmenu {
    position: absolute;
    left: 100%;
    background: #fff;
    list-style: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0;
    display: none;
    top: 50%;
    transform: translateY(-50%);
}
.dropdown-menu>li:first-child ul.dropdown-subsubmenu,
.dropdown-menu>li:nth-child(2) ul.dropdown-subsubmenu,
.dropdown-menu>li:nth-child(3) ul.dropdown-subsubmenu,
.dropdown-menu>li:nth-child(4) ul.dropdown-subsubmenu { 
    top: 0%;
    transform: translateY(0%);
}

ul.dropdown-menu>li:hover ul.dropdown-subsubmenu {
    display: block;
}

a.parenticon {
    position: absolute;
    right: 0px;
    top: 0;
    color: #000;
}

img,
svg {

    max-width: 100%;
}

@media(min-width:992px) {
    li.nav-item.dropdown:hover>ul {
        display: block;
    }


}

@media(max-width:991px) {
    ul.dropdown-subsubmenu {
        position: relative;
        left: 0;
        border: none;
        padding-left: 20px;
    }

    ul.dropdown-menu>li:hover ul.dropdown-subsubmenu {
        display: none;
    }

    ul.dropdown-menu>li.active ul.dropdown-subsubmenu {
        display: block;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active>.dropdown-menu {
        display: block;
    }
 
}

.owl-dots {
    display: inline-flex;
    background: #2C365199;
    padding: 8px 40px;
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.owl-nav {
    display: none;
}

.custom-dots {
    display: flex;
    align-items: center;
}

.owl-dots .owl-dot span,
.custom-dot {
    width: 12px;
    height: 12px;
    margin: 5px 5px;
    background: #D9D9D9;
    border-radius: 20px;
    cursor: pointer;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span,
.active.custom-dot {
    background: var(--colorDAA184);
}


.custom-nav {
    display: inline-flex;
    background: #2C365199;
    padding: 8px 30px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

span.owl-next {
    color: #fff;
    font-size: 20px;
    position: absolute;
    right: 8px;
    top: 6px;
    cursor: pointer;
}

span.owl-prev {
    color: #fff;
    font-size: 20px;
    position: absolute;
    left: 8px;
    top: 6px;
    cursor: pointer;
}

@media(min-width:768px) {
    #img_box .col-lg-6 {
        width: 49.5%;
    }

    #img_box .col-lg-3 {
        width: 25.2%;
    }

    #img_box .col-lg-3+.col-lg-3 {
        width: 25.3%;
    }
}

.heading_seperator {
    width: 78px;
    height: 6px;
    background: #DAA184;
    margin: 10px auto;
    display: block;
}

.heading_seperator.small_width {
    width: 46px;
    height: 5px;
    background: #DAA184;
    margin: 10px auto;
    display: block;
}

.wallet_page td {
    padding-top: 15px;
    padding-bottom: 15px;
}

.reflection_box,
.prod_image {
    position: relative;
    overflow: hidden;
    display: block;
}

.reflection_box img,
.product-grid a img {
    transition: all 0.3s ease-in-out;
}

.reflection_box:hover img,
.product-grid a:hover img {
    transform: scale(1.02);
}


#sub_categorys .nav-item {
    padding: 8px;
}

#sub_categorys .nav-link {
    border: 1px solid #d1d1d1;
    border-radius: 0;
    height: 100%;
    min-height: 115px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    color: #000;
}

#sub_categorys .nav-link>div {
    width: 100%;

}

#sub_categorys .nav-link>div img {
    margin-bottom: 10px;
}

#sub_categorys .nav-link.active {
    background: #FFF2EB;
    border-color: #BB5F30;
    box-shadow: 0px 4px 11px 0px #00000026;

}

.prod_image img {
    width: 100%;
}

.prod_price {
    color: var(--colorBB5F30);
}

.product-grid a {
    display: block;
    text-decoration: none;
}

.eclipse_img img {
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
}

.eclipse_img a:hover img {
    transform: rotate(3deg);
}

#newshelvesbanner {
    background: #E8E8E5;
}

.btn-auto {
    max-width: fit-content;
}

.btn-dd {
    background: var(--colorBB5F30);
    border-radius: 30px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 22px;
    padding: 10px 25px;
}

.btn-dd:hover {
    background: var(--colorD26B37);
    color: #fff;
}

.btn-ddblue {
    background: var(--color0F377F);
    border-radius: 30px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 22px;
    padding: 10px 25px;
}

.btn-ddblue:hover {
    background: var(--color2C3651);
    color: #fff;
}



.btn-dd2 {
    background: var(--colorBB5F30);
    border-radius: 0px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 22px;
    padding: 10px 25px;
}

.btn-dd2:hover {
    background: var(--colorD26B37);
    color: #fff;
}


.btn-dd3 {
    background: var(--colorBB5F30);
    border-radius: 0px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    height: 38px;
    padding: 5px 25px;
}

.btn-dd3:hover {
    background: var(--colorD26B37);
    color: #fff;
}

.btn-dd3-outline {
    /* background: #fff;
    border: 1px solid var(--colorBB5F30);
    border-radius: 0px; */
    color: var(--colorBB5F30);
    font-size: 16px;
    font-weight: 700;
    /* height: 38px; */
    /* padding: 5px 25px; */
}
.whishbag{
    color: var(--colorBB5F30);
    /* font-size: 16px;
    font-weight: 700;
    height: 38px; */ 
}
.otsk{
    color:red;
}
.whishbag:hover {
    /* //background: var(--colorD26B37); */
    color:#c46839bd;
}
.btn-dd3-outline:hover {
    /* //background: var(--colorD26B37); */
    color:#c46839bd;
}

.list_item_grid img {
    max-width: 151px;
}

.actions>* {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--colorBB5F30);
    cursor: pointer;
}

.actions * {
    cursor: pointer;
}

.wishlist_label [type="checkbox"] {
    opacity: 0;
    position: absolute;
    z-index: -9;
}

.wishlist_label .bi-heart-fill,
.wishlist_label [type="checkbox"]:checked~.bi-heart {
    display: none;
}

.wishlist_label [type="checkbox"]:checked~.bi-heart-fill {
    display: inline-block;
    color: var(--colorBB5F30);
}

.wallet_page td:first-child {
    padding-left: 0 !important;
}

.testi_page:nth-child(even) {
    background: #FFF3EC !important;
}

.testi_page p {
    color: #575757;
}

#banner2 {
    background: url(../img/Rectangle-71648.jpg) no-repeat;
    background-size: cover;
}

.query_form {
    background: #FFEADF;
}

.query_form .input-group {
    background: #fff !important;
}




@media(min-width:1024px) {
    #icono_box .col-lg-4+.col-lg-4>div {
        border-left: 1px solid #CDCDCD;
        padding-left: 20px;
    }
}


@media(max-width:1023px) {
    #icono_box .col-lg-4+.col-lg-4>div {
        border-top: 1px solid #CDCDCD;
        padding-top: 20px;
    }

    td .btn-dd3 {
        padding: 5px;
    }

}


@media(max-width:767px) {
    h1.fs-30 {
        font-size: 22px;
    }
}





.custom-aisdenav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-aisdenav>span {
    width: 40px;
    height: 40px;
    background: var(--color2C3651);
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.custom-aisdenav>span:hover {
    background: var(--colorBB5F30);
}


#brands_sec .owl-carousel .owl-stage {
    display: flex;

}


#brands_sec .owl-carousel .owl-stage>* {
    display: flex;
    min-height: 100%;
    align-items: center;
}


#brands_sec .owl-carousel .owl-stage>*>* {
    display: flex;
    height: 100%;
    align-items: center;
}

#newsletter_sec {
    background: #FFF1EA;
}






.footer_menu h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;

}

.footer_menu ul li {
    font-family: Roboto;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    color: #6D6C6C;
    padding: 7px 0;
}

.footer_social a:hover {
    color: var(--colorBB5F30);
}


ul#home_decor a {
    border: 1px solid #2C3651;
    border-radius: 30px;
    padding: 10px 25px;
    color: #000;
}

ul#home_decor a.active {
    background: var(--colorDAA184);
}


.my_pagination li a {
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2C3651;
    font-size: 18px;
    line-height: 0;
    background: #FEE0D1;
    color: #2C3651;
}

.my_pagination li a.active,
.my_pagination li a:hover {
    border: 1px solid #2C3651;
    background: var(--colorBB5F30);
    color: #fff;
}

.my_pagination li a[aria-label="Previous"],
.my_pagination li a[aria-label="Next"] {
    background: #2C3651;
    color: #fff;
}

#HOME_DEOCR_SEC .prod_name {
    color: var(--color595959);
    height: 22px;
    text-overflow: hidden;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#HOME_DEOCR_SEC .prod_price {
    color: #000;
}

.filter_block .dropdown-toggle::after {
    display: none;
}

.filter_block .btn-group.dropdown.dropdown-filter>button {
    border-radius: 40px;
    color: #000;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    padding: 8px 20px;
    min-width: 120px;
    display: flex;
    justify-content: space-between;
}

.filter_block .btn-group.dropdown.dropdown-filter>button:hover {
    background: var(--colorDAA184);
}


.filter_block .btn-group.dropdown.dropdown-filter i.bi-caret-down-fill {
    background: var(--colorDAA184);
    border-radius: 50%;
    width: 22px;
    height: 20px;
    font-size: 13px;
    padding: 2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 0;
    margin-left: 10px;
}

div#navbarNav .navbar-nav>li>a {
    text-transform: uppercase;
}

@media(max-width:767px) {
    .eclipse_img>* {
        min-width: 50%;
        max-width: 50%;
    }

    .eclipse_img figcaption {
        font-size: 16px;
        line-height: 20px;
    }

    #HOME_DEOCR_SEC h2 {
        font-size: 20px;
        line-height: 30px;
    }

    #HOME_DEOCR_SEC .nav-tabs {
        font-size: 16px;
    }

    #HOME_DEOCR_SEC .nav-tabs img {
        width: 24px;
    }

    ul#myTabs2 a {
        padding: 10px 16px;
    }
}

@media(max-width:1180px) {
    div#navbarNav {
        background: #eee;
        padding: 0 10px;
        position: absolute;
        top: 100%;
        z-index: 99;
        width: calc(100vw - 80px);
    }
}

@media(max-width:991px) {
    div#navbarNav {
        width: 100%;
    }
}

.accordion-button:focus {
    outline: 0 !important;
}

.cat_round_image img {
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0px 3px 8px 0px #888;
    max-width: 125px;
}

.accordion-button:not(.collapsed) {
    color: inherit;
    background-color: transparent;
    box-shadow: none;
    outline: 0 !important;
}


/* price Slider */

.price-input {
    width: 100%;
    display: flex;
    margin: 20px 0 0;
}

.price-input .field {
    display: flex;
    width: 100%;
    height: 45px;
    align-items: center;
}

.field input {
    width: 100%;
    height: 100%;
    outline: none;
    font-size: inherit;
    margin-left: 12px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #999;
    appearance: textfield;
    -moz-appearance: textfield;
    height: auto;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.price-input .separator {
    width: 130px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
}

.slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.slider .progress {
    height: 100%;
    left: 0%;
    right: 0%;
    position: absolute;
    border-radius: 5px;
    background: #17a2b8;
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: #17a2b8;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: #17a2b8;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/* price Slider end */




.p_grid label.wishlist_label {
    position: absolute;
    font-size: 22px;
    right: 30px;
    top: 30px;
    background: #fff;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
}

.p_grid .wishlist_label [type="checkbox"]:checked~.bi-heart-fill {
    display: block;
    color: var(--colorBB5F30);
}






.custom-thumb {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.custom-thumb img {
    width: 25%;
    height: auto;
    margin: 0;
    cursor: pointer;
    border: 0 solid transparent;
    transition: border-color 0.3s ease;
}

.custom-thumb img:hover {
    border-color: #007bff;
}


#related_prodsec .owl-carousel .owl-stage-outer {
    padding: 0 0 40px;

}

.custom-thumb {
    position: relative;
}

.custom-thumb .owl-nav {
    display: block;
    font-size: 20px;
}

button.owl-prev {
    top: 0;
    position: absolute;
    left: 0;
    z-index: 9;
    height: 100%;
    background: rgba(0, 0, 0, 0.6) !important;
    margin: 0 !important;
    color: #fff !important;
}

button.owl-next {
    top: 0;
    position: absolute;
    right: 0;
    z-index: 9;
    height: 100%;
    background: rgba(0, 0, 0, 0.6) !important;
    margin: 0 !important;
    color: #fff !important;
}

table.table.cart_table td {
    vertical-align: middle;
    padding: 5px;
}

a.remove_cart {
    background: #F34235;
    display: inline-block;
    width: 30px;
    height: 30px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
.coupon_apply {
    border: 2px dashed var(--colorBB5F30);
}
*/

.price {
    white-space: nowrap;
}

.cart_table [type="number"] {
    max-width: 60px;
    height: 30px;
    appearance: auto !important;
    -webkit-appearance: auto !important;
}

.cart_table td {
    border: none;
}

.grand_table td {
    padding-top: 2px;
    padding-bottom: 2px;
}

.float_label {
    position: relative;
    margin-top: 15px;
}

.float_label label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    transition: all 0.3s ease-in-out;
}

.float_label label.input-label-focus {
    top: 1px;
    left: 0;
    background: #eee;
    border-radius: 10px;
    padding: 0 15px;
    line-height: 14px;
    color: #555;
}

.form-control {
    border-color: #2C3651;
}

.contact_box .form-control {
    height: 53px;
    background: #FAF5F5;
    border-radius: 12px;
}

.checkout_prod_listing td {
    background: transparent !important;
    border: none;
}

.payment_box_grid {
    background: #FAF5F5;
    border: 1px solid #2C3651;
    padding: 10px 15px;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 15px;
}

.payment_box_grid:hover {
    background: var(--colorDAA184);
}

.PaymentSuccess hr {
    border-color: #EDEDED;
    border-width: 2px;
}

.success_table td:first-child {
    font-family: Poppins;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    color: #707070;

}

.success_table td:last-child {
    font-family: Poppins;
    font-size: 22px;
    font-weight: 500;
    line-height: 30px;
    color: #121212;
    text-align: right;

}

.PaymentSuccess .bi-check-circle-fill:before {
    color: #23A26D;
    box-shadow: 0px 0px 0px 16px #E5F4ED !important;
    border-radius: 50% !important;
    line-height: 0 !;
}

.PaymentSuccess .bi-x-circle-fill:before {
    color: rgba(220, 53, 69, 1);
    box-shadow: 0px 0px 0px 16px rgba(220, 53, 69, 0.5) !important;
    border-radius: 50% !important;
    line-height: 0 !;
}

@media(max-width:767px) {
    .success_table td {
        font-size: 16px !important;
        line-height: 20px;
    }

    .PaymentSuccess .fs-40 {
        font-size: 30px;
    }

    .success_table .fs-26 {
        font-size: 20px;
    }
}





.dataTables_filter{
    margin-bottom: 11px;
}
/* .wishlist_table {
    border: 1px solid var(--colorBB5F30);
} */

.wishlist_table tr>* {
    text-align: center;
    vertical-align: middle;
}

.wishlist_table tr>th {
    background: #DAA184;
    padding-top: 15px;
    padding-bottom: 15px;
}


#inlineFormCheck {
    height: 18px;
    width: 18px;
}

#login_form .input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    border: 1px solid #6291E7;
    border-radius: 5px !important;

}

#login_form .input-group * {
    border: none !important;
    background: none;
}

#login_form .input-group .form-control:not(textarea) {
    height: 55px;
    border-radius: 5px !important;
}

.input-group-textarea {
    align-items: start !important;
}

#login_form i.bi {
    font-size: 24px;
    color: #0F377F;
}

.profile_links .active {
    background: var(--colorBB5F30) !important;
    color: #fff;
}

.profile_links .active i {
    color: #fff !important;
}

.profile_links_mobile select.form-control {
    background: var(--colorBB5F30) !important;
    color: #fff;
    height: 55px;
    margin-bottom: 20px;
}

.confirmed_green {
    color: #029E37;
    padding: 10px 12px;
    background: #D2FFDC;

}

.cart_table.table .table td {
    border: none !important;

}

.my_orders .table-responsive>.table>tbody>tr>td {
    padding-top: 30px;
    padding-bottom: 30px;
}


.help_desk .accordion-item,
.wallet_page .accordion-item {
    padding: 10px 0;
}

.help_desk .accordion-button:not(.collapsed),
.wallet_page .accordion-button:not(.collapsed) {
    color: var(--color0F377F);
}

.bgEFE1DB {
    background: #EFE1DB;
}

#map_id {
    border: 10px solid #FFD6C2;
}









ul.pagination2 a {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    border: 1px solid #2C3651;
    background: #FEE0D1;
    color: #2C3651;
    font-weight: 700;
}

ul.pagination2 a[aria-label] {
    background: #2C3651;
    color: #fff;
}

ul.pagination2 a:hover {
    border: 1px solid #2C3651;
    background: #fff;
    color: #2C3651;
}

.recent-post-list td {
    padding-top: 15px;
    padding-bottom: 15px;
}




























/* new css */

.payment_opt .col-md-6 {
    position: relative;
}

.payment_opt .col-md-6+div::before {
    content: "";
    width: 4px;
    height: 32px;
    background: #BB5F30;
    display: inline-block;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.social_box img {
    width: 50px !important;
}

@media(max-width:991px) {
    .payment_opt .col-md-6+div:nth-child(2n+1)::before {
        content: "";
        display: none;
    }
}

@media(max-width:767px) {
    .payment_opt .col-md-6::before {
        content: "";
        display: none !important;
    }

    .payment_opt .col-md-6 {
        background: #eee;
        margin: 2px 0;
    }

    .payment_opt .col-md-6+.col-md-6>div {
        margin-top: 10px;
    }

    .payment_opt .col-md-6>div {
        padding: 4px;
    }
}

.purple_test {
    background: url(../assets/img/purple.jpg) no-repeat center;
    background-size: cover;
}

.blue_test {
    background: url(../assets/img/blue.jpg) no-repeat center;
    background-size: cover
}

.navy_test {
    background: url(../assets/img/navy.jpg) no-repeat center;
    background-size: cover
}

.test-content {

    min-height: 170px;
    max-height: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;

}

#testimonial_block .client_detail img {
    border-radius: 50%;
}

@media(max-width:991px) {
    .test-content {
        min-height: 130px;
        max-height: 130px;
        -webkit-line-clamp: 4;
    }

    .purple_test {
        background: url(../assets/img/purple.jpg) no-repeat center 65%;
        background-size: cover;
    }

    .blue_test {
        background: url(../assets/img/blue.jpg) no-repeat center 65%;
        background-size: cover
    }

    .navy_test {
        background: url(../assets/img/navy.jpg) no-repeat center 65%;
        background-size: cover
    }
}

.stars {
    color: #FDE862;
}

span.discounted_percentage {
    background: rgba(14, 204, 10, 0.8);
    padding: 5px 8px;
    color: #fff;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

.flat_deal {
    transform: rotate(-90deg);
    white-space: nowrap;
    height: 20px;
    margin-left: -20px;
}

.mt--10 {
    margin-top: -10px;
}

select.form-control {
    -webkit-appearance: auto !important;
    -moz-appearance: auto !important;
    appearance: auto !important;
}

@media(min-width:1024px) {
    #sort-filter {
        margin-top: -12px;
    }
}

/* .color_options {} */

.color_options label {
    cursor: pointer;
}

.color_options label input {
    position: absolute;
    opacity: 0;
}

.color_options label img {
    border: 1px solid #333;
}

.color_options label input:checked+img {
    border: 4px solid var(--colorBB5F30);
}



.size_options label {
    cursor: pointer;
}

.size_options label input {
    position: absolute;
    opacity: 0;
}

.size_options label div {
    border: 1px solid #333;
}

.size_options label div p {
    margin: 0;
    padding: 1px 10px;
    color: #999;
    font-size: 12px;
    text-align: center;
    background: #eee;
}

.size_options label div p+p {
    margin: 0;
    background: #fff;
}

.size_options label input:checked+div {
    border: 2px solid var(--colorBB5F30);
}

.code_name {
    border: 1px solid var(--colorBB5F30);
    background: #FFEEE5;
    padding: 2px 10px;
}

.best_offer_detail {
    border: 1px solid var(--colorBB5F30);
}

.special_addon .p_grid label.wishlist_label {
    font-size: 16px;
    right: 20px;
    top: 20px;
    padding: 3px 6px;
}

#pills-tab {
    border: 1px solid #D4D1D1;
}

#pills-tab .nav-item {
    padding-left: 30px;
    padding-right: 30px;
}

#pills-tab .nav-link {
    border-bottom: 4px solid transparent;
    padding: 0px 0px 15px;
    color: #000;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
}

#pills-tab .nav-link.active {
    color: var(--colorBB5F30);
    border-color: var(--colorBB5F30);
}

table.bg-transparent * {
    background: transparent;
}

.table-border-dark * {
    border-color: #333;
}

.review_prod p {
    margin-bottom: 2px;
}

.review_prod h3 {
    font-size: 22px;
}


@media(max-width:767px) {
    #pills-tab .nav-item {
        padding-left: 10px;
        padding-right: 10px;
    }

    #pills-tab .nav-link {
        font-size: 19px;
    }
}

.radiopayments [type="radio"] {
    height: 20px;
    width: 20px;
    vertical-align: middle;
}

.radiopayments {
    margin: 10px 0;
}

.payment_methods {
    margin-bottom: 20px;
}

.big_check {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

section#cart_fixed {
    max-width: 500px;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
}

.progress_cart {
    height: 8px;
}

body.cart_activated {
    overflow: hidden;
}

body.cart_activated:before {
    content: "";
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 7;
}

section#cart_fixed {
    max-width: 500px;
    position: fixed;
    z-index: 999;
    background: #fff;
    box-shadow: 0px 0px 5px 1px #ccc;
    right: -500px;
    top: 0;
    height: 100vh;
    max-height: 100vh;
    overflow: auto;
    transition: all 0.3s ease-in-out;
}

section#cart_fixed.activated {
    right: 0;
}

.colorsoption {
    height: 50px;
}

.customeitem.active {
    border: 4px solid var(--colorBB5F30);
}

span.cart_count {
    background: #D9A186;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 50%;
    font-size: 13px;
    top: 0;
    top: -6px;
    right: -13px;
}

span.wishlist_count {
    background: #D9A186;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 50%;
    font-size: 13px;
    top: 0;
    top: -6px;
    right: -13px;
}

.img-anchor {
    min-height: 200px;
}

.dataTables_length {
    display: none;
}
div#plus-minus {
    border: 1px solid #ccc;
    height: 42px;
}
.minaa {
    border: 1px solid #ccc;
    height: 31px!important;
}
div#plus-minus>button {
    border: none;
    width: 80px;
}

input#quantitys {
    text-align: center;
    border: none;
}

.stock-message {
    margin-bottom: 10px;
}

.stock-message p {
    margin: 0;
    font-size: 18px;
}
#detail_carousel .owl-nav {
    display: block;
}
#detail_carousel .owl-nav button{
    width: 35px !important;
    font-size: 16px;
    height: 45px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 0 !important;
    z-index: 21;
}
#detail_carousel .owl-nav button.owl-prev{
    margin-left: -1px !important;
}
#detail_carousel .owl-nav button.owl-next{
    margin-right: -1px !important;
}
div#detail_carousel {
    padding: 0 40px;
}
.custom-thumb {
    padding: 0 40px;
}
/* Vivek CSS */
@media(max-width:991px) {
    .filter-aside {
        display: none;
    }
}


/* CSS 11-07-2024 */
@media(max-width:1024px){
  .dropdown:hover>ul {
    display: block !important;
opacity:1;
}
.dropdown-item:focus,.dropdown-item:visit{
	background: #fff !important;
}
}
@media(max-width:767px){
    .owl-dots .owl-dot span, .custom-dot {
        width: 10px;
        height: 10px; 
    }
    span.owl-prev,span.owl-next{
        display:none;
    }
    .custom-nav { 
        padding: 2px 5px; 
        bottom: 10px; 
    }
    .fs-30 {
        font-size: 24px !important;
    }
    .lh-38 {
        line-height: 34px !important;
    }
    ul#home_decor {
        gap: 5px !important;
        font-size: 14px;
        display: flex;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    ul#home_decor img {
        display: none;
    }
    ul#home_decor a { 
        padding: 7px 12px; 
    }
#navbarNav ul.dropdown-subsubmenu{
    transform: translateY(0%);
}
}

.items{
    display: flex;
}

  
  .magnifiedImg {
    cursor: zoom-in;
  }
  .magnify{
    border-radius: 50%;
    border: 2px solid black;
    position: absolute;
    z-index: 20;
    background-repeat: no-repeat;
    background-color: white;
    box-shadow: inset 0 0 20px rgba(0,0,0,.5);
    display: none;
    cursor: none;
  }
  .start-50 {
    left: 183% !important;
}
.shareArticle {
    min-height: 70px;
    display: flex; 
    align-items: center;
    width: 100%;
    padding: 15px;
  }
  .add-to-fav{
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;

}



.inctax{
font-size: 13px;
margin-left: 12px;
font-weight: normal;
}
.w-25 {
    width: 20%!important;
}
.magnifiedImgbycss{
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.magnifiedImgbycss:hover{
transform: scale(1.5);
}
  .shareSocial {
    display: flex;
    flex-flow: row;
    align-items: center;

    
    .socialTitle {
      margin: 0 15px 0 0;
      font-size: 20px;
      @media (max-width: 767px) {
        margin-bottom: 0;
        text-align: center;
      }
    }
    .socialList {
      list-style: none;
      margin: 0;
      padding: 0;
      /* display: flex; */
      justify-content: flex-start;
      justify-content: center;
      flex-flow: row wrap;
      li {
        margin: 5px;
        &:first-child {
          padding-left: 0;
        }
        a {
          position: relative;
          display: flex;
          justify-content: center;
          align-items: center;
          width: 25px;
          height: 25px;
          border-radius: 100%;
          text-decoration: none;
          background-color: #999;
          color: #fff;
          transition: .35s;
          i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform-origin: top left;
            transform: scale(1) translate(-50%, -50%);
            transition: .35s;
          }
          &:hover {
            i {
              transform: scale(1.5) translate(-50%, -50%);
            }
          }
        }
        &:nth-child(1) a {
          background-color: #135cb6;
        }
        &:nth-child(2) a {
          background-color: #00aced;
        }
        &:nth-child(3) a {
          background-color: #BD081C;
        }
        &:nth-child(4) a {
          background-color: #111111;
        }
        &:nth-child(5) a {
          background-color: #1FB381;
        }
      }
    }
  }
  
  .shareLink {
    .permalink {
      position: relative;
      border-radius: 30px;
      .textLink {
        text-align: center;
        padding: 12px 60px 12px 30px;
        height: 45px;
        width: 450px;
        font-size: 16px;
        letter-spacing: .3px;
        color: #494949;
        border-radius: 25px;
        border: 1px solid #f2f2f2;
        background-color: #f2f2f2;
        outline: 0;
        appearance: none;
        transition: all .3s ease;
        @media (max-width: 767px) {
          width: 100%;
        }
        &:focus {
          border-color: #d8d8d8;
        }
        &::selection {
          color: #fff;
          background-color: #ff0a4b;
        }
      }
    }
}

.footer_logo img{
    width:62%;
}

.color_options label {
    display: inline-block;
}


@media screen and (max-width: 756px) {
    .addtoFav_share {
      
    }
    .shareArticle {
        min-height: 35px; 
        padding: 0;
      }
      .socialList{
        gap: 0 !important;
      }
      .btn-dd,.btn-ddblue { 
        font-size: 14px;   
    }
    .addcartdiv .w-25 {
        width: 30%!important;
    }
      .footer_logo img{
        margin-top: -55px;
        width: 34%;
    }
    .color_options label {
    display: inline-block;
}
    .contactus-logo1{
    width: 50px !important;
}

    .contactus-logo2{
    width: 80px !important;
}

    .contactus-logo3{
    width: 90px !important;
}

    .contact-email{
    word-wrap: break-word;
    width: 233px;

}
}