@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css');

@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'kenyan coffee bd';
    src: url('../fonts/kenyan coffee bd.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'kenyan coffee';
    src: url('../fonts/kenyan coffee.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --theme-color: #000;
    --black: #000;
    --black2: #3c3c3c;
    --white: #fff;
    --paragraph: #3e3e3e;
}

* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    outline: none;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Urbanist", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Urbanist", sans-serif;
    margin: 0;
    padding: 0;
    font-weight: 500;
}

p {
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    padding: 0;
    margin-bottom: 15px;
    color: #3c3c3c;
    font-weight: 500;
    line-height: 24px;
}

ul, li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
    border: none;
}

a {
	color: #eb068b;
    text-decoration: none;
    outline: none !important;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

.p-80 {
    padding: 80px 0;
}

.bannertext{position: relative;top: 0px;left: 0px;right: 0px;margin: 0 auto;justify-items: center;width: 50%;text-align: center;}


.bannertext h1 {
    font-size: 47px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    line-height: 50px;
}

.headertext h3 {
    font-size: 40px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #000;
}

.boxtitle h4 {
    font-size: 28px;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

.smalltitle h5 {
    font-size: 22px;
    color: #000;
    font-weight: 600;
    margin-bottom: 12px;
}

/*[class^=col-] {
    margin-bottom: 30px; 
}*/
.mainbtn {
    padding: 12px 25px;
    margin-top: 15px;
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0;
    font-weight: 600;
    border: none;
    background-color: #000;
    color: #fff;
    text-align: center;
    display: inline-block;
    transition: 0.6s;
	border:1px solid transparent;
}

.mainbtn:hover {
    background-color: #fff;
    color: #000;
	border:1px solid #000;
}

.header_top {
    background-color: #000;
    text-align: center;
    padding: 6px 0px;
}
.header_top p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}
.header_nav {
    padding: 12px 0;
    background-color: #fff;
}
.header_nav .logohead {
	max-width: 240px;
}
.header_nav .grid-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.header-right {
    text-align: right;
}
.header-right ul li{
    display: inline-flex;
    gap: 10px;
	position: relative;
}

#mini-cart-count{position: absolute;
    width: 16px;
    height: 16px;
    top: -4px;
    right: 0px;
    background: #000000 !important;
    color: #fff !important;
    font-size: 12px !important;
    text-align: center;}

.header-right ul li.signbtn {
    margin-right: 70px;
}
.header-right ul li.searchbtn span{
    background-color: #000;
}
.header-right ul li a {
    display: inline-flex;
    color: #000;
    white-space: nowrap;
    align-items: center;
    gap: 10px;
    min-width: 46px;
}
.header-right ul li span {
    width: 38px;
  height: 38px;
  font-size: 35px !important;
  border-radius:50%;
  display: inline-flex;
  padding:10px;
  align-items: center;
  justify-content: center;
  background:#ececec !important;
  color: #000 !important;
}

.header_area.fix {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    z-index: 91;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
.header_area.fix .header_top{
    display: none;
}
@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}
100%{opacity:1;-webkit-transform:none;transform:none}
}
@keyframes fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}
100%{opacity:1;-webkit-transform:none;transform:none}
}
/*menu CSS
--------------------------------------------------------------------------------------------------*/
.menu { margin-right: 25px; }
.menu ul { margin: 0; padding: 0; font-size: 0; }
.menu ul li { display: inline-block; padding: 0; list-style-type: none; position: relative; vertical-align: middle; }
.menu ul li.active { position: relative; }
.menu ul li.active::before { content: ''; position: absolute; top: -5px; left: 0; width: 100%; max-width: 50px; height: 50px; background-repeat: no-repeat; background-size: contain; background-position: center; background-image: url(../images/menu-active-shape.svg); }
.menu ul li span { position: absolute; top: 45%; right: 10px; }
.menu ul li span::after { content: '\2b'; color: #000000; font-family: FontAwesome; font-size: 10px; }
.menu ul li:hover span::after { color: #f7c624; }
.menu ul li.active span::after { color: #f7c624; }
.headarea.innerheader .menu ul li a { color: #000; }
.menu ul li a { color: #545454; font-size: 18px; text-transform: capitalize; font-weight: 600; display: block; padding: 20px 0px; margin: 0 17px; position: relative; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; -ms-transition: all 0.5s ease; transition: all 0.5s ease; }
.menu ul li a:hover, .menu ul li.active a { color: #eb068b; }
.menu ul li.active a::after { width: 100%; }
.menu ul li a span { display: inline-block; vertical-align: 0px; margin-left: 6px; font-size: 10px; }
.menu ul li:hover ul li a:hover { color: #fff !important; background-color: #d07072; }
.menu ul li ul { width: 240px; position: absolute; top: calc(100% + 30px); left: 0; z-index: 2; background-color: #ffffff; text-align: left; transition: 0.3s; opacity: 0; visibility: hidden; box-shadow: 0 4px 15px rgb(0 0 0 / 3%); }
.menu ul ul li:first-child:before { display: none; }
.menu ul ul li:after { display: none; }
.menu ul li:last-child ul { width: 240px; position: absolute; top: 0!important; left: 240px; right: 0; z-index: 2; background-color: #ffffff; box-shadow: 0px 5px 14px rgb(0 0 0 / 2%); text-align: left; }
.menu ul li ul li a { font-size: 14px; text-transform: none; padding: 12px 15px; color: #000 !important; line-height: 20px; font-weight: 500; transition: all ease-in-out 0.5s; -moz-transition: all ease-in-out 0.5s; -webkit-transition: all ease-in-out 0.5s; -o-transition: all ease-in-out 0.5s; -ms-transition: all ease-in-out 0.5s; -khtml-transition: all ease-in-out 0.5s; display: block; margin: 0; }
.menu ul li ul li ul { top: 0 !important; left: 240px; }
.menu ul li ul li span { right: 15px; top: 15px; }
.menu ul li ul li span::after { color: #000000 !important; }
.menu ul li a:hover.menu ul li ul { display: block; }
.menu ul li ul li { display: block; padding: 0; border-bottom: solid 1px rgba(0, 0, 0, 0.19); border-right: none; }
.menu ul li ul li:last-child { border: none; }
.menuButton { width: 40px; height: 35px; padding: 5px; float: right; display: none; }
.menuButton span { width: 100%; height: 2px; background: #000; margin-bottom: 6px; float: left; transition: all 0.3s ease-in-out 0s; }
.menuButton span:last-child { margin-bottom: 0; }
@media (min-width:991.98px) {
    .menu ul { display: block!important; }
    .menu ul li:hover > ul { opacity: 1; top: 100%; visibility: visible; }
}

@media (max-width:991.98px) {
    .menuButton { display: block; margin-left: 0; cursor: pointer; }
    .menu ul li span { background: url(../images/menu_arrow.png) center center no-repeat; cursor: pointer; width: 15px; height: 15px; position: absolute; right: 15px; top: 20px; z-index: 99; }
    .menu ul li:hover span { background: url(../images/menu_arrow_hover.png) center center no-repeat; }
    .arrow_change span:nth-child(2) { display: none; }
    .arrow_change span:first-child { position: relative; top: 9px; transform: rotate(-45deg); -moz-transform: rotate(-45deg); -webkit-transform: rotate(-45deg); }
    .arrow_change span:last-child { position: relative; top: 1px; transform: rotate(45deg); -moz-transform: rotate(45deg); -webkit-transform: rotate(45deg); }
    .menuBar { padding: 15px 0; }
    .menu { padding: 5px 0; }
    .menu ul { display: none; background-color: #fff; position: absolute; top: 130px; left: 0; width: 100%; z-index: 99; }
    .menu ul li a { color: #071731; display: block; width: 100%; font-size: 14px; }
    .menu ul li ul { display: none; background-color: #e1e1e1; position: relative; top: 5px; left: 0; width: 100%; z-index: 1; padding: 0; visibility: initial; opacity: 1; }
    .menu ul li:last-child ul { display: none; background-color: #e1e1e1; position: relative; top: 5px; left: 0; width: 100%; z-index: 1; }
    .menu ul li { display: block; padding: 10px 15px 10px 15px; border-top: 1px solid #cccccc54; text-align: left; position: relative; }
    .menu ul li span { position: absolute; right: 30px; z-index: 99; cursor: pointer; top: 12px; text-align: center; }
    .menu ul li ul li ul { top: 0; left: 0; }
    .menu ul li ul li a { font-size: 12px; text-transform: none; background-color: #e1e1e1; padding: 8px 12px; color: #000; }
}


/*// full width mobile search start //*/
.openBtn { background: #000; color: #fff; border: none; padding: 9px; width: 42px; height: 42px; border-radius: 50%; font-size: 17px; cursor: pointer; }
/*.openBtn:hover { background: #e5eaee; }*/
.overlay { height: 100vh; width: 100%; display: none; position: fixed; z-index: 999; top: 0; left: 0; background-color: rgb(0,0,0); background-color: rgba(0,0,0, 0.9); }
.overlay-content { position: relative; top: 46%; width: 80%; text-align: center; margin-top: 30px; margin: auto; }
.overlay .closebtn { position: absolute; top: 20px; right: 45px; font-size: 60px; cursor: pointer; color: white; }
.overlay .closebtn:hover { color: #ccc; }
.overlay input[type=text] { padding: 15px; font-size: 17px; border: none; float: left; width: 80%; background: white; }
.overlay input[type=text]:hover { background: #f1f1f1; }
.overlay button { float: left;padding:12px 25px;background:#c6c6c6;font-size: 21px;border:none;cursor: pointer;
  color: #040404;}
.overlay button:hover { background: #bbb; }
/*// full width mobile search end //*/


/* ======================================================================= */
    /* banner start */
/* ======================================================================= */

.banner {
    width: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
	background: #E5E5E5;
}

.banner .mainbtn {
    border: 1px solid #fff;
	background-color: #fff;
	color: #000;
}
.bannerimg{position: absolute;
  top: 0px;
  width: 100%;height: 500px;}
/*.banner_pic {
    height: 639px;
    position: relative;
    display: flex;
    overflow: hidden;
}
*/
.bannerimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ======================================================================= */
    /* durable_stickers start */
/* ======================================================================= */

.durable_in {
    width: 100%;
    background-color: #fff;
    margin-top: -75px;
    position: relative;
}

.durable_card {
    width: 100%;
    margin-top: 40px;
}

.durable_cardbox {
    width: 100%;
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    flex-direction: column;
    gap: 25px;
    border: 1px solid #767676;
    border-top: none;
    padding: 0px 80px 40px;
    text-align: center;
    transition: 0.6s;
}

.durable_cardbox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 75px;
    height: 1px;
    background-color: #767676;
}

.durable_cardbox::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 75px;
    height: 1px;
    background-color: #767676;
}

.durable_cardbox:hover {
    margin-top: -5px;
    transition: 0.6s;
}

.durable_cardboxicon {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin: 0 auto;
}

.durable_cardboxicon img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: contain;
}

/* ======================================================================= */
    /* featured_sec start */
/* ======================================================================= */

.featured_sec {
    width: 100%;
    padding-top: 0;
}

.featured_sec h6 {
    font-size: 17px;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
}

.featured_sec .mainbtn {
    border: 1px solid #000;
}

.featured_sec .mainbtn:hover {
    border: 1px solid #000;
}

.featured_sec_in, .review_sec_in, .rating_sec_in, .follow_us_in {
    width: 100%;
    margin-top: 50px;
}

.featured_right {
    width: 100%;
}

.featured_box {
    width: 100%;
    transition: 0.6s;
}

.featured_boxtop {
    width: 100%;
    height: 235px;
    background-color: #E5E5E5;
    padding: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.featured_boxpic {
    height: auto;
    overflow: hidden;
}

.featured_boxpic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.featured_btm a img {
    width: 14px !important;
    height: 16px;
    display: inline-block !important;
}

.featured_box:hover .featured_boxpic img {
    transform: scale(1.1);
    transition: 0.6s;
}

.featured_sec_in .mainbtn {
    margin-top: 10px;
}

/**/
/*.featured_slide .owl-nav { position: absolute; top: -130px; width: 100%; left: 0; right: 0; text-align: center;}*/
.featured_slide .owl-nav button.owl-prev, .featured_slide .owl-nav button.owl-next { width: 40px; height: 40px; border: 1px solid #a5a5a5; border-radius: 50%; color: #a5a5a5; font-size: 30px;}
.featured_slide .owl-nav button.owl-prev span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.featured_slide .owl-nav button.owl-prev span::after { content: '\f060'; color: #a5a5a5 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 16px; }
.featured_slide .owl-nav button.owl-prev:hover span::after { content: '\f060'; color: #fff !important; }
.featured_slide .owl-nav button.owl-next span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.featured_slide .owl-nav button.owl-next span::before { content: '\f061'; color: #a5a5a5 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 16px; }
.featured_slide .owl-nav button.owl-next:hover span::before { content: '\f061'; color: #fff !important; }
.featured_slide .owl-nav button.owl-prev { left: 0px; position: relative;}
.featured_slide .owl-nav button.owl-next { right: 0px; position: relative;}
.featured_slide .owl-nav { position: absolute; bottom: 70px; display: inline-flex; left: -300px; justify-content: start; width: 100%;}
.featured_slide .owl-nav button.owl-prev:hover, .featured_slide .owl-nav button.owl-next:hover { background: #000; border: 1px solid #000; color: #fff; transition: all .3s ease-in-out;}
.owl-theme .owl-nav { margin-top: 0; }
.owl-carousel .featured_slide .owl-dots.disabled, .owl-carousel .featured_slide .owl-nav.disabled {
    display: block !important;
}



/* ======================================================================= */
    /* welcome_sec start */
/* ======================================================================= */

.welcome_sec {
    width: 100%;
    background-color: #555555;
}

.welcome_pic {
    width: 125%;
    height: 500px;
    overflow: hidden;
    display: flex;
    position: relative;
    left: -25%;
}

.welcome_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome_right {
    width: 100%;
    padding: 50px;
}

.welcome_sec .headertext h3, .welcome_sec .headertext p {
    color: #fff;
}

.welcome_sec .mainbtn {
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    margin-top: 15px;
    text-transform: uppercase;
}

.welcome_sec .mainbtn:hover {
    border: 1px solid #fff;
    background-color: #000;
    color: #fff;
    margin-top: 15px;
    text-transform: uppercase;
}

/* ======================================================================= */
    /* product_sec start */
/* ======================================================================= */

.product_sec {
    width: 100%;
    padding-top: 0;
}

.product_left {
    width: 100%;
    padding: 0 40px 0 0;
}
.product_picbox{border-radius:15px;padding:20px 0px;}
.product_pic {
  width: 300px;
  height: 300px;margin: 0 auto;margin-bottom: 15px;
}

.boxtitle a{ color:#000; text-align:center;}
.product_picbox h4{text-align: center;
  color: #000;
  margin-bottom: 15px;
  font-size: 20px;}
.product_pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
	border-radius: 10px;
}
/* .product_sec .rectangle:nth-of-type(2n) .product_picbox{ background:#a7a5a5} */
.product_picin {
    width: 45%;
    position: absolute;
    top: 25px;
    left: 25px;
}

.product_picin .boxtitle h4 {
    color: #fff;
}


.product_picin .boxtitle:nth-of-type(2) h4 {
    color: red !important;
}

.product_picin .boxtitle a {
    font-size: 15px;
    color: #fff;
    display: flex;
    gap: 5px;
    align-items: center;
}

.textblack .boxtitle h4 {
    color: #000;
}

.textblack .boxtitle a {
    color: #000;
}

.boxtitle .fa-arrow-right {
    font-size: 12px;
}

.product_left .mainbtn {
    border: 1px solid #000;
}


/*.product_box {
    width: 100%;
    height: 320px;
    background-color: #424242;
    padding: 35px 25px;
    display: flex;
    margin-bottom: 24px;
}

.product_box .boxtitle h4 {
    color: #fff;
}

.product_box a {
    font-size: 14px;
    color: #fff;
    display: flex;
    gap: 5px;
    align-items: center;
}

.product_box a img {
    width: 12px;
    height: 17px;
}

.product_boxpic {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
    align-items: end;
    justify-content: end;
}

.product_boxpic img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

.product_box .boxtitle {
    display: flex;
    align-items: baseline;
    flex-direction: column;
    justify-content: flex-start;
    width: 110%;
}

.product_sec .mainbtn {
    border: 1px solid #000;
}

.product_sec .mainbtn:hover {
    border: 1px solid #000;
}*/



/* ======================================================================= */
    /* review_sec start */
/* ======================================================================= */

.review_sec { width: 100%; background-color: #EAE9E9; padding-bottom: 115px;}
.review_sec p { width: 50%; margin: 0 auto; }
.review_card { width: 100%; position: relative; padding: 30px; margin: 15px 0 30px 15px; text-align: center; display: flex; align-items: center; justify-content: center; flex-direction: column; background-color: #fff; border-radius: 30px; transition: 0.6s; }
.review_card::before { content: ""; position: absolute; border: 2px solid #1D1D1D; border-top: none; border-right: none; left: -15px; top: -41px; width: 100%; height: 115%; border-radius: 0 0 0 30px; transition: 0.6s; }
.review_card::after { content: ""; position: absolute; border-top: 2px solid #1D1D1D; left: -15px; top: -41px; width: 23%; border-radius: 0 0 0 30px; transition: 0.6s; }
.review_card p { width: 100%; font-style: italic; }
.review_card h6 { font-size: 17px; color: #000; letter-spacing: 2px; font-weight: 600; position: relative; padding-left: 40px; margin: 15px 0; display: inline-block; text-transform: uppercase; }
.review_card h6::before { content: ""; position: absolute; top: 10px; left: 0; width: 32px; height: 1px; background-color: #000; }
.review_cardimg { height: 30px; position: relative; display: flex; overflow: hidden; }
.review_cardimg img { width: 100%; height: 100%; object-fit: contain; }
.review_card ul { padding: 0; margin: 0; list-style: none; }
.review_card ul li { display: inline-block; font-size: 12px; color: #FFC107; }
.coma_circle { width: 54px; height: 54px; position: relative; padding: 12px; margin: 0px 0 0 80px; background-color: #171717; margin-bottom: 15px; border-radius: 50%; overflow: hidden; text-align: center; display: flex; align-items: center; justify-content: center; border: 4px solid #c6c6c6; transition: 0.6s; }
.maincard {
    margin: 0 15px 0 0;
}
/*.review_slide .owl-nav { position: absolute; top: -130px; width: 100%; left: 0; right: 0; text-align: center;}*/
.review_slide .owl-nav button.owl-prev, .review_slide .owl-nav button.owl-next { width: 40px; height: 40px; border: 1px solid #505050; border-radius: 50%; color: #505050; font-size: 30px;}
.review_slide .owl-nav button.owl-prev span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.review_slide .owl-nav button.owl-prev span::after { content: '\f060'; color: #505050 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 16px; }
.review_slide .owl-nav button.owl-prev:hover span::after { content: '\f060'; color: #fff !important; }
.review_slide .owl-nav button.owl-next span { position: relative; top: 0px; font-size: 0; display: flex; align-items: center; justify-content: center;}
.review_slide .owl-nav button.owl-next span::before { content: '\f061'; color: #505050 !important; font-family: FontAwesome; position: absolute; border-radius: 50%; font-size: 16px; }
.review_slide .owl-nav button.owl-next:hover span::before { content: '\f061'; color: #fff !important; }
.review_slide .owl-nav button.owl-prev { left: 0px; position: relative;}
.review_slide .owl-nav button.owl-next { right: 0px; position: relative;}
.review_slide .owl-nav { position: absolute; bottom: -70px; display: inline-flex; left: 0; justify-content: center; width: 100%; }
.review_slide .owl-nav button.owl-prev:hover, .review_slide .owl-nav button.owl-next:hover { background: #000; border: 1px solid #000; color: #fff; transition: all .3s ease-in-out;}
.owl-theme .owl-nav { margin-top: 0; }
.owl-carousel .review_slide .owl-dots.disabled, .owl-carousel .review_slide .owl-nav.disabled {
    display: block !important;
}


/* ======================================================================= */
    /* rating_sec start */
/* ======================================================================= */

.rating_sec {
    width: 100%;
}

.rating_sec p {
    width: 40%;
}

.rating_sec_in {
    width: 100%;
    padding: 30px 0;
    border-top: 1px solid #BCBCBC;
    border-bottom: 1px solid #BCBCBC;
}

/* ======================================================================= */
    /* follow_us start */
/* ======================================================================= */

.follow_us {
    width: 100%;
    padding-top: 0;
}

.follow_us p {
    width: 50%;
    margin: 0 auto;
}

/* ======================================================================= */
    /* distributor start */
/* ======================================================================= */

.distributor {
    width: 100%;
    overflow: hidden;
}

.distributor_pic {
    width: 100%;
    height: 350px;
    position: relative;
    display: flex;
    overflow: hidden;
}

.distributor_pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ======================================================================= */
    /* shipping_sec start */
/* ======================================================================= */

.shipping_sec {  width: 100%; padding: 60px 0; }
.shipping_box { width: 100%; text-align: center; padding: 0 15px; }
.shipping_box h6 { font-size: 26px; color: #000; font-weight: 600; margin-bottom: 15px; }
.shipping_boximg { width: 100px; height: 70px; margin: 0 auto 10px; position: relative; z-index: 1; }
.shipping_boximg img { width: 70%; }
.shipping_boximg::after { content: ''; width: 64px; height: 64px; background-color: #E6E6E6; border-radius: 50%; position: absolute; top: -8px; left: 38px; right: 0; margin: 0 auto; z-index: -1; }


/* ======================================================================= */
    /* footer_sec start */
/* ======================================================================= */

.footer_sec { width: 100%; padding-bottom: 60px;}
.footer_in { width: 100%; border-top: 1px solid #b1b1b1; padding: 60px 0 0; }
.footer_card { width: 100%; padding: 0 25px; text-align: center; }
.footer_card h4 { font-size: 28px; color: #000; font-weight: 600; margin-bottom: 25px;text-align: left; }
.footer_card ul { padding: 0; margin: 0; list-style: none; }
.footer_card ul li { width: 100%; }
.footer_card ul li a { width: 100%; font-size: 16px; color: #797979; font-weight: 500; text-decoration: none; margin-bottom: 5px; display: block; text-align: left; transition: 0.6s;}
.footer_card ul li a:hover {color: #000; letter-spacing: 1px;}
.logo { width: 100%; max-width: 250px; margin: 0 auto; }
.address_box { width: 100%;text-align: left;margin:10px 0; }
.address_box h5 {font-size: 18px;color: #000;font-weight: 500;margin-bottom: 3px;letter-spacing: 0px;}
.footerform {position: relative;margin-top: 10px;width: 90%;}
.footerform .form-control {height: 45px;border-radius:0px;background:transparent;border:1px solid #313131;padding-right: 100px;font-size: 16px;color: #000;font-weight: 500;}
.footerform .form-control:focus { outline: 0; box-shadow: none; }
.footerform .sendbtn { border: none; background: #000; border-radius: 0px; margin-top: 9px; color: #fff; font-size: 13px; font-weight: 500; text-transform: uppercase; position: absolute; letter-spacing: 0; top: -5px; right: 4px; padding: 10px 20px; height: 37px; }
.paycard { width: 100%; margin-top: 20px; }
.paycard img { width: 65%; }
.midline { border-right: 1px solid #b1b1b1; }
.midline:last-child { border-right: 1px solid transparent; }
/**/
.copyright { width: 100%; background-color: #000; padding: 15px 0; }
.copyright_in { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.copyright_social { display: flex; justify-content: center; }
.copyright_social ul { padding: 0; margin: 0; list-style: none; }
.copyright_social li { margin: 0px 5px; width: auto; }
.copyright_social li a { width: 100%; min-width: 35px; max-width: 35px; height: 35px; padding: 5px !important; border-radius: 5px; background-color: transparent; display: inline-flex; border: 1px solid #fff; align-items: center; justify-content: center; font-size: 16px; color: #fff; transition: 0.5s; text-decoration: none; box-shadow: 0px 4px 15px rgb(0 0 0 / 10%); }
.copyright_social li a:hover { background-color: #fff; color: #000; }
.copyright p { margin-bottom: 0; color: #fff; } 


/* ======================================================================= */
    /* aboutus start */
/* ======================================================================= */

.aboutus {
    width: 100%;
    min-height: 350px;
}

.aboutus h1 {
    font-size: 48px;
	margin-bottom: 10px;
}

.breadcrumb-item.active {
    color: #3c3c3c;
}

.breadcrumb-item a {
    color: #000;
}

/* ======================================================================= */
    /* your_trusted start */
/* ======================================================================= */

.your_trusted {
    width: 100%;
}

.your_trusted_in {
    width: 92%;
    margin: 0 auto;
}

.your_trusted p {
    width: 100%;
}

.faqrow {
    width: 100%;
    margin-top: 50px;
}

/*// accordion start //*/
.faqSec { width: 100%; margin-top: 50px;}
.accordion_row { width: 100%; margin-top: 30px; }
.accordion-item { margin-bottom: 15px; }
.accordion-item { border-radius: 10px; }
.accordion-button { font-size: 20px; color: #000; font-weight: 600; padding: 15px; background-color: transparent; }
.accordion-button span { color: #000; margin-right: 5px; }
.accordion-button:not(.collapsed) { background-color: #e6e6e6; }
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed { background-color: transparent; }
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.5s; width: 40px; height: 40px; background-position: 11px; border-radius: 50%; background-color: #5353533b; text-align: center; }
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
    width: 40px; height: 40px; background-position: 11px; border-radius: 50%; background-color: #fff; text-align: center; }
.accordion-button::after { transition: all 0.5s; }
.accordion-item { box-shadow: 0px 2px 8px 0px rgba(60, 64, 67, 0.25); border: none; }
.accordion-button:not(.collapsed) { color: #000; box-shadow: none; border-radius: 12px 12px 0 0; }
.accordion-body { padding: 0 15px 15px 15px; background-color: #e6e6e6; border-radius: 0 0 12px 12px; }
.accordion-body p { font-size: 16px; color: #000; font-weight: 500; background-color: #fff; padding: 15px; border-radius: 10px; }
.accordion-item:first-of-type>.accordion-header .accordion-button { border-radius: 12px 12px 0 0; }
.accordion-item:first-of-type { border-top-left-radius: var(--bs-accordion-border-radius); border-top-right-radius: var(--bs-accordion-border-radius); border-radius: 12px; border-left: 2px solid #000; }
.accordion-item:not(:first-of-type) { border-top: 0; border-left: 2px solid #000; }

/*// accordion end //*/

/* ======================================================================= */
    /* stickers_sec start */
/* ======================================================================= */

.stickers_sec {
    width: 100%;
}

.stickers_box {
    width: 100%;
    margin-bottom: 24px;
    transition: 0.6s;

	
}

.productboxin{justify-content: stretch;
    display: flex;
    align-items: center;
    background: #dddedf;
    margin-bottom: 20px;
    border-radius: 25px;}
.stickers_box:hover .stickers_boxpic img {
    transform: scale(1.1);
}

.stickers_boxpic {
    height: 290px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.stickers_boxpic a{width: 70%;
    display: block;
    margin: 0 auto;}
.smalltitle{padding: 0px; text-align:center;}
.stickers_boxpic img {
	 border-radius:10px
    width: 100%;
    height: 100%;
	border-radius: 10px;
    object-fit: cover;
    transition: 0.6s;
}

.stickers_box .smalltitle a {
    font-size: 15px;
    color: #3c3c3c;
    font-weight: 500;
    display: flex;
    gap: 5px;
    align-items: center;
}

.stickers_box .smalltitle .fa-arrow-right {
    font-size: 12px;
}

.stickers_box .smalltitle a:hover {
    color: #000;
}

/* ======================================================================= */
    /* details_sec start */
/* ======================================================================= */

.details_sticker .durable_cardbox {
    padding: 30px 40px 40px;
}

/*// details_sec slide */
.details_sec { width: 100%; padding-bottom: 0;}
.details_sec_left { width: 100%; padding-right: 20px; }
#sync1 .item { margin: 5px; color: #fff; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; text-align: center; border: 1px solid #dddedf;}
#sync2 .item { background: #dddedf; transition: 0.6s; border: 1px solid #dddedf; margin: 5px; color: #fff; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; text-align: center; cursor: pointer; }
#sync2 .item:hover { background: #fff;}
#sync2 .current .item { background: #fff; }
.owl-theme .owl-nav [class*="owl-"] { transition: all 0.3s ease; }
.owl-theme .owl-nav [class*="owl-"].disabled:hover { background-color: #d6d6d6; }
#sync1.owl-theme { position: relative; }
#sync1.owl-theme .owl-next,
#sync1.owl-theme .owl-prev { width: 22px; height: 40px; margin-top: -20px; position: absolute; top: 50%; }
#sync1.owl-theme .owl-prev { left: 10px; }
#sync1.owl-theme .owl-next { right: 10px; }
.owl-carousel .animated { animation-duration: 1.5s !important; }
#sync1.owl-theme .owl-next,
#sync1.owl-theme .owl-prev { width: 35px !important; height: 55px !important; background-color: #fff;}
#sync1 svg { width: 22px !important; }
.fade:not(.show) { opacity: 1 !important; }

/*// details_sec slide end */

.details_sec_right {
    width: 100%;
  
}

.variations_form{border-radius:
10px;
  background-color: white;
  padding:
30px 38px;
  box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.5);}

.starpanel {
    width: 100%;
    display: inline-block;
}

.starpanel .fa-star {
    font-size: 12px;
}

.starpanel span {
    font-size: 14px;
    color: #3c3c3c;
    font-weight: 500;
}

.details_sec_right .boxtitle h4 {
    margin-bottom: 7px;
}

.payment {
    width: 100%;
    margin: 15px 0 25px;
    padding: 8px 15px;
    /*border-top: 1px dashed #bababa;
    border-bottom: 1px dashed #bababa;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 0;
}

.payment h6 {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
    
}
.payment.variable h6 {display: none;}

.payment h6 span {
    font-size: 13px;
    font-weight: 400;
}

.payment_card {
    display: flex;
    align-items: center;
    /*justify-content: right;
    padding-left: 15px;
    border-left: 1px dashed #bababa;*/
}

.payment_card img {
    width: 90%;
}

.sticker_desc {
    width: 100%;
    margin-bottom: 20px;
}

.sticker_desc ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sticker_desc ul li {
    width: 100%;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-left: 30px;
}

.sticker_desc ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    background: url(../images/check.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 20px;
    height: 20px;
}

.select_sec {
    width: 100%;
}

.select_secbox {
    width: 100%;
    padding: 20px 15px;
    margin-bottom: 15px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgb(0 0 0 / 10%);
    transition: 0.6s;
}

.select_secbox:hover {
    border-color: #7E7E7E;
}

.select_top {
    width: 100%;
    padding: 0 0 12px;
    border-bottom: 1px dashed #bababa;
}

.select_top h5 {
    font-size: 20px;
    color: #000;
    font-weight: 600;
    margin: 0;
}

.select_time_wrapper {
    margin-top: 20px;
}

/*.select_time_wrapper label {
    background-color:#fff;
    border: 1px solid #bababa;
    width: auto;
    margin:0 7px 7px 0;
    color:#000;
}*/

.select_time_wrapper label span {
    font-size: 14px;
    font-weight: 600;
    padding: 7px 15px;
    border-radius: 30px;
    background-color: #fff;
    border: 1px solid #bababa;
    width: auto;
    margin: 0 4px 6px 0;
    transition: 0.6s;
    color: #000;
    cursor: pointer;
}

.select_time_wrapper label input {
    position:absolute;
    top:-20px;
}

.select_time_wrapper  input:checked + span {
    background-color:#eb068b;
    border-color: #eb068b;
    color:#fff;
    border-radius: 30px;
}

.select_time_wrapper  input:checked + span {}

.label_p{
    font-weight:400;
}
.custom-control-label::after{
    border-radius: 50%!important;
    width: 24px;
    height: 24px;
    top: 0px;
    color: transparent;
}
.form_bot_wrapper .custom-control-label::before{
    background-color: #ebebeb;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    top: 0;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before{
    background-color: #ebebeb;
}

/* // radio start */

/*.radioi_box {
    width: 100%;
    height: 290px;
    padding: 10px 15px 10px 0;
    margin-top: 15px;
    overflow-y: scroll;
}

.radioitem {
    width: 100%;
    margin-bottom: 15px;
}*/

/*// scroll bar start //*/
/*#scroll_bar::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); background-color: #F5F5F5; }
#scroll_bar::-webkit-scrollbar { width: 3px; background-color: #000; }
#scroll_bar::-webkit-scrollbar-thumb { background-color: #000; }*/
/*// scroll bar end //*/

/*[type="radio"]:checked, [type="radio"]:not(:checked) { position: absolute; left: -9999px; }
[type="radio"]:checked + label, [type="radio"]:not(:checked) + label { position: relative; padding-left: 25px; cursor: pointer; line-height: 20px; display: inline-block; font-size: 15px; color: #3c3c3c; font-weight: 500; display: flex; align-items: center; justify-content: space-between; }
[type="radio"]:checked + label:before, [type="radio"]:not(:checked) + label:before { content: ''; position: absolute; left: 0; top: 3px; width: 14px; height: 14px; border: 1px solid #adadad; border-radius: 100%; background: #fff; }
[type="radio"]:checked + label:after, [type="radio"]:not(:checked) + label:after { content: ''; width: 8px; height: 8px; background: #000000; position: absolute; top: 6px; left: 3px; border-radius: 100%; -webkit-transition: all 0.2s ease; transition: all 0.2s ease; }
[type="radio"]:not(:checked) + label:after { opacity: 0; -webkit-transform: scale(0); transform: scale(0); }
[type="radio"]:checked + label:after { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }*/

/* // radio end */


/*// upload pic start */
.upload_box { width: 100%; padding: 20px; margin: 0px 0px 20px 0px; background-color: #fff; border: 1px solid #fff; border-radius: 10px; box-shadow: 0px 4px 15px rgb(0 0 0 / 10%); transition: 0.6s; }
.upload_box .select_top { width: 100%; padding: 0 0 12px; border-bottom: 1px dashed #bababa; }
.upload_box .select_top h5 { font-size: 20px; color: #000; font-weight: 600; margin: 0; }
.upload-area { width: 100%; background-color: var(--clr-white); box-shadow: 0 4px 11px rgb(235 235 235); border: 2px solid var(--clr-light-blue); border-radius: 20px; padding: 20px; text-align: center; margin-top: 20px; }
.upload-area--open { animation: slidDown 500ms ease-in-out; }
@keyframes slidDown {
    from {
        height: 28.125rem;
 /* 450px */;
    }

    to {
        height: 35rem;
 /* 560px */;
    }
}
.upload-area__header { }
.upload-area__title { font-size: 1.8rem; font-weight: 500; margin-bottom: 0.3125rem; }
.upload-area__paragraph { font-size: 0.9375rem; color: var(--clr-light-gray); margin-top: 0; }
.upload-area__tooltip { position: relative; color: var(--clr-light-blue); cursor: pointer; transition: color 300ms ease-in-out; }
.upload-area__tooltip:hover { color: var(--clr-blue); }
.upload-area__tooltip-data { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -125%); min-width: max-content; background-color: var(--clr-white); color: var(--clr-blue); border: 1px solid var(--clr-light-blue); padding: 0.625rem 1.25rem; font-weight: 500; opacity: 0; visibility: hidden; transition: none 300ms ease-in-out; transition-property: opacity, visibility; }
.upload-area__tooltip:hover .upload-area__tooltip-data { opacity: 1; visibility: visible; }
.upload-area__drop-zoon { position: relative; height: 120px; display: flex; justify-content: center; align-items: center; flex-direction: column; border: 2px dashed var(--clr-light-blue); border-radius: 15px; cursor: pointer; transition: border-color 300ms ease-in-out; }
.upload-area__drop-zoon:hover { border-color: var(--clr-blue); }
.drop-zoon__icon { display: flex; font-size: 3.75rem; color: var(--clr-blue); transition: opacity 300ms ease-in-out; }
.drop-zoon__paragraph { font-size: 0.9375rem; color: var(--clr-light-gray); margin: 0; margin-top: 0.625rem; transition: opacity 300ms ease-in-out; }
.drop-zoon:hover .drop-zoon__icon, .drop-zoon:hover .drop-zoon__paragraph { opacity: 0.7; }
.drop-zoon__loading-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: none; color: var(--clr-light-blue); z-index: 10; }
.drop-zoon__preview-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: -webkit-fill-available!important;
    object-fit: contain;
    padding: 0.3125rem;
    border-radius: 10px;
    display: none;
    z-index: 1000;
    transition: opacity 300ms ease-in-out;
}
.drop-zoon:hover .drop-zoon__preview-image { opacity: 0.8; }
.drop-zoon__file-input { /*display: none;*/ width:0; }
.drop-zoon--over { border-color: var(--clr-blue); }
.drop-zoon--over .drop-zoon__icon, .drop-zoon--over .drop-zoon__paragraph { opacity: 0.7; }
.drop-zoon--Uploaded { }
.drop-zoon--Uploaded .drop-zoon__icon, .drop-zoon--Uploaded .drop-zoon__paragraph { display: none; }
.upload-area__file-details { height: 0; visibility: hidden; opacity: 0; text-align: left; transition: none 500ms ease-in-out; transition-property: opacity, visibility; transition-delay: 500ms; }
.file-details--open { height: auto; visibility: visible; opacity: 1; }
.file-details__title { font-size: 1.125rem; font-weight: 500; color: var(--clr-light-gray); }
.uploaded-file { display: flex; align-items: center; padding: 0.625rem 0; visibility: hidden; opacity: 0; transition: none 500ms ease-in-out; transition-property: visibility, opacity; }
.uploaded-file--open { visibility: visible; opacity: 1; }
.uploaded-file__icon-container { position: relative; margin-right: 0.3125rem; }
.uploaded-file__icon { font-size: 3.4375rem; color: var(--clr-blue); }
.uploaded-file__icon-text { display: none; position: absolute; top: 1.5625rem; left: 50%; transform: translateX(-50%); font-size: 0.9375rem; font-weight: 500; color: var(--clr-white); }
.uploaded-file__info { position: relative; top: -0.3125rem; width: 100%; display: flex; justify-content: space-between; }
.uploaded-file__info::before, .uploaded-file__info::after { content: ''; position: absolute; bottom: -0.9375rem; width: 0; height: 0.5rem; background-color: #ebf2ff; border-radius: 0.625rem; }
.uploaded-file__info::before { width: 100%; }
.uploaded-file__info::after { width: 100%; background-color: var(--clr-blue); }
.uploaded-file__info--active::after { animation: progressMove 800ms ease-in-out; animation-delay: 300ms; }
@keyframes progressMove {
    from {
        width: 0%;
        background-color: transparent;
    }

    to {
        width: 100%;
        background-color: var(--clr-blue);
    }
}
.uploaded-file__name { width: 100%; max-width: 6.25rem; display: inline-block; font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.uploaded-file__counter { font-size: 1rem; color: var(--clr-light-gray); }

/*// upload pic end  */


.your_order {
    width: 100%;
}

.your_order h6 {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    margin-bottom: 15px;
}

/*// cartbox start */
.cartbox {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.cartbtn {
    padding: 6px 5px 6px 15px;
    margin-top: 0px;
    letter-spacing: 1px;
    border: 1px solid #000;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.cartbtn:hover {
    border: 1px solid #000;
}

.cartbtn span {
    width: 30px;
    height: 30px;
    background-color: #fff;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity { display: flex; border: 2px solid #6a6a6a; border-radius: 0px; overflow: hidden; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
.quantity button { background-color: #6a6a6a; color: #fff; border: none; cursor: pointer; font-size: 20px; width: 30px; height: auto; text-align: center; transition: background-color 0.2s; }
.quantity button:hover { background-color: #000; }
.input-box { width: 40px; text-align: center; border: none; padding: 8px 10px; font-size: 16px; outline: none; }
.input-box::-webkit-inner-spin-button, .input-box::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.input-box[type="number"] { -moz-appearance: textfield; }

/*// cartbox end */


/* ======================================================================= */
    /* form_sec start */
/* ======================================================================= */

.form_sec {
	width: 100%;
	padding: 0;
	background-color: #eae9e9;
    overflow: hidden;
}

.form_secin {
    width: 100%;
    background-color: rgba(234, 233, 233, 1);
}

.form_sec_left {
	width: 100%;
	height: 100%;
	/*background-color: rgba(241, 170, 200, 1);*/
	padding: 25px 25px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	/*border-right: 5px solid #fff;*/
}

.form_sec_left img {
	height: 100%;
}
.form_sec_left::before {
	content: "";
	position: absolute;
	left: -1500px;
	width: 1500px;
	top: 0px;
	/*background-color: #f1aac8;*/
	height: 100%;
}

.form_sec_right {
    width: 100%;
    padding: 35px;
}

.form_sec_right .headertext h3 span {
    font-weight: 700;
}

.formbox { width: 100%; margin-top: 25px; }
.formbox .form-group { margin-bottom: 25px; }
.formbox .form-control { background-color: transparent; height: 45px; font-size: 16px; color: #000; padding: 10px 15px; border: none; font-weight: 500; border-bottom: 1px solid #6e6e6e; border-radius: 0px; }
.formbox textarea.form-control { min-height: 110px; resize: none; }
.formbox .form-control:focus, .formbox textarea.form-control:focus { border-color: #eb068b; transition: 0.9s; }
.formbox .form-control:focus { outline: 0; box-shadow: none; }
.formbox .mainbtn { border: 1px solid #000; }
.formbox .mainbtn:hover { border: 1px solid #000; }

.form-file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
  }
  
  .form-file + label {
    color: #5e5e5e;
    cursor: pointer;
    background-color: transparent;
    border-bottom: 1px solid #6e6e6e;
    display: inline-block;
    width: 100%;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding: 10px 20px;
  }
  
  .form-file + label span {
    font-family: inherit;
    font-weight: 500;
}
  
  .form-file + label .fa:before {
    margin-right: 10px;
    font-family: FontAwesome;
  }
  
  .form-file:focus + label,
  .form-file.has-focus + label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
    color: #5e5e5e; /* lighten(#0D5D87, 15%) equivalent */
  }
  
  .form-file + label:hover {
    color: #5e5e5e;; /* lighten(#0D5D87, 15%) equivalent */
  }
  
  .js .form-file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
  }
  
  .no-js .form-file {
    display: none;
  }
  

/*//*/

#aboutUs .follow_us {
    padding-top: 80px;
}

#aboutUs .rating_sec {
    padding-bottom: 0;
    padding-top: 80px;
}

#home .rating_sec {
    padding-top: 0;
}

#stickersDetails .rating_sec {
    padding-top: 0px;
    padding-bottom: 0;
}

.shipping_boximg1{width: 60px;height: 60px;background:#e6e6e6;border-radius:50%;align-items: center;
  justify-content: center;display: flex;margin:0 auto 15px;}
.shipping_box1{margin-bottom: 5px;}
.shipping_box1 p{line-height: 20px;}


.your_trusted .login {
    margin: 25px auto !important;
}

.your_trusted .entry-content {
    text-align: center;
}

.your_trusted .entry-content h2 {
    font-size: 48px;
	color: #000;
	font-weight: 600;
}

.woocommerce form .form-row .input-text {
	background-color: transparent !important;
    height: 45px !important;
    font-size: 16px !important;
    color: #000 !important;
    padding: 10px 15px !important;
    border: 1px solid #6e6e6e !important;
    font-weight: 500 !important;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    padding: 12px 25px;
    margin-top: 15px;
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: 0;
    font-weight: 600;
    border: 1px solid #000;
    background-color: #000;
    color: #fff !important;
    text-align: center;
    display: inline-block;
    transition: 0.6s;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover {
	background-color: #fff;
	border: 1px solid #000;
	color: #000 !important;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: inline-block;
    margin-top: 15px;
}

.woocommerce .woocommerce-Button  {
	padding: 12px 25px !important;
    margin-top: 15px !important;
    position: relative !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    font-size: 16px !important;
    border-radius: 0 !important;
    font-weight: 600 !important;
    border: 1px solid #000 !important;
    background-color: #000 !important;
    color: #fff !important;
    text-align: center !important;
    display: inline-block !important;
    transition: 0.6s !important;
}

.woocommerce .woocommerce-Button:hover {
	background-color: #fff !important;
	border: 1px solid #000 !important;
	color: #000 !important;
}

.woocommerce form .form-row-first, .woocommerce-page form .form-row-first {
    float: none;
    text-align: center;
    margin: 0 auto !important;
}
.your_trusted .woocommerce form .form-row-first {
    float: none !important;
}


.your_trusted .woocommerce form .form-row {
    padding: 3px;
    margin: 0 auto 6px;
}


.woocommerce form.login, .woocommerce form.register{border: 1px solid #e8e8e8ab !important;box-shadow: 0px 0px 15px 0px #ddddddad !important;}
.woocommerce form .form-row label {line-height: 2;text-align: left;}
.woocommerce-account .woocommerce-MyAccount-navigation{border:1px solid #e8e8e875 !important;  box-shadow: 0px 0px 10px 0px #dddddda1 !important;background:#F0F0F05C;}
.woocommerce-account .woocommerce-MyAccount-navigation ul li{border-bottom: 1px solid #e3e3e3;}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a{display: block;padding:10px 15px;color: #000;font-size: 17px;}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a{background:#000;color: #fff;}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover{background:#000;color: #fff;}
.woocommerce-MyAccount-content{border:1px solid #e8e8e875 !important;  box-shadow: 0px 0px 10px 0px #dddddda1 !important;
  background:#F0F0F05C; padding:20px;}

.woocommerce-info::before {color: #eb068b !important;}
.woocommerce-info {border-top-color: #eb068b !important;}
.woocommerce-Address{border:1px solid #ddd;padding:10px;}


.wc-block-components-sidebar-layout .wc-block-components-main{background: #f5f5f5;
    padding: 25px;}
.wp-block-woocommerce-cart-order-summary-block{background: #f5f5f5;
    padding: 25px;}

.is-large.wc-block-cart .wc-block-cart-items th {
    padding: 8px 16px 8px 0;
    white-space: nowrap;
    font-size: 17px; font-weight:900;
}

.is-large.wc-block-cart .wc-block-cart__totals-title {font-weight: 900;
    font-size: 17px;}
.wc-block-components-product-name {
    font-size: 22px;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-weight: 700;
    color: #000;
}
.wc-block-components-formatted-money-amount {
    white-space: nowrap;
    font-size: 20px;
    font-weight: 800;
}

.wc-block-cart__submit-container{background: #000;
    color: #fff !important;
    font-size: 18px;}
.wc-block-cart__submit-container a{ color:#fff;}
.wc-block-components-button{background: #000;
    color: #fff;
    border: none;
    padding: 16px 0px;}

.rank-math-breadcrumb a{ color:#000;}
table.wishlist_table tr th.product-name {
  text-align: left;
  font-size: 17px;
  font-weight: 700;
}

.woocommerce table.shop_table th{ text-align: left;
  font-size: 17px;
  font-weight: 700;}

.product-name a{font-size: 17px;
  color: #000;}
.woocommerce #reviews #comments h2 {
  clear: none;
  font-size: 20px;
  margin-bottom: 15px;
}

.comment-respond label {
    display: block;
}
.woocommerce #reviews #comment {
  height: 85px !important;
  border:1px solid #ddd !important;
  resize: none !important;
}
.comment-form-author input, .comment-form-email input{border: 1px solid #ddd !important;height: 35px;padding: 6px;width: 100%;}
.comment-form-cookies-consent{display: flex}
#wp-comment-cookies-consent{ margin-right:10px}

input#submit, .single_add_to_cart_button.button.alt{background: #000 !important;color: #fff !important;padding: 12px 30px !important;}
input#submit:hover, .single_add_to_cart_button button:hover{background: #fff;color: #000; border:1px solid #000;}

#stickersDetails .rating_sec .rating_sec_in {
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid #BCBCBC;
    border-bottom: 1px solid #BCBCBC;
    margin-top: 15px;
    margin-bottom: 40px;
}

.featured_sec_in .headertext h3{font-size: 30px;margin-bottom: 15px;}

.single_variation_wrap{display: flex;align-items: center;position: relative;}
.single_variation{margin-right: 15px;font-size: 25px;font-weight: 800;}

.variable-items-wrapper li{ display:block !important;}
.variable-items-wrapper.button-variable-items-wrapper.wvs-style-squared {
  display: block !important;
}
.variations tr, .variations td{display: block !important;margin-bottom: 20px;}
.variations{ width:100%;}

.variable-item-contents{ text-align:left !important;align-items: initial !important;}
.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item{ text-align: left !important;margin:8px 0px;border-radius:10px !important; padding:18px 4px !important;background:#f9f9f9;}
.variable-item.button-variable-item.button-variable-item-gloss.selected {
  margin-right: 15px !important;
}

.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor.yith-wcwl-add-to-wishlist-button--added.yith-wcwl-add-to-wishlist-button--single{position: relative;right: -230%;margin-top: -73px;}
.yith-wcwl-add-to-wishlist-button__label{ color:#000;}
.wvs-style-squared li{ display: block !important;width: 100% !important;}
.wishlist_table .product-add-to-cart a {display: table !important;margin:0 auto 5px !important;  text-align: center;
  background:#000;  padding:6px 14px;  color: #fff;}

.woocommerce .woocommerce-ordering select {
  vertical-align: top;
  height: 40px;
  padding:
10px;
}

.wishlist_table tr td{ text-align:left !important;}
.button.wc-forward{background:
#000 !important;
  color: #fff !important;}
.woocommerce-message {
  border-top-color: #ea068b !important;
}
.woocommerce-message::before {
  content: "\e015";
  color: #ea068b !important;
}
