@font-face {
    font-family: 'BebasNeueBook';
    src: url('../fonts/BebasNeueBook.eot');
    src: url('../fonts/BebasNeueBook.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BebasNeueBook.woff2') format('woff2'),
        url('../fonts/BebasNeueBook.woff') format('woff'),
        url('../fonts/BebasNeueBook.ttf') format('truetype'),
        url('../fonts/BebasNeueBook.svg#BebasNeueBook') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'BebasNeueBold';
    src: url('../fonts/BebasNeueBold.eot');
    src: url('../fonts/BebasNeueBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BebasNeueBold.woff2') format('woff2'),
        url('../fonts/BebasNeueBold.woff') format('woff'),
        url('../fonts/BebasNeueBold.ttf') format('truetype'),
        url('../fonts/BebasNeueBold.svg#BebasNeueBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BebasNeueRegular';
    src: url('../fonts/BebasNeueRegular.eot');
    src: url('../fonts/BebasNeueRegular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BebasNeueRegular.woff2') format('woff2'),
        url('../fonts/BebasNeueRegular.woff') format('woff'),
        url('../fonts/BebasNeueRegular.ttf') format('truetype'),
        url('../fonts/BebasNeueRegular.svg#BebasNeueRegular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html{
    scroll-behavior: smooth;
}


:root {
    --theme_color:#191919;
    --heding_color:#666666;
    --second_color:#e50014;
    --text_color:#666666;
    --white:#fff;
    --content:#eeeeee;
    --interval_line:#e8e8e8;
    --grey_background:#f8f8f8;
    --button:#d8d8d8;
    --input_box:#cccccc;
    --neue:'BebasNeueRegular';
    --neue_book:'BebasNeueBook';
    --neue_bold:'BebasNeueBold';
    --t_color:#333333;
    --red_color:#e50014;
}
.error{
    color:#f02846;
}
h1{font-size: 32px;}
h2{font-size: 24px;}
h3{font-size: 20px;}
h4{font-size: 18px;}
h5{font-size: 16px;}
h6{font-size: 14px;}

ul, ol{
    list-style: none;
}
.container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.d_flex{
    display: flex;
    align-items: center;
    font-size: 14px;
}
body{
    font-size: 16px;
    font-family: var(--neue_book);
}
a:hover{
    text-decoration: none;
}
p{
    color:#000000;
}

/* === Top bar start === */
.top_bar{
    background-color: #191919;
    padding: 5px 0 3px 0;
}
.top_bar .d_flex{
    justify-content: space-between;
}
.top_bar .free_shiping p{
    font-size: 20px;
    color: var(--white);
    text-align: center;
    
}
.top_bar .get_btn{
    position: relative;
}
.top_bar .get_btn .top_btn{
    width:220px;
    height:44px;
    font-size: 18px;
    color: var(--white);
    font-family: var(--neue_bold);
    border: 1px solid #e50014;
    display: block;
    text-align: center;
    line-height: 18px;
	padding: 4px 0;
}
.top_bar .get_btn .img{
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
}

/* === Menu === */
.main_header{
    background: #fafafa;
}
.main_header .navbar .nav-item .nav-link{
    font-size: 24px;
    color: #333333;
    padding: 13px 11px;
    font-family: var(--neue_bold);
    border-bottom: 3px solid transparent;
    transition: all .35s ease-in-out;
}
.main_header .navbar .nav-item:hover .nav-link{
    border-bottom-color: var(--second_color);
    color: var(--second_color);
} 
.main_header .navbar .nav-item .nav-link:hover{
    border-bottom-color: var(--second_color);
    color: var(--second_color);
}

.main_header .navbar .menu_cart .nav-link{
    padding: 0 ;
    margin-left: 17px;
}
.main_header .navbar .nav-item .nav-link sup{
    font-size: 12px;
    color: var(--second_color);
}
.main_header .navbar .menu_cart .nav-link svg{
    font-size: 27px;
    fill: #333333;
    margin-top: -3px;
    margin-left: -7px;
}

.dropdown-toggle::after {
    background: url(../images/down-arrow.png) 100% no-repeat;
    border: 0 !important;
    width: 16px;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}
.main_header .nav-item.account .nav-link{
    font-size: 16px;
}
.main_header .nav-item.countrys .dropdown-toggle{
    border: 0;
    background-color: transparent;
}
.main_header .nav-item.countrys .select_counntry .dropdown{
    padding: 9px 11px;
}
.main_header .nav-item.countrys .select_counntry .dropdown .dropdown-menu{ 
    border: 0;
    margin-top: 0px;
    border-top: 1px solid #c0ccda;
    border-radius: 0;
}
.main_header .nav-item.countrys .select_counntry .country img{
    width: 31px;
    height: 31px;
    object-fit: cover;
    border-radius: 50%;
}
.main_header .nav-item.countrys .country_code, .main_header .nav-item.countrys .cuntry_name{
    font-size: 16px;
    font-family: var(--neue_bold);
    margin-left: 9px;
}
.dropdown-menu{
    background-color: #f8f7f7;
    margin-top: 0;
}
.main_header .nav-item.countrys .country{
    padding: 7px 11px;
    cursor: pointer;
}
.main_header .navbar{
    padding: 0 !important;
}
.main_header .navbar .nav-item{
    margin-left: 11px;
}
.main_header .navbar .nav-item.countrys{
    margin-left: 17px !important;
}
.main_header .mega_items.products .dropdown-menu {
    padding: 50px 35px;
    border: 0;
    margin-top: 0px;
    border-top: 1px solid #c0ccda;
    border-radius: 0;

    width: 99.4vw;
    margin-left: -50vw;
    left: 50%;
}
.main_header .mega_items.products.dropdown{
    position: unset;
    margin-right: 43px;
}
.main_header .navbar .nav-item.account .nav-link{
    padding: 19px 11px;
}
.main_header .mega_items.products .dropdown-menu .row .col-md-3{
    padding: 7px 40px 23px 40px;
}
.main_header .mega_items.products .morder_rl_1{
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
}
.main_header .mega_items.products .morder_r_1{
    border-right: 1px solid #f0f0f0;
}
.navbar .dropdown:hover .dropdown-menu, .navbar .dropdown .dropdown-menu:hover {
    display:block!important;
}
.main_header .dropdown-menu { width: 100%; }
.main_header .dropdown-menu>li { display: inline-block; }


.main_header .dropdown-menu .heading{
    font-size:18px;
    margin-bottom: 17px;;
    font-family: var(--neue_bold);
}
.main_header .dropdown-menu .sets .mega_menu_item .mega_menu_link{
    font-size: 20px;
}
.main_header .dropdown-menu .mega_menu_item .mega_menu_link{
    font-size: 18px;
    font-family: var(--neue_bold);
    color: #333333;
    display: flex;
    align-items: center;
    position: relative;
}
.main_header .dropdown-menu .mega_menu_item .mega_menu_link span{
    line-height: 18px;
}
.main_header .dropdown-menu .mega_menu_item{
    width:fit-content;
}
.main_header .dropdown-menu .mega_menu_item{
    margin-bottom: 23px;
}
.main_header .dropdown-menu .mega_menu_item .mega_menu_link img{
    margin-right: 7px;
}
.main_header .dropdown-menu .mega_menu_item .mega_menu_link .small{
    font-family: var(--neue);
    display: block;
    font-size: 16px;
}
.main_header .new{
    border-top:1px solid #cbcaca;
    border-bottom: 1px solid #cbcaca;
    color:var(--second_color);
    position: absolute;

}

/*=== Safty Travel ===*/
.safty_travel{
    background: url('../images/banner01@1x.png') 100% no-repeat;
    height: 800px;
    background-size: cover;
    background-position: bottom center;
}
.safty_travel .banner_text .heading{
    font-size: 74px;
    color: var(--white);
    font-family: var(--neue_bold);
    line-height: 77px;
}
.safty_travel .banner_text .heading span{
    font-size: 28px;
    display: block;
	line-height: 28px;
}
.safty_travel .banner_text .available{
    font-size: 26px;
    color: var(--white);
    font-family: var(--neue_bold);
}
.safty_travel .banner_text .cus_btn{
    font-size: 28px;
    padding: 10px 114px;
    line-height: 26px;
    background-color: var(--second_color);
    color: var(--white);
    font-family: var(--neue);
    border-radius: 4px;
	margin-top: 20px;
}
.safty_travel .d_flex{
    margin-top: -11px;
    justify-content: space-between;
}
.safty_travel .banner_text{
    margin-top: 220px;
}
/* === Footer === */
.drprotect_footer{
    background-color: var(--theme_color);
    padding: 33px 0 33px 0;
}
.drprotect_footer .social_icons .list_iem{
    margin-bottom: 7px;
}
.drprotect_footer .social_icons .list_iem a{
    color: var(--white);
    font-size: 14px;
    font-family: var(--neue);
}
.drprotect_footer .get_in_touch .social_icons .list_iem a, .drprotect_footer .help_category .social_icons .list_iem a{
    display: flex;align-items: center;
}
.drprotect_footer .social_icons .list_iem a img{
    margin-right: 7px;
}
.drprotect_footer .follow_us .social_icons li a, .drprotect_footer .secle_heading , .drprotect_footer .footer_menu li a{
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
}

.footer_b_space{
    height: 140px;
}
.footer_b_space .bordr_top_1{
     border-top: 1px solid #eaeaea; 
}
.drprotect_footer .get_in_touch .list_iem img{
    width: 19px;
}
.drprotect_footer .heading{
    font-size: 18px;
    font-family: var(--neue_bold);
    color: var(--white);
    font-weight: 500;
}
.drprotect_footer .flexible_pay li.list_iem img {
    width: 100%;
    max-width: 37px !important;
}
.drprotect_footer .footer_logo img{
    width: 100%;
    max-width: 33px; 
}
.drprotect_footer .copy_right{
    display: flex;
    justify-content: space-between;
    padding-top: 11px;
    border-top: 1px solid #e6e6e6;
}

.drprotect_footer .copy_right .footer_links{
    display: flex; align-items: center;
}
.drprotect_footer .copy_right .footer_link, .drprotect_footer .copy_right .copy{
    color:#979797;
    font-size: 12px;
    font-family: var(--neue);
}

.drprotect_footer .copy_right .d_flex{
    display: flex;
}
.drprotect_footer .social_icons {
    padding-left: 0;
}

/*=== hygiene protection ===*/
.hygiene_protection{
    background-color: var(--theme_color);
    padding: 0 0 58px 0;
	background: url(../images/banner2@1x.png) no-repeat;
	background-position: top center;
	background-size: cover;
}
.hygiene_protection .sec_heading{
    margin-bottom: 40px;
	padding-top: 60px;
}
.sec_heading{
    text-align: center;
}
.sec_heading .text{
    font-size: 21px;
    font-family: var(--neue);
    color: var(--white);
    letter-spacing: 2px;
}
.sec_heading .heading{
    letter-spacing: 5px;
    font-size: 40px;
    margin: 0;
    color: var(--second_color);
    font-family: var(--neue_bold);
}
.cus_container{
    width: 100%;
    max-width: 930px;
    margin: 0 auto;
}
.hygiene_protection .cus_container .row .col{
	padding-left: 10px;
	padding-right: 10px;
}
.icon_box{
    text-align: center;
}
.icon_box .heading{
    color: var(--white);
    margin-top: 11px;
    font-family: var(--neue_bold);
}
.we_are_dr .heading{
    font-size: 32px;
    position: relative;
    font-family: var(--neue_bold);
    color: var(--second_color);
    text-align: center;
    margin-top: 70px;
}
.we_are_dr .heading:after{
    content: '';
    position: absolute;
    width: 81px;
    height: 5px;
    background-color: var(--second_color);
    margin: 0 auto;
    left: 0;
    right: 0;
    top: -20px;
}

/*=== Disposable_travel ===*/
.disposable_travel{
    background: url('../images/banner3@1x.png') no-repeat #191919;
    height: 1500px;
    background-position: top center;
   /*  background-size: cover;  */
}
.disposable_travel .sec_heading{
    text-align: left;
    margin-top: 460px;
}
.disposable_travel .sec_heading .heading{
    font-size:80px;
    line-height: 76px;
    color: var(--second_color);
    letter-spacing: 0;
    font-family: var(--neue_bold);
}
.disposable_travel .sec_heading .text{
    font-size: 18px;
    letter-spacing: 0;
    font-family: var(--neue);
    color: var(--t_color);
    margin-bottom: 61px;
}
.disposable_travel .icon_box .heading{
    font-size: 18px;
    font-family: var(--neue);
    text-transform: uppercase;
    color: var(--t_color);
}
.disposable_travel .mushroom_pro{
	padding-top: 450px;
}
.disposable_travel .mushroom_pro .heading{
    font-size:22px;
    line-height: 22px;
    color: var(--white);
    letter-spacing: 0;
    font-family: var(--neue_bold);
}

/*=== Disposable_travels ===*/
.disposable_travels{
    background: url('../images/disposeble-travel-2.jpg') 100% no-repeat;
    height: 850px;
    background-position: bottom center;
    background-size: cover; 
}
.disposable_travels .sec_heading{
    text-align: left;
    margin-top: 60px;
}
.disposable_travels .sec_heading .heading{
    font-size:80px;
    line-height: 76px;
    color: var(--theme_color);
    letter-spacing: 0;
    font-family: var(--neue_bold);
}
.disposable_travels .sec_heading .text{
    font-size: 18px;
    letter-spacing: 0;
    font-family: var(--neue);
    color: var(--t_color);
    margin-bottom: 61px;
}
.disposable_travels .icon_box .heading{
    font-size: 18px;
    font-family: var(--neue);
    text-transform: uppercase;
    color: var(--t_color);
}

/* === Pillowcases === */
.pillowcases{
    background: url('../images/banner04@1x.png') no-repeat;
    height: 990px;
    background-position: top center;
    background-size: cover;
    position: relative;
}
.pillowcases .heading{
    padding-top: 65px;
    font-size: 33px;
    font-family: var(--neue_bold);
    color: var(--theme_color);
    text-align: center;
}
.pillowcases .five_layer{
    text-align: center;
    position: absolute;
    bottom: 70px;
    left: 0;
    right: 0;
}
.pillowcases .five_layer .text {
    font-size: 18px;
    font-family: var(--neue);
    margin-top: 27px;
    line-height: 19px;
}



/*=== pyramid ===*/
.pyramid{
    background: url('../images/banner05@1x.png') no-repeat #191919;
    height: 1400px;
    background-position: top center;
   /*  background-size: cover;  */
}
.pyramid .sec_heading{
    text-align: left;
    margin-top: 360px;
}
.pyramid .sec_heading .heading{
    font-size:80px;
    line-height: 76px;
    color: var(--second_color);
    letter-spacing: 0;
    font-family: var(--neue_bold);
}
.pyramid .sec_heading .text{
    font-size: 18px;
    letter-spacing: 0;
    font-family: var(--neue);
    color: var(--t_color);
    margin-bottom: 61px;
}
.pyramid .icon_box .heading{
    font-size: 18px;
    font-family: var(--neue);
    text-transform: uppercase;
    color: var(--t_color);
}
.pyramid .mushroom_pro{
	padding-top: 450px;
}
.pyramid .mushroom_pro .heading{
    font-size:22px;
    line-height: 22px;
    color: var(--white);
    letter-spacing: 0;
    font-family: var(--neue_bold);
}

/* === pillowcases_06 === */
.pillowcases_06{
    background: url('../images/banner06@1x.png') 100% no-repeat;
    height: 1000px;
    background-position: center;
    background-size: cover; 
    position: relative;
}

/* === lightweight === */

.lightweight {
    padding: 5px 0 60px 0;
}
.lightweight .col_text .text{
    font-size: 40px;
    font-family: var(--neue_bold);
    line-height: 40px;
    color:var(--t_color);
}
/* === stay_germ === */
.stay_germ{
    position: relative;
}
.stay_germ .bg_img .img{
    width: 100%;
    object-fit: cover;
    height: 700px;
}
.stay_germ .heading{
    font-size: 60px;
    font-family: var(--neue_bold);
    color: var(--white);
    margin: 0 auto;
    text-align: center;
    position: absolute;left: 0;right: 0;bottom: 40px;
}
/*=== travel-2in1 ===*/

.travel-2in1 {
    padding-top: 85px;
    height: auto;
    background-image: none;
    background-color: #0056b8;
}
.travel-2in1 .sec_heading{
    text-align: left;
    margin-top: 60px;
}
.travel-2in1 .sec_heading .heading{
    font-size:80px;
    line-height: 76px;
    color: var(--white);
    letter-spacing: 0;
    font-family: var(--neue_bold);
}
/* === infrared_ear === */

.infrared_ear .infrared_ear_tex .heading{
    position: unset;
    text-align: left;
    font-size: 50px;
    color: var(--theme_color);
    margin-top: 7px;
}
.infrared_ear .infrared_ear_tex h3.heading{
    font-size: 40px;
    margin-top: -5px;
}
.infrared_ear .col-md-6{
    position: unset;
}
.infrared_ear .infrared_ear_tex {
    position: absolute;
    top: 100px;
}
.infrared_ear .infrared_ear_tex .cus_bnt{
    padding: 7px 21px;
    background-color: var(--theme_color);
    font-size: 30px;
    color: var(--white);
    font-family: var(--neue_bold);
    border-radius: 3px;
}

.infrared_ear .infrared_ear_tex .icon_box{
    text-align: center;
}
.infrared_ear .infrared_ear_tex .icon_box .heading{
    font-size: 10px;
    font-family: var(--neue);
    text-align: center;
}
.infrared_ear .infrared_ear_tex .bottom_con{
    margin-top: 250px;
}

/* === PERFECT FOR  === */

.perfect_for{
    background: url('../images/perfect-for.jpg') 100% no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0;
    background-attachment: fixed;
}
.perfect_for .heading{
    font-size: 48px;
    font-family: var(--neue_bold);
    color: var(--white);
}
.perfect_for .text{
    font-size: 30px;
    color: var(--white);
    font-family: var(--neue);
}
.perfect_for .text.mb_0{
    margin-bottom: -10px ;
}

/*=== Cooperative Brands === */

.cooperative_brands{
    padding: 90px 0;
}
.t_heading .heading{
    font-size: 32px;
    position: relative;
    font-family: var(--neue_bold);
    color: var(--theme_color);
    text-align: center;
}
.heading_border{
    position: relative;
}
.heading_border:after, .products .product.sale_product .reg_price:after{
    content: '';
    position: absolute;
    width: 81px;
    height: 5px;
    /* background-color: var(--theme_color); */
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -15px;
}
.cooperative_brands .row{
    margin-top: 100px;
}
.cooperative_brands .row .col-md-3{
    margin-bottom: 70px;
}

.cooperative_brands .coo_img {
    text-align: center;
}
/* === Featured Product === */

.featured_product{
    margin-top: -10px;
    padding: 0px 0 0 0;
}
.featured_product .products{
    margin-top: 70px;
}
.products .product{
    text-align: center;
}
.products .product .sale_price{
    margin: 40px 0 20px 0;
    font-size: 48px;
    font-family: var(--neue_bold);
    color: var(--second_color);
}
.products .product .product_name{
    font-size: 24px;
    line-height: 23px;
    font-family: var(--neue_bold);
    color: var(--theme_color);
}
.products .product .product_dis{
    /* font-size: 12px; */
    line-height: 13px;
    font-family: var(--neue);
    color: var(--theme_color);
    position: relative;
    margin-bottom: 40px;
}


.products .product .add_to_cart{
    padding: 5px 13px;
    font-size: 20px;
    border-radius: 3px;
    text-transform: uppercase;
    font-family: var(--neue);
    background-color: var(--second_color);
	color: var(--white);
}
.products .product.sale_product .reg_price{
    font-size: 36px;
    position: relative;
    color: var(--second_color);
}
.products .product.sale_product .reg_price:after{
    width: 115px;
    height: 2px;
    top: 50%;
    background-color: var(--second_color);
}
.products .product.sale_product .reg_price{
    margin-top: 12px;
}
.products .product.sale_product .sale_price{
    margin: 0 0 0 0;
    line-height: 19px;
    position: relative;
}
.products .product.sale_product .product_name{
    margin-top: 45px;
}
.products .product.sale_product .save{
    font-size: 20px;
    background: url('../images/save.png');
    color: var(--white);
    font-family: var(--neue);
    position: absolute;
    width: 95px;
    text-indent: 17px;
    background-size: cover;
    right: 9%;
    margin-top: -30px;
}


.featured_product .row .col-md-4{
    padding: 0 95px;
}
.products .product{
    margin-bottom: 90px;
}

/* === Free shopping === */

.free_shopping{
    padding: 40px 0;
    background-color: var(--red_color);
}
.free_shopping .icon_box{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-family: var(--neue_bold);
}

.categories{
    padding: 40px 0;
}
.categories .towel_img img{
    border-radius: 20px;
    height: 600px;
    object-fit: cover;
    width: 100%;
}
.categories .face_towel{
    position: relative;
}
.categories .towel_heading {
    font-size: 33px;
    font-family: var(--neue_bold);
    color: var(--white);
    position: absolute;
    bottom: 0;
    left: 20px;
    line-height: 33px;
}

.categories .face_towel.highly_ab .towel_img img{
    height: 320px;
}
.categories .face_towel.highly_ab .towel_img{
    margin-bottom: 20px;
}
.categories .face_towel.lightweight_tr .towel_img img{
    height: 260px;

}
.categories .face_towel.highly_ab .towel_heading,  .categories .face_towel.lightweight_tr .towel_heading{ 
    font-size: 20px;
    color: var(--theme_color);
}
.categories .pr_2{
    padding-right: 20px;
}
.categories .pl_2{
    padding-left: 20px;
}

/*=== login and sign up popup ===*/
.login_pop .modal-dialog {
    max-width: 800px;
}
.login_pop .modal-content{
    border-radius: 10px;
    border:0;
}
.login_pop .close, .share_product_pop .close{
    opacity: 1;
    right: 10px;
    top: 10px;
    position: absolute;
    line-height: 0;
    z-index: 9;
}
.login_pop .modal-body{
    padding: 35px 60px 35px 70px;
}
.login_pop .login_form{
    text-align: center;
}
.login_pop .social_login{
    display: flex;
    margin-top: 20px;
    margin-bottom: 27px;
}
.login_pop .login_form .form-group label{
    float: left;
    width: 10%;
}
.login_pop .login_form .form-group .form-control{
    float: left;
    width: 88%;
    font-size: 16px;
    font-family: var(--neue);
    color: #212121;
    border: 0;
    border-bottom: 1px solid #757575;
    border-radius: 0;
    height: 27px;
    padding-left: 0;
    margin-left: 5px;
}
.login_pop .pr_5 {
    padding-right: 50px;
}
.login_pop .login_form .form-group .form-control:focus{
    border-bottom-color: #f45e74;
    box-shadow: none;
    outline: none;
}
.login_pop .login_form .form-group {
    margin-bottom: 0;
}

/* .login_pop .login_form .form-group .error_message{
    font-size: 12px;
    color: #f02846;
    position: relative;
    text-align: right;
    top: -21px;
    right: 8px;
    width: 120px;
    margin-left: auto;
} */
.login_pop .login_form .d_flex{
    align-items: center;
    justify-content: space-between;
    margin-top: -8px;
}
.login_pop .login_form .form-group.check_remember {
    display: flex;
    width: max-content;
    align-items: center;
}
.login_pop .login_form .form-group.check_remember .form-control, .login_pop .login_form .form-group.check_remember label{
    width: auto;
    margin-bottom: 0;
}
.login_pop .login_form .form-group.check_remember label{
    margin-left: 5px;
    font-size: 12px;
}
.login_pop .login_form .form-group.check_remember input{
    position: relative;
}
input[type=radio]{
    position: relative;
}
input[type=radio]:checked:before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid #999;
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
}
input[type=radio]:checked:after{
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    z-index: 9;
    position: absolute;
    left: 50%;
    top: 50%;
    background-color: #f02846;
    transform: translate(-50%, -50%);
}
.login_pop .login_form .forgot_password_btn{
    font-size: 12px;
    color: #999999;
}
.login_pop .form_btn, .my_account_tabs .form-group .form_btn{
    width: 201px;
    height: 41px;
    font-size: 20px;
    font-family: var(--neue);
    background-color: var(--second_color);
    color: #212121;
    border-radius: 5px;
    line-height: 27px;
    margin: 0 auto;
    margin-top: 27px;
    text-align: center;
}
.login_pop .regester_content{
    text-align: left;
    padding-top: 30px;
    padding-left: 50px;
}
.login_pop .regester_content .heading{
    margin-bottom: 7px;
    font-size: 24px;
    color: var(--theme_color);
    font-family: var(--neue_bold);
}
.login_pop .regester_content .text{
    font-size: 12px;
    font-family: var(--neue);
    line-height: 18px;
}
.login_pop .create_acc_btn {
    text-align: center;
}
.login_pop .create_acc_btn .form_btn{
    position: relative;
    top: 31px;
}
.login_pop .regester_content:after{
    content: '';
    position: absolute;
    height: 181px;
    width: 1px;
    background-color: #f2f2f2;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
    
.login_pop{
    top: 15%;
}
.login_pop .forget_pass_con{
    text-align: center;
}
.login_pop .forget_pass_con .heading, .verfiy_email_address .heading{
    font-size: 24px;
    font-family: var(--neue);
    color: #000000;
    margin-top: 7px;
    margin-bottom: 11px;
}
.login_pop .forget_pass_con .text{
    font-size: 16px;
    font-family: var(--neue);
    color: #000000;
}
.form-control:focus{
    outline: none;
    box-shadow: none;
}
.login_pop .forget_pass_con .form-group .form-control{
    color: #212121;
    font-size: 20px;
    font-family: var(--neue);
    height: 41px;
    line-height: 27px;
    text-align: center;
    border: 1px solid #e7e7e7; 
}
.login_pop .form-group{
    position: relative;
}
.login_pop .forget_pass_con .form-group .error_message{
    color:#f02846;
    font-size: 12px;
    margin-top: 7px;   
}
.login_pop .spinner-border{
    color:#f02b48;
    position: absolute;
    width: 19px;
    height: 19px;
    border-width: 3px;
    right: 2%;
    top: 41%;
}
.login_pop .forget_pass_con .form_btn{
    margin-top: 13px;
}
.forget_pass_con{
    display: none;
}
.login_pop.forget_pass .sign_in_up_form{
    display: none;
}
.login_pop.forget_pass .forget_pass_con{
    display: block;
}
.login_pop.forget_pass .modal-dialog{
    max-width: 500px;
}
.forget_pass_con .valid_email{
    text-align: left;
}
.forget_pass_con .valid_email .link_has{
    font-size: 16px;
    color:#000000;
    margin-bottom: 27px;
    font-family: var(--neue);
    margin-top: 75px;
}
.forget_pass_con .valid_email .link_has .email{
    color: #f02846;
    font-size: 24px;
    font-family: var(--neue);
    margin-left: 23px;
}
.forget_pass_con .valid_email .text{
    font-size: 16px;
    font-family: var(--neue);
    line-height: 17px;
    color: #000000;
}
.valid_email_a .forget_pass_con .valid_email_a_none{
    display: none;
}
.forget_pass_con .valid_email{
    display: none;
}
.valid_email_a .forget_pass_con .valid_email{
    display: block;
}
.login_pop.valid_email_a .modal-body{
    padding: 40px 40px 50px 40px;
}

.login_pop.create_account_p .modal-dialog{
    max-width: 400px;
}

.login_pop.create_account_p .modal-body{
    padding: 35px 60px 30px 60px;
}

.create_account .two_in{
    margin-bottom: 11px;
}
.create_account .creat_acc_heading{
    text-align: left;
    font-size: 20px;
    margin-top: 23px;
    color:var(--theme_color);    
    font-family: var(--neue_bold);
}
.create_account .mail_text.form-group {
    font-size: 8px;
    color: #b2b4b6;
    position: relative;
    top: -13px;
    left: 31px;
    text-align: left;
    margin-bottom: -7px;
}
.login_pop .form-group .error_message span {
    font-size: 12px;
    color: #f02846;
    position: relative;
    text-align: right;
    top: -21px;
    right: 8px;
    /* width: 120px; */
    margin-left: auto;
}
.login_pop .create_account .form-group .form-control{
    font-size: 16px;
    font-family: var(--neue);
    color: #212121;
}
.login_pop .create_account .two_in .form-group label{
    width: 25%;
}
.login_pop .create_account .two_in .form-group .form-control{
    width: 70%;
    margin-left: 0;
}
.login_pop .create_account .two_in .col-md-6{
    padding-right: 0;
}
.login_pop .create_account .two_in .form-group.last_name .form-control{
    width: 85%;
}

.login_pop .error_message {
    text-align: right;
    margin-bottom: -11px;
}
.login_pop .create_account .form_btn {
    margin-top: 23px;
}
.verfiy_email_address{
    text-align: center;
}
.login_pop .verfiy_email_address .form-group .form-control{
    width: 122px;
    height: 41px;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    font-family: var(--neue);
}
.login_pop .verfiy_email_address .form-group .error_message{
    font-size: 12px;
    color: #f02846;
    text-align: center;
}
.login_pop .verfiy_email_address .spinner-border {
    right: 36%;
    top: 43%;
}
.login_pop .verfiy_email_address .text{
    font-size: 16px;
    font-family: var(--neue);
    color: #000000;
    margin-bottom: 0;
}
.login_pop .verfiy_email_address .demo_text{
    color:#999999;
    font-size: 20px;
    font-family: var(--neue);
    margin-bottom: 3px;
    margin-top: 13px;
    line-height: 0;
}
.login_pop .verfiy_email_address .form-group .resend_otp {
    position: absolute;
    right: 19%;
    top: 43%;
    color: #999999;
    font-size: 12px;
}
.login_pop .verfiy_email_address .valid_otp_btn .form_btn {
    margin-top: 7px;
}
.login_pop .forget_pass_con .form-group .error_message{
    text-align: center;
}
.create_account, .verfiy_email_address, .create_account_p .sign_in_up_form, .login_pop.create_account_p.valid_email_show .create_account{
    display: none;
}
.login_pop.create_account_p .create_account, .login_pop.valid_email_show .verfiy_email_address{
    display: block;
} 
.login_pop.valid_email_show .modal-dialog{
    max-width: 500px;
}





/*=== product page ===*/

.my_product .product_details_tab{
    border-bottom: 2px solid #f2f2f2;
    border-top: 2px solid #f2f2f2;
}
.my_product .product_details_tab h3{
    font-size: 30px;
    color: #212121;
    font-weight: 600;
    padding: 9px 0;
    margin: 0 !important;
    position: relative;
    cursor: pointer;
}
.my_product .product_details_tab h3:after{
    content: '';
    background:url(../images/Unfold.png) 100% no-repeat;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}
.my_product .product_share{
    margin-top: 25px;
    margin-bottom: 45px;
}

.my_product .product_info .cart_wish{
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.my_product .product_details{
    padding: 31px 0;
    /*border-top: 1px solid #e8e8e8;*/
    border-bottom: 1px solid #e8e8e8;
}
.proudct_gallery_img {
    padding: 0px 20px 120px 20px;
    /* border: 1px solid #DDD; */
}
.proudct_gallery_img .carousel-indicators li{
    width: 100px;
    height: 100px;
    border-radius: 3px;
    opacity: 1 !important;    
    margin: 0 !important;
    margin-top: 0 !important;
}
.proudct_gallery_img .carousel-indicators li .gallery_img{
    display: block;
    border: 1px solid #eee;
}
.proudct_gallery_img .carousel-indicators li img {
    display: block;
    border: 2px solid transparent;
    border-radius: 0;
    height: 100px;
    width: 100px;
    opacity: 1 !important;
    object-fit: contain;
    padding: 10px;
    background: #fff;
}
.proudct_gallery_img .carousel-indicators li.active img{
    border-color: var(--second_color);
}
.proudct_gallery_img .carousel-indicators li::before, .proudct_gallery_img .carousel-indicators li::after{
    display: none;
}
.proudct_gallery_img .carousel-indicators li{
    background-color: transparent;
}

.my_product{
    padding: 25px 0 65px 0;
}
.my_product .carousel-indicators {
    float: right;
    width: 13%;
    margin-right: 40px;
    display: block;
    position: unset;
    margin-left: 0;
}
.my_product .proudct_gallery_img{
    float: left;
    width: 100%;
}
.my_product .proudct_gallery_img .img-thumbnail {
    border: 0;
    float: right;
    width: 80%;
    padding: 0;
}
.my_product .proudct_gallery_img .carousel-item {
    background-color: #fff;
    padding: 50px 30px;
}

.my_product .fa-star {
    color: var(--second_color);
    cursor: pointer
}

.my_product .fa-star-o {
    color: var(--second_color);
    cursor: pointer
}
.my_product .product_detail{
    padding-top: 30px;
}
.product_detail .product_name{
    font-size: 32px;
    font-family: var(--neue_bold);
    color: var(--theme_color);
}
.product_detail .product_esse, .product_detail .stars .reviews{
    font-size: 12px;
    font-family: var(--neue);
    color: var(--theme_color);
    margin-bottom: 7px;
}
.product_detail .product_esse .free{
    font-size: 18px;
    font-family: var(--neue_bold);
    color: var(--second_color);
    margin-left: 20px;
}
.product_detail .stars .reviews{
    margin-left: 10px;
    text-transform: uppercase;
}
.product_detail .product_pc{
    display: inline-block;
    /* font-size: 12px; */
    border: 1px solid #e8e8e8;
    color: #333333;
    border-radius: 5px;
}
.product_detail .product_pc .pcs{
    padding: 7px 10px;
    color: var(--t_color);
    display: inline-block;
    text-align: center;
    transition: all .3s ease-in-out;
	font-weight: 600;
}

.product_detail .product_pc .pcs.x_border{
    position: relative;
}
.product_detail .product_pc .pcs.x_border:after, .product_detail .product_pc .pcs.x_border:before{
    content: '';
    position: absolute;
    height: 26px;
    width: 1px;
    background-color: #e3e3e3;
    left: 0;
    top: 50%;
    transform: translateY(-50%); 
}
.product_detail .product_pc .pcs.x_border:before{
    left: 100%;
}
.product_detail .product_pc .set{
    display: block;
    font-family: var(--neue_bold);
}
.product_detail .stars {
    margin-bottom: 35px;
}
.product_detail .product_pc .pcs.active {
	background: var(--theme_color);
	color: #fff;
	border-radius: 5px;
}
/*.product_detail .product_pc .pcs.active, .product_detail .product_pc .pcs:hover{
    background: #014aa8;
    color: #fff;
    border-radius: 5px;
}*/

.product_detail .prices{
    position: relative;
    margin-top: 40px;
}
.product_detail .prices .reg_price{
    font-size: 25px;
    color:var(--theme_color);
    font-family: var(--neue_book);
    position: relative;
    padding-left: 11px;
}
.product_detail .prices .sale_price{
    line-height: 19px;
    font-size: 33px;
    color:var(--theme_color);
    font-family: var(--neue_bold);
    position: relative;
}
.product_detail .prices .reg_price:after {
    content: '';
    position: absolute;
    width: 81px;
    height: 2px;
    background-color: var(--second_color);
    left: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}
.product_detail .prices .save {
    font-size: 20px;
    background: url(../images/save.png);
    color: var(--theme_color);
    position: absolute;
    width: 95px;
    text-indent: 17px;
    background-size: contain;
    left: 25%;
    top: 50%;
    font-family: var(--neue);
    transform: translateY(-50%);
    height: 20px;
    font-size: 14px;
    background-repeat: no-repeat;

}
.product_detail .quantity label{
    font-size: 24px;
    font-family: var(--neue_bold);
    color: var(--theme_color);
    margin-right: 10px;
}
.product_detail .quantity .input-text.qty{
    width: 81px;
    height: 41px;
    text-align: center;
    border: 1px solid #ebebeb;
    color: var(--theme_color);
    font-size: 24px;
    border-radius: 3px;
    font-family: var(--neue_bold);
}
.product_detail .add_to_cart_btn:hover, .product_detail .add_to_cart_btn:focus{
    outline: none;box-shadow: none;
}
.product_detail .add_to_cart_btn{
    width: 201px;
    height: 41px;
    border-radius: 10px;
    text-align: center;
    font-family: var(--neue);
    text-align: center;
    font-size: 20px;
    color: var(--white);
    background-color: var(--second_color);
    border:1px solid var(--second_color);
}
.my_product .product_share a{
    color: var(--t_color);
    font-size: 16px;
    cursor: pointer;
    margin-left: 30px;
}
.my_product .product_share .share img{
    margin-top: -3px;
}
.my_product .quantity {
    margin-top: 11px;
}
.product_detail .product_disfea, .product_detail .product_disfea ul li{    
    font-family: var(--neue);
    color: var(--t_color);
    font-size: 16px;
}
.product_detail .product_disfea .heading{
    font-family: var(--neue_bold);
    color: var(--theme_color);
    margin-bottom: 0;
}
.product_detail .product_disfea .text, .product_detail .product_disfea ul li{
    line-height: 17px;    
}
.product_detail .product_disfea ul{
    list-style: disc;
}
.share_product_pop .modal-dialog{
    max-width: 500px;
    border-radius: 10px;
    top: 11%;
}
.share_product_pop .modal-content{
    border-radius: 10px;
}
.share_product_pop .proudct{
    display: flex;
    align-items: center;
    padding: 27px 30px 17px 30px;
    background-color: #f7f7f7;
    border-radius: 10px 10px 0 0;
}
.share_product_pop .proudct .product_img img{
    width: 81px;
    margin-right: 20px;
    height: 81px;
    object-fit: contain;
    background-color: #e0e0e0;
    padding: 7px 15px;
}
.share_product_pop .modal-body{
    padding: 15px 35px 0 35px;
}
.share_product_pop .modal-body .row{
    padding: 0 30px;
}
.share_product_pop .product_info .proudct_name{
    font-size: 24px;
    color: #212121;
    font-family: var(--neue);
}
.share_product_pop .product_info .retail_price{
    color: #f02846;
    font-size: 24px;
    font-family: var(--neue);
}
.share_product_pop .share_proudct_s{
    text-align: center;
    display: block;
}
.share_product_pop .modal-body .heading{
    font-size: 20px;
    color: #000000;
    margin-bottom: 20px;
    font-family: var(--neue);
}
.share_product_pop .share_proudct_s .heading{
    font-size: 14px;
    color: #000000;
    font-family: var(--neue);   
    margin-top: 10px;
    margin-bottom: 0 !important;
}
.share_product_pop .social_img.share_img img{
    height: 61px;
    width: 61px;
    background-color:#e0e0e0;
    padding: 5px 10px; 
    object-fit: contain;
}
.share_product_pop .social_img img{
    height: 61px;
    width: 61px;
    object-fit: contain;
}
.share_product_pop .share_image .proudct{
    justify-content: center;
}
.share_product_pop .share_image, .share_product_pop.share_img_show .share_product{
    display: none;
}
.share_product_pop.share_img_show .share_image{
    display: block;
}
.gallery_popup .close{
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 1;
}
.gallery_popup .modal-body {
    padding: 35px 50px;
}
.gallery_popup .modal-content {
    border-radius: 10px;
}


/*=== My Account ===*/

.my_account_tabs{
    padding: 50px 0;
}
.my_account_tabs .tab_heading h3{
    font-size: 32px;
    font-family: var(--neue_bold);
    color: #757575;
    border-bottom: 1px solid #ececec;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.my_account_tabs .nav-item .nav-link span{
    margin-left: 10px;
    color: #212121;
    font-size: 24px;
    font-family: var(--neue);
}
.my_account_tabs .nav-item .nav-link{
    padding: 7px 0;
    display: flex;
    align-items: center;
    background: transparent;
}
.my_account_tabs .nav-item .nav-link.active span{
    font-family: var(--neue_bold);
}
.my_account_tabs .tab-content .order_detail .title{
    border-bottom: 2px solid #616161;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    margin-bottom: 30px;
}
.my_account_tabs .order_detail .title .text, .my_account_tabs .order_detail .title .sign_out{
    font-size: 24px;
    color: #333333;
    font-family: var(--neue);
}
.my_account_tabs .form-group label{
    color: #757575;
    margin-bottom: 0;
    font-size: 20px;
    font-family: var(--neue);
}
.my_account_tabs .form-group .form-control{
        padding: 0 !important;
    width: 396px;
    border: 0;
    border-bottom: 2px solid #4b4b4b;
    border-radius: 0;
    font-size: 16px;
    color: #212121;
    height: 30px;
    font-family: var(--neue);
}
.my_account_tabs .form-group .form-control:focus{
    border-bottom-color: #f35069;
}
.my_account_tabs .form-group .form_btn{
    border: 0;
    margin: 0 auto;
    margin-left: 100px;
}
.my_account_tabs .form-group {
    margin-bottom: 40px;
    margin-top: 15px;
}
.payment_methods .paypal {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}
.payment_methods .pay_met_name {
    font-size: 20px;
    font-family: var(--neue);
    color: #212121;
    margin-right: 30px !important;
}
.payment_methods .credit_debit {
    padding-top: 23px;
    font-family: var(--neue);
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.payment_methods .pay_met_name {
    font-size: 20px;
    color: #212121;
    font-family: var(--neue);
    margin-right: 30px !important;
}
.payment_methods .credit_debit img {
    margin-right: 15px;
}
.payment_methods {
    margin-top: 43px !important;
}
.profile_details_form .error_message {
    text-align: right;
    margin-bottom: -15px;
}
.profile_details_form .error_message span, .profile_details_form .pass_changed{
    font-size: 12px;
    color: #f02846;
    position: relative;
    top: -26px;
    right: 49%;
    margin-left: auto;
}
.profile_details_form .pass_changed {
    position: unset !important;
    margin-left: 130px !important;
    margin-top: 30px;
}
.all_address .address{
    padding: 15px 0;
    margin-bottom: 11px;
    border-bottom: 1px solid #f4f4f4; 
    width: 401px;
}
.all_address .address .name, .all_address .address .number, .all_address .add_address{
    font-size: 18px;
    color: #212121;
    font-family: var(--neue);
}
.all_address .address .add_coun{
    font-size: 14px;
    color: #212121;
    line-height: 17px;
    font-family: var(--neue);
}
.all_address .address .country {
    display: block;
}
.all_address .add_address{
        display: flex;
    align-items: center;
}

.my_account_tabs .recent_heading .heading{
	font-size: 20px;
	font-family: var(--neue_bold);
	color: #212121;
	margin-bottom: 0;
    line-height: 19px;
    margin-top: 40px;
}
.my_account_tabs .recent_heading .text{
	font-size: 16	px;
	font-family: var(--neue);
	color: #212121;

}
.my_account_tabs .recent_orders{
	border: 1px solid #f7f7f7;
	border-radius: 10px;
	margin-bottom: 20px;
}
.my_account_tabs .recent_orders .order_heading {
    background: #f6f6f6;
    border-radius: 10px 10px 0 0;
    padding: 7px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.my_account_tabs .order_heading .order_name{
	font-size: 16px;
	color: #212121;
	font-family: var(--neue);
}
.my_account_tabs .order_heading .order_date{
	font-size: 14px;
	color: #757575;
	font-family: var(--neue);
}
.my_account_tabs .order_con{
	padding: 30px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.my_account_tabs .order_images img{
	width: 121px;
	height: 121px;
	object-fit: contain;
	background-color: #f6f6f6;
	padding: 10px 15px;
}
.my_account_tabs .order_pri .price{
	color: #f02846;
	font-size: 24px;
	font-family: var(--neue);
	line-height: 23px;
}
.my_account_tabs .order_pri .qtys{
	font-size: 20px;
	color: #757575;
	font-family: var(--neue);
}

.my_account_tabs .orders .order_con {
    padding: 25px 0;
    border-bottom: 1px solid #f4f4f4;
    margin: 0 30px;
}
.my_account_tabs .orders .all_address{
    display: block;
}
.my_account_tabs .orders .receiving_add{
    color: #212121;
    font-size: 18px;
    font-family: var(--neue);
}
.my_account_tabs .orders .all_address .address {
    padding: 0 0 0 0;
    margin-bottom: 0;
    border-bottom: 0;
    width: auto;
}
.my_account_tabs .orders .order_con.all_address {
    margin-bottom: -10px !important;
    padding-bottom: 20px !important;
}
.my_account_tabs .order_con .order_pri .pri, .my_account_tabs .order_con .order_pri .qtys{
    font-size: 24px;
    text-align: right;
    color: #757575;
    font-family: var(--neue);
    line-height: 23px;
}
.my_account_tabs .order_con .order_pri .qtys{
    font-size: 20px;
}
.my_account_tabs .order_con .order_pri .price{
    font-size: 20px;
    text-align: right;
    font-family: var(--neue);
    margin-top: 50px;
}
.my_account_tabs .total .total_qty {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.my_account_tabs .total .total_qty .qty, .my_account_tabs .orders .shipment_tra{
     font-size: 18px;
    color: #212121;
    font-family: var(--neue);
}
.my_account_tabs .total .total_qty .qty span{
    color: #f02846;
}
.my_account_tabs .total .total_qty .qty.pcs span{
    font-size: 20px;
}
.my_account_tabs .orders .shipment_tra{
    margin: 20px 30px 10px 30px; 
}
.my_account_tabs .orders .delivery_date{
    justify-content: center;
}
.my_account_tabs .tracking{
    border-top: 2px solid #757575;
    width: 350px;
     padding-left: 0;
    display: flex;
    justify-content: center;
    margin: 0 auto;
}
.my_account_tabs .tracking .dot{
    position: relative;
    width: 117px;
}
.my_account_tabs .tracking .dot:after {
    content: '';
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #757575;
    left: 0;
    margin-top: -8px;
}
.my_account_tabs .tracking .dot.active:after{
    background: #0056b8;
}
.my_account_tabs .tracking .dot.active:before, .my_account_tabs .tracking .dot.new_brunswick:before{
    content: '';
    background: #0056b8;
    position: absolute;
    width: 117px;
    height: 2px;
    left: 0;
    margin-top: -2px;
}
.my_account_tabs .tracking .dot.current:after{
    content: '';
    position: absolute;
    background: url('../images/dor-arrow.png') 100% no-repeat;
    background-color: #0056b8;
    width: 21px;
    height: 21px;
    background-size:12px;
    background-position: center; 
    margin-top: -13px;
}
.my_account_tabs .tracking .dot.new_brunswick:before{
    background-color: #757575;
    left: 100%;
    width: 13px;
    height: 13px;
     border-radius: 50%;
    margin-top: -8px;
}
.my_account_tabs .delivery_date .trackin_content{
    font-size: 14px;
    width: 450px;
    list-style: none;
    color: #757575;
    font-family: var(--neue);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 17px;
}
.my_account_tabs .order_con .heading{
    color: #757575;
    font-size: 20px;
    margin-bottom: 35px;
    font-family: var(--neue);
}
.my_account_tabs .delivery_detail .heading, .my_account_tabs .delivery_detail .text{
    color: #757575;
    font-size: 16px;
    font-family: var(--neue);
    line-height: 19px;
    margin-top: 30px;
    margin-bottom: 5px;
}
.my_account_tabs .delivery_detail{
    width: 360px;
    margin-left: 140px;
}
.my_account_tabs .delivery_detail .row{
    align-items: center;
}
.my_account_tabs .delivery_detail .row.bg_dark{
    background-color: #fafafa;
}
.my_account_tabs .delivery_detail .text{
    padding: 3px 3px;
    font-size: 12px;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}
.my_account_tabs .delivery_detail .wl{
    width: 130px;
    text-align: left;
}


/*=== Order Summary ===*/

.order_summary{
    padding: 30px 0; 
}
.order_summary .heading{
    color:#757575;
    font-family: var(--neue_bold);
    font-size: 24px;
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}
.order_summary .order{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom:1px solid #f0f0f0;
}
.order_summary .order .product-thumbnail{
    width: 70%;
}
.order_summary .order .product_img{
    width: 81px;
    height: 81px;
    object-fit: contain;
    padding: 5px 10px;
    background: #f5f5f5;
    margin-left: 20px;
}
.order_summary .order .proudct_name{
    color: #333333;
    font-size: 32px;
    margin-left: 15px;
    font-family: var(--neue);
    line-height: 23px;
}
.order_summary .select_all{
    border-bottom:1px solid #f0f0f0;
    padding-bottom: 2px; 
}
.order_summary .select_all label{
    font-size: 20px;
    margin-left: 5px;
    font-family: var(--neue);
    color: #212121;
}

.order_summary .product_price .sell_pri{
    font-size: 24px;
    color: #212121;
    line-height: 18px;
    font-family: var(--neue);
}
.order_summary .product_price .reg_pri{
    color: #212121;
    font-size: 20px;
    position: relative;
}
.order_summary .product_price {
    text-align: right;
    margin-right: 35px;
}
.order_summary .product_price .reg_pri:after { 
    content: '';
    position: absolute;
    width: 79px;
    height: 2px;
    background-color: var(--second_color);
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 13px;
}
.order_summary .product_quantity .quantity{
    width: 61px;
    height: 41px;
    border: 1px solid #f0f0f0;
    border-radius: 3px;
    font-size: 24px;
    text-align: center;
    font-family: var(--neue);
    color: #212121;
}
.order_summary .product_quantity label, .order_summary .product_subtotal .total{
    font-size: 24px;
    margin-right: 15px;
    font-family: var(--neue);
    color: #212121;
}
.order_summary .product_subtotal .total{
    margin-right: 0;
    margin-left: 20px;
}
.order_summary .product_subtotal {
    text-align: right;
}
.order_summary .order_total{
    margin-top: 17px;
    margin-bottom: 35px;
}
.order_summary .order_total .total_qty{
    display: flex;
    justify-content: space-between;
}
.order_summary .order_total .total_qty .qty{
    font-size: 20px;
    color: #212121;
    line-height: 23px;
    font-family: var(--neue);
}
.order_summary .delivery_address{
    font-size: 24px;
    color: #757575;
    display: flex;
    align-items: center;
    font-family: var(--neue_bold);
    border-bottom: 1px solid #8f8f8f; 
}
.order_summary .delivery_address_plustime{
    font-size: 24px;
    color: #757575;
    display: block;
    align-items: center;
    font-family: var(--neue_bold);
    border-bottom: 1px solid #8f8f8f; 
}
.order_summary .all_del_add .address label{
    margin-bottom: 0;
}
.order_summary .all_del_add{   
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
}
.order_summary .all_del_add .address{
    display: flex;
    align-items: center;
    font-family: var(--neue);
    color: #212121;
    font-size: 18px;
}
.order_summary .all_del_add .address .text{
    font-size: 14px;
}
.order_summary .add_address{
    color: #212121;
    display: flex;
    align-items: center;
    font-family: var(--neue);
    margin-top: 17px;
    margin-bottom: 35px;
}
.order_summary .payment_mode{
    margin-top: 45px;
}
.order_summary .coupon{
    width: 301px;
    margin: 25px 0; 
    height:43px;
    border: 1px solid #b2b4b6;
    border-radius:5px;
    display: flex;align-items: center;
}
.order_summary .coupon .input-text{
    color: #b2b4b6;
    font-size: 20px;
    font-family: var(--neue);
    border: 0;
    height: 41px;
    padding: 5px 11px;
    border-radius: 5px;
}
.order_summary .coupon .input-text:focus{
    outline: none;
    box-shadow: none;
}
.order_summary .apply_bnt, .order_summary .submit_btn{
    width: 106px;
    height: 41px;
    color: #212121;
    font-size: 20px;
    font-family: var(--neue);
    text-align: center;
    border:0;
    background-color: var(--second_color);
    border-radius: 0 5px 5px 0;
}
.order_summary .payment_mothod {
    display: flex;
}
.order_summary .payment_mothod label{
    color: #212121;
    font-size: 20px;
    font-family: var(--neue);
}
.order_summary .payment_mothod .credit_debit {
    margin-left: 23px;
}
.order_summary .payment_mothod .paypal {
    margin-left: 45px;
}
.order_summary .submit_btn{
    margin: 0 auto;
    width: 301px;
    border-radius: 5px;
    margin-top: 35px;
    margin-bottom: 35px;
}

/*=== Zoom ====*/

.scrollToTop{
    width:75px; 
    height:75px;
    padding:10px; 
    text-align:center; 
    font-weight: bold;
    color: #444;
    text-decoration: none;
    position:fixed;
    bottom:7%;
    right:2%;
    display:none;
}

.proudct_gallery_img .zoom {
    display:inline-block;
    position: relative;
}

/* magnifying glass icon */


.proudct_gallery_img .zoom img {
    display: block;
}

.proudct_gallery_img .zoom img::selection { background-color: transparent; }

.proudct_gallery_img .zoom:after {
    content:'';
    display:block; 
    width:33px; 
    height:33px; 
    position:absolute; 
    top:0;
    right:0;
    background:url('../images/icon.png');
}
.featured_product.shop{
    padding: 50px 0;
}

.hidden {
	display: none;
}

.cart_produuct_counter{
	position: absolute;
	top: 2px;
	background-color: var(--theme_color);
	width: 20px;
	text-align: center;
	color: #fff;
	border-radius: 100%;
}

.visible-xs-block {
	display: none;
}