html,
body {
	height: 100%;
	font-family: "Montserrat", sans-serif;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Montserrat", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 15px;
	font-family: "Montserrat", sans-serif;
	color: #666666;
	font-weight: 500;
	line-height: 24px;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	margin-bottom: 35px;
}

.section-title h4 {
	color: #111111;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
}

.section-title h4:after {
	position: absolute;
	left: 0;
	bottom: -4px;
	height: 2px;
	width: 70px;
	background: rgb(25, 174, 201);
	content: "";
}

.pr-70 {
    padding-right: 70px;
}

.pl-70 {
    padding-left: 70px;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 12px 30px 10px;
	color: #ffffff;
	background: rgb(25, 174, 201);
}

.site-btn {
	font-size: 14px;
	color: #ffffff;
	background: rgb(25, 174, 201);
	font-weight: 600;
	border: none;
	text-transform: uppercase;
	display: inline-block;
	padding: 12px 30px;
	border-radius: 0 15px;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.14);
}

.site-btn:hover {
	opacity: .65;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #ffffff;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid rgb(25, 174, 201);
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #390a8a;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid rgb(25, 174, 201);
		border-left-color: transparent;
	}
}

.search-model {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #ffffff;
	z-index: 99999;
}

.search-model-form {
	padding: 0 15px;
}

.search-model-form input {
	width: 500px;
	font-size: 40px;
	border: none;
	border-bottom: 2px solid #dddddd;
	background: 0 0;
	color: #999;
}

.search-close-switch {
	position: absolute;
	width: 50px;
	height: 50px;
	color: black;
	text-align: center;
	border-radius: 50%;
	font-size: 50px;
	line-height: 28px;
	top: 30px;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.search-close-switch:hover {
	opacity: .65;
}

/*---------------------
  Header
-----------------------*/

.header {
	background: #ffffff;
	-webkit-box-shadow: 0px 5px 10px rgba(91, 91, 91, 0.1);
	box-shadow: 0px 5px 10px rgba(91, 91, 91, 0.1);
	position: sticky;
    width: 100%;
    z-index: 9;
    top: 0;
}

.header__logo {
	padding: 15px 0;
}

.header__logo a {
	display: inline-block;
}

.header__menu {
	padding: 30px 0 27px;
	text-align: center;
}

.header__menu ul li {
	list-style: none;
	display: inline-block;
	margin-right: 25px;
	position: relative;
}

.header__menu ul li.active a:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.header__menu ul li:hover a:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.header__menu ul li:hover .dropdown {
	top: 27px;
	opacity: 1;
	visibility: visible;
}

.header__menu ul li:last-child {
	margin-right: 0;
}

.header__menu ul li .dropdown {
	position: absolute;
	left: 0;
	top: 56px;
	width: 150px;
	background: #111111;
	text-align: left;
	padding: 2px 0;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.header__menu ul li .dropdown li {
	display: block;
	margin-right: 0;
}

.header__menu ul li .dropdown li a {
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
	padding: 8px 20px;
	text-transform: capitalize;
}

.header__menu ul li .dropdown li a:after {
	display: none;
}

.header__menu ul li a {
	font-size: 17px;
	color: #111111;
	font-weight: 500;
	display: block;
	padding: 2px 0;
	position: relative;
}

.header__menu ul li a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: rgb(25, 174, 201);
	content: "";
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.header__right {
	text-align: center;
	padding: 30px 0 27px;
}

.header__right__auth {
	display: inline-block;
	margin-right: 25px;
}

.header__right__auth a {
	font-size: 12px;
	color: #666666;
	position: relative;
	margin-right: 8px;
}

.header__right__auth a:last-child {
	margin-right: 0;
}

.header__right__auth a:last-child:after {
	display: none;
}

.header__right__auth a:after {
	position: absolute;
	right: -8px;
	top: -2px;
	content: "/";
	font-size: 13px;
}

.header__right__widget {
	display: inline-block;
}

.header__right__widget li {
	list-style: none;
	display: inline-block;
	font-size: 18px;
	color: #111111;
	margin-right: 20px;
	cursor: pointer;
}

.header__right__widget li:last-child {
	margin-right: 0;
}

.header__right__widget li a {
	font-size: 18px;
	color: #111111;
	position: relative;
}

.header__right__widget li a .tip {
	position: absolute;
	right: -12px;
	top: -11px;
	height: 18px;
	width: 18px;
	background: #111111;
	font-size: 10px;
	font-weight: 500;
	color: #ffffff;
	line-height: 18px;
	text-align: center;
	border-radius: 50%;
}

.offcanvas-menu-wrapper {
	display: none;
}

.canvas__open {
	display: none;
}

/*---------------------
  Banner
-----------------------*/

.banner {
	height: 500px;
}

.banner__text span {
	font-size: 18px;
	color: rgb(25, 174, 201);
	text-transform: uppercase;
}

.banner__text h1 {
	font-size: 80px;
	color: #111111;
	font-family: "Cookie", cursive;
	margin-bottom: 15px;
}

.banner__text a {
	font-size: 14px;
	color: #111111;
	text-transform: uppercase;
	font-weight: 700;
	position: relative;
	padding: 0 0 3px;
	display: inline-block;
}

.banner__text a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: rgb(25, 174, 201);
	content: "";
}

.banner__slider {
	text-align: center;
	padding: 150px 0 0;
}

.banner__slider.owl-carousel .owl-dots {
	position: absolute;
	left: 0;
	top: 430px;
	width: 100%;
	text-align: center;
}

.banner__slider.owl-carousel .owl-dots button {
	height: 12px;
	width: 12px;
	background: #a1a1a1;
	border-radius: 50%;
	margin-right: 10px;
}

.banner__slider.owl-carousel .owl-dots button.active {
	background: rgb(25, 174, 201);
}

.banner__slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}

/*---------------------
  Trend
-----------------------*/

.trend {
	padding-top: 80px;
	padding-bottom: 50px;
}

.trend__content .section-title h4 {
	font-size: 20px;
}

.trend__content .section-title h4:after {
	bottom: -6px;
}

.trend__item {
	overflow: hidden;
	margin-bottom: 35px;
}

.trend__item__pic {
	float: left;
	margin-right: 25px;
}

.trend__item__text {
	overflow: hidden;
}

.trend__item__text h6 {
	font-size: 14px;
	color: #111111;
	margin-bottom: 5px;
}

.trend__item__text .rating {
	line-height: 18px;
	margin-bottom: 6px;
}

.trend__item__text .rating i {
	font-size: 10px;
	color: #e3c01c;
	margin-right: -4px;
}

.trend__item__text .rating i:last-child {
	margin-right: 0;
}

.trend__item__text .product__price {
	color: #111111;
	font-weight: 600;
}

.trend__item__text .product__price span {
	font-size: 14px;
	color: #b1b0b0;
	text-decoration: line-through;
	margin-left: 4px;
}

/*---------------------
  Discount
-----------------------*/

.discount__pic img {
	min-width: 100%;
	height: 100%;
}

.discount__text {
	background: #f4f4f4;
	height: 390px;
	padding: 75px 90px 50px;
	text-align: center;
}

.discount__text a {
	font-size: 14px;
	color: #111111;
	text-transform: uppercase;
	font-weight: 700;
	position: relative;
	padding: 0 0 3px;
	display: inline-block;
}

.discount__text a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: rgb(25, 174, 201);
	content: "";
}

.discount__text__title {
	text-align: center;
	position: relative;
	z-index: 1;
	margin-bottom: 60px;
}

.discount__text__title:after {
	position: absolute;
	left: 50%;
	top: -38px;
	height: 183px;
	width: 183px;
	background: #ffffff;
	content: "";
	border-radius: 50%;
	z-index: -1;
	margin-left: -91.5px;
}

.discount__text__title span {
	font-size: 12px;
	color: #111111;
	font-weight: 500;
	text-transform: uppercase;
}

.discount__text__title h2 {
	font-size: 60px;
	color: rgb(25, 174, 201);
	font-family: "Cookie", cursive;
	line-height: 46px;
	margin-bottom: 10px;
}

.discount__text__title h5 {
	color: rgb(25, 174, 201);
	font-weight: 700;
}

.discount__text__title h5 span {
	font-size: 14px;
	color: #111111;
	margin-right: 4px;
}

.discount__countdown {
	text-align: center;
	margin-bottom: 10px;
}

.countdown__item {
	margin-bottom: 15px;
	float: left;
	width: 25%;
}

.countdown__item:last-child {
	margin-right: 0;
}

.countdown__item span {
	font-size: 30px;
	font-weight: 600;
	color: #111111;
	display: inline-block;
}

.countdown__item p {
	color: #111111;
	margin-bottom: 0;
	display: inline-block;
	font-weight: 500;
}

/*---------------------
  Services
-----------------------*/

.services {
	padding-top: 70px;
	padding-bottom: 50px;
}

.services__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    column-gap: 20px;
	position: relative;
	margin: 25px 0 20px 0;
}

.services__item i {
	font-size: 36px;
	color: rgb(25, 174, 201);
	max-width: 50px;
    min-width: 50px;
    width: 50px;
    text-align: right;
}

.services__item h6 {
	color: #111111;
	font-weight: 600;
	margin-bottom: 5px;
}

.services__item p {
	margin-bottom: 0;
}

.services__item a {
    color: #666666;
}

/*---------------------
  Instagram
-----------------------*/

.instagram__item {
	height: 320px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}

.instagram__item:hover:after {
	opacity: 1;
}

.instagram__item:hover .instagram__text {
	opacity: 1;
	visibility: visible;
}

.instagram__item:after {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(255, 255, 255, 0.9);
	content: "";
	opacity: 0;
	z-index: -1;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.instagram__text {
	text-align: center;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.instagram__text i {
	font-size: 30px;
	color: #0d0d0d;
}

.instagram__text a {
	font-size: 16px;
	color: #0d0d0d;
	font-weight: 500;
	display: block;
	margin-top: 10px;
}

/*---------------------
  Footer
-----------------------*/

.footer {
	padding-top: 55px;
	padding-bottom: 85px;
}

.footer__about {
	margin-bottom: 30px;
}

.footer__about p {
	margin-bottom: 20px;
}

.footer__logo {
	margin-bottom: 20px;
}

.footer__payment a {
	margin-right: 6px;
	margin-bottom: 10px;
	display: inline-block;
}

.footer__payment a:last-child {
	margin-right: 0;
}

.footer__widget {
	margin-bottom: 30px;
}

.footer__widget h6 {
	color: #111111;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.footer__widget ul li {
	list-style: none;
}

.footer__widget ul li a {
	font-size: 14px;
	color: #666666;
	line-height: 30px;
}

.footer__newslatter {
	margin-bottom: 30px;
}

.footer__newslatter h6 {
	color: #111111;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 25px;
}

.footer__newslatter form {
	position: relative;
	margin-bottom: 30px;
}

.footer__newslatter form input {
	height: 52px;
	width: 100%;
	border: 1px solid #e1e1e1;
	border-radius: 50px;
	padding-left: 30px;
	font-size: 14px;
	color: #666666;
}

.footer__newslatter form input::-webkit-input-placeholder {
	color: #666666;
}

.footer__newslatter form input::-moz-placeholder {
	color: #666666;
}

.footer__newslatter form input:-ms-input-placeholder {
	color: #666666;
}

.footer__newslatter form input::-ms-input-placeholder {
	color: #666666;
}

.footer__newslatter form input::placeholder {
	color: #666666;
}

.footer__newslatter form button {
	position: absolute;
	right: 4px;
	top: 4px;
}

.footer-data-attributes li {
	display: flex;
    align-items: baseline;
    column-gap: 10px;
}

.footer-data-attributes li p {
	margin: 0;
}

.footer__social {
    display: flex;
}

.nav-tabs .nav-item {
    position: relative;
    text-transform: uppercase;
    width: fit-content;
}

.footer__social a {
	display: flex;
    align-items: center;
    justify-content: center;
	height: 40px;
	width: 40px;
	background: #e1e1e1;
	font-size: 15px;
	color: #111111;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
	margin-right: 6px;
	margin-bottom: 5px;
}

.footer__social a:hover {
    opacity: .7;
}

.footer__social a i {
    font-size: 25px;
}

.footer__social a:last-child {
	margin-right: 0;
}

.footer__copyright__text {
	border-top: 1px solid #e1e1e1;
	padding: 18px 0 25px;
	text-align: center;
	margin-top: 35px;
}

.footer__copyright__text p {
	margin-bottom: 0;
}

.footer__copyright__text a {
	color: #5C5C5C;
}

.footer__copyright__text i {
	color: rgb(25, 174, 201);
}

.footer__copyright__text a:hover {
	color: rgb(25, 174, 201);
}

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-option {
	padding-top: 35px;
}

.breadcrumb__links a {
	font-size: 15px;
	font-weight: 500;
	color: #111111;
	margin-right: 18px;
	display: inline-block;
	position: relative;
}

.breadcrumb__links a:after {
	position: absolute;
	right: -14px;
	top: 0;
	content: "";
	font-family: "FontAwesome";
}

.breadcrumb__links a i,
.breadcrumb__links span i {
	margin-right: 5px;
}

.breadcrumb__links span {
	font-size: 15px;
	font-weight: 500;
	color: #888888;
	display: inline-block;
}

/*---------------------
  Categories
-----------------------*/

.categories {
	margin: 20px 0;
}

.container-fluid {
	max-width: 1500px;
}

.categories-container {
	justify-content: center;
}

.categories__item {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 8px;
	column-gap: 15px;
    background: #41bded1a;
    border-radius: 0 30px 0 30px;
    justify-content: center;
	padding: 15px;
	box-shadow: 0 0 5px 0 rgba(0,0,0,.14);
}

.categories__item:hover {
	box-shadow: 0 0 20px 6px #ebebeb;
}

.categories__item.categories__large__item {
	height: 638px;
	padding-left: 70px;
}

.categories__item.categories__large__item .categories__text {
	max-width: 480px;
}

.categories__item.categories__large__item .categories__text p {
	margin-bottom: 15px;
}

.categories__text {
	overflow: hidden;
  	word-wrap: break-word;
  	text-align: left;
}

.categories__text h1 {
	font-family: "Cookie", cursive;
	color: #111111;
	margin-bottom: 5px;
}

.categories__text h4 {
	color: #111111;
	font-weight: 700;
}

.categories__text p {
	margin-bottom: 10px;
}

.categories__text a {
	font-size: 14px;
	color: #111111;
	text-transform: uppercase;
	font-weight: 600;
	position: relative;
	padding: 0 0 3px;
	display: inline-block;
}

.categories__text a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: rgb(25, 174, 201);
	content: "";
}

/*---------------------
  Product
-----------------------*/

.product {
	padding-top: 60px;
	padding-bottom: 50px;
}

.filter__controls {
	text-align: right;
	margin-bottom: 50px;
}

.filter__controls li {
	font-size: 14px;
	list-style: none;
	display: inline-block;
	color: #111111;
	margin-right: 35px;
	position: relative;
	cursor: pointer;
}

.filter__controls li.active:after {
	opacity: 1;
}

.filter__controls li:after {
	position: absolute;
	left: 0;
	bottom: -4px;
	height: 2px;
	width: 100%;
	background: rgb(25, 174, 201);
	content: "";
	opacity: 0;
}

.filter__controls li:last-child {
	margin-right: 0;
}

.product__item {
    box-shadow: 0 0 5px 0 rgba(0,0,0,.14);
    border-radius: 0 30px 0 30px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product__item a {
   height: 100%; 
}

.product__item:hover {
   box-shadow: 0 0 20px 6px #ebebeb;
}

.product__item.sale .product__item__pic .label {
	background: rgb(25, 174, 201);
}

.product__item.sale .product__item__text .product__price {
	color: rgb(25, 174, 201);
}

.product__item__pic {
	position: relative;
	height: 100%;
	min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.product__item__pic img {
    width: 230px;
}

.product-section-card {
    padding: 0 15px 0 0;
}

.product__item__pic .label {
	font-size: 12px;
	color: #ffffff;
	font-weight: 500;
	display: inline-block;
	padding: 2px 8px;
	text-transform: uppercase;
	position: absolute;
	left: 10px;
	top: 10px;
	border-radius: 0 10px;
}

.bottom-section-product {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 15px;
}

.product__item__pic .label.new {
	background: #36a300;
}

.product__item__pic .label.stockout {
	background: #111111;
}

.product__item__pic .label.stockblue {
	background: #0066bd !important;
}

.product__item__pic .label.sale {
	background: rgb(25, 174, 201);
}

.product__hover {
	text-align: center;
	display: flex;
    justify-content: center;
    column-gap: 15px;
}

.product__hover a:hover {
	color: white;
	opacity: .8;
}

.addToCart {
	cursor: pointer	;
}

.product__hover li {
	list-style: none;
	display: inline-block;
	position: relative;
}

.product__hover li:last-child {
	margin-right: 0;
}

.product__hover li:hover a span {
	color: #ffffff;
	-webkit-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}

.product__hover li a {
	font-size: 18px;
	color: white !important;
	display: block;
	height: 45px;
	width: 45px;
	background: rgb(25, 174, 201);
	line-height: 48px;
	text-align: center;
	border-radius: 0 15px;
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__hover li a span {
	position: relative;
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	display: inline-block;
}

.product__item__text {
	text-align: center;
	padding-top: 22px;
}

.product__item__text h6 a {
	font-size: 15px;
	color: #111111;
	font-weight: 500;
}

.product__item__text .rating {
	line-height: 18px;
	margin-bottom: 5px;
}

.product__item__text .rating i {
	font-size: 10px;
	color: #e3c01c;
	margin-right: -4px;
}

.product__item__text .rating i:last-child {
	margin-right: 0;
}

.property__gallery,
.products-section-container {
    row-gap: 15px;
    padding-left: 15px;
}

.mix,
.smiliar-products {
    padding: 0 15px 0 0;
}

.product__item__text .product__price {
	color: #111111;
	font-weight: 600;
	margin-top: 12px;
	font-size: 18px;
    display: flex;
    flex-direction: column;
}

.product__item__text .product__price span {
	font-size: 14px;
	color: #b1b0b0;
	text-decoration: line-through;
	margin-left: 4px;
}

/*---------------------
  Shop
-----------------------*/

.shop {
	padding-top: 70px;
	padding-bottom: 80px;
}

.sidebar__categories .section-title {
	margin-bottom: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar__categories .section-title h4 {
	font-size: 18px;
}

.categories__accordion .card-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.categories__accordion .card {
	border: none;
	margin-bottom: 12px;
	background: #41bded1a;
    border-radius: 0 15px 0 15px !important;
}

.categories__accordion .card.active {
	box-shadow: 0 0 20px 6px #ebebeb;
}

.categories__accordion .card:hover {
	box-shadow: 0 0 20px 6px #ebebeb;
}

/* .categories__accordion .card:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none !important;
} */

.categories__accordion .card-heading {
	cursor: pointer;
}

.categories__accordion .card-heading a {
	font-size: 14px;
	font-weight: 500;
	color: #111111;
	display: block;
}

.subcategory-link {
    width: 100%;
    display: inline-block;
    background: #f8f8f8;
    padding: 3px 10px;
    border-radius: 0 15px;
    margin-bottom: 8px;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.14);
}

.subcategory-link.active {
    background: rgb(25, 174, 201);
    color: white !important;
}

.subcategory-link:hover {
    background: rgb(25, 174, 201);
    color: white !important;
}

.categories__accordion .card-body li {
	list-style: none;
	position: relative;
}

.categories__accordion .card-body li a {
	font-size: 14px;
	color: #666666;
	line-height: 30px;
}

.sidebar__filter {
	position: relative;
	margin-bottom: 60px;
}

.sidebar__filter .section-title {
	margin-bottom: 50px;
}

.sidebar__filter .section-title h4 {
	font-size: 18px;
}

.sidebar__filter a {
	font-size: 14px;
	color: #0d0d0d;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	display: inline-block;
	padding: 5px 16px 5px 24px;
	border: 2px solid #ff0000;
	position: absolute;
	right: 0;
	bottom: -5px;
	border-radius: 2px;
}

.filter-range-wrap .range-slider .price-input {
	position: relative;
}

.filter-range-wrap .range-slider .price-input p {
	font-size: 16px;
	color: #0d0d0d;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 0;
}

.filter-range-wrap .range-slider .price-input:after {
	position: absolute;
	left: 81px;
	top: 12px;
	height: 1px;
	width: 5px;
	background: #0d0d0d;
	content: "";
}

.filter-range-wrap .range-slider .price-input input {
	font-size: 16px;
	color: #0d0d0d;
	max-width: 16%;
	border: none;
}

.filter-range-wrap .range-slider .price-input input:nth-child(1) {
	margin-right: 28px;
}

.filter-range-wrap .price-range {
	border-radius: 0;
	margin-bottom: 28px;
}

.filter-range-wrap .price-range.ui-widget-content {
	border: none;
	background: rgba(0, 0, 0, 0.1);
	height: 5px;
}

.filter-range-wrap .price-range.ui-widget-content .ui-slider-handle {
	height: 14px;
	width: 14px;
	border-radius: 50%;
	background: rgb(25, 174, 201);
	border: none;
	outline: none;
	cursor: pointer;
}

.filter-range-wrap .price-range .ui-slider-range {
	background: rgb(25, 174, 201);
	border-radius: 0;
}

.sidebar__sizes,
.sidebar__color {
	margin-bottom: 40px;
}

.sidebar__sizes .section-title,
.sidebar__color .section-title {
	margin-bottom: 35px;
}

.sidebar__sizes .section-title h4,
.sidebar__color .section-title h4 {
	font-size: 18px;
}

.sidebar__sizes .size__list label,
.sidebar__color .size__list label {
	display: block;
	padding-left: 20px;
	font-size: 14px;
	text-transform: uppercase;
	color: #444444;
	position: relative;
	cursor: pointer;
}

.sidebar__sizes .size__list label input,
.sidebar__color .size__list label input {
	position: absolute;
	visibility: hidden;
}

.sidebar__sizes .size__list label input:checked~.checkmark,
.sidebar__color .size__list label input:checked~.checkmark {
	border-color: rgb(25, 174, 201);
}

.sidebar__sizes .size__list label input:checked~.checkmark:after,
.sidebar__color .size__list label input:checked~.checkmark:after {
	border-color: rgb(25, 174, 201);
	opacity: 1;
}

.sidebar__sizes .size__list label .checkmark,
.sidebar__color .size__list label .checkmark {
	position: absolute;
	left: 0;
	top: 4px;
	height: 10px;
	width: 10px;
	border: 1px solid #444444;
	border-radius: 2px;
}

.sidebar__sizes .size__list label .checkmark:after,
.sidebar__color .size__list label .checkmark:after {
	position: absolute;
	left: 0px;
	top: -2px;
	width: 11px;
	height: 5px;
	border: solid #ffffff;
	border-width: 1.5px 1.5px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
	opacity: 0;
	content: "";
}

.sidebar__color .color__list label {
	text-transform: capitalize;
}

.pagination {
	display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
}

.pagination__option {
    margin-top: 40px;
}

.pagination__option a,
.pagination__option span {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 40px;
	border: 1px solid #f2f2f2;
	border-radius: 50% !important;
	font-size: 14px;
	color: #111111;
	/*background: rgb(25, 174, 201);*/
	font-weight: 600;
	line-height: 40px;
	text-align: center;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	margin-right: 6px;
}

.page-item.active,
.page-item.disabled {
	opacity: .65;
}

.page-item.active .page-link {
    background: rgb(25, 174, 201);
    color: white;
    border-color: unset;
}

.pagination__option a:hover {
    border-color: unset !important;
    background: rgb(25, 174, 201) !important;
    color: white !important;
}

.processing-loader {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.processing-loader img {
    width: 550px;
    object-fit: contain;
}

.go-to-promo {
	cursor: pointer;
}

.pagination__option a i {
	font-weight: 600;
}

.pagination__option a:hover {
	background: #0d0d0d;
	border-color: #0d0d0d;
	color: #ffffff;
}

/*---------------------
  Product Details
-----------------------*/

.product-details {
	padding-top: 70px;
	padding-bottom: 50px;
}

.product__details__pic {
	overflow: hidden;
}

.product__details__pic__left {
	width: 22%;
	max-height: 574px;
	float: left;
	overflow-y: auto;
}

.product__details__pic__left .pt {
	display: block;
	margin-bottom: 20px;
	cursor: pointer;
	position: relative;
}

.product__details__pic__left .pt::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: 0;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.product__details__pic__left .pt.active::after {
	opacity: 0.3;
}

.product__details__pic__left .pt:last-child {
	margin-bottom: 0;
}

.product__details__pic__left .pt img {
	min-width: 100%;
}

.product__details__slider__content {
	width: calc(78% - 20px);
	float: left;
	margin-left: 20px;
}

.product__details__pic__slider.owl-carousel .owl-nav button {
	position: absolute;
	left: 10px;
	top: 50%;
	font-size: 22px;
	color: #111111;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	line-height: 44px;
	text-align: center;
	margin-top: -20px;
}

.product__details__pic__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 10px;
}

.product__details__text h3 {
	color: #111111;
	font-weight: 600;
	margin-bottom: 12px;
}

.product__details__text h3 span {
	display: block;
	font-size: 14px;
	color: #444444;
	text-transform: none;
	font-weight: 400;
	margin-top: 5px;
}

.product__details__text .rating {
	margin-bottom: 16px;
}

.product__details__text .rating i {
	font-size: 12px;
	color: #e3c01c;
	margin-right: -4px;
}

.product__details__text .rating span {
	font-size: 12px;
	color: #666666;
	margin-left: 5px;
}

.product__details__text p {
	color: #444444;
	margin-bottom: 5px;
}

.product__details__text ul,
.product__details__text ol {
    margin-left: 16px;
}

.read-more-link,
.link-btn {
	color: rgb(25, 174, 201) !important;
	text-decoration: underline !important;
	margin-bottom: 20px;
	display: inline-block;
	cursor: pointer;
}

.read-more-link {
    margin-top: 25px;
}

.read-more-link:hover,
.link-btn:hover {
	text-decoration: none !important;
}

.product__details__price {
	font-size: 30px;
	font-weight: 600;
	color: rgb(25, 174, 201);
	margin-bottom: 30px;
}

.product__details__price span {
	font-size: 18px;
	color: #b1b0b0;
	text-decoration: line-through;
	margin-left: 10px;
	display: inline-block;
}

.quantity {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.quantity>span {
	font-size: 14px;
	color: #111111;
	font-weight: 600;
	float: left;
	margin-top: 14px;
	margin-right: 15px;
}

.pro-qty {
    height: 50px;
    max-height: 50px;
    min-width: 150px;
    border: 1px solid #ebebeb;
    border-radius: 0 15px;
	overflow: hidden;
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
}

.pro-qty .qtybtn {
	font-size: 14px;
    color: #666666;
    cursor: pointer;
    height: 50px;
    width: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pro-qty input {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
    border: none;
    text-align: center;
    min-width: 20px;
    width: 50px;
}

.product__details__button {
	overflow: hidden;
	margin-bottom: 25px;
}

.product__details__button .cart-btn {
	display: inline-block;
	font-size: 14px;
	color: #ffffff !important;
	background: rgb(25, 174, 201);
	font-weight: 600;
	text-transform: uppercase;
	padding: 14px 30px 15px;
	border-radius: 0 15px;
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
	display: flex;
    align-items: center;
    justify-content: center;
	cursor: pointer;
	min-height: 50px;
	min-width: 50px;
}

.product__details__button .cart-btn:hover {
	opacity: .65;
	color: white;
}

.product__details__button ul {
	float: left;
}

.product__details__button ul li {
	list-style: none;
	display: inline-block;
	margin-right: 5px;
}

.product__details__button ul li:last-child {
	margin-right: 0;
}

.product__details__button ul li a {
	display: inline-block;
	height: 50px;
	width: 50px;
	border: 1px solid #ebebeb;
	border-radius: 50%;
	line-height: 50px;
	text-align: center;
	padding-top: 1px;
}

.product__details__button ul li a span {
	font-size: 18px;
	color: #666666;
}

.product__details__widget {
	border-top: 1px solid #ebebeb;
	padding-top: 35px;
}

.product__details__widget ul li {
	list-style: none;
	margin-bottom: 10px;
}

.product__details__widget ul li:last-child {
	margin-bottom: 0;
}

.product__details__widget ul li span {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: #111111;
	width: 150px;
	float: left;
}

.product__details__widget ul li .stock__checkbox {
	overflow: hidden;
}

.product__details__widget ul li .stock__checkbox label {
	display: block;
	padding-left: 20px;
	font-size: 14px;
	color: #666666;
	position: relative;
}

.product__details__widget ul li .stock__checkbox label input {
	position: absolute;
	visibility: hidden;
}

.product__details__widget ul li .stock__checkbox label input:checked~.checkmark {
	border-color: rgb(25, 174, 201);
}

.product__details__widget ul li .stock__checkbox label input:checked~.checkmark:after {
	border-color: rgb(25, 174, 201);
	opacity: 1;
}

.product__details__widget ul li .stock__checkbox label .checkmark {
	position: absolute;
	left: 0;
	top: 5px;
	height: 10px;
	width: 10px;
	border: 1px solid #444444;
	border-radius: 2px;
}

.product__details__widget ul li .stock__checkbox label .checkmark:after {
	position: absolute;
	left: 0px;
	top: -2px;
	width: 11px;
	height: 5px;
	border: solid #ffffff;
	border-width: 1.5px 1.5px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
	opacity: 0;
	content: "";
}

.product__details__widget ul li .color__checkbox label {
	display: inline-block;
	cursor: pointer;
	position: relative;
	margin-right: 20px;
}

.product__details__widget ul li .color__checkbox label.active input~.checkmark:after {
	border-color: #ffffff;
	opacity: 1;
}

.product__details__widget ul li .color__checkbox label:last-child {
	margin-right: 0;
}

.product__details__widget ul li .color__checkbox label input {
	position: absolute;
	visibility: hidden;
}

.product__details__widget ul li .color__checkbox label input:checked~.checkmark:after {
	border-color: #ffffff;
	opacity: 1;
}

.product__details__widget ul li .color__checkbox label .checkmark {
	position: absolute;
	left: 0;
	top: -10px;
	height: 20px;
	width: 20px;
	background: #e31e2f;
	border-radius: 50%;
	content: "";
}

.product__details__widget ul li .color__checkbox label .checkmark.black-bg {
	background: #111111;
}

.product__details__widget ul li .color__checkbox label .checkmark.grey-bg {
	background: #e4aa8b;
}

.product__details__widget ul li .color__checkbox label .checkmark:after {
	position: absolute;
	left: 3px;
	top: 5px;
	width: 13px;
	height: 6px;
	border: solid #ffffff;
	border-width: 1.5px 1.5px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
	opacity: 0;
	content: "";
}

.product__details__widget ul li .size__btn label {
	font-size: 14px;
	color: #666666;
	text-transform: uppercase;
	cursor: pointer;
	margin-right: 10px;
	display: inline-block;
	margin-bottom: 0;
}

.product__details__widget ul li .size__btn label:last-child {
	margin-right: 0;
}

.product__details__widget ul li .size__btn label.active {
	color: rgb(25, 174, 201);
}

.product__details__widget ul li .size__btn label input {
	position: absolute;
	visibility: hidden;
}

.product__details__widget ul li p {
	margin-bottom: 0;
	color: #666666;
}

.product__details__tab {
	padding-top: 80px;
	margin-bottom: 65px;
}

.product__details__tab .tab-content span,
.product__details__tab .tab-content a {
    background: inherit !important;
}

.product__details__tab .tab-content .product-spec-item {
    background: white !important;
}

.product__details__tab .tab-content .quantity-spec-actions {
    background: #f2f2f2 !important;
}

.product__details__tab .tab-content a {
    text-decoration: underline;
}

.product__details__tab .tab-content code {
    font-size: inherit !important;
    color: inherit !important;
}

.nav {
	border-bottom: none;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	margin-bottom: 40px;
}

.nav::before {
	position: absolute;
	left: 0;
	top: 23px;
	height: 1px;
	width: 335px;
	background: #e1e1e1;
	content: "";
}

.nav::after {
	position: absolute;
	right: 0;
	top: 23px;
	height: 1px;
	width: 335px;
	background: #e1e1e1;
	content: "";
}

.nav-item {
	margin-right: 46px;
}

.nav-item:last-child {
	margin-right: 0;
}

.nav-item .nav-link {
	font-size: 18px;
	color: #666666;
	font-weight: 600;
	border: none;
	padding: 0;
	background: #41bded1a;
    padding: 8px 20px;
    border-radius: 0 15px;
}

.nav-item .nav-link.simple-btn {
    box-shadow: 0 0 5px 0 rgba(0,0,0,.14);
}

.mr-10px {
    margin-right: 10px;
}

.nav-item .nav-link.simple-btn.active {
	color: #111111;
	box-shadow: 0 0 20px 6px #ebebeb;
}

.left-side-data {
    color: rgb(25, 174, 201);
}

.nav-item .nav-link:hover {
    opacity: .8;
}

.tab-content .tab-pane h6 {
	color: #666666;
	font-weight: 600;
	margin-bottom: 24px;
}

.tab-content .tab-pane p:last-child {
	margin-bottom: 0;
}

.related__title h5 {
	font-size: 20px;
	color: #111111;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 35px;
}

/*---------------------
  Shop Cart
-----------------------*/

.shop-cart {
	padding-top: 30px;
	padding-bottom: 50px;
}

.shop__cart__table {
    overflow-x: auto;
	margin-bottom: 30px;
}

.shop__cart__table table {
	width: 100%;
}

.shop__cart__table thead {
	border-bottom: 1px solid #f2f2f2;
}

.shop__cart__table thead th {
	font-size: 18px;
	color: #111111;
	font-weight: 600;
	text-transform: uppercase;
	padding: 0 15px 20px 15px;
}

.shop__cart__table tbody tr {
	border-bottom: 1px solid #f2f2f2;
	height: 180px;
	max-height: 180px;
	min-height: 180px;
}

.shop__cart__table tbody tr .cart__product__item {
	overflow: hidden;
	width: 585px;
    display: flex;
    align-items: center;
    height: 180px;
}

.shop__cart__table tbody tr .cart__product__item img {
	float: left;
	margin-right: 25px;
	width: 180px;
}

.shop__cart__table tbody tr .cart__product__item .cart__product__item__title {
	overflow: hidden;
	/*padding-top: 80px;*/
	margin-left: 40px;
}

.shop__cart__table tbody tr .cart__product__item .cart__product__item__title h6 {
	color: #111111;
	font-weight: 600;
}

.shop__cart__table tbody tr .cart__product__item .cart__product__item__title .rating i {
	font-size: 10px;
	color: #e3c01c;
	margin-right: -4px;
}

.shop__cart__table tbody tr .cart__price {
	font-size: 16px;
	color: rgb(25, 174, 201);
	font-weight: 600;
	width: 190px;
    white-space: nowrap;
}

.shop__cart__table tbody tr .cart__quantity {
	width: 190px;
}

.shop__cart__table tbody tr .cart__quantity .pro-qty {
	border: none;
	padding: 0;
	width: 110px;
	border-radius: 0;
}

.shop__cart__table tbody tr .cart__quantity .pro-qty input {
	color: #444444;
	width: 100%;
}

.shop__cart__table tbody tr .cart__quantity .pro-qty .qtybtn {
	font-size: 16px;
	color: #444444;
	min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    border-radius: 50%;
}

.shop__cart__table tbody tr .cart__quantity .pro-qty .qtybtn:hover {
	opacity: .65;
}

.shop__cart__table tbody tr .cart__total {
	font-size: 16px;
	color: rgb(25, 174, 201);
	font-weight: 600;
	width: 150px;
    white-space: nowrap;
}

.shop__cart__table tbody tr .cart__close {
	text-align: right;
	width: 55px;
}

.shop__cart__table tbody tr .cart__close span {
	height: 45px;
	width: 45px;
	background: #f2f2f2;
	border-radius: 50%;
	font-size: 18px;
	color: #111111;
	line-height: 44px;
	text-align: center;
	display: inline-block;
	font-weight: 600;
	cursor: pointer;
}

.shop__cart__table tbody tr .cart__close span:hover {
	opacity: .65;
}

.cart__btn {
	margin-bottom: 50px;
}

.cart__btn.update__btn {
	text-align: right;
}

.cart__btn a {
	font-size: 14px;
	color: #111111;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
	padding: 14px 30px 12px;
	background: #41bded1a;
	min-width: 100px;
	min-height: 47px;
	border-radius: 0 15px;
}

.cart__btn a:hover {
	opacity: .65;
}

.cart__btn a span {
	color: #111111;
	font-size: 14px;
	margin-right: 5px;
}

.discount__content h6 {
	color: #111111;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
	margin-right: 30px;
}

.discount__content form {
	position: relative;
	width: 370px;
	display: inline-block;
}

.discount__content form input {
	height: 52px;
	width: 100%;
	border: 1px solid #444444;
	border-radius: 50px;
	padding-left: 30px;
	padding-right: 115px;
	font-size: 14px;
	color: #444444;
}

.discount__content form input::-webkit-input-placeholder {
	color: #444444;
}

.discount__content form input::-moz-placeholder {
	color: #444444;
}

.discount__content form input:-ms-input-placeholder {
	color: #444444;
}

.discount__content form input::-ms-input-placeholder {
	color: #444444;
}

.discount__content form input::placeholder {
	color: #444444;
}

.discount__content form button {
	position: absolute;
	right: 4px;
	top: 4px;
}

.cart__total__procced {
	background: #41bded1a;
	padding: 40px;
	border-radius: 0 15px;
}

.cart__total__procced h6 {
	color: #111111;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.cart__total__procced ul {
	margin-bottom: 25px;
}

.cart__total__procced ul li {
	list-style: none;
	font-size: 16px;
	color: #111111;
	font-weight: 600;
	overflow: hidden;
	line-height: 40px;
}

.cart__total__procced ul li span {
	color: rgb(25, 174, 201);
	float: right;
}

.cart__total__procced .primary-btn {
	display: block;
	border-radius: 0 15px;
	text-align: center;
	padding: 12px 0 10px;
	border: none;
	width: 100%;
}

.cart__total__procced .primary-btn:hover {
	opacity: .65;
	color: white;
}

/*---------------------
  Checkout
-----------------------*/

.checkout {
	padding-top: 30px;
	padding-bottom: 70px;
}

.coupon__link {
	font-size: 14px;
	color: #444444;
	padding: 14px 0;
	background: #41bded1a;
	border-top: 2px solid rgb(25, 174, 201);
	text-align: center;
	margin-bottom: 50px;
	border-radius: 0 15px;
}

.coupon__link a {
	font-size: 14px;
	color: #444444;
}

.coupon__link span {
	font-size: 14px;
	color: rgb(25, 174, 201);
}

.checkout__form h5 {
	color: #111111;
	font-weight: 600;
	text-transform: uppercase;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 20px;
	margin-bottom: 25px;
}

.checkout__form .checkout__form__input p {
	color: #444444;
	font-weight: 500;
	margin-bottom: 10px;
}

.checkout__form .checkout__form__input p span {
	color: rgb(25, 174, 201);
}

.checkout__form .checkout__form__input input {
	height: 50px;
	width: 100%;
	border: 1px solid #e1e1e1;
	border-radius: 0 15px;
	margin-bottom: 25px;
	font-size: 14px;
	padding-left: 20px;
	color: #666666;
}

.checkout__form .checkout__form__input input::-webkit-input-placeholder {
	color: #666666;
}

.checkout__form .checkout__form__input input::-moz-placeholder {
	color: #666666;
}

.checkout__form .checkout__form__input input:-ms-input-placeholder {
	color: #666666;
}

.checkout__form .checkout__form__input input::-ms-input-placeholder {
	color: #666666;
}

.checkout__form .checkout__form__input input::placeholder {
	color: #666666;
}

.checkout__form .checkout__form__checkbox {
	margin-bottom: 20px;
}

.checkout__form .checkout__form__checkbox label {
	display: block;
	padding-left: 24px;
	font-size: 14px;
	color: #444444;
	font-weight: 500;
	position: relative;
	cursor: pointer;
	margin-bottom: 16px;
}

.checkout__form .checkout__form__checkbox label input {
	position: absolute;
	visibility: hidden;
}

.checkout__form .checkout__form__checkbox label input:checked~.checkmark {
	border-color: rgb(25, 174, 201);
}

.checkout__form .checkout__form__checkbox label input:checked~.checkmark:after {
	border-color: rgb(25, 174, 201);
	opacity: 1;
}

.checkout__form .checkout__form__checkbox label .checkmark {
	position: absolute;
	left: 0;
	top: 4px;
	height: 10px;
	width: 10px;
	border: 1px solid #444444;
	border-radius: 2px;
}

.checkout__form .checkout__form__checkbox label .checkmark.radiomark {
    border-radius: 50%;
}

.checkout__form .checkout__form__checkbox label .checkmark:after {
	position: absolute;
	left: 0px;
	top: -2px;
	width: 11px;
	height: 5px;
	border: solid #ffffff;
	border-width: 1.5px 1.5px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
	opacity: 0;
	content: "";
}

.checkout__form .checkout__form__checkbox p {
	margin-bottom: 0;
}

.checkout__order {
	background: #41bded1a;
	padding: 30px;
	border-radius: 0 15px;
}

.checkout__order h5 {
	border-bottom: 1px solid #d7d7d7;
	margin-bottom: 18px;
}

.checkout__order .site-btn {
	width: 100%;
}

.checkout__order__product {
	border-bottom: 1px solid #d7d7d7;
	padding-bottom: 22px;
}

.checkout__order__product ul li {
	list-style: none;
	font-size: 14px;
	color: #444444;
	font-weight: 500;
	overflow: hidden;
	margin-bottom: 14px;
	line-height: 24px;
	justify-content: space-between;
}

.checkout__order__product ul li:last-child {
	margin-bottom: 0;
}

.checkout__order__product ul li span {
	font-size: 14px;
	color: #111111;
	font-weight: 600;
	float: right;
}

.checkout__order__product ul li .top__text {
	font-size: 16px;
	color: #111111;
	font-weight: 600;
	float: left;
}

.checkout__order__product ul li .top__text__right {
	font-size: 16px;
	color: #111111;
	font-weight: 600;
	float: right;
}

.checkout__order__total {
	padding-top: 12px;
	border-bottom: 1px solid #d7d7d7;
	padding-bottom: 10px;
	margin-bottom: 25px;
}

.checkout__order__total ul li {
	list-style: none;
	font-size: 16px;
	color: #111111;
	font-weight: 600;
	overflow: hidden;
	line-height: 40px;
}

.checkout__order__total ul li span {
	color: rgb(25, 174, 201);
	float: right;
}

.checkout__order__widget {
	padding-bottom: 10px;
}

.checkout__order__widget label {
	display: block;
	padding-left: 25px;
	font-size: 14px;
	font-weight: 500;
	color: #111111;
	position: relative;
	cursor: pointer;
	margin-bottom: 14px;
}

.checkout__order__widget label input {
	position: absolute;
	visibility: hidden;
}

.checkout__order__widget label input:checked~.checkmark {
	border-color: rgb(25, 174, 201);
}

.checkout__order__widget label input:checked~.checkmark:after {
	border-color: rgb(25, 174, 201);
	opacity: 1;
}

.checkout__order__widget label .checkmark {
	position: absolute;
	left: 0;
	top: 4px;
	height: 10px;
	width: 10px;
	border: 1px solid #444444;
	border-radius: 2px;
}

.checkout__order__widget label .checkmark:after {
	position: absolute;
	left: 0px;
	top: -2px;
	width: 11px;
	height: 5px;
	border: solid #ffffff;
	border-width: 1.5px 1.5px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
	opacity: 0;
	content: "";
}

/*---------------------
    Blog
-----------------------*/

.blog {
	padding-top: 70px;
	padding-bottom: 80px;
}

.blog__item {
	margin-bottom: 35px;
}

.blog__item__pic {
	height: 240px;
}

.blog__item__pic.large__item {
	height: 540px;
}

.blog__item__text {
	padding: 25px 20px 0 0;
	margin-right: 30px;
	background: #ffffff;
	margin-top: -54px;
}

.blog__item__text h6 {
	margin-bottom: 6px;
}

.blog__item__text h6 a {
	color: #111111;
	font-weight: 600;
	line-height: 21px;
}

.blog__item__text ul li {
	font-size: 12px;
	color: #888888;
	display: inline-block;
	list-style: none;
	margin-right: 25px;
	position: relative;
}

.blog__item__text ul li span {
	color: #111111;
}

.blog__item__text ul li:after {
	position: absolute;
	right: -17px;
	top: 0px;
	content: "|";
}

.blog__item__text ul li:last-child {
	margin-right: 0;
}

.blog__item__text ul li:last-child:after {
	display: none;
}

.primary-btn.load-btn {
	color: #111111;
	background: #f2f2f2;
	padding: 12px 85px 10px;
	border-radius: 50px;
}

/** loader */
.pointer-none {
	pointer-events: none !important;
}
.lds-ring {
	display: none;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
	position: relative;
  }
  .lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 20px;
	height: 20px;
	border: 3px solid white;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: white transparent transparent transparent;
  }
  .lds-ring.custom div,
  .lds-ring.custom div {
	border: 3px solid rgb(25, 174, 201);
	border-color: rgb(25, 174, 201) transparent transparent transparent;
  }

  .lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
  }
  .checkbox-loading,
  .radio-loading {
    position: absolute;
    left: 8px;
    top: 13px;  
    height: unset;
    width: unset;
  }
  .checkbox-loading div,
  .radio-loading div {
    width: 15px;
    height: 15px;
  }
  @keyframes lds-ring {
	0% {
	  transform: rotate(0deg);
	}
	100% {
	  transform: rotate(360deg);
	}
  }

/** loader */

.icon_close.delete-from-cart:before {
	content: "";
}

/* notifications */

.notification-section {
	position: fixed;
    top: 20px;
    right: 20px;
    width: fit-content;
    z-index: 10000000;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
	opacity: .97;
}

.notification .status {
	padding: 15px;
	border-radius: 8px;
	display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
}

.notification .status.success {
	background-color: #66CC99;
}

.notification .status.warning {
	background-color: #FFCC33;
}

.notification .status.error {
	background-color: #CC3333;
}

.notification .text-notification {
	color: white;
	font-size: 14px;
}

.text-error {
    display: block;
    padding: 5px 10px;
    background: #CC3333;
    width: fit-content;
    border-radius: 0 15px;
    color: white;
    margin-bottom: 8px;
}

.flex {
	display: flex;
}

.notification i::before{
	color: white;
    font-size: 20px;
}

/* notifications */

/*---------------------
  Blog Sidebar
-----------------------*/

.blog__sidebar {
	padding-left: 40px;
}

.blog__sidebar__item {
	margin-bottom: 50px;
}

.blog__sidebar__item:last-child {
	margin-bottom: 0;
}

.blog__sidebar__item .section-title {
	margin-bottom: 40px;
}

.blog__sidebar__item .section-title h4 {
	font-size: 16px;
}

.blog__sidebar__item .section-title h4:after {
	bottom: -7px;
}

.blog__sidebar__item ul li {
	list-style: none;
	line-height: 30px;
}

.blog__sidebar__item ul li a {
	font-size: 14px;
	color: #111111;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__sidebar__item ul li a:hover {
	color: rgb(25, 174, 201);
}

.blog__sidebar__item ul li a:hover span {
	color: #111111;
}

.blog__sidebar__item ul li a span {
	float: right;
	color: #888888;
}

.blog__feature__item {
	display: block;
	overflow: hidden;
	margin-bottom: 30px;
}

.blog__feature__item:last-child {
	margin-bottom: 0;
}

.blog__feature__item__pic {
	margin-right: 25px;
}

.blog__feature__item__pic img {
    width: 110px;
}

.blog__feature__item__text {
	overflow: hidden;
}

.blog__feature__item__text h6 {
	font-size: 14px;
	color: #111111;
	font-weight: 600;
	line-height: 21px;
	margin-bottom: 5px;
}

.blog__feature__item__text span {
	font-size: 12px;
	color: #888888;
	display: block;
}

.blog__sidebar__tags {
	margin-top: 25px;
}

.blog__sidebar__tags a {
	display: inline-block;
	font-size: 13px;
	color: #666666;
	border: 1px solid #f2f2f2;
	padding: 8px 14px 7px;
	margin-right: 6px;
	margin-bottom: 10px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__sidebar__tags a:hover {
	color: #111111;
}

.blog__sidebar__tags a:last-child {
	margin-right: 0;
}

/*---------------------
  Blog Details
-----------------------*/

.blog-details {
	padding-top: 80px;
	padding-bottom: 80px;
}

.blog__details__item {
	background: #ffffff;
	margin-bottom: 24px;
	text-align: center;
}

.blog__details__item__title {
	background: #ffffff;
	position: relative;
}

.blog__details__item img {
	width: 40%;
}

.blog__details__item__title .tip {
	font-size: 12px;
	color: #ffffff;
	background: rgb(25, 174, 201);
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	padding: 2px 11px 1px;
	border-radius: 5px;
}

.blog__details__item__title h4 {
	color: #111111;
	font-weight: 600;
	line-height: 39px;
	margin-top: 10px;
	margin-bottom: 5px;
}

.blog__details__item__title ul li {
	font-size: 12px;
	color: #888888;
	display: inline-block;
	list-style: none;
	margin-right: 25px;
	position: relative;
}

.product-price-about-page {
    font-size: 18px !important;
    color: rgb(25, 174, 201) !important;
}

.product-cut-price-about-page {
    display: inline-block !important;
    margin-left: 10px !important;
    text-decoration: line-through !important;
}

.blog__details__item__title ul li span {
	color: #111111;
}

.blog__details__item__title ul li:after {
	position: absolute;
	right: -17px;
	top: 0px;
	content: "|";
}

.blog__details__item__title ul li:last-child {
	margin-right: 0;
}

.blog__details__item__title ul li:last-child:after {
	display: none;
}

.blog__details__desc {
	margin-bottom: 40px;
}

.blog__details__desc p {
	font-size: 15px;
	color: #444444;
	line-height: 27px;
}

.blog__details__desc p:last-child {
	margin-bottom: 0;
}

.blog__details__quote {
	border-top: 2px solid rgb(25, 174, 201);
	position: relative;
	padding-top: 22px;
	margin-bottom: 20px;
}

.blog__details__quote .icon {
	height: 30px;
	width: 30px;
	font-size: 18px;
	color: rgb(25, 174, 201);
	background: #ffffff;
	position: absolute;
	left: 0;
	top: -11px;
}

.blog__details__quote p {
	font-size: 16px;
	color: #111111;
	font-weight: 600;
	font-style: italic;
	line-height: 30px;
	margin-bottom: 0;
}

.blog__details__tags {
	margin-bottom: 50px;
}

.blog__details__tags a {
	display: inline-block;
	font-size: 13px;
	color: #666666;
	border: 1px solid #f2f2f2;
	padding: 8px 14px 7px;
	margin-right: 6px;
	margin-bottom: 10px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__details__tags a:hover {
	color: #111111;
}

.blog__details__tags a:last-child {
	margin-right: 0;
}

.blog__details__btns {
	background: #41bded1a;
	padding: 14px 30px;
	margin-bottom: 20px;
	border-radius: 0 15px;
	box-shadow: 0 0 5px 0 rgba(0,0,0,.14);
}

.blog__details__btn__item.blog__details__btn__item--next {
	text-align: right;
}

.blog__details__btn__item.blog__details__btn__item--next h6 a i {
	margin-right: 0;
	margin-left: 5px;
}

.blog__details__btn__item h6 a {
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	color: #111111;
}

.blog__details__btn__item h6 a i {
	font-size: 15px;
	font-weight: 600;
	position: relative;
	top: -2px;
	margin-right: 5px;
}

.blog__details__comment {
	position: relative;
}

.blog__details__comment h5 {
	color: #111111;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 35px;
}

.blog__details__comment .leave-btn {
	font-size: 14px;
	font-weight: 700;
	color: #111111;
	text-transform: uppercase;
	position: absolute;
	right: 0;
	top: 0;
}

.blog__details__comment .leave-btn:after {
	position: absolute;
	left: 0;
	bottom: -5px;
	height: 1px;
	width: 100%;
	background: rgb(25, 174, 201);
	content: "";
}

.blog__comment__item {
	margin-bottom: 35px;
}

.blog__comment__item:last-child {
	margin-bottom: 0;
}

.blog__comment__item.blog__comment__item--reply {
	padding-left: 115px;
}

.blog__comment__item__pic {
	float: left;
	margin-right: 25px;
}

.blog__comment__item__pic img {
	border-radius: 50%;
}

.blog__comment__item__text {
	overflow: hidden;
}

.blog__comment__item__text h6 {
	color: #111111;
	font-weight: 600;
	margin-bottom: 14px;
}

.blog__comment__item__text p {
	font-size: 15px;
	color: #444444;
	line-height: 26px;
}

.blog__comment__item__text ul li {
	list-style: none;
	font-size: 12px;
	color: #888888;
	display: inline-block;
	margin-right: 25px;
}

.blog__comment__item__text ul li:last-child {
	margin-right: 0;
}

.blog__comment__item__text ul li i {
	font-size: 14px;
	color: rgb(25, 174, 201);
	margin-right: 5px;
}

/*---------------------
  Contact
-----------------------*/

.contact {
	padding-top: 30px;
	padding-bottom: 80px;
}

.contact__address {
	margin-bottom: 45px;
}

.contact__address h5 {
	color: #111111;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.contact__address ul li {
	list-style: none;
	position: relative;
	margin-bottom: 20px;
}

.contact__address ul li:last-child {
	margin-bottom: 0;
}

.contact__address ul li h6 {
	color: #111111;
	font-weight: 600;
	margin-bottom: 10px;
}

.contact__address ul li h6 i {
	font-size: 16px;
	color: rgb(25, 174, 201);
	margin-right: 5px;
}

.contact__address ul li p {
	margin-bottom: 0;
	font-size: 15px;
	color: #444444;
}

.contact__address ul li p a {
	color: inherit;
}

.contact__address ul li span {
	font-size: 15px;
	color: #444444;
	display: inline-block;
	margin-right: 25px;
	position: relative;
}

.contact__address ul li span:after {
	position: absolute;
	right: -15px;
	top: 11px;
	content: "|";
	line-height: 0;
}

.contact__address ul li span:last-child {
	margin-right: 0;
}

.contact__address ul li span:last-child:after {
	display: none;
}

.contact__form h5 {
	color: #111111;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 35px;
}

.clearShoppingCart {
	cursor: pointer !important;
	display: inline-flex !important;
	align-items: center !important;
}

.contact__form form input {
	height: 50px;
	width: 100%;
	padding-left: 20px;
	font-size: 14px;
	color: #444444;
	border: 1px solid #e1e1e1;
	border-radius: 0 15px;
	margin-bottom: 20px;
}

.contact__form form input::-webkit-input-placeholder {
	color: #444444;
}

.contact__form form input::-moz-placeholder {
	color: #444444;
}

.contact__form form input:-ms-input-placeholder {
	color: #444444;
}

.contact__form form input::-ms-input-placeholder {
	color: #444444;
}

.contact__form form input::placeholder {
	color: #444444;
}

.contact__form form textarea,
.checkout__form__input textarea {
	height: 130px;
	width: 100%;
	padding-left: 20px;
	padding-top: 12px;
	font-size: 14px;
	color: #444444;
	border: 1px solid #e1e1e1;
	border-radius: 0 15px;
	margin-bottom: 14px;
	resize: none;
}

.contact__form form textarea::-webkit-input-placeholder,
.checkout__form__input textarea::-webkit-input-placeholder {
	color: #444444;
}

.contact__form form textarea::-moz-placeholder,
.checkout__form__input textarea::-moz-placeholder {
	color: #444444;
}

.contact__form form textarea::-ms-input-placeholder,
.checkout__form__input textarea::-ms-input-placeholder {
	color: #444444;
}

.contact__form form textarea::-ms-input-placeholder,
.checkout__form__input textarea::-ms-input-placeholder {
	color: #444444;
}

.contact__form form textarea::placeholder,
.checkout__form__input textarea::placeholder {
	color: #444444;
}

.contact__map {
	height: 780px;
}

.contact__map iframe {
	width: 100%;
}

/** bottom navbar */

.custom-nav {
	display: flex;
	justify-content: center;
	flex-direction: row;
	width: 100%;
	height: 50px;
	filter: drop-shadow(0 0 5px rgba(31, 31, 31, 0.1));
	position: fixed;
	bottom: 0;
	z-index: 9;
   }

   .custom-nav-slot {
	flex-basis: 45%;
	text-align: center;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
   }

   .custom-nav-link {
	line-height: 1.5;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #aab2bd;
	border-radius: 50rem;
	transition: 0.3s all;
	padding: 6px;
	cursor: pointer;
   }

   .custom-nav-link i,
   .custom-floating-button i {
	font-size: 25px;
   }

   .custom-floating-button i::before {
	color: white;
   }

   .custom-nav-link:hover {
	transition: 0.3s all;
	background: rgba(31, 31, 31, 0.1);
	color: rgb(25, 174, 201) !important;
   }

   .custom-nav-link.active {
	color: rgb(25, 174, 201);
   }

   .curve {
	flex-basis: auto !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff'%3E%3Cpath d='M99,0A36.33,36.33,0,0,0,70,15,25,25,0,0,1,30,15,36.33,36.33,0,0,0,1,0H0V50H100V0Z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: cover;
	background-position-y: center;
	width: 100px;
   }

   .bg-white {
	background: white;
   }

   .custom-floating-button {
	position: fixed;
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 3;
	text-align: center;
	border-radius: 50%;
	bottom: 35px;
	background-color: #66CC99;
	box-shadow: 0 10px 6px -6px #777;
	z-index: 1;
	transition: 0.3s all;
   }

   .custom-floating-button .tip {
	position: absolute;
    right: -5px;
    top: -10px;
    height: 22px;
    width: 22px;
    background: #111111;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
	border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
   }

   .custom-floating-button:hover {
	bottom: 40px;
	transition: 0.3s all;
   }

   .round-top-left {
	border-top-left-radius: 15px;
   }

   .round-top-right {
	border-top-right-radius: 15px;
   }

   .search-switch i {
	color: #aab2bd;
   }

   .search-switch:hover i {
	color: rgb(25, 174, 201);
   }

/** bottom navbar */

/** my section */

.products-count {
    font-size: 25px;
    color: #888888;
}

.send-mail-section {
    text-align: center;
    margin-top: 20px;
}

.like-amo-btns {
    position: fixed;
    bottom: 130px;
    right: 30px;
    display: flex;
    flex-direction: column;
    row-gap: 7px;
    z-index: 999999;
}

.amo-btn {
    display: block;
    width: 45px;
    height: 45px;
    position: relative;
    z-index: 99;
    cursor: pointer;
    border-radius: 30px;
    visibility: visible;
    opacity: 1;
    box-shadow: 0 10px 6px -6px #777;
}

.amo-btn a {
    width: 45px;
    height: 45px;
    display: block;
}

.amo-btn:hover {
    opacity: .8;
}

.amo-wp {
    background: #57d163 url("/images/amo/wp.svg") 50% no-repeat
}

.amo-telegram {
    background: #2ca8dd url("/images/amo/telegram.svg") 50% no-repeat;
}

.amo-insta {
    background: white url("/images/amo/insta.svg") 50% no-repeat;
    background-size: 100%;
}

.amo-viber {
    background: #665cac url("/images/amo/viber.svg") 50% no-repeat;
    background-size: 72%;
}

.categories__accordion .fa-arrow-up {
    display: none;
}

.categories__accordion .card-heading.active .fa-arrow-down {
    display: none;
}

.categories__accordion .card-heading.active .fa-arrow-up {
    display: inline-block;
}

.toggle-category {
    position: absolute;
    right: 0;
    min-height: 45px;
    height: 100%;
    width: 45px;
    display: flex !important;
    justify-content: center;
    background: #f8f8f8;
    align-items: center;
    color: rgb(25, 174, 201) !important;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.14);
}

.toggle-category:hover {
    background: rgb(25, 174, 201);
    color: white !important;
}

.card-heading .category-link {
    width: calc(100% - 45px);
    padding: 12px;
}

.subscribe-section {
    margin: 120px 0 70px 0;
}

.subscribe-section-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.subscribe-item {
    display: flex;
    position: relative;
    flex-direction: column;
    grid-column: span 1 / span 1;
}

.telegram-section,
.viber-section,
.phone-section,
.instagram-section {
    border-radius: 0 20px 0 20px;
    display: flex;
    justify-content: space-around;
    color: white;
    padding: 15px 0;
    align-items: center;
    box-shadow: 0px 3px 12px rgba(0,0,0,0.16);
}

.telegram-section {
    background: #3991DD;
}

.viber-section {
    background: #59267c;
}

.phone-section {
    background: #083F6E;
}

.instagram-section {
    background: rgb(221, 42, 123);
}

.telegram-section span,
.viber-section span,
.instagram-section span,
.phone-section span {
    font-weight: 700;
    line-height: inherit;
}

.telegram-section:hover,
.viber-section:hover,
.instagram-section:hover,
.phone-section:hover {
    opacity: .8;
}

#social_iframe {
    width: -webkit-fill-available !important;
    min-width: -webkit-fill-available !important;
    max-width: -webkit-fill-available !important;
}

.vertical .amo-button__title {
    display: none !important;
}

.amo-button-holder {
    right: 20px !important;
    bottom: 50px !important;
}
#amo_brand {
    display: none !important;
}

.product-data-specs p {
	font-size: 15px;
	color: #444444;
}

.product-data-specs h5 {
	font-weight: bold;
	margin-bottom: 8px;
	color: rgb(25, 174, 201);
}

.product-data-specs ul {
	margin-left: 20px;
}

.product-data-specs ul li {
	color: black;
    font-weight: 500;
	padding: 5px 0;
}

.product-data-specs ul li:last-child {
	margin-bottom: 20px;
}

.product-data-specs table {
	table-layout: fixed;
	width: 100%;
}

.product-data-specs table tr {
	border-bottom: 1px solid #e1e1e1;
}

.product-data-specs table tr:last-child {
	border-bottom: unset;
}

.product-data-specs table th {
	color: rgb(25, 174, 201);
	padding: .75rem 0;
}

.product-data-specs table td {
	padding: .75rem 0;
	color: black;
    font-weight: 500;
    padding: 5px 0;
}

.final-checkout-product-name {
	color: inherit;
	max-width: 280px;
}

.categories-container {
	row-gap: 15px;
}

.justify-center {
	justify-content: center;
}

.mobile-menu-header ul li {
	background: #41bded1a;
    list-style: none;
    padding: 4px 12px;
    text-align: right;
    border-radius: 10px;
    margin-bottom: 10px;
}

.mobile-menu-header ul li.active {
	box-shadow: 0 0 5px 0 rgba(0,0,0,.14)
}

.mobile-menu-header ul li a {
	font-size: 16px;
    color: #444444;
    line-height: 30px;
}

.section-code {
	background: #66CC99;
    opacity: .8;
    padding: 2px 8px;
    border-radius: 10px;
    color: white;
}

.product-data-specs .calc-price-container {
    font-size: 30px;
    margin-top: 10px;   
}

.right-side-data.select-values .select-specification-btn {
    text-decoration: underline;
    cursor: pointer;
}

.right-side-data.select-values .select-specification-btn:hover {
    text-decoration: none;
}

.list-of-configurations {
    margin-right: 50px;
}

.list-category-config {
    padding: 0 20px;
    overflow: hidden;
}

.list-category-config label {
    font-size: 17px !important;
}

.blog__details__btn__item span {
    font-size: 15px;
}

.list-category-config .checkmark {
    height: 15px !important;
    width: 15px !important;
}

.list-category-config .checkmark::after {
    left: 2px !important;
    top: 0px !important;
    width: 14px !important;
}

.product-spec-item {
    font-weight: bold;
    float: right;
    background: white;
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.product-spec-name {
    background: white;
    padding-right: 10px;
}

.product-spec-name::after {
    float: left;
    width: 0;
    white-space: nowrap;
    content:
 ". . . . . . . . . . . . . . . . . . . . "
 ". . . . . . . . . . . . . . . . . . . . "
 ". . . . . . . . . . . . . . . . . . . . "
 ". . . . . . . . . . . . . . "
}

.item-select-for-config {
    overflow: hidden;
    margin-bottom: 0 !important;
}

.spec-controls-qty {
    margin-left: 15px;
    display: none;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.quantity-spec-actions {
    position: relative;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    border-radius: 50%;
    z-index: 5;
}

.quantity-spec-actions:hover {
    opacity: .65;
}

.quantity-spec-actions .lds-ring div {
    width: 15px;
    height: 15px;
}

.home-banner-area {
    margin: 20px 0 40px 0;
}

.banner-container {
    min-height: 550px;
    background: #41bded1a;
    border-radius: 0 30px 0 30px;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.14);
    padding: 0 25px;
    margin: 0 -5px;
}

.home-banner-right,
.home-banner-left {
    min-height: 550px;
}

.home-banner-right img {
    width: 50vmin;
}

.home-banner-left h1 {
    font-weight: 700;
    font-size: 45px;
    margin-bottom: 15px;
}

.home-banner-left h1 span {
    color: rgb(25, 174, 201);
}

.home-banner-left p {
    font-size: 18px;
    margin-bottom: 30px;
}

.home-banner-left .site-btn {
    padding: 15px 40px;
}

.home-banner-left .site-btn:hover {
    color: white;
}

.config-btn {
    background: rgb(25, 174, 201) !important;
    color: white !important;
    box-shadow: 0 0 0 0 rgba(25, 174, 201, .5);
    -webkit-animation: pulse 1.5s infinite;
    text-align: center;
}

.disabled-config-btn {
    display: none;
    -webkit-animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  70% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 0 30px rgba(90, 153, 212, 0);
  }
  100% {
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}

.disabled-option {
    opacity: .5;
    pointer-events: none;
    cursor: no-allowed;
}

.related-products-section {
    row-gap: 30px;
    padding-left: 15px;
}

.product-specifications {
    row-gap: 50px;
}

.info-point-section {
    background: #41bded1a;
    border-radius: 0 30px 0 30px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .14);
    margin: 0px;
}

/** custom dropdown */

.select-dropdown-sort select {
   -webkit-appearance: none;
   -moz-appearance: none;
   -ms-appearance: none;
   appearance: none;
   outline: 0;
   box-shadow: none;
   border: 0 !important;
   background: #41bded1a;
   background-image: none;
   flex: 1;
   padding: 0 15px;
   cursor: pointer;
   font-size: 14px;
    font-weight: 500;
    color: #111111;
}
.select-dropdown-sort select::-ms-expand {
   display: none;
}
.select-dropdown-sort select option {
    border: unset;
}
.select-dropdown-sort {
    margin-bottom: 20px;
   position: relative;
    display: flex;
    width: 190px;
    height: 40px;
    background: #41bded1a;
    overflow: hidden;
    border-radius: 0 10px 0 10px;
}
.select-dropdown-sort::after {
   content: "\25BC";
   position: absolute;
   top: 0;
   right: 0;
   padding: 10px;
   background: #f8f8f8;
   cursor: pointer;
   pointer-events: none;
   transition: 0.25s all ease;
   height: 100%;
   width: 35px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 15px;
   box-shadow: 0 0 5px 0 rgba(0,0,0,.14);
   color: rgb(25, 174, 201);
}
.select-dropdown-sort:hover::after {
   color: white;
   background: rgb(25, 174, 201);
}

/** custom dropdown */

.blog__sidebar__tags .custom-btn {
    font-size: 14px;
	color: #ffffff;
	background: #66CC99;
	font-weight: 600;
	border: none;
	text-transform: uppercase;
	display: inline-block;
	padding: 12px 30px;
	border-radius: 0 15px;
    box-shadow: 0 0 5px 0 rgba(0,0,0,.14);   
}

.blog__sidebar__tags .custom-btn:hover {
    color: #ffffff;
    opacity: .8;
}

/** my section */

/** modal section */

/* The Modal (background) */
.modal-config {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-config-content {
  background-color: #fefefe;
  margin: 10% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 500px;
  border-radius: 0 30px;
  box-shadow: 0 0 5px 0 rgba(0,0,0,.14);
}

/* The Close Button */
.close-modal-config {
    color: #aaa;
    height: 25px;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.close-modal-config:hover,
.close-modal-config:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.modal-container {
    margin-top: 8px;
}

.modal-container h5 {
    color: #111111;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.about-image {
    width: 100% !important;
    border-radius: 0 30px;
}

.about-page-header-text {
    background: #ffffff;
    padding-top: 30px;
    padding-right: 30px;
    margin-top: -65px;
    position: relative;
    margin-right: 50px;
    text-align: left;
    border-radius: 0 30px 0 0;
}

.about-container {
    padding-top: 30px;
    padding-bottom: 50px;
}

.category-img {
    object-fit: contain;
    height: auto;
}

/** modal section */

.view-content {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
}

.open-hide-menu {
    font-weight: bold;
    font-size: 20px;
    color: rgb(25, 174, 201);
    cursor: pointer;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 0;
    display: inline-flex;
    background: #f8f8f8;
}

.open-hide-menu.active i {
    transform: rotate(180deg);
}

.open-hide-menu:hover {
    opacity: .8;
}

.size__list.menu-filter-item {
    display: none;
}

.menu-filter-item {
    margin-bottom: 40px;
}

.sidebar__sizes .section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-info {
    display: flex;
    column-gap: 20px;
}

.product-specification-btn {
    height: fit-content;
    position: sticky;
    top: 145px;
    width: fit-content;
}

.product-specification-btn .nav::before,
.product-specification-btn .nav::after {
    display: none;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1600px) and (max-width: 1900px) {
	.header {
		padding: 0 85px;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1599px) {
	.header__menu ul li {
		margin-right: 20px;
	}
	.header {
		padding: 0 30px;
	}
}

@media(max-width: 1400px) {
    .subscribe-section-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width: 1320px) {
	.custom-nav-slot {
		flex-basis: 44%;
	}
}

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.header__menu ul li {
		margin-right: 20px;
	}
	.header__right__auth {
		margin-right: 5px;
	}
	.sidebar__filter a {
		padding: 5px 15px 5px 15px;
	}
	.nav::before {
		width: 240px;
	}
	.nav::after {
		width: 240px;
	}
}

@media(max-width: 1199px) {
	.categories__item {
		flex-direction: column;
		row-gap: 15px;
		text-align: center;
		justify-content: flex-start;
	}
	
	.list-of-configurations {
	    margin-right: 0;
	}
	
	.config-calculator {
	    flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 50px;
	}
}

@media(max-width: 991px) {
    .banner-container {
        min-height: unset;
        height: fit-content;
    }
    .home-banner-left {
        min-height: 400px;
    }
    .home-banner-right {
        min-height: fit-content;
        justify-content: center;
        padding: 20px 0 55px 0;
    }
    .cart-bottom-actions {
        margin-top: 25px;
    }
    .pr-70 {
        padding-right: 15px;
    }
}

@media(max-width: 960px) {
	.blog__details__item img {
		width: 100%;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.filter__controls li {
		margin-right: 15px;
	}
	.discount__pic img {
		height: auto;
	}
	.discount__text {
		height: auto;
	}
	.sidebar__filter a {
		position: relative;
		bottom: 0;
	}
	.filter-range-wrap .range-slider .price-input input {
		max-width: 27%;
	}
	.filter-range-wrap .range-slider .price-input {
		margin-bottom: 20px;
	}
	.product__details__pic {
		margin-bottom: 50px;
	}
	.nav::before {
		width: 125px;
	}
	.nav::after {
		width: 125px;
	}
	.discount__content {
		margin-bottom: 40px;
	}
	.checkout__order {
		margin-top: 20px;
	}
	.blog__sidebar {
		padding-left: 0;
	}
	.canvas__open {
		display: block;
		font-size: 22px;
		color: #222;
		height: 35px;
		width: 35px;
		line-height: 35px;
		text-align: center;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 25px;
	}
	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.7);
		content: "";
		z-index: 98;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		visibility: hidden;
	}
	.offcanvas-menu-overlay.active {
		visibility: visible;
	}
	.offcanvas-menu-wrapper {
		position: fixed;
		width: 270px;
		height: 100%;
		background: #ffffff;
		padding: 90px 12px 30px 12px;
		display: block;
		z-index: 99;
		overflow-y: auto;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		opacity: 0;
		right: -270px;
	}
	.offcanvas-menu-wrapper.active {
		opacity: 1;
		right: 0;
	}
	.offcanvas__close {
		position: absolute;
		width: 40px;
		height: 40px;
		right: 15px;
		top: 25px;
		border-radius: 50%;
		font-size: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		cursor: pointer;
	}
	.offcanvas__logo {
		margin-bottom: 25px;
	}
	.offcanvas__widget {
		text-align: center;
		margin-bottom: 20px;
	}
	.offcanvas__widget li {
		list-style: none;
		display: inline-block;
		font-size: 18px;
		color: #111111;
		margin-right: 20px;
		cursor: pointer;
	}
	.offcanvas__widget li:last-child {
		margin-right: 0;
	}
	.offcanvas__widget li a {
		font-size: 18px;
		color: #111111;
		position: relative;
	}
	.offcanvas__widget li a .tip {
		position: absolute;
		right: -12px;
		top: -11px;
		height: 18px;
		width: 18px;
		background: #111111;
		font-size: 10px;
		font-weight: 500;
		color: #ffffff;
		line-height: 18px;
		text-align: center;
		border-radius: 50%;
	}
	.offcanvas__auth a {
		font-size: 15px;
		color: #111111;
		position: relative;
		margin-right: 8px;
		font-weight: 500;
	}
	.offcanvas__auth a:last-child {
		margin-right: 0;
	}
	.offcanvas__auth a:last-child:after {
		display: none;
	}
	.offcanvas__auth a:after {
		position: absolute;
		right: -8px;
		top: -2px;
		content: "/";
		font-size: 13px;
	}
	.header__menu {
		display: none;
	}
	.header__right {
		display: none;
	}
}

@media(max-width: 1050px) {
	.custom-nav-slot {
		flex-basis: 40%;
	}
}

@media(max-width: 767px) {
	.shop__cart__table tbody tr .cart__product__item .cart__product__item__title {
		/*padding-top: 20px;*/
	}
	.shop__cart__table tbody tr td {
		padding: 0 20px;
	}
	.info-point-item {
	    justify-content: left;
	}
	.categories__accordion.menu-filter-item {
        display: none;
    }
}

@media(max-width: 750px) {
    .home-banner-left h1 {
        font-size: 45px;
    }
    .home-banner-left p {
        font-size: 17px;
    }
    .product-specification-btn {
        top: 120px;
    }
    .product-info {
        flex-direction: column-reverse;
        row-gap: 35px;
    }
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
	.canvas__open {
		display: block;
		font-size: 22px;
		color: #222;
		height: 35px;
		width: 35px;
		line-height: 35px;
		text-align: center;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 25px;
	}
	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.7);
		content: "";
		z-index: 98;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		visibility: hidden;
	}
	.offcanvas-menu-overlay.active {
		visibility: visible;
	}
	.offcanvas-menu-wrapper {
		position: fixed;
		width: 270px;
		height: 100%;
		background: #ffffff;
		padding: 90px 12px 30px 12px;
		display: block;
		z-index: 99;
		overflow-y: auto;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		opacity: 0;
		right: -270px;
	}
	.offcanvas-menu-wrapper.active {
		opacity: 1;
		right: 0;
	}
	.offcanvas__close {
		position: absolute;
		width: 40px;
		height: 40px;
		right: 15px;
		top: 25px;
		border-radius: 50%;
		font-size: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		cursor: pointer;
	}
	.offcanvas__logo {
		margin-bottom: 25px;
	}
	.offcanvas__widget {
		text-align: center;
		margin-bottom: 20px;
	}
	.offcanvas__widget li {
		list-style: none;
		display: inline-block;
		font-size: 18px;
		color: #111111;
		margin-right: 20px;
		cursor: pointer;
	}
	.offcanvas__widget li:last-child {
		margin-right: 0;
	}
	.offcanvas__widget li a {
		font-size: 18px;
		color: #111111;
		position: relative;
	}
	.offcanvas__widget li a .tip {
		position: absolute;
		right: -12px;
		top: -11px;
		height: 18px;
		width: 18px;
		background: #111111;
		font-size: 10px;
		font-weight: 500;
		color: #ffffff;
		line-height: 18px;
		text-align: center;
		border-radius: 50%;
	}
	.offcanvas__auth a {
		font-size: 15px;
		color: #111111;
		position: relative;
		margin-right: 8px;
		font-weight: 500;
	}
	.offcanvas__auth a:last-child {
		margin-right: 0;
	}
	.offcanvas__auth a:last-child:after {
		display: none;
	}
	.offcanvas__auth a:after {
		position: absolute;
		right: -8px;
		top: -2px;
		content: "/";
		font-size: 13px;
	}
	.header__menu {
		display: none;
	}
	.header__right {
		display: none;
	}
	.filter__controls {
		text-align: left;
		margin-bottom: 40px;
	}
	.filter__controls li {
		margin-right: 20px;
	}
	.discount__pic img {
		height: auto;
	}
	.discount__text {
		padding: 75px 40px 50px;
		height: auto;
	}
	.product__details__pic__left {
		height: auto;
	}
	.product__details__pic {
		margin-bottom: 30px;
	}
	.quantity {
		float: none;
		margin-right: 0;
	}
	.nav::before {
		display: none;
	}
	.nav::after {
		display: none;
	}
	.shop__cart__table {
		overflow-x: auto;
	}
	.shop__cart__table tbody tr .cart__product__item img {
		float: none;
		margin-right: 0;
	}
	.cart__btn {
		text-align: center;
		margin-bottom: 25px;
	}
	.cart__btn.update__btn {
		text-align: center;
	}
	.discount__content h6 {
		display: block;
		margin-right: 0;
		margin-bottom: 20px;
	}
	.discount__content {
		margin-bottom: 35px;
	}
	.blog__sidebar {
		padding-left: 0;
		padding-top: 40px;
	}
	.contact__content {
		margin-bottom: 40px;
	}
}

@media(max-width: 670px) {
	.subscribe-section-container {
	    grid-template-columns: repeat(1, minmax(0, 1fr));
	}
}

@media(max-width: 650px) {
	.custom-nav-slot {
		flex-basis: 35%;
	}
}

@media(max-width: 610px) {
    .search-model-form input {
        width: 400px;
    }
}

@media(max-width: 600px) {
    .home-banner-left > div {
        text-align: center;
        margin-bottom: 25px;
    }
    .modal-config-content {
        width: 400px;
    }
}

@media(max-width: 576px) {
	.info-point-section {
		row-gap: 20px;
	}
}

@media(max-width: 567px) {
    .product__details__tab .nav-tabs {
        row-gap: 30px;
        flex-direction: column;
        align-items: center;
    }
    
    .product__details__tab .nav-tabs li:first-child {
        margin-right: 0 !important;
    }
}

@media(max-width: 550px) {
    .product__item__pic .label {
        left: -10px;
        top: -10px;
    }
    
    .product__item__text {
        text-align: left;
    }
}

@media(max-width: 540px) {
    .banner-container {
        padding: 25px;
    }
}

@media(max-width: 525px) {
	.categories__item {
		flex-direction: column;
		text-align: center;
	}
}

@media(max-width: 520px) {
	.search-model-form input {
		width: 300px;
        font-size: 25px;
	}
	.site-btn {
	    padding: 8px 20px;
	}
}

@media(max-width: 480px) {
	.modal-config-content {
        width: 330px;
    }
    .search-model-form input {
        width: 250px !important;
    }
    .product__item__pic {
        min-height: 145px;
    }
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.categories__item.categories__large__item {
		padding-left: 30px;
	}
	.banner__text h1 {
		font-size: 45px;
	}
	.filter__controls li {
		margin-bottom: 5px;
	}
	.discount__text {
		padding: 75px 0px 50px;
	}
	.footer__newslatter form {
		text-align: center;
	}
	.footer__newslatter form input {
		margin-bottom: 10px;
	}
	.footer__newslatter form button {
		position: relative;
		right: 0;
		top: 0;
	}
	.product__details__button .cart-btn {
		float: none;
		margin-right: 0;
	}
	.product__details__button ul {
		float: none;
	}
	.nav-item {
		margin-right: 20px;
	}
	/* .blog__details__item__title {
		margin-right: 30px;
	} */
	.blog__comment__item.blog__comment__item--reply {
		padding-left: 0;
	}
	.blog__comment__item__text ul li {
		margin-right: 5px;
	}
	.primary-btn.load-btn {
		padding: 12px 50px 10px;
	}
	.blog__comment__item__pic {
		float: none;
		margin-bottom: 20px;
	}
	.discount__content form {
		width: 100%;
	}
	.search-model-form input {
		width: 100%;
		font-size: 24px;
	}
}