@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');

:root {
	font-size: 20px;
	--white: #ffffff;
	--black: #000000;
	--dark: #2e2e2e;
	--heading: #2a2b38;
	--paragraph: #57585f;
	--paragraph-2: #7c7d87;
	--primary-light: #fde9d8;
	--primary-light-2: #fcdbc0;
	--primary: #f7a45e;
	--primary-2: #d3a438;
	--blue: #4267B2;
	--blue-dark: #1f2029;
	--blue-dark-2: #353746;
	--blue-light: #f4f3f9;
	--red: #e74c3c;
}

/* #Primary
================================================== */

body{
    font-family: 'Open Sans', sans-serif;
	font-weight: 400;	
	font-size: 17px;
	line-height: 1.65;
	color: var(--paragraph);
	background-color: var(--white);
	overflow-x: hidden;
}
.paragraph,
p{
    font-family: 'Open Sans', sans-serif;
	font-weight: 400;	
	font-size: 17px;
	line-height: 1.55;
	color: var(--paragraph);
	letter-spacing: 0.2px;
}
.lead{	
	font-size: 21px;
	line-height: 1.45;
	letter-spacing: 0.2px;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6{
    font-family: 'Montserrat', sans-serif;
	margin-bottom: 0.5rem;
	font-weight: 800;	
	line-height: 1.35;
	color: var(--heading);
}
h1, .h1 {
	font-size: 56px;
}
h2, .h2 {
	font-size: 46px;
}
h3, .h3 {
	font-size: 36px;
}
h4, .h4 {
	font-size: 28px;
}
h5, .h5 {
	font-size: 22px;
}
h6, .h6 {
	font-size: 17px;
	font-weight: 700;	
}
::selection {
	color: var(--white);
	background-color: var(--primary);
}
::-moz-selection {
	color: var(--white);
	background-color: var(--primary);
}
mark{
	color: var(--white);
	background-color: var(--primary);
}
a{
    transition: all 200ms linear;
	text-decoration: none;
	color: var(--primary);
}
a:hover{
	text-decoration: none;
	color: var(--primary-2);
}

.link-dark {
	color: var(--blue-dark);
}
.link-dark:hover {
	color: var(--primary);
}




/* #Preloader style
================================================== */

.animsition-loading,
.animsition-loading:after {
	width: 36px;
	height: 36px;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -18px;
	margin-left: -18px;
	border-radius: 50%;
	z-index: 100;
}
.animsition-loading {
	opacity: .2;
	background-color: transparent;
	border:none;
	background-color: var(--primary);
	animation: loaderAnim 0.7s linear infinite alternate forwards;
}
@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

/* #Progress back to top
================================================== */

.progress-wrap {
	position: fixed;
	right: 20px;
	bottom: 20px;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	border-radius: 50px;
	box-shadow: inset  0 0 0 2px rgba(200,200,200,0.8);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transform: translateY(15px);
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.progress-wrap::after {
	position: absolute;
	font-family: 'unicons-line';
	content: '\eb69';
	text-align: center;
	line-height: 46px;
	font-size: 18px;
	color: rgba(160,160,160,0.8);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::after {
	opacity: 0;
}
.progress-wrap::before {
	position: absolute;
	font-family: 'unicons-line';
	content: '\eb69';
	text-align: center;
	line-height: 46px;
	font-size: 18px;
	opacity: 0;
	color: var(--primary);
	left: 0;
	top: 0;
	height: 46px;
	width: 46px;
	cursor: pointer;
	display: block;
	z-index: 2;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.progress-wrap:hover::before {
	opacity: 1;
}
.progress-wrap svg path { 
	fill: none; 
}
.progress-wrap svg.progress-circle path {
	stroke: var(--primary);
	stroke-width: 4;
	box-sizing:border-box;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}


/* #Main style
================================================== */

.section {
    position: relative;
	width: 100%;
	display: block;
}
.section-1320 {
    position: relative;
	width: 100%;
	max-width: 1320px;
	display: block;
	margin: 0 auto;
}
.padding-top-bottom-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.padding-top-100 {
    padding-top: 100px;
}
.padding-bottom-100 {
    padding-bottom: 100px;
}
.padding-top-bottom-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.padding-top-80 {
    padding-top: 80px;
}
.padding-bottom-80 {
    padding-bottom: 80px;
}

/* #Buttons
================================================== */

.btn{  
	border-radius: 2px;
	height: 48px;
  	font-size: 16px;
  	letter-spacing: 0;
  	line-height: 1;
    font-weight: 600;
	-webkit-transition : all 200ms linear;
    transition: all 200ms linear;
	padding: 0 35px;
	max-width: 100%;
	position: relative;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	text-align: center;
	border: none;
}
.btn:active,
.btn:focus{  
	box-shadow: none;
	border: none;
	outline: none;
}
.btn-full {  
	width: 100%;
}
.btn-p-20 {  
	padding: 0 20px;
}
.btn-img-22 img {  
	height: 22px;
	width: auto;
	display: block;
}
.btn-h-36 {  
	height: 36px;
}
.btn-h-40 {  
	height: 40px;
}
.btn-primary-gradient {  
	color: var(--white);
	background-color: transparent;
	overflow: hidden;
}
.btn-primary-gradient:before {  
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	z-index: -1;
	background: linear-gradient(90deg, var(--primary), var(--primary-2));
    transition: all 200ms linear;
}
.btn-primary-gradient:hover:before {  
	opacity: 0;
}
.btn-primary-gradient:hover {  
	color: var(--white);
	background-color: var(--blue-dark);
}
.btn-dark-gradient {  
	color: var(--white);
	background-color: transparent;
	overflow: hidden;
}
.btn-dark-gradient:before {  
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	z-index: -1;
	background: linear-gradient(90deg, var(--blue-dark), var(--blue-dark-2));
    transition: all 200ms linear;
}
.btn-dark-gradient:hover {  
	color: var(--white);
	background-color: var(--black);
}


.btn-prim {  
	color: var(--white);
	background-color: var(--primary);
}
.btn-prim:hover {  
	color: var(--white);
	background-color: var(--primary);
	box-shadow: 0px 20px 40px -5px rgba(247,164,94,.4);
}
.btn-dark {  
	color: var(--white);
	background-color: var(--paragraph);
}
.btn-dark:hover {  
	color: var(--white);
	background-color: var(--blue-dark-2);
}
.btn-prim-light {  
	color: var(--paragraph-2);
	background-color: var(--primary-light);
}
.btn-prim-light:hover {  
	color: var(--white);
	background-color: var(--paragraph);
}
.btn-dark-primary {  
	color: var(--white);
	background-color: var(--blue-dark-2);
}
.btn-dark-primary:hover {  
	color: var(--white);
	background-color: var(--primary);
}




.btn-box-icon {  
	color: var(--blue-dark);
	background-color: transparent;
	padding: 0;
}
.btn-box-icon.light {  
	color: var(--white);
	background-color: transparent;
	padding: 0;
}
.btn-box-icon:hover {  
	color: var(--primary);
	background-color: transparent;
}
.btn-transparent {  
	color: var(--blue-dark);
	background-color: transparent;
	padding: 0;
}
.btn-transparent:hover {  
	color: var(--primary);
	background-color: transparent;
}
.btn-notification {  
	position: absolute;
	width: 22px;
	height: 22px;
	z-index: 2;
	top: 0;
	right: -13px;
	border-radius: 50%;
	background-color: var(--primary);
	text-align: center;
	font-size: 13px;
	line-height: 22px;
	color: var(--white);
}


/* #Navigation
================================================== */

.navigation-wrap{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 10000;
}
.cbp-af-header {
	background-color: transparent;
	padding-top: 20px;
	padding-bottom: 10px;
	background-color: transparent;
	transition : all 0.3s ease-out;
}
.cbp-af-header.cbp-af-header-shrink {
	padding-top: 10px;
	background-color: var(--white);
	box-shadow: 0px 20px 40px -5px rgba(149, 164, 175, 0.2);
	transition : all 0.3s ease-out;
}
.navbar-brand {
	position: relative;
	display: block;
	height: 90px;
	padding: 0;
	margin: 0;
	float: left;
	transition : all 0.3s ease-out;
}
.cbp-af-header.cbp-af-header-shrink .navbar-brand {
	height: 50px;
	transition : all 0.3s ease-out;
}
.navbar-brand img {
	display: block;
	height: 100%;
	width: auto;
}
.navbar {
	padding: 0;
	margin: 0;
}
.navbar-toggler {
	float: right;
	border: none;
	padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
	outline: none;
}
.navbar-toggler-icon {
	width: 24px;
	height: 18px;
	background-image: none;
	position: relative;
	border-bottom: 2px solid var(--blue-dark);
    transition: all 200ms linear;
}
.navbar-toggler-icon:after, 
.navbar-toggler-icon:before{
	width: 20px;
	position: absolute;
	height: 2px;
	background-color: var(--blue-dark);
	top: 0;
	right: 0;
	content: '';
	z-index: 2;
    transition: all 200ms linear;
}
.navbar-toggler-icon:after{
	top: 8px;
	width: 14px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
	transform: rotate(45deg);
	width: 24px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
	transform: translateY(8px) rotate(-45deg);
	width: 24px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	border-color: transparent;
}
.nav-item{  
	padding: 0;
	margin: 0 10px;
}
.nav-link{  
	font-size: 16px;
	font-weight: 600;
	color: var(--blue-dark-2);
	opacity: 1;
	padding: 0;
	margin: 0;
    transition: all 200ms linear;
}
.nav-link:hover{
	color: var(--primary) !important;
}
.nav-link:active,
.nav-link:focus{
	color: var(--primary) !important;
}
.nav-link.mPS2id-highlight{
	color: var(--primary) !important;
}

.dropdown {
	position: relative;
	padding: 0;
	margin: 0;
	display: inline-block;
}
.dropdown-menu {
    padding: 30px;
    margin-top: 10px;
    border-radius: 2px;
	box-sizing: border-box;
  	-webkit-filter: drop-shadow(0px 8px 22px rgba(149, 164, 175, 0.3));
  	filter: drop-shadow(0px 8px 22px rgba(149, 164, 175, 0.3));
  	border: none;
    min-width: 340px;
    background-color: var(--white);
    display: block;
	-webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    transform: translate(0, 10px);
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}
.dropdown-menu.show {
    transform: translate(0, 0);
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
}
.dropdown-menu:before {
	position: absolute;
	z-index: -1;
	content: '';
	right: 0;
	top: -8px;
  	width: 0; 
  	height: 0; 
  	border-left: 12px solid transparent;
  	border-right: 12px solid transparent;
  	border-bottom: 12px solid var(--white);
}
.btn-box-icon[aria-expanded="true"] {
	color: var(--primary);
}

.dropdown-cart {
    min-width: 520px;
    min-height: 120px;
    padding: 30px 10px;
    padding-bottom: 55px;
}
.empty-cart {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-60%);
	text-align: center;
}

.cart-notification-section {
	padding-top: 10px;
	background-color: var(--white);
    max-height: 420px;
    overflow: hidden;
    overflow-y: auto;
}

.product-cart-wrap {
	position: relative;
	background-color: var(--white);
	margin: 0 !important;
	margin-bottom: 15px !important;
	border: none;
	box-shadow: 0px 8px 22px -5px rgba(149, 164, 175, 0.2);
	padding: 10px 15px !important;
	border-radius: 2px;
}
.product-not-remove {
	position: absolute;
	top: -8px;
	left: -8px;
	z-index: 2;
	color: var(--white);
	width: 20px;
	height: 20px;
	cursor: pointer;
	text-align: center;
	line-height: 20px;
	font-size: 10px;
	border-radius: 50%;
	background-color: var(--blue-dark);
    transition: all 200ms linear;
}
.product-not-remove:hover {
	background-color: var(--primary);
}

.cart-notification-section-img-row-h  {
	height: 90px;
}
.cart-notification-section-img  {
	height: 90px;
	width: 90px;
	position: relative;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	text-align: center;
}
.cart-notification-section-img img  {
	height: auto;
	width: auto;
	max-height: 90px;
	max-width: 90px;
	display: block;
}

.cart-not-link {
	position: absolute;
	bottom: 15px;
	right: 20px;
	z-index: 5;
	width: calc(100% - 40px);
}

/* #Side navigation
================================================== */

.btn-search {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 20;
	width: 48px;
}
.side-nav-link {
	padding: 0 20px;
	width: 100%;
	position: relative;
	cursor: pointer;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	color: var(--paragraph-2);
	background-color: var(--white);
	text-align: left;
	font-size: 13px;
	font-weight: 600;
	line-height: 16px;
	height: 52px;
	border-radius: 2px;
	box-shadow: 0px 8px 22px -5px rgba(149, 164, 175, 0.2);
    transition: all 200ms linear;
}
.side-nav-link:hover,
.side-nav-link.active {
	color: var(--white);
	background-color: var(--primary);
}
.card,
.card-header,
.card-body {
	padding: 0;
	margin: 0;
	border-radius: 0;
	border: none;
	background-color: transparent;
}
.card-body {
	padding-bottom: 5px;
}
.side-nav-link[aria-expanded="true"] {
	color: var(--white);
	background-color: var(--primary);
}
.side-nav-link .uil {
    transition: transform 350ms linear;
}
.side-nav-link[aria-expanded="true"] .uil {
	transform: rotate(315deg);
}


/* #Scrollbar
================================================== */

.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}
.ps__rail-x {
  display: none;
  opacity: 1;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__rail-y {
  display: none;
  opacity: 1;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}
.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}
.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 1;
}
.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: transparent;
  opacity: 1;
}
.ps__thumb-x {
  background-color: var(--blue-dark-2);
  border-radius: 3px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 5px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
  opacity: 0.3;
}
.ps__thumb-y {
  background-color: var(--blue-dark-2);
  border-radius: 3px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 5px;
  /* there must be 'right' for ps__thumb-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
  opacity: 0.3;
}
.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: var(--primary);
  height: 4px;
  opacity: 1;
}
.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: var(--primary);
  width: 4px;
  opacity: 1;
}
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}


/* #Hero section
================================================== */

.background-hero {
    background-size: cover;
    background-position: top left;
    background-image: url('../img/background-hero.svg');
}
.section-center {
    position: absolute;
	width: 100%;
	display: block;
	top: 50%;
	left: 0;
	z-index: 9;
	transform: translateY(-50%);
}
.hero-text {
    color: var(--blue-dark);
    font-size: 50px;
	line-height: 1.2;
}
.hero-subtitle {
    color: var(--primary);
    font-size: 15px;
    line-height: 1;
    letter-spacing: -0.2px;
	font-weight: 600;
	display: inline-block;
	background-color: var(--white);
	border-radius: 2px;
	padding: 12px 18px;
	box-shadow: 0px 8px 22px -5px rgba(149, 164, 175, 0.4);
}
.section-bottom {
    position: absolute;
	width: 100%;
	display: block;
	bottom: 40px;
	left: 0;
	z-index: 30;
}


.slide-img  {
	height: 70vh;
	width: 100%;
	position: relative;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
}
.slide-img img  {
	height: auto;
	width: auto;
	max-height: 100%;
	max-width: 100%;
	display: block;
}




.c-scroll-down {
    position: relative;
	display: inline-block;
	margin: 0 auto;
	text-align: center;
    color: var(--paragraph);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}
.c-scroll-down-icon {
    position: relative;
    height: 36px;
	display: block;
	text-align: center;
	margin: 0 auto;
    width: 22px;
    border-radius: 10px;
    border: 2px solid rgba(22,22,22,.4);
}
.c-scroll-down-icon:before {
    position: absolute;
    top: 5px;
    left: 50%;
    height: 4px;
    width: 4px;
    margin-left: -2px;
    border-radius: 50%;
    animation-name: scroll;
    animation-duration: 2.1s;
    animation-iteration-count: infinite;
    background-color: rgba(22,22,22,.6);
    content: "";
}
@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0)
    }
    70% {
        opacity: 0;
        transform: translateY(14px)
    }
    75% {
        opacity: 0;
        transform: translateY(0)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}


.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 150px;
    left: 0;
    width: 100%;
	z-index: 200;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.swiper-pagination-bullet {
    width: 4px;
    height: 10px;
    display: inline-block;
    border-radius: 1px;
	background-color: var(--paragraph);
    opacity: 1;
	cursor: pointer;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.swiper-pagination-bullet:hover {
	background-color: var(--primary);
}
.swiper-pagination-bullet-active:hover,
.swiper-pagination-bullet-active {
    opacity: 1;
	background-color: var(--primary);
	height: 30px;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}
.swiper-pagination-bullet:active,
.swiper-pagination-bullet:focus {
    border: none;
	outline: none;
}
.swiper-wrapper,
.swiper-slide  {
    position: relative;
    padding: 0;
    margin: 0;
}
.swiper-hero .swiper-pagination-bullets {
    bottom: auto;
    left: 50px;
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}
.swiper-hero .swiper-pagination-bullet {
    display: block;
    margin: 7px 0 !important;
}

.hor-pagination .swiper-pagination-bullets {
    bottom: 0;
}
.hor-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 4px;
}
.hor-pagination .swiper-pagination-bullet-active:hover,
.hor-pagination .swiper-pagination-bullet-active {
	height: 4px;
    width: 30px;
}


.swiper-button-next::after,
.swiper-button-prev::after{
	display: none;
}
.swiper-button-next,
.swiper-button-prev{
    position:absolute;
    top: 50%;
    right: 50px;
    left: auto;
    bottom: auto;
    border-radius: 2px;
    border: none;
    background-color: var(--white);
	box-shadow: 0 0 24px rgba(149, 164, 175, 0.4);
    width: 35px;
    height: 35px;
    z-index: 50;
    cursor: pointer;
    font-size: 16px;
    color: var(--paragraph);
    background-image: none;
    transition: all 200ms linear;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	text-align: center;
}
.swiper-button-next:hover,
.swiper-button-prev:hover{
    background-color: var(--primary);
    color: var(--white);
	box-shadow: 0 0 24px rgba(247,164,94,.4);
}
.swiper-button-prev{
	margin-top: -40px;
}
.swiper-button-next{
	margin-top: 5px;
}
.swiper-button-next:active,
.swiper-button-prev:active,
.swiper-button-next:focus,
.swiper-button-prev:focus{
    border: none;
    outline: none;
	box-shadow: 0px 24px 34px -5px rgba(149, 164, 175, 0.7);
}
.swiper-button-next:active:hover,
.swiper-button-prev:active:hover,
.swiper-button-next:focus:hover,
.swiper-button-prev:focus:hover{
    border: none;
    outline: none;
	box-shadow: 0px 24px 34px -5px rgba(149, 164, 175, 0.7);
}

/* #Product slide
================================================== */

.product-slide-wrap {
	border: 3px solid rgba(149, 164, 175, 0.06);
}
.product-slide-wrap-img {
	height: 120px;
	width: 100%;
	position: relative;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	text-align: center;
}
.product-slide-wrap-img img  {
	height: auto;
	width: auto;
	max-height: 120px;
	max-width: 100%;
	display: block;
}
.product-slide-wrap-rate {
	position: relative;
	display: block;
	text-align: center;
	margin: 0 auto;
}
.product-slide-wrap-rate img {
	width: 16px;
	height: auto;
	display: inline-block;
	text-align: center;
	margin: 0 1px auto;
}
.product-slide-wrap-description {
	min-height: 50px;
}
.product-slide-wrap-name {
	min-height: 70px;
}
.product-slide-wrap-price {
	min-height: 80px;
}

.product-slide-wrap .ribbon {
    position: absolute;
    top: 10px;
    left: -10px;
    z-index: 2;
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    background-color: var(--white);
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    padding: 12px 6px;
    border-radius: 2px;
    transition: all 200ms linear;
    text-transform: uppercase;
	box-shadow: 0px 8px 15px 0 rgba(149, 164, 175, 0.2);
}
.product-slide-wrap .ribbon.recommendation {
    color: var(--primary);
}
.product-slide-wrap .ribbon.new {
    color: var(--blue-dark);
}

.commercial-wrap {
	border: 3px solid rgba(149, 164, 175, 0.06);
}
.commercial-wrap img {
	width: 100%;
	height: auto;
	display: block;
}

/* #Content
================================================== */

.background-content {
    background-size: cover;
    background-position: bottom left;
    background-image: url('../img/selected-categories-bg.jpg');
}
.category-down {
	border: 3px solid rgba(149, 164, 175, 0.06);
}
.link-light {
	color: var(--blue-light);
}
.link-light:hover {
	color: var(--primary);
}
.category-down-img {
	position: absolute;
	border-radius: 4px;
	background-color: var(--blue-dark-2);
	box-shadow: 0px 16px 30px -5px rgba(22, 22, 22, 0.2);
	right: -15px;
	top: -15px;
	z-index: 2;
	width: 70px;
	height: 70px;
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: center;
}

/* #Tooltip
================================================== */

.tooltip {
  	line-height: 20px;
  	font-size: 14px;
  	opacity: 0;
  	filter: drop-shadow(0px 12px 22px rgba(149, 164, 175, 0.3));
}
.tooltip.show {
  	opacity: 1;
}
.tooltip-inner {
  	padding: 10px 25px;
  	padding-top: 12px;
  	max-width: 260px;
  	color: var(--paragraph-2);
  	text-align: left;
  	background-color: var(--white);
  	border-radius: 2px;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  border-top-color: var(--white);
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  border-right-color: var(--white);
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  border-bottom-color: var(--white);
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  border-left-color: var(--white);
}


/* #Forms
================================================== */

.form-group{ 
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
}
.form-group label { 
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	color: var(--paragraph);
}
.form-style {
	padding: 8px 20px;
	width: 100%;
	border-radius: 2px;
	font-size: 15px;
	line-height: 24px;
	font-weight: 400;
	color: var(--blue-dark);
	border: none;
	background-color: var(--blue-light);
    transition: all 200ms linear;
}
.form-style.bigger {
	padding: 12px 20px;
	font-size: 16px;
}
.form-style:focus,
.form-style:active {
	border: none;
	outline: none;
	box-shadow: none;
}
.textarea-h-150 {
	height: 150px;
}
.form-group input::placeholder  {
	opacity: 0.8;
    transition: all 200ms linear;
}
.form-group input::-ms-input-placeholder  {
	opacity: 0.8;
    transition: all 200ms linear;
}
.form-group input::-moz-placeholder  {
	opacity: 0.8;
    transition: all 200ms linear;
}
.form-group input::-moz-placeholder  {
	opacity: 0.8;
    transition: all 200ms linear;
}
.form-group input::-webkit-input-placeholder  {
	opacity: 0.8;
    transition: all 200ms linear;
}
.form-group textarea::placeholder  {
	opacity: 0.8;
    transition: all 200ms linear;
}
.form-group textarea::-ms-input-placeholder  {
	opacity: 0.8;
    transition: all 200ms linear;
}
.form-group textarea::-moz-placeholder  {
	opacity: 0.8;
    transition: all 200ms linear;
}
.form-group textarea::-moz-placeholder  {
	opacity: 0.8;
    transition: all 200ms linear;
}
.form-group textarea::-webkit-input-placeholder  {
	opacity: 0.8;
    transition: all 200ms linear;
}

.form-group input[type="checkbox"] {
	position: absolute;
	width: 8px;
	height: 8px;
	margin: 0;
	border: 1px solid transparent;
	top: 14px;
	left: 82px;
}

.form-group .checkbox {
	position: relative;
	padding-left: 32px;
	cursor: pointer;
	letter-spacing: 1px;
	font-size: 14px;
	line-height: 20px;
	color: var(--paragraph);
}
.form-group .checkbox:after {
	position: absolute;
	content: '';
	top: 50%;
	margin-top: -10px;
	left: 0;
	width: 20px;
	height: 20px;
	border-radius: 2px;
	background-color: var(--blue-light);
}
.form-group .checkbox:before {
	position: absolute;
	font-family: 'unicons-line';
	content: '\e9c3';
	opacity: 0;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: 16px;
	text-align: center;
	color: var(--white);
	background-color: var(--primary);
	border-radius: 2px;
	z-index: 2;
    transition: all 200ms linear;
}
.form-group input[type="checkbox"]:checked + .checkbox:before {
	opacity: 1;
}


[type="radio"]:checked,
[type="radio"]:not(:checked){
	position: absolute;
	left: -9999px;
}
[type="radio"].checkbox:checked + label,
[type="radio"].checkbox:not(:checked) + label{
	position: relative;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-align-items: center;
	-moz-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-ms-flex-pack: center;
	height: 80px;
	padding: 0;
	border-radius: 2px;
	border: none;
	background-color: var(--blue-light);
	width: 100%;
	cursor: pointer;
	margin: 0 !important;
	text-align: center;
    transition: all 200ms linear;
}
[type="radio"].checkbox:not(:checked) + label{
	z-index: 1;
}
label.for-checkbox:hover{
	z-index: 2;
}
[type="radio"].checkbox:checked + label{
	z-index: 2;
}
label.for-checkbox .paragraph {
	line-height: 24px;
	color: var(--paragraph-2);
    transition: all 200ms linear;
}
[type="radio"].checkbox:checked + label .paragraph{
	color: var(--primary) !important;
}
.checkbox-check {
	position: absolute;
	border-radius: 50%;
	top: 10px;
	right: 10px;
	background-color: var(--primary);
	color: var(--white);
	text-align: center;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: 14px;
	opacity: 0;
    transition: all 200ms linear;
}
[type="radio"].checkbox:checked + label .checkbox-check{
	opacity: 1;
}


/* #Nice select
================================================== */

.nice-select {
	-webkit-tap-highlight-color: var(--blue-light);
	background-color: var(--blue-light);
	border: none;
	border-radius: 2px;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	color: var(--blue-dark-2);
	float: left;
	overflow: hidden;
	font-family: inherit;
	font-size: 13px;
	line-height: 24px;
	font-weight: 500;
	letter-spacing: 0;
	outline: none;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 15px;
	padding-right: 30px;
	position: relative;
	text-align: left !important;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
	white-space: nowrap;
	width: auto; 
}
.big-select .nice-select {
	color: var(--blue-dark-2);
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 20px;
}
.nice-select.open {
	overflow: visible;
	background-color: var(--blue-light);
}
.nice-select:hover {
	background-color: var(--blue-light);
}
.nice-select:after {
    border-bottom: 2px solid var(--paragraph);
    border-right: 2px solid var(--paragraph);
    content: '';
    display: block;
    height: 7px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
            transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 7px; 
}
.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg); 
}
.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); 
}
.nice-select.disabled {
    border-color: #ededed;
	color: var(--white);
    pointer-events: none; 
}
.nice-select.disabled:after {
      border-color: #cccccc; 
}
.nice-select.wide {
	width: 100%; 
}
.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important; 
}
.nice-select.right {
    float: right; 
}
.nice-select.right .list {
    left: auto;
    right: 0; 
}
.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px; 
}
.nice-select.small:after {
    height: 4px;
    width: 4px; 
}
.nice-select.small .option {
    line-height: 34px;
    min-height: 34px; 
}
.nice-select .list {
    background-color: var(--white);
    border-radius: 2px;
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    overflow-y: auto;
	max-height: 260px;
    padding: 0;
    pointer-events: none;
    position: absolute;
	width: 100%;
	box-shadow: 0px 12px 22px rgba(149, 164, 175, 0.15);
	left: 0;
	margin-left: 0;
    top: 100%;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
            transform: translateY(-15px);
    -webkit-transition: all 0.3s linear, opacity 0.15s ease-out;
    transition: all 0.3s linear, opacity 0.15s ease-out;
    z-index: 9; 
}

.nice-select .list::-webkit-scrollbar {
	width: 5px;
}
.nice-select .list::-webkit-scrollbar-track {
	background-color: var(--white); 
}
.nice-select .list::-webkit-scrollbar-thumb {
	background-color: var(--blue-light); 
}
.nice-select .list::-webkit-scrollbar-thumb:hover {
	background-color: var(--primary);
}

.nice-select .option {
    cursor: pointer;
    font-weight: 500;
    list-style: none;
	font-size: 12px;
	padding-top: 7px;
	padding-bottom: 7px;
    outline: none;
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s; 
} 
.nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: var(--primary);
    font-weight: 500;
    color: var(--white);
}
.nice-select .option:hover {
    color: var(--white);
	background-color: var(--primary);
    font-weight: 500;
}
.nice-select .option.selected {
    font-weight: 500 !important;
}
.nice-select .option.disabled {
    background-color: transparent;
	color: var(--blue-dark-2);
    cursor: default; 
}
.no-csspointerevents .nice-select .list {
	display: none; 
}
.no-csspointerevents .nice-select.open .list {
	display: block; 
}

#contactForm input.has-error,
#contactForm textarea.has-error{
	border: 1px solid red;
}

/* #Modals
================================================== */

.modal-content.modal-custom {
	width: 100%;
	max-width: 440px;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: subpixel-antialiased;
    border-radius: 4px;
}
.modal-dialog.modal-custom {
	position: absolute;
	width: auto;
	top: 50%;
	left: 50%;
	pointer-events: none;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 440px;
	margin: 0;
	padding: 0;
    border-radius: 4px;
    max-height: 100vh;
}
.modal.fade .modal-dialog.modal-custom {
	transition: -webkit-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
	-webkit-transform: translate(-50%, -55%);
	transform: translate(-50%, -55%);
}
@media (prefers-reduced-motion: reduce) {
	.modal.fade .modal-dialog.modal-custom {
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
	}
}
.modal {
	z-index: 1121050;
	margin: 0;
	padding: 0;
    border-radius: 4px;
}
.modal-backdrop {
	z-index: 1121040;
	background-color: var(--blue-dark-2);
}
.modal.show .modal-dialog.modal-custom {
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.modal-backdrop.show {
	opacity: 0.89;
}
.modal-body {
	margin: 0;
	padding: 40px 10px 25px 10px;
    border-radius: 4px;
}
.modal-content {
	position: relative;
	border: none;
	box-shadow: 8px 14px 38px 0 rgba(31, 32, 41, 0.4);
	margin: 0;
	padding: 0;
	background-color: var(--white);
    border-radius: 4px;
}
.modal-footer {
	border-top: none;
	margin: 0;
	padding: 0;
}
.modal-body .close {
	position: absolute;
	height: 28px;
	width: 28px;
	border-radius: 0;
	top: 20px;
	right: 20px;
	padding: 0;
	margin: 0;
	opacity: 1;
	text-shadow: none;
	font-weight: normal;
	background-color: transparent;
	color: var(--blue-dark);
	cursor: pointer;
	z-index: 100;
	opacity: 0.7;
    transition: all 200ms linear;
}
.modal-body .close:after,
.modal-body .close:before {
	position: absolute;
	content: '';
	height: 2px;
	width: 100%;
	top: 50%;
	left: 0;
	background-color: var(--blue-dark);
	z-index: 100;
    transition: all 200ms linear;
}
.modal-body .close:after {
	transform: rotate(45deg);
}
.modal-body .close:before {
	transform: rotate(-45deg);
}
.modal-body .close:hover:after,
.modal-body .close:hover:before {
	transform: rotate(0);
}
.modal-body .close:hover {
	background-color: transparent;
}
.modal-body .close:active,
.modal-body .close:focus{
	border: none;
	outline: none;
	box-shadow: none;
}


/* #Pages elements
================================================== */

.pagination {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}
.pagination li {
	position: relative;
	display: inline-block;
	padding: 0;
	margin: 0 2px;
	list-style: none;
}
.pagination li a {
	display: block;
	border-radius: 2px;
	border: 2px solid var(--blue-light);
	height: 30px;
	width: 30px;
	background-color: var(--white);
	font-size: 13px;
	line-height: 26px;
	font-weight: 600;
	color: var(--paragraph);
	transition: all 200ms linear;
}
.pagination li a.is-active,
.pagination li a:hover {
	background-color: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}
.pagination li a.is-disabled {
	opacity: 0.4;
	pointer-events: none;
}

.pagination li a.is-active {
	pointer-events: none;
}

.page-top-links a {
	position: relative;
	display: inline-block;
}
.page-top-links a:after {
	position: absolute;
	display: block;
	content: '/';
	top: 0;
	right: -17px;
	z-index: 2;
	color: var(--paragraph);
	pointer-events: none;
}

.single-item-img {
	border: 4px solid var(--blue-light);
	transition: all 200ms linear;
}
.single-item-img:hover {
	box-shadow: 0px 24px 32px rgba(149, 164, 175, 0.15);
	border-color: var(--white);
}
.single-item-img img {
	transition: all 200ms linear;
}
.single-item-img:hover img {
	opacity: 0.7;
	transform: scale(0.95);
}

.sub-price {
	display: inline-block;
	transform: translateY(7px);
}


.quantity {
	position: relative;
	display: block;
}
.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button{
	-webkit-appearance: none;
	margin: 0;
}
.quantity input[type=number]{
	-moz-appearance: textfield;
}
.quantity input {
	width: 80px;
	height: 48px;
	font-weight: 600;
	font-size: 22px;
	line-height: 44px;
	display: block;
	color: var(--paragraph);
	padding: 0;
	margin: 0;
	margin: 0;
	padding-right: 25px;
	text-align: center;
	border-radius: 2px;
	border: 2px solid var(--primary);
	background-color: transparent;
}
.quantity input:focus {
	outline: 0;
}
.quantity-nav {
	position: absolute;
	top: 24px;
	right: 0;
	z-index: 20;
}
.quantity-button {
	position: absolute;
	right: 0;
	cursor: pointer;
	text-align: center;
	width: 25px;
	height: 24px;
	font-size: 14px;
	font-family: 'unicons-line';
	color: var(--paragraph);
	display: block;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	border-left: 2px solid var(--primary);
    -webkit-transition: all 300ms linear;
    transition: all 300ms linear;
}
.quantity-button:hover {
	color: var(--white);
	background-color: var(--primary);
}
.quantity-button.quantity-up {
	bottom: 0;
	line-height: 26px;
	border-bottom: 1px solid var(--primary);
	border-top-right-radius: 2px;
}
.quantity-button.quantity-up:before{
	content: '\e98c';
}
.quantity-button.quantity-down {
	top: 0;
	line-height: 22px;
	border-top: 1px solid var(--primary);
	border-bottom-right-radius: 2px;
}
.quantity-button.quantity-down:before {
	content: '\e983';
}

.rate-1 {
	display: inline-block;
	transform: translate(5px, 3px);
}
.rate-2 {
	display: inline-block;
	transform: translate(-4px, -3px);
}

.btn-facebook {
	padding: 0 15px;
	height: 28px;
	font-size: 13px;
	background-color: var(--blue);
	color: var(--white);
}
.btn-facebook:hover {
	background-color: var(--blue-dark-2);
	color: var(--white);
}


.rating {
  	display: flex;
  	width: 100%;
  	justify-content: center;
  	overflow: hidden;
  	flex-direction: row-reverse;
  	height: 130px;
  	position: relative;
}
.rating-0 {
  	filter: grayscale(100%);
}
.rating > input {
  	display: none;
}
.rating > label {
  	cursor: pointer;
  	width: 30px;
  	height: 30px;
  	margin-top: auto;
  	background-image: url("../img/star-line.svg");
  	background-repeat: no-repeat;
  	background-position: center;
  	background-size: 76%;
  	transition: .3s;
}
.rating > input:checked ~ label,
.rating > input:checked ~ label ~ label {
  	background-image: url("../img/star.svg");
}
.rating > input:not(:checked) ~ label:hover,
.rating > input:not(:checked) ~ label:hover ~ label {
  	background-image: url("../img/star.svg");
}
.emoji-wrapper {
  	width: 100%;
  	text-align: center;
  	height: 90px;
  	overflow: hidden;
  	position: absolute;
  	top: 0;
  	left: 0;
}
.emoji-wrapper:before,
.emoji-wrapper:after{
  	content: "";
  	height: 10px;
  	width: 100%;
  	position: absolute;
  	left: 0;
  	z-index: 1;
}
.emoji-wrapper:before {
  	top: 0;
  	background: linear-gradient(to bottom, rgba(244,243,249,1) 0%,rgba(244,243,249,1) 35%,rgba(244,243,249,0) 100%);
}
.emoji-wrapper:after{
  	bottom: 0;
  	background: linear-gradient(to top, rgba(244,243,249,1) 0%,rgba(244,243,249,1) 35%,rgba(244,243,249,0) 100%);
}
.emoji {
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  	transition: .3s;
}
.emoji > img {
  	margin: 5px 0; 
  	width: 80px;
  	height: 80px;
  	flex-shrink: 0;
}
#rating-1:checked ~ .emoji-wrapper > .emoji { transform: translateY(-90px); }
#rating-2:checked ~ .emoji-wrapper > .emoji { transform: translateY(-180px); }
#rating-3:checked ~ .emoji-wrapper > .emoji { transform: translateY(-270px); }
#rating-4:checked ~ .emoji-wrapper > .emoji { transform: translateY(-360px); }
#rating-5:checked ~ .emoji-wrapper > .emoji { transform: translateY(-450px); }
.feedback {
	background-color: var(--blue-light);
 	width: 100%;
  	max-width: 100%;
  	padding: 10px 20px;
  	border-radius: 2px;
  	display: flex;
  	flex-direction: column;
  	flex-wrap: wrap;
  	align-items: center;
}


.table {
	color: var(--paragraph);
	border-radius: 2px !important;
  	border: 4px solid var(--blue-light) !important;
}
.table th,
.table td {
  	padding: 10px;
  	border-top: 2px solid var(--blue-light);
}
.table-bordered th,
.table-bordered td,
.table-bordered thead th,
.table-bordered tbody + tbody {
  	border-color: var(--blue-light);
  	border-width: 2px;
}
.table th {
  	font-size: 15px;
  	font-weight: 600;
}
.table td {
  	font-size: 14px;
  	font-weight: 400;
}

.table-dark,
.table-dark.table-hover tbody tr:hover {
	color: var(--paragraph);
	background-color: var(--white);
}


.background-footer {
    background-size: cover;
    background-position: left top;
    background-image: url('../img/background-footer.svg');
}


.cart-img img {
    width: 140px;
    height: auto;
    display: block;
    transition: all 200ms linear;
}
.cart-img img:hover {
    opacity: 0.7;
}

.cart-item-line {
    border-top: 1px solid var(--blue-light);
}

.old-price {
    position: relative;
	display: inline-block;
	margin: 0 auto;
	opacity: 0.5;
}
.old-price::before {
    position: absolute;
	content: '';
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	z-index: 0;
	background-color: var(--blue-dark);
	margin-top: -1px;
}




/* #Colors, Backgrounds and Settings
================================================== */

.color-primary {
	color: var(--primary);
}
.color-white {
	color: var(--white);
}
.color-paragraph-2 {
	color: var(--paragraph-2);
}
.color-blue-light {
	color: var(--blue-light);
}
.color-red {
	color: var(--red);
}
.background-white {
	background-color: var(--white);
}
.background-primary {
	background-color: var(--primary);
}
.background-black {
	background-color: var(--black);
}
.background-blue-dark {
	background-color: var(--blue-dark);
}
.background-blue-light {
	background-color: var(--blue-light);
}

.size-13 {
	font-size: 13px;
}
.size-14 {
	font-size: 14px;
}
.size-15 {
	font-size: 15px;
}
.size-16 {
	font-size: 16px;
}
.size-18 {
	font-size: 18px;
}
.size-20 {
	font-size: 20px;
}
.size-22 {
	font-size: 22px;
}
.size-24 {
	font-size: 24px;
}
.size-36 {
	font-size: 36px;
}
.size-40 {
	font-size: 40px;
}
.size-50 {
	font-size: 50px;
}

.line-height-20 {
	line-height: 20px;
}
.line-height-22 {
	line-height: 22px;
}

.over-hide {
    overflow: hidden;
}
.z-bigger-10 {
    z-index: 10 !important;
}
.z-bigger-20 {
    z-index: 20 !important;
}
.full-height {
	height: 100vh;
}
.img-wrap img {
	width: 100%;
	height: auto;
	display: block;
}
.weight-300 {
    font-weight: 300;
}
.weight-400 {
    font-weight: 400;
}
.weight-500 {
    font-weight: 500;
}
.weight-600 {
    font-weight: 600;
}
.weight-700 {
    font-weight: 700;
}
.border-2 {
    border-radius: 2px;
}
.border-4 {
    border-radius: 4px;
}



/* #Media
================================================== */

@media (max-width: 1500px) { 
}

@media (max-width: 1300px) {
}

@media (max-width: 1199px) { 
	.nav-item {  
		margin: 0;
		margin-bottom: 15px;
	}
	.cbp-af-header {
		background-color: var(--white);
		padding-top: 10px;
		box-shadow: 0px 0px 1px 0 rgba(149, 164, 175, 0.6);
	}
	.cbp-af-header.cbp-af-header-shrink {
		box-shadow: 0px 8px 20px -5px rgba(149, 164, 175, 0.2);
	}
	.navbar-brand {
		height: 50px;
	}
	.on-mob-header {
		position: absolute;
		right: 55px;
		top:2px;
		z-index: 2;
		display: block;
	}
	.background-hero {
	    background-image: none;
	}
	.slide-img {  
		-webkit-justify-content: center;
		-moz-justify-content: center;
		-ms-justify-content: center;
		justify-content: center;
		-ms-flex-pack: center;
		text-align: center;
		opacity: 0.2;
	}
	.hero-text {
	    font-size: 40px;
	}
	.cart-img img {
	    width: 100px;
	}
}

@media (max-width: 991px) { 
	.hero-text {
	    font-size: 30px;
	}
}

@media (max-width: 767px) {
	.dropdown-cart {
	    min-width: 320px;
		padding-bottom: 55px !important;
	}
	.cart-notification-section {
	    max-height: 350px;
	}
	.hero-text {
	    font-size: 26px;
	}
	.hero-subtitle-down {
	    font-size: 15px;
	    line-height: 1.3;
	    font-weight: 600;
	}
	.category-down-img {
		right: -5px;
		top: -5px;
	}
	.mob-category-sidebar {
		background-color: var(--blue-light);
		padding: 5px 15px;
		border-radius: 2px;
	}
	.page-top-links a {
		display: block;
	}
	.page-top-links a:after {
		display: none;
	}
}

@media (max-width: 575px) {
	.dropdown-menu:before {
		display: none;
	}
	.dropdown-menu {
		right: -113px;
	}
	.dropdown-menu.dropdown-user {
		right: -57px;
	}
	.dropdown-menu {
	    padding: 20px;
	    min-width: 320px;
	}
}

@media (-webkit-min-device-pixel-ratio: 2), 
(min-resolution: 192dpi) { 
}

/* Ajax loader*/
.loading {
	position: fixed;
	z-index: 99999999;
	height: 2em;
	width: 2em;
	overflow: visible;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: none;
}

/* Transparent Overlay */
.loading:before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	opacity: .6;
}

/* https://loading.io/css/ */
.lds-dual-ring {
	display: inline-block;
	width: 64px;
	height: 64px;
}

.lds-dual-ring:after {
	content: " ";
	display: block;
	width: 46px;
	height: 46px;
	margin: 1px;
	border-radius: 50%;
	border: 5px solid;
	border-color: #f7a45e transparent #f7a45e transparent;
	animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.bootbox .modal-content {
	padding: 10px;
}

.bootbox .modal-header {
	margin: 0 auto;
	padding: 20px 10px 10px 10px;
	border-radius: 4px;
	border: 0;
}

.bootbox .modal-body {
	width: 100%;
	margin: 0 auto;
	padding: 20px 10px 30px 10px;
	border-radius: 4px;
	border: 0;
	text-align: center;
}

.bootbox .modal-footer {
	border-top: none;
	margin: 0 auto;
	padding: 0;
}

.bootbox .modal-header .close {
	position: absolute;
	height: 28px;
	width: 28px;
	border-radius: 0;
	top: 20px;
	right: 20px;
	padding: 0;
	margin: 0;
	text-shadow: none;
	font-weight: normal;
	background-color: transparent;
	color: var(--blue-dark);
	cursor: pointer;
	z-index: 100;
	opacity: 0.7;
	transition: all 200ms linear;
}
.bootbox .modal-header .close:after,
.bootbox .modal-header .close:before {
	position: absolute;
	content: '';
	height: 2px;
	width: 100%;
	top: 50%;
	left: 0;
	background-color: var(--blue-dark);
	z-index: 100;
	transition: all 200ms linear;
}
.bootbox .modal-header .close:after {
	transform: rotate(45deg);
}
.bootbox .modal-header .close:before {
	transform: rotate(-45deg);
}
.bootbox .modal-header .close:hover:after,
.bootbox .modal-header .close:hover:before {
	transform: rotate(0);
}
.bootbox .modal-header .close:hover {
	background-color: transparent;
}
.bootbox .modal-header .close:active,
.bootbox .modal-header .close:focus{
	border: none;
	outline: none;
	box-shadow: none;
}

.order-overview-wrap {
	border: 3px solid var(--blue-light);
}

.Zebra_Pagination {
	clear: both;
	width: 100%;
	overflow: hidden;
}

.Zebra_Pagination ul {
	position: relative;
	left: 50%;
	list-style-type: none;
	margin: 0;
	padding: 0;
	float: left
}

.Zebra_Pagination li {
	position: relative;
	float: left;
	right: 50%
}

.Zebra_Pagination .pagination-zebra {
	display: inline-block;
}

.Zebra_Pagination li {
	display: inline;
}

.Zebra_Pagination a,
.Zebra_Pagination span {
	padding: 12px 24px;
	color: var(--paragraph);
	text-decoration: none;
	background-color: #FFF;
	border: 1px solid #DDD;
	display: block;
	float: left;
	position: relative;
	margin-left: -1px;
}
.Zebra_Pagination .page-item.active .page-link {
	background-color: var(--primary);
	border-color: var(--primary);
}

.Zebra_Pagination .page-link:hover {
	color: white;
	background-color: var(--primary);
	border-color: var(--primary);
}

.Zebra_Pagination .page-link:focus {
	z-index: 2;
	outline: 0;
	box-shadow: none;
}

@media (min-width: 576px) {
	.Zebra_Pagination a,
	.Zebra_Pagination span {
		padding: 6px 12px;
	}
}

.Zebra_Pagination.pagination-zebra li.active a {
	background-color: var(--primary);
	color: var(--white);
	border-color: var(--primary);
	cursor: default;
}

.Zebra_Pagination.pagination-zebra li a:hover,
.Zebra_Pagination.pagination-zebra li span:hover {
	background-color: var(--primary);
	color: var(--white);
	border-color: var(--primary);
}

.Zebra_Pagination li.disabled a {
	color: #DEDEDE;
	background-color: transparent;
	border-color: #DEDEDE;
	cursor: default;
}

.Zebra_Pagination li.disabled a:hover {
	color: #DEDEDE;
	background-color: transparent;
	border-color: #DEDEDE;
}

@media screen and (max-width:767px) {
	/*h2.item-pagination-title {*/
	/*	font-size: 10px !important;*/
	/*}*/
}
