@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
:root{
    --black : #333;
    --white : #fff;
    --gray : gray;
    --lightGray : lightgray;
    --purple : #3e175d;
    --green : #285c14;
}
@keyframes front-image {
    0%   {width:0;height:0}
    100% {width:70%;height:100%}
}
@keyframes back-image {
    0%   {width:0;height:0}
    100% {width:40%;height:100%}
}
@keyframes zoom-in-zoom-out {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
}
@keyframes moveInBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
*{padding: 0;margin:0;box-sizing: border-menu;}
body{background-color: var(--white);color:var(--black);font-family: 'Roboto Condensed', sans-serif;overflow-x: hidden;}
img{max-width: 100%;}
button,a,button:hover,a:hover,button:focus,a:focus{cursor:pointer;text-decoration: none;color:inherit;outline: none;box-shadow: none;}
input:focus, select:focus, textarea:focus,input:focus, select:focus, textarea:focus-visible{outline: none;box-shadow: none;}
.background{
    background-color: #F7F7F7;
}
.background-black{
    background-color: #211f24;
}

::-webkit-scrollbar {
    width: 8px !important;
}
::-webkit-scrollbar-thumb {
    background: var(--lightGray) !important;
    border-radius: 10px !important;
}
::-webkit-scrollbar-track {
    position: absolute !important;
    right: -3rem !important;
    top: -50rem !important;
    background: transparent !important;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--lightGray) !important;
}
::-webkit-scrollbar-corner {
    background: transparent !important;
}
.collapse.show{
	display:block;
}
.links{
    color:var(--purple);
    font-weight: 900;
    cursor:pointer;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 18px;
    text-decoration: underline;
}
.links:hover{
    text-decoration: underline;
}
.redText{
    color: red;
}
.sticky-top{
    top:94px;
}
.close-menu{
    width: 40px;
    height: 40px;
}
@media(max-width:575px){
    .h1{
        font-size: 26px;
    }
    .h5{
        font-size: 20px;
    }
    .m-5{
        margin: 20px !important;
    }
    .mt-5{
        margin-top: 20px !important;
    }
    .mb-5{
        margin-bottom: 20px !important;
    }
    .my-5{
        margin-top:20px !important;
        margin-bottom: 20px !important;
    }
    .mx-5{
        margin-left:20px !important;
        margin-right: 20px !important;
    }
    .p-5{
        padding: 20px !important;
    }
    .pt-5{
        padding-top: 20px !important;
    }
    .pb-5{
        padding-bottom: 20px !important;
    }
    .py-5{
        padding-top:20px !important;
        padding-bottom: 20px !important;
    }
    .px-5{
        padding-left:20px !important;
        padding-right: 20px !important;
    }
}
input:disabled,button:disabled,select:disabled,textarea:disabled{
    opacity: 0.6;
}
.list-group-item .close-btn{
    background-color: var(--black);
    color: var(--white);
    width: 20px;
    height: 20px;
    display: inline-block;
    line-height: 18px;
    text-align: center;
    border-radius: 50px;
    margin-right: 2px;
    font-size: 13px;
}
.list-group-item.clicked{
    background-color: var(--purple);
}
.list-group-item.clicked .links{
    color: var(--white);
}
.list-group-item .links{
    text-decoration: none;
    font-weight: 700;
}
.mobile-filter-content .list-group{
    max-height: 400px;
    overflow: auto;
}
/*---------------------
  Modal
-----------------------*/
.modal .modal-content{
	position: relative;
}
.modal .modal-content .close{
	position: absolute;
    right: 5px;
    top: 5px;
    padding-bottom: 30px;
    width: 30px;
    height: 25px;
    border-radius: 50px;
    color: var(--white);
    background: var(--black);
    border: none;
    font-size: 25px;
    line-height: 25px;
	z-index: 1;
}
.modal-body{
	max-height: calc(100vh - 200px);
    overflow: auto;
}
@media (max-width:575px){
	.modal-dialog{
		margin: 0 20px;
	}
}
.modal-backdrop{
    display: none;
}
.back-shadow{
    background-color: rgba(0,0,0,0.5);
}
/*---------------------
  form
-----------------------*/
.formErrors{
	font-size: 14px;
	color: red;
    font-weight: 600;
	margin-bottom: 10px;
    line-height: 1;
}
.formSuccess{
    font-size: 14px;
	color: rgb(30, 174, 30);
	margin-bottom: 10px;    
    font-weight: 600;
}
.password-hide {
    max-width: 14px;
    max-height: 20px;
    position: absolute;
    right: 8px;
    top: 14px;
    cursor: pointer;
}
#login label, #login input,#login select,#login textarea{
	display: block;
	width: 100%;
	padding: 0;
	border: none;
	font-size: 16px;
}
*::placeholder {
	color: gray;
}  
#login label{
	font-weight: 700;
	margin-bottom: 5px;
}
#login input,#login select,#login textarea,#login .number-change{
	background-color: #fff;
	box-shadow: none!important;
	outline: none;
	border: solid lightgray 1px;
	font-size: 14px;
	font-weight: 500;
	padding: 0 20px;
	height: 40px;
	margin-bottom: 20px; 
	border-radius: 30px;
}
#login input:hover,#login select:hover,#login textarea:hover{
	border-color: gray;
}
#login input:focus,#login select:focus,#login textarea:focus{
	border-color: var(--purple);
}
#login textarea{
	padding-top:10px;
} 
#login input:disabled{
	border-color: gray;
}
@media (max-width:575px){
	#login label, #login input,#login select,#login textarea{
		font-size: 14px;
	}
}
@media (max-width:450px){
	#login label,#login input,#login select,#login textarea{
		font-size: 13px;
	}
}
/*---------------------
  Login
-----------------------*/
#login .modal-body{
	padding: 0;
}
#login .modal-body::-webkit-scrollbar{
    display: none;
}
#login .title{
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--purple);
    color: var(--white);
    padding: 15px;
    border-radius: 3px 3px 0 0;
}
#login form{
    padding: 0 30px 30px;
}
#login .forget-link{
	font-size: 13px;
	float: right;
}
#login .tagline{
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0;
	text-align: center;
}
#login .tagline .links{
	margin-left: 10px;
}
#login .form-switch .form-check-input{
	height: 18px;
    width: 40px;
    margin-right: 10px;
	background-size: 16px 16px;
}
#login .form-check-input:checked{
	background-color: green;
	border-color: green;
}
@media (max-width:575px){
	#login form{
        padding: 0 20px 20px;
    }
	#login .tagline{
		font-size: 12px;
	}
}
@media (max-width:450px){
	#login .forget-link{
		font-size: 12px;
	}
}
/* header */
.search-form{
    position: absolute;
    z-index: 2;
    right: 0;
    top: 60px;
    max-width: 500px;
    width: 100%;
}
header{
    z-index: 100;
    transition: all 1s ease-in-out;
}
header .navbar{
    background-color: transparent;
    border-bottom: 4px solid transparent;
    align-items: stretch;
    padding: 0 20px;
    transition: all 1s ease-in-out;
}
header.active .navbar{
    background-color: var(--white);
    border-bottom: 4px solid var(--purple);
}
header .navbar .navbar-brand img{
    height: 70px;
    transition: all 1s ease-in-out;
}
header.active .navbar .navbar-brand img{
    content: url('../images/logo.png');
    height: 50px;
}
header .navbar .navbar-collapse{
    align-items: stretch;
    justify-content: center;
}
header .navbar .navbar-nav .nav-item{
    position: relative;
    margin-left: 35px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: transparent;
    transition: background-color .10s ease;
}
header .navbar .navbar-nav .nav-item .nav-link{
    color:var(--white);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    padding: 0;
    position: relative;
    border:none;
    letter-spacing: 0.4px;
    background-color: transparent;
}
header.active .navbar .navbar-nav .nav-item .nav-link{
    color: var(--purple);
}
header .navbar .navbar-nav .nav-item .nav-link.myaccount,.nav-link.myaccount{
    background: var(--purple);
    padding: 10px;
    border-radius: 50px;
    color: var(--white);
    width: 45px;
    height: 45px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
}
header .count{
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #9bfa77;
    width: 18px;
    height: 18px;
    font-size: 12px;
    text-align: center;
    border-radius: 50px;
    color: var(--purple);
    font-weight: 800;
}
header .count.cart-zoom {
    animation: zoom-in-zoom-out 1s ease-out;
}
header .navbar .navbar-nav .nav-item.menu-hover .nav-link{
    font-size: 16px;
}
header .navbar .navbar-nav .nav-item.menu-hover:hover,header .navbar .navbar-nav .nav-item.menu-hover.active{
    background-color: var(--purple);
}
header .navbar .navbar-nav .nav-item.menu-hover:hover .nav-link,header .navbar .navbar-nav .nav-item.menu-hover.active .nav-link{
    color: var(--white);
    z-index: 2;
}
header .navbar .navbar-nav .nav-item.menu-hover::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: -17px;
    height: 100%;
    width: 35px;
    -ms-transform: skew(-20deg);
    transform: skew(-20deg);
    -webkit-transform: skew(-20deg);
    -moz-transform: skew(-20deg);
    -o-transform: skew(-20deg);
    background: transparent;
}
header .navbar .navbar-nav .nav-item.menu-hover::after{
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    right: -17px;
    height: 100%;
    width: 35px;
    -ms-transform: skew(-20deg);
    transform: skew(-20deg);
    -webkit-transform: skew(-20deg);
    -moz-transform: skew(-20deg);
    -o-transform: skew(-20deg);
    background: transparent;
}
header.active .navbar .navbar-nav .nav-item.menu-hover::before,header.active .navbar .navbar-nav .nav-item.menu-hover::after,header.active .navbar .navbar-nav .nav-item.menu-hover{
    background-color: var(--white);
}
header .navbar .navbar-nav .nav-item.menu-hover::before, header .navbar .navbar-nav .nav-item.menu-hover::after {
    transition: background-color .10s ease;
}
header .navbar .navbar-nav .nav-item.menu-hover:hover::before, header .navbar .navbar-nav .nav-item.menu-hover:hover::after,header.active .navbar .navbar-nav .nav-item.menu-hover:hover,header .navbar .navbar-nav .nav-item.menu-hover.active::before, header .navbar .navbar-nav .nav-item.menu-hover.active::after,header.active .navbar .navbar-nav .nav-item.menu-hover.active{
    background-color: var(--purple);
    z-index: 1;
}
header .navbar .navbar-nav .nav-item .dropdown-menu.show{
    display: none;
}
header .navbar .navbar-nav .nav-item:hover .dropdown-menu.show{
    display: block;
    position: fixed;
    top: 100px;
    left: 0;
    background-color: var(--white);
    width: 100vw;
    box-shadow: 0 0 10px 0 rgba(0,0,0,.3);
}
header.active .navbar .navbar-nav .nav-item:hover .dropdown-menu.show{
    top: 80px;
}
.navbar-toggler{
    background-color: var(--white);
    border: none;
}
.navbar-toggler:focus{
    outline: none;
    box-shadow: none;
}
.flex-menu .menu-image{
    width: 120px;
    margin-right: 20px;
}
.flex-submenu{
    display: block;
    margin-bottom: 30px;
    color: var(--black);
}
.flex-submenu:hover{
    color:var(--green);
}
/* .flex-submenu:last-child{
    margin-bottom: 0;
} */
.flex-submenu-title{
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}
.flex-submenu-desc{
    font-size: 14px;
    margin-bottom: 0;
}
.shop-submenu{
    /* width: 32%; */
    display: inline-block;
}
.dropdown-menu.orders-menu{
    position: static !important;
    transform: none !important;
    margin-bottom: 10px !important;
}
@media(max-width:1199px){
    .flex-menu .menu-image{
        width: 70px;
    }
    .menu-banner{
        display: none;
    }
    header .navbar{
        background-color: var(--white);
        border-color: var(--purple);
    }
    #demo{
        margin-top: 83px;
    }
    header .count{
        right:0;
        top: 2%;
    }
    header .navbar .navbar-nav .nav-item .nav-link,.nav-link{
        color: var(--purple);
        font-weight: 700;
        padding: 10px;
        border-bottom: solid 1px var(--purple);
    }
    .nav-link{
        border: none;
    }
    header .navbar .navbar-nav .nav-item{
        display: block;
        margin-left: 0;
    }
    header .navbar .navbar-nav .nav-item::after, header .navbar .navbar-nav .nav-item::before{
        display: none;
    }
    header .navbar .navbar-nav .nav-item:hover .dropdown-menu.show{
        position: static;
        width: 100%;
        border-radius: 0;
    }
    header .navbar .navbar-brand img{
        content: url('../images/logo.png');
        height: 50px;
    }
}
@media(max-width:991px){
    header .navbar .navbar-nav .nav-item .nav-link,.nav-link{
        font-size: 16px;
    }
    .flex-submenu-title{
        font-size: 14px;
    }
    .shop-submenu{
        width: 100%;
    }
}
@media(max-width:575px){
    .flex-menu .menu-image{
        display: none;
    }
    .flex-submenu-title{
        margin-bottom: 0;
    }
}
.marquee-box{
    height: 30px;
    padding: 5px 20px;
    background-color: var(--purple);
    overflow: hidden;
    position: relative;
}
.marquee-box h3 {  
    position: absolute;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    text-align: left;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: example1 15s linear infinite;
    -webkit-animation: example1 15s linear infinite;
    animation: example1 10s linear infinite;
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
    width: max-content;
}
.marquee-box h3 span{
    margin-right: 200px;
}
/* Move it (define the animation) */
@-moz-keyframes example1 {
    0%   { -moz-transform: translateX(60%); }
    50%   { -moz-transform: translateX(40%); }
    100% { -moz-transform: translateX(0%); }
}
@-webkit-keyframes example1 {
    0%   { -webkit-transform: translateX(60%); }
    50%   { -webkit-transform: translateX(40%); }
    100% { -webkit-transform: translateX(0%); }
}
@keyframes example1 {
    0%   { 
    -moz-transform: translateX(60%); /* Firefox bug fix */
    -webkit-transform: translateX(80%); /* Firefox bug fix */
    transform: translateX(80%); 		
    }
    50%   { 
        -moz-transform: translateX(40%); /* Firefox bug fix */
        -webkit-transform: translateX(40%); /* Firefox bug fix */
        transform: translateX(40%); 		
    }
    100% { 
    -moz-transform: translateX(0%); /* Firefox bug fix */
    -webkit-transform: translateX(0%); /* Firefox bug fix */
    transform: translateX(0%); 
    }
}
/* banner */
.short-banner{
    height: 113px;
    background-image: url('../images/testimonials.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.banner{
    height: 400px;
    background-image: url('../images/testimonials.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 0;
}
.banner .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    width: 100%;
    height: 100%;
}
.banner .heading{
    font-size: 40px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 500px;
    margin-right: 50px;
}
.banner .breadcrumbs{
    text-transform: capitalize;
    font-size: 18px;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media(max-width:1199px){
    .banner{
        margin-top: 80px;
        height: 350px;
    }
    .short-banner{
       background: #F7F7F7;
    }
}
@media(max-width:991px){
    .banner .heading{
        font-size: 30px;
    }
    .banner .breadcrumbs{
        font-size: 16px;
    }
}
@media(max-width:767px){
    .banner{
       padding-top: 120px;
       height: 300px;
    }
    .banner .container{
        display: block;
    }
    .banner .heading{
        margin-bottom: 15px;
        font-size: 20px;
    }
    .banner .breadcrumbs{
        font-size: 14px;
    }
}
@media(max-width:575px){
    .banner{
        padding-top: 60px;
        height: 100px;
    }
}
/* accordion */
#accordion{
    background-color: rgba(255, 255, 255, 0.2);
    padding: 30px 50px;
    border-radius: 20px;
}
#accordion .card-header{
    background: transparent;
    color: var(--purple);
    font-size: 20px;
    font-weight: 600;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#accordion .card-header i{
    background-color: rgba(255, 255, 255, 0.5);
    height: 25px !important;
    width: 25px !important;
    min-height: 25px !important;
    min-width: 25px !important;
    line-height: 25px;
    text-align: center;
    border-radius: 50px;
}
#accordion .card-header:hover i{
    background-color: rgba(255, 255, 255, 1);
}
.card-header.collapsed i{
    transform: rotate(180deg);
}
@media(max-width:991px){
    #accordion .card-header{
        font-size: 18px;
    }
    #accordion{
        padding: 30px;
    }
}
@media(max-width:575px){
    #accordion .card-header{
        font-size: 18px;
    }
    #accordion{
        padding: 0;
        padding-bottom: 10px;
    }
}
/* home */
.heroCarousel{
    height: 700px;
}
.heroCarousel .heroImages{
    min-height: 700px;
    object-fit: fill;
    width: 100%;
    display: block;
}
@media(max-width:1199px){
    .hero{
        margin-top: 50px;
    }
    .heroCarousel{
        height: 450px;
    }
    .heroCarousel .heroImages{
        min-height: 450px;
    }
}
@media(max-width:767px){
    .heroCarousel{
        height: 300px;
    }
    .heroCarousel .heroImages{
        min-height: 300px;
    }
}
@media(max-width:575px){
    .heroCarousel{
        height: 200px;
    }
    .heroCarousel .heroImages{
        min-height: 200px;
    }
}
#cards_landscape_wrap-2 {
    text-align: center;
}
#cards_landscape_wrap-2 .container {
    padding-top: 5px;
    padding-bottom: 10px;
}
#cards_landscape_wrap-2 a {
    text-decoration: none;
    outline: none;
}
#cards_landscape_wrap-2 .card-flyer {
    border-radius: 5px;
}
#cards_landscape_wrap-2 .card-flyer .image-box {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.50);
    border-radius: 5px;
}
#cards_landscape_wrap-2 .card-flyer .image-box img {
    -webkit-transition: all .9s ease;
    -moz-transition: all .9s ease;
    -o-transition: all .9s ease;
    -ms-transition: all .9s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}
#cards_landscape_wrap-2 .card-flyer:hover .image-box img {
    opacity: 0.7;
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}
#cards_landscape_wrap-2 .card-flyer .text-box {
    text-align: center;
}
#cards_landscape_wrap-2 .card-flyer .text-box .text-container {
    padding: 30px 18px;
}
#cards_landscape_wrap-2 .card-flyer {
    background: var(--white);
    margin-top: 50px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.40);
}
#cards_landscape_wrap-2 .card-flyer:hover {
    background: var(--white);
    box-shadow: 0px 15px 26px rgba(0, 0, 0, 0.50);
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    margin-top: 50px;
}
#cards_landscape_wrap-2 .card-flyer .text-box p {
    margin-top: 10px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--black);
}
#cards_landscape_wrap-2 .card-flyer .text-box h6 {
    margin-top: 0px;
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Roboto Black', sans-serif;
    letter-spacing: 1px;
    color: var(--purple);
}

/* product */
.product-section{
    background-color: var(--white);
}
.product-section .shell{
    padding:30px 0 80px;
}
.product-section .wsk-cp-product{
    background:var(--white);
    padding:15px;
    border-radius:6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    position:relative;
    margin:20px auto;
    height: 600px;
    overflow: hidden;
}
.product-section .wsk-cp-img{
    position:absolute;
    top:5px;
    left:50%;
    transform:translate(-50%);
    -webkit-transform:translate(-50%);
    -ms-transform:translate(-50%);
    -moz-transform:translate(-50%);
    -o-transform:translate(-50%);
    -khtml-transform:translate(-50%);
    width: 100%;
    height: 407px;
    padding: 15px;
    transition: all 0.2s ease-in-out;
}
.product-section .wsk-cp-img img{
    height: 100%;
    width:100%;
    object-fit: contain;
    transition: all 0.2s ease-in-out;
    border-radius:6px;
    background-color: var(--white);
}
/* .product-section .wsk-cp-product:hover .wsk-cp-img{
    top:-40px;
} */
.product-section .wsk-cp-product:hover .wsk-cp-img img{
    /* box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22); */
    transform: scale(1.1);
}
.product-section .wsk-cp-text{
    padding-top:407px;
}
.product-section .wsk-cp-text .category{
    text-align:center;
    text-transform: uppercase;
    font-size:12px;
    font-weight:bold;
    padding:5px;
    margin-bottom:45px;
    position:relative;
    transition: all 0.2s ease-in-out;
}
.product-section .wsk-cp-text .category > *{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -khtml-transform: translate(-50%,-50%);
    
}
.product-section .wsk-cp-text .category > span{
    padding: 12px 30px;
    border: 1px solid #313131;
    background:#212121;
    color:var(--white);
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
    border-radius:27px;
    transition: all 0.05s ease-in-out;
    
}
.product-section .wsk-cp-product:hover .wsk-cp-text .category > span{
    border-color:#ddd;
    box-shadow: none;
    padding: 11px 28px;
}
.product-section .wsk-cp-product:hover .wsk-cp-text .category{
    margin-top: 0px;
}
.product-section .wsk-cp-text .title-product{
    text-align:center;
}
.product-section .wsk-cp-text .title-product h3{
    font-size:20px;
    font-weight:bold;
    margin:15px auto;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width:100%;
}
.product-section .wsk-cp-text .description-prod p{
    margin:0;
}
@media(max-width:1399px){
    .product-section .wsk-cp-product{
        height: 500px;
    }
    .product-section .wsk-cp-img{
        height: 307px;
    }
    .product-section .wsk-cp-img img{
        height: 307px;
    }
    .product-section .wsk-cp-text{
        padding-top:307px;
    }
}
@media(max-width:1199px){
    .product-section .wsk-cp-product{
        height: 450px;
    }
    .product-section .wsk-cp-img{
        height: 250px;
    }
    .product-section .wsk-cp-img img{
        height: 250px;
    }
    .product-section .wsk-cp-text{
        padding-top:250px;
    }
}
@media(max-width:767px){
    .product-section .wsk-cp-product{
        height: 400px;
    }
    .product-section .wsk-cp-img{
        height: 200px;
    }
    .product-section .wsk-cp-img img{
        height: 200px;
    }
    .product-section .wsk-cp-text{
        padding-top:200px;
    }
}
@media(max-width:575px){
    .product-section .wsk-cp-product{
        height: 500px;
    }
    .product-section .wsk-cp-img{
        height: 300px;
    }
    .product-section .wsk-cp-img img{
        height: 300px;
    }
    .product-section .wsk-cp-text{
        padding-top:300px;
    }
}
/* Truncate */
.product-section .wsk-cp-text .description-prod {
    text-align:center;
    width: 100%;
    height:50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom:15px;
}
.product-section .card-footer{
    padding: 25px 0 5px;
    border-top: 1px solid #ddd;
}
.product-section .card-footer::after, .product-section .card-footer::before{
    content:'';
    display:table;
}
.product-section .card-footer::after{
    clear:both;
}

.product-section .card-footer .wcf-left{
    float:left;
    
}

.product-section .card-footer .wcf-right{
    float:right;
}

.product-section .price{
    font-size:18px;
    font-weight:600;
    color: var(--black);
}
.product-section .salePrice{
    font-size:18px;
    font-weight: 600;
}
.product-section .price.strikeText{
    font-weight: 500;
    font-size: 14px;
    margin: 0 5px ;
}
.product-section .price.strikeText span{
    text-decoration: line-through;
}
.product-section .discount{
    color: red;
    font-size: 16px;
    font-weight: 500;
}
.product-section .buy-btn{
    display:block;
    color:#212121;
    text-align:center;
    font-size: 18px;
    width:35px;
    height:35px;
    line-height:35px;
    border-radius:50%;
    border:1px solid #212121;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}
.product-section .buy-btn:hover ,.product-section .buy-btn:active,.product-section .buy-btn:focus{
    border-color: var(--purple);
    background: var(--purple);
    color: var(--white);
    text-decoration:none;
}
.product-section .wsk-btn{
    display:inline-block;
    color:#212121;
    text-align:center;
    font-size: 18px;
    transition: all 0.2s ease-in-out;
    border-color: var(--purple);
    background: var(--purple);
    padding:12px 30px;
    border-radius:27px;
    margin: 0 5px;
}
.product-section .wsk-btn:hover, .wsk-btn:focus, .wsk-btn:active{
    text-decoration:none;
    color:var
}  
.product-section .red{
    color:#F44336;
    font-size:22px;
    display:inline-block;
    margin: 0 5px;
}
.filters{
    border-right: solid 1px var(--lightGray);
    padding-right: 15px;
}
.filters .heading{
    font-size: 20px;
    margin-bottom: 10px;
}
.mobile-filters{
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    background-color: #fff;
    border-top: solid var(--purple) 2px;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    z-index: 5;
}
.mobile-filters .filter-name{
    padding: 10px 20px;
    width: 50%;
    text-align: center;
}
.mobile-filters .filter-name:first-child{
    border-right: solid 1px #000;
}
.filter-content{
    position: fixed;
    bottom:46px;
    width: 100%;
    left: 0;
    background-color: #fff;
    border-top: solid 2px var(--gray);
    border-radius: 8px 8px 0  0;
    z-index: 5;
}
.mobile-filter-content{
    position: relative;
    padding: 30px 50px 20px 50px;
}
.mobile-filter-content .close-filter{
    position: absolute;
    right: 10px;
    top:10px;
    border: none;
    width: 20px;
    height: 20px;
    background-color: var(--black);
    color: var(--white);
    border-radius: 50px;
    line-height: 16px;
    text-align: center;
    margin-right: 2px;
    font-size: 13px;
    font-weight: 900;
}

@media(max-width:767px){
    .mobile-filter-content{
        position: relative;
        padding: 30px 30px 20px 30px;
    }
    .product-section .shell{
        padding-top: 10px;
    }
    .filters{
        border-right: none;
        border-bottom: solid 1px var(--lightGray);
        margin-bottom: 30px;
    }
    .filters .heading{
        font-size: 18px;
    }
}
.searchBox{
    width: 100%;
    height: 40px;
    border: solid 1px var(--lightGray);
    border-radius: 5px;
    display: flex;
    margin-bottom: 20px;
    background-color: var(--white);
    z-index: 105;
}
.searchBox .search-input{
    width: 100%;
    border:none;
    padding: 5px 10px;
    background-color: transparent;
}
.searchBox .search-btn{
    background-color: var(--purple);
    color: var(--white);
    font-size: 14px;
    width: 45px;
    height: 38px;
    font-weight: 600;
    border: none;
    border-radius: 0 5px 5px 0;
}
/* buttons */
.button {
    position: relative;
    padding: 10px 20px;
    font-size: 16px;
    color: var(--purple);
    border: 2px solid rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: 0.5s;
    z-index: 1;
    font-weight: 700;
    background-color: transparent;
}

.button:hover {
    color: var(--white);
    border: 2px solid rgba(0, 0, 0, 0);
    box-shadow: 0 0 0px var(--purple);
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--purple);
    z-index: -1;
    transform: scale(0);
    transition: 0.5s;
}

.button:hover::before {
    transform: scale(1);
    transition-delay: 0.5s;
    box-shadow: 0 0 10px var(--purple),
    0 0 10px var(--purple),
    0 0 10px var(--purple);
}

.button span {
    position: absolute;
    background: var(--purple);
    pointer-events: none;
    border-radius: 2px;
    box-shadow: 0 0 5px var(--purple);
    transition: 0.5s ease-in-out;
    transition-delay: 0.25s;
}

.button:hover span {
    opacity: 0;
    transition-delay: 0s;
}

.button span:nth-child(1),
.button span:nth-child(3) {
    width: 40px;
    height: 4px;
}

.button:hover span:nth-child(1),
.button:hover span:nth-child(3) {
    transform: translateX(0);
}

.button span:nth-child(2),
.button span:nth-child(4) {
    width: 4px;
    height: 40px;
}

.button:hover span:nth-child(1),
.button:hover span:nth-child(3) {
    transform: translateY(0);
}

.button span:nth-child(1) {
    top: calc(50% - 2px);
    left: -50px;
    transform-origin: left;
}

.button:hover span:nth-child(1) {
    left: 50%;
}

.button span:nth-child(3) {
    top: calc(50% - 2px);
    right: -50px;
    transform-origin: right;
}

.button:hover span:nth-child(3) {
    right: 50%;
}

.button span:nth-child(2) {
    left: calc(50% - 2px);
    top: -50px;
    transform-origin: top;
}

.button:hover span:nth-child(2) {
    top: 50%;
}

.button span:nth-child(4) {
    left: calc(50% - 2px);
    bottom: -50px;
    transform-origin: bottom;
}

.button:hover span:nth-child(4 ) {
    bottom: 50%;
}
.filled-button,.filled-button:focus{
    background-color: var(--purple);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    display: block;
    width: 100%;
    padding: 8px;
    border: none;
}
.filled-button:hover{
    background-color: var(--black);
    color: var(--white);
}

.button2,.button2:focus {
    display: inline-block;
    background-color: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 10px 30px;
    color: var(--purple);
    border: 2px solid var(--purple);
    border-radius: calc(0.75em + 0.5em + 0.15em);
    transition: 4s;
}
.btn-login{
    text-transform: uppercase;
    text-decoration: none;
    padding: 15px 40px;
    display: inline-block;
    border-radius: 100px;
    transition: all .2s;
    /* animation: moveInBottom 5s ease-out; */
    /* animation-fill-mode: backwards; */
    background-color: #fff;
    color: var(--black);
}
.btn-login.login-2{
    background-color: var(--purple);
    color: var(--white);
}
.btn-login:active{
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.btn-login::after{
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .4s;
    background-color: #fff;
}
.btn-login.login-2::after{
    background-color: var(--purple);
}
.btn-login:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-login:hover::after{
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}
.button2:before, .button2:after,.button2:focus:before,.button2:focus:after {
    content: "";
    position: absolute;
    top: -1.5em;
    z-index: -1;
    width: 200%;
    aspect-ratio: 1;
    border: none;
    border-radius: 40%;
    background-color: rgba(62, 23, 93, 0.25);
    transition: 4s;
}
.button2:before {
    left: -80%;
    transform: translate3d(0, 5em, 0) rotate(-340deg);
}
.button2:after {
    right: -80%;
    transform: translate3d(0, 5em, 0) rotate(390deg);
}
.button2:hover{
    color: white;
}
.button2:hover:before, .button2:hover:after{
    transform: none;
    background-color: rgba(62, 23, 93, 0.75);
}
.btn-purple,.btn-purple:focus,.btn-purple:hover{
    background-color: var(--purple);
    color:var(--white);
    cursor: pointer;
}
/* faqs */
.faqsSection{
    background: linear-gradient(209deg, rgba(163,237,135,1) 0%, rgba(201,107,244,1) 100%);
}

/* parellex */
.parallex{
    overflow-x: hidden;
    height: 100%;
    width: 100%;
}
/* First Parallax Image */
.first-parallax {
  height: 90vh;
  width: 100vw;
  background-image: url("../images/parallex1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;  
}

/* Second Parallax Image */
.second-parallax {
  height: 90vh;
  width: 100vw;
  background-image: url("../images/parallex3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;  
}
.group {
    background-color: #161517;
}
.group .group-text {
    margin: 10px 0;
    color: var(--white);
    padding: 50px 10%;
}
@media (min-width: 0px) and (max-width: 767px) {
    .group-text {
    padding: 35px 45px !important;
    }
    .first-parallax,.second-parallax{
        background-attachment:unset;
        height: 400px;
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .group-text {
    padding: 35px 65px !important;
    }
}


/* testimonial */
.testimonials{
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
    height: 550px;
    font-size: 14px;
    position: relative;
    background-image: url('../images/testimonials.jpg');
    background-size: cover;
    background-position: center center;
}
.testimonial-content{
    text-align: center;
    color: var(--white);
}
.testimonial-content .test-img{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.testimonial-content .test-name{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.testimonial-content .test-content{
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;  
    overflow: hidden;
    max-width: 800px;
    margin: auto;
}
@media (max-width:575px){
    .testimonials{
        height: 550px;
    }
}
/* sidebar */
.sidebar{
	display: block;
}
.sidebar-mobile{
	display: none;
}
.sidebar .list-item{
    border: none;
    width: 100%;
    text-align: left;
}
.sidebar .list-item.dropdown-toggle::after{
    position: absolute;
    top: 15px;
    right: 10px;
}
.list-item{
    display: block;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 5px;
    background-color: rgb(241 241 241);
    cursor: pointer;
}
.list-item:hover,.list-item.active{
    background-color: var(--purple);
    color: var(--white);
}
@media (max-width:767px){
	.sidebar{
		display: none;
	}
	.sidebar-mobile{
		display: block;
	}
}
/* cart */
.cart-card{
    background-color: var(--white);
    border: solid 1px var(--lightGray);
    padding: 15px;
    display: flex;
    border-radius: 5px;
    word-wrap: break-word;
    margin-bottom: 20px;
}
.cart-product-name{
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.cart-product-version{
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
}
.cart-product-list{
    font-size: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.cart-product-list li{
    margin-right: 15px;
}
.cart-product-img{
    min-width: 80px;
    max-width: 80px;
    min-height: 80px;
    max-height: 80px;
    margin-right: 20px;
    border: solid 1px var(--lightGray)
}
.cart-quantity{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.cart-trash{
    background-color: var(--white);
    border: solid var(--purple) 1px;
    color: var(--purple);
    font-size: 16px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    min-width: 170px;
}
.cart-trash:hover{
    background-color: var(--purple);
    color: var(--white);
}
.cart-trash.filled,.cart-trash.filled:disabled:hover{
    background-color: var(--purple);
    color:var(--white);
    transition: ease-in-out;
    padding: 10px 20px;
    font-size: 16px;
}
.cart-trash.filled:hover{
    font-size: 18px;
}
.coupon.red{
    border:red solid 2px;
}
.valid-coupon{
    display: inline-block;
    color: #000;
    padding: 0;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: underline;
    font-weight: 600;
    border-radius: 3px;
    margin-right: 5px;
    margin-bottom: 10px;
}
.remove-coupon,.remove-coupon:focus,.remove-coupon:hover{
    background-color: #000;
    color: var(--white);
    border: none;
    width: 22px;
    height: 22px;
    border-radius: 50px;
    font-size: 15px;
    padding: 0;
    line-height: 15px;
    cursor: pointer;
}
@media(max-width:575px){
    .cart-card{
        flex-wrap: wrap;
    }
    .cart-product-img{
        width: 50px;
        height: 50px;
    }
    .cart-card .flex-grow-1{
        margin-bottom: 15px;
        width: calc(100% - 110px);
    }
    .cart-quantity{
        flex-direction: row;
        width: 100%;
    }
}
.payment-label {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.payment-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.payment-label .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}
.payment-label:hover input ~ .checkmark {
    background-color: #ccc;
}
.payment-label input:checked ~ .checkmark {
    background-color: var(--purple);
}
.payment-label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.payment-label input:checked ~ .checkmark:after {
    display: block;
}
.payment-label .checkmark:after {
    left: 9px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* contact */
.section-contact {
    padding: 120px 0;
	background-color: var(--white);
}
.section-contact .header-section .title {
	position: relative;
	margin-bottom: 17px;
	text-transform: uppercase;
    font-weight: 700;
    font-size: 55px;
}
.section-contact .header-section .title .dot {
    display: inline-block;
	position: absolute;
    bottom: 8px;
    width: 8px;
    height: 8px;
    margin-left: 3px;
    background-color: var(--green);
}

.section-contact .header-section .description {
	font-family: "Roboto", sans-serif;
	color: var(--purple);
}

.section-contact .header-section .big-title {
	position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%,70%);
    font-size: 120px;
    font-weight: 700;
    opacity: 0.15;
}

.section-contact .form-contact .single-input {
	position: relative;
    margin-top: 40px;
}

.section-contact .form-contact .single-input i {
	position: absolute;
    top: 5px;
    left: 15px;
    color: #f70037;
}

.section-contact .form-contact .single-input input,
.section-contact .form-contact .single-input textarea {
	width: 100%;
    border: none;
    border-bottom: 2px solid var(--purple);
    padding-left: 50px;
    padding-bottom: 15px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
		transition: border .3s;
}

.section-contact .form-contact .single-input input::placeholder,
.section-contact .form-contact .single-input textarea::placeholder {
	color: rgba(7, 57, 92, .3);
}

.section-contact .form-contact .single-input input:focus,
.section-contact .form-contact .single-input textarea:focus {
	border-color: var(--green);
}

.section-contact .form-contact .single-input textarea {
	min-height: 50px;
    margin-bottom: 20px;
}

.section-contact .form-contact .submit-input input {
	margin-top: 40px;
    padding: 15px 50px;
    background-color: #f70037;
    color: var;
    border: none;
    font-weight: 700;
    transition: background-color .3s;
}

.section-contact .form-contact .submit-input input:hover {
	background-color: var(--purple);
}
.personal-details{
    display: flex;
    justify-content: space-around;
    margin-top: 80px;
}
.personal-details div{
    border: solid 3px var(--purple);
    background-color: var(--purple);
    color: var(--white);
    border-radius: 8px;
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    width: 350px;
}
.personal-details div img{
    width: 30px;
    height: 30px;
    margin: auto;
    margin-bottom: 10px;
    display: block;
}
.text-big{
    font-size: 30px;
}
@media (max-width: 575px) {
	.section-contact {
	    padding: 80px 20px;
	}

	.section-contact .header-section .title {
	    font-size: 35px;
	}

	.section-contact .header-section .big-title {
		font-size: 150%;
	}

	.section-contact .header-section .description {
		font-size: 14px;
	}
}
@media (max-width :991px){
    .personal-details div{
        font-size: 16px;
        width: 300px;
    }
}
@media (max-width :767px){
    .personal-details{
        flex-wrap: wrap;
    }
    .personal-details div{
        font-size: 16px;
        width: 100%;
        margin-bottom: 20px;
    }
}
@media (min-width: 576px) and (max-width: 767) {
	.section-contact {
	    padding: 80px 60px;
	}

	.section-contact .header-section .title {
	    font-size: 45px;
	}

	.section-contact .header-section .big-title {
		font-size: 100px;
	}
}

@media (min-width: 768px) and (max-width: 991) {
	.section-contact {
	    padding: 80px 60px;
	}

	.section-contact .header-section .title {
	    font-size: 45px;
	}

	.section-contact .header-section .big-title {
		font-size: 100px;
	}
}


/* customize-controller */
.customize-controller{
    min-height: 100vh;
    background: -webkit-radial-gradient(center center,ellipse cover,#424242 0%,black 100%);
    color: var(--white);
    padding: 100px 20px 0;
}
.custom-price{
	color:#fff;
     font-size: 40px;
     font-weight: 400;
}
.custom-btn,.custom-btn:hover,.custom-btn:focus{
    background-color: var(--white);
    border: none;
    border-radius: 4px;
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    padding: 8px 20px;
    margin-left: 20px;
}
.custom-change-btn,.custom-change-btn:hover,.custom-change-btn:focus{
    background-color: transparent;
    color: #fff;
    border:solid white 2px;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    cursor: pointer;
}
.custom-change-btn.active,.custom-change-btn.active:hover,.custom-change-btn.active:focus{
    background-color: #fff;
    font-weight: 600;
    color: #000;
}
.custom-options{
    background-color: var(--black);
    color: white;
    overflow: auto;
    height: calc(100vh - 182px);
}
.custom-options .card{
    border: none;
    border-radius: 0;
    background-color: transparent;
}
.custom-options .card-header{
    cursor: pointer;
    padding: 4px 10px;
}
.custom-options .card-body{
    padding: 10px;
    background-color: #1c1b1b;
}
.custom-options .main-img{
    width: 50px;
    margin-right: 10px;
}
.custom-options  .option-img{
    width: 25px;
    height: 25px;
    border-radius: 50px;
    border: solid 1px #2b2b2f;
}
.custom-options .custom-area{
	color:#fff;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	max-width:90%;
}
.custom-options .option-name{
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.custom-options .option-input-image{
    position: relative;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
    width: 40px;
    height: 40px;
}
.custom-options .option-input-image .option-input{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.custom-options .option-input-image .option-input-checked{
    display: none;
    position: absolute;
    color:black;
    left: calc(50% - 12px);
    top: calc(50% - 12px);
}
.custom-options .option-input-image .option-input:checked ~ .option-input-checked{
    display: block;
}
.custom-options .option-input-image .option-image{
    width: 100%;
    height: 100%;
    border-radius: 4px;
}
.custom-options .option-title,.custom-options .option-title-2{
	color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    display: block;
    margin-bottom: 15px;
    margin-top: 10px;
}
.custom-options .option-title-2{
    font-size: 14px;
}
.custom-options .option-title-2 span{
    float: right;
}
.custom-options .tag-text{
    width: 100%;
    border: none;
    padding: 5px 10px;
    border-bottom: solid 5px var(--green);
    background-color: #fff;
}
.customize-controller .image-container{
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    min-height: calc(100% - 150px);
}
.customize-controller .front-image{
    width: 70%;
    height: 100%;
    overflow: hidden;
    padding-top: 50px;
    margin-left: 30%;
    z-index: 1;
    animation: front-image 1s;
}
.customize-controller .base-image{
    width: 100%;
}
.customize-controller .overlap-images{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.customize-controller .back-image{
    width: 40%;
    height: 100%;
    animation: back-image 1s;
    position: absolute;
    top: 0;
    right: 60%;
    z-index: -1;
}
/* single product */
.single-product{
    padding: 80px 50px;
}
.single-product .react-multi-carousel-item{
    padding-left: 10px;
    padding-right: 10px;
}
.singleProduct .carousel-indicators {
    position: static;
    height: 600px;
    overflow: auto;
    margin: 0;
    flex-direction: column;
    justify-content: start;
}
.singleProduct .carousel-indicators [data-bs-target]{
    opacity: 1;
}
.singleProduct .carousel-control-prev, .singleProduct .carousel-control-next{
    opacity: 0;
    width: 50%;
}
.singleProduct .carousel-control-prev{
    cursor: url('../images/left-arrow.png'),auto;
}
.singleProduct .carousel-control-next{
    cursor: url('../images/right-arrow.png'),auto;
}
.singleProduct .carousel-indicators .thumb{
    width: 100%;
}
.singleProduct .carousel-indicators li{
    text-indent:0;
    width: 100%;
    margin: 0;
    border: none;    
    height: auto;
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: solid 2px transparent;
    background-color: transparent;
}
.singleProduct .carousel-indicators li.active{
    border-bottom: solid 2px var(--black);
}
.singleProduct .carousel-item{
    height: 700px;
    overflow: hidden;
    background-color: var(--white);
}
.singleProduct .carousel-item .carousel-image{
    height: 700px;
    object-fit: contain;
    padding: 30px;
    width: 100%;
}
.singleProduct .carousel-indicators::-webkit-scrollbar{
    display: none;
}
.fixed-map-image{
    position: relative;
    width: 100%;
    height: 100%;
}
.upper-left,.upper-right,.lower-left,.lower-right{
    position: absolute;
    font-size: 1vw;
    font-weight: 600
}
.upper-right{
    top: 30%;
    right: 72%;
}
.upper-left{
    top: 30%;
    left: 72%;
}
.lower-right{
    bottom: 30%;
    right: 76%;
}
.lower-left{
    bottom: 30%;
    left: 77%;
}
.radio-option{
    position: relative;
    margin-right: 10px;
}
.radio-option input[type='radio']{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.radio-option label{
    background-color: transparent;
    border:solid var(--lightGray) 3px;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 2px;
    cursor: pointer;
    /* position: relative; */
}
.radio-option label .tooltiptext,.color-box label .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: var(--black);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: -40px;
    left: 8px;
}
.radio-option label .tooltiptext::after,.color-box label .tooltiptext::after{
    content: '';
    background-color: var(--black);
    width: 12px;
    height: 12px;
    position: absolute;
    bottom: -5px;
    left: calc(50% - 4px);
    transform: rotate(45deg);
}
.radio-option:hover label .tooltiptext,.color-box:hover label .tooltiptext {
    visibility: visible;
}
.radio-option input[type='radio']:checked ~ label,.radio-option input[type='radio']:checked:hover ~ label{
    border-color: var(--green);
}
.radio-option input[type='radio']:hover ~ label{
    border-color:var(--gray)
}
.color-options {
    margin-bottom: 20px;
}
.color-options .color-box {
    position: relative;
    display: inline-block;
    margin-right: 2px;
    margin-bottom: 2px;
    width: 100px;
}
.color-options .color-box .color-input {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
    opacity: 0;
    z-index: 2;
    cursor: pointer;
}
.color-options .color-box .color-label {
    position: relative;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    cursor: pointer;
    width: 100%;
    line-height: 1.2;
    z-index: 1;
    border: solid 2px var(--black);
    margin: 0;
}
.color-options .color-box .color-label .color-image {
    width: 100%;
}
.color-options .color-box .color-label .color-name {
    position: absolute;
    text-shadow: -1px 0 var(--white), 0 1px var(--white), 1px 0 var(--white), 0 -1px var(--white);
    top: 2px;
    left: 2px;
    width: 98%;
    height: 95%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.color-options .color-box .color-input:checked + .color-label {
    border: solid 2px red;
}
.discount-message{
    background: #be0526;
    padding: 2px 10px;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    margin: 0;
    position: relative;
}
.discount-message::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 5px;
    border-color: transparent transparent #be0526 transparent;
    position: absolute;
    top: -5px;
    left: 10px;
}
.fixed-mapping-form{
    padding: 15px;
    border: solid 1px var(--lightGray);
    border-radius: 4px;
}
.basic-image{
    margin-bottom: 20px;
    width: 100%;
    max-width: 500px;
    display: block;
    margin: auto;
    margin-bottom: 30px;
}
.product-price{
    font-size: 35px;
    font-weight: 700;
}
.product-price .discount{
    color:red;
    font-weight: 400;
    font-size: 19px;
}
.mrpPrice{
    font-size: 16px;
    font-weight: 500;
    color: rgb(91, 91, 91);
}
.mrpPrice .strike{
    margin-left: 5px;
    text-decoration: line-through;
}
.qty-btn{
    width: 30px;
    height: 40px;
    background-color: transparent;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    border: solid 1px var(--lightGray);
}
input.qty-btn{
    width: 50px;
}
button.qty-btn:hover{
    background-color: lightgray;
}
.cartNumber{
    width: 100px;
    height: 40px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    border: solid 1px var(--lightGray);
}
.frequently-products{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.frequently-products li{
    margin-right: 20px;
    position: relative;
}
.frequently-products img{
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.frequently-products li::after{
    content: "+";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -15px;
    width: 15px;
    text-align: center;
}
.frequently-products li:last-child{
    margin-right: 0;
}
.frequently-products li:last-child::after{
   display: none;
}
@media (max-width:1380px){
    .singleProduct .carousel-item{
        height: 600px;
    }
    .singleProduct .carousel-item .carousel-image{
        height: 600px;
    }
}
@media(max-width:1199px){
    .single-product{
        padding: 50px 20px;
    }
    .singleProduct .carousel-item{
        height: 500px;
    }
    .singleProduct .carousel-item .carousel-image,.singleProduct .carousel-indicators{
        height: 500px;
    }
}
@media(max-width:991px){
    .singleProduct .carousel-item{
        height: 400px;
    }
    .singleProduct .carousel-item .carousel-image,.singleProduct .carousel-indicators{
        height: 400px;
    }
    .upper-left,.upper-right,.lower-left,.lower-right{
        font-size: 1.5vw;
    }
}
@media(max-width:767px){
    .upper-left,.upper-right,.lower-left,.lower-right{
        font-size: 2vw;
    }
}
@media(max-width:575px){
    .upper-left,.upper-right,.lower-left,.lower-right{
        font-size: 2.5vw;
    }
    .single-product{
        padding: 0;
    }
    .singleProduct .carousel-indicators{
        height: auto;
        margin-top: 20px;
    }
    .singleProduct .carousel-indicators {
        flex-direction: row;
        padding: 0 12px;
        justify-content: center;
    }
    .singleProduct .carousel-indicators li{
        width: 70px;
        margin-bottom: 0;
        margin-right: 5px;
    }
    .singleProduct .carousel-indicators button{
        width: 12px;
        height: 12px;
        border-radius: 50px;
        border: none;
    }
    /* .singleProduct .carousel-indicators [data-bs-target]{
        opacity: 0.5;
    }
    .singleProduct .carousel-indicators [data-bs-target]:hover{
        opacity: 1;
    } */

    .singleProduct .carousel-indicators [data-bs-target]{
        opacity: 1;
    }
    
    .singleProduct .carousel-control-next, .singleProduct .carousel-control-prev{        
        opacity: 1;
        border: solid 1px black;
        background: black;
        height: 40px;
        width: 40px;
        border-radius: 50px;
        overflow: hidden;
        top: calc(50% - 25px);
    }
    .singleProduct .carousel-control-next::before{
        content: url('../images/right-arrow.png');
        margin-top: 7px;
        margin-left: 3px;
    }
    .singleProduct .carousel-control-prev::before{
        content: url('../images/left-arrow.png');
        margin-top: 7px;
        margin-left: 3px;
    }
}
@media(max-width:450px){
    .singleProduct .carousel-item{
        height: 300px;
    }
    .singleProduct .carousel-item .carousel-image{
        height: 300px;
    }
}
/*---------------------
  send in controller 
-----------------------*/
.send-in-controller{
    margin-top: 80px;
    background-color: var(--lightGray);
    padding: 20px;
}
.send-in-controller .column{
    padding: 20px;
    max-width: 250px;
}
.send-in-controller .send-in-image{
    max-width: 150px;
}
.send-in-controller .send-in-title{
    text-transform: uppercase;
    font-weight: 600;

}
/*---------------------
  remove address
-----------------------*/
.remove-address,.remove-address:hover,.remove-address:focus{
	top: 0;
    right: 0;
    border: 0;
    background: black;
    color: white;
    width: 20px;
    height: 20px;
    padding-bottom: 28px;
}
.address{
	font-size: 16px;
	font-weight: 500;
}
.add-address{
	min-height: 180px;
}
.add-address .buttons{
	min-width: auto;
	padding: 5px 15px;
}
.add-address.default{
	border-color: var(--purple);
	background-color: rgb(227 183 247);
}
@media (max-width:1199px){
	.address{
		font-size: 14px;
		font-weight: 500;
	}
}
/* thanks */
.order-status{
	padding: 50px 0;
}
.order-status .order-success {
    width: 80%;
    max-width: 450px;
}
.order-status  .heading {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}
@media(max-width:575px){
    .order-status .order-success {
        width: 80%;
        max-width: 250px;
    }
}
/* footer  */
#footer{
	background: #f7f7f7;
    padding: 50px 20px;
	background-image: url('../images/footer.jpg');
    background-size: cover;
    background-position: center center;
}
#footer .social-links h2{
	padding-bottom: 15px;
	font-size: 20px;
    font-weight: 600;
    color: var(--white);
}
#footer .social-links img{
	padding-bottom: 25px;
}
#footer .social-icons{
	display: flex;
    flex-direction: column;
    gap: 1rem;
	color: var(--white);
}
#footer .social-icons a{
	color: var(--white);
    font-weight: 700;
    font-size: 16px;
}
#footer .social-icons a:hover{
	color: var(--white);
}
#footer .social-icons a i{
	box-shadow: rgb(0 0 0 / 8%) 0px 4px 12px;
    padding: 0.4rem 1rem 0.4rem 1rem;
    border-radius: 3px;
    color: var(--white);
	font-size: 16px;
	margin-right: 12px;
}
#footer li{
	list-style: none;
}
#footer .useful-link .heading{
    text-transform: uppercase;
	padding-bottom: 15px;
	font-size: 18px;
    font-weight: 800;
    color: var(--white);
}
#footer .useful-link img{
	padding-bottom: 15px;
}
#footer .use-links{
	line-height: 32px;
}
#footer .use-links li i{
	font-size: 14px;
    padding-right: 8px;
    color: var(--white);
}
#footer .use-links li a{
	color: var(--white);
    font-size: 16px;
    font-weight: 500;
}
#footer .use-links li a:hover{
	color: var(--white);
    text-decoration: underline;
}
#footer .address h2{
	padding-bottom: 15px;
	font-size: 20px;
    font-weight: 600;
    color: var(--white);
}
#footer .address img{
	padding-bottom: 15px;
}
#footer .address-links li a{
	color: var(--white);
    font-size: 16px;
    font-weight: 700;

}
#footer .address-links li i{
	font-size: 16px;
    padding-right: 8px;
	color: var(--white);
}
#footer .address-links li i:nth-child(1){
	padding-top: 9px;
}
#footer .address-links .address1{
	font-weight: 700;
    font-size: 15px;
	display: flex;
}
#footer .address-links{
    line-height: 32px;
    color: var(--white);
}

#copy-right{
	display:flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 12%;
    background: #230c36;
    color: #fff;
}
#copy-right .copy-right-sec{
	font-size:12px;
}
#copy-right .copy-right-sec a{
	color: #f70037;
}
#copy-right  .fa-brands  {
	background:#fff;
	border-radius:50px;
	width:30px;
	height:30px;
    margin-left: 5px;
	text-align: center;
	line-height: 30px;
	color: #000;
}
#copy-right  .fa-brands .twitter{
    width: 15px;
}
#copy-right  .fa-brands:hover .twitter{
    content: url('../images/twitter-white.png');
}
#copy-right  .fa-brands:hover{
	color:#fff;
	background:#000;
}
/* @media(max-width:991px){
    #copy-right{
        margin-bottom: 46px;
    }
} */
@media(max-width:767px){
	#copy-right{
		display:block;
		text-align:center;
	}
}
.disable-div {
    pointer-events: none;
    opacity: 0.4;
}
.active-div {
    pointer-events: auto;
    opacity: 1;
}
/* footer section end */

/* blogs */
.blog-card,.blog-card:hover,.blog-card:focus{
    box-shadow: 0 0 10px rgb(0 5 39 / 10%);
    padding: 0;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
}
.blog-card .blog-img{
    width: 100%;
    vertical-align: top;
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    opacity: 0.7;
}
.blog-card:hover .blog-img{
    opacity: 1;
}
.blog-card .blog-body{
    padding: 15px;
}
.blog-card:hover{
    box-shadow: 0 0 10px rgb(0 5 39 / 30%);
}
.blog-card .blog-title{
    color: var(--navy);
    font-size: 20px;
    height: 50px;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.blog-card .blog-content{
    font-size: 13px;
    margin-bottom:0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.blog-detail .blog-title{
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 5px;
}
.blog-detail .blog-publish{
    font-size: 13px;
    margin-bottom:20px;
}
.blog-detail .blog-content{
    font-size: 16px;
    margin-bottom:20px;
    text-align: justify;
}
.blog-detail .blog-detail-image{
    height: 400px;
    float: inline-start;
}
@media (max-width:575px){
    .blog-card .blog-img{
        opacity: 1;
    }
}

/* single product */
.product-image {
    border: solid 1px var(--gray);
    background-color: var(--white);
    padding: 10px 10px;
}
.product-image .single-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    padding: 20px;
    margin-bottom: 5px;
}
.product-image .thumbnails {
    width: 100%;
    display: flex;
    overflow: auto;
    justify-content: center;
}

.product-image .thumbnails .thumb {
    width: 18%;
    max-width: 100px;
    min-width: 100px;
    margin-right: 2%;
    border: solid 1px var(--gray);
}

.product-image .thumbnails .thumb:last-child {
    margin-right: 0;
}

.product-image .thumbnails .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}
@media(max-width:1024px){
    .product-image .single-image{
        height: 400px;
    }
}
@media (max-width: 575px){
    .product-image .single-image {
        height: 300px;
    }
}
.multi-range-slider .thumb .caption *{
    background-color: #3e175d !important;
}