<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* USER VARIABLES SECTION */

:root {
	--accent: #DD4557;
	--text: #000;
	--description: #A1A8B2;
	--blue: #109EE6;
	--regular-text: 18px;
	--lineheight: 1.65;
	--radius: 15px;
	--userfont: muller-st, sans-serif;
	--titlefont: intro-st, sans-serif;
	--blue-gradient: linear-gradient(152deg, #61A0FF -1.4%, #2270E4 97.97%);
	--grey-gradient: linear-gradient(156deg, #E4E4E4 -1.62%, #FBFBFB 131.41%);
	--blue-shadow: 10px 10px 30px 0px #58A0F3;
	--shadow-light: -5px -5px 15px 0px #FFF;
	--btn-outer-shadow: 10px 10px 60px 0px #CECECE;
	--transition: all .3s linear;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl { --bs-gutter-x: .625rem; }
.row, .row &gt; * { --bs-gutter-x: 1.25rem; }

/* FONTS LOAD SECTION */

@font-face { src: url("../fonts/Intro-Black-Caps.57fd73564df5.woff2") format("woff2"); font-family: "intro-st"; font-weight: 400; font-style: normal; }
@font-face { src: url("../fonts/MullerMedium.b77b0d58cac4.woff2") format("woff2"); font-family: "muller-st"; font-weight: 500; font-style: normal; }
@font-face { src: url("../fonts/MullerMedium.b77b0d58cac4.woff2") format("woff2"); font-family: "muller-st"; font-weight: 300; font-style: normal; }
@font-face { src: url("../fonts/MullerMedium.b77b0d58cac4.woff2") format("woff2"); font-family: "muller-st"; font-weight: 400; font-style: normal; }
@font-face { src: url("../fonts/MullerBold.e8e6ea518d83.woff2") format("woff2"); font-family: "muller-st"; font-weight: 700; font-style: normal; }
@font-face { src: url("../fonts/MullerBold.e8e6ea518d83.woff2") format("woff2"); font-family: "muller-st"; font-weight: 800; font-style: normal; }

/* GENERAL CSS SETTINGS */

::placeholder { color: #666; }
::selection { background-color: var(--accent); color: #fff; }
input, textarea { outline: none; }
input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; }

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
}
a{
	text-decoration: none;
}

/* USER STYLES */

.image {
	max-width: 100%;
	border-radius: var(--radius);
}
.accent {
	color: var(--accent);
	font-weight: 500;
}
.text-right{
	text-align: right;
}
.text-left{
	text-align: left;
}
.text-center{
	text-align: center;
}

/* The Loader */
#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	overflow: hidden;
}
.no-js #loader-wrapper {
	display: none;
}

#loader {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #fff;
	-webkit-animation: spin 1.7s linear infinite;
			animation: spin 1.7s linear infinite;
	z-index: 11;
}
#loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #fff;
	-webkit-animation: spin-reverse 0.6s linear infinite;
			animation: spin-reverse 0.6s linear infinite;
}
#loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #fff;
	-webkit-animation: spin 1s linear infinite;
			animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
0% {
	-webkit-transform: rotate(0deg);
}
100% {
	-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
0% {
	transform: rotate(0deg);
}
100% {
	transform: rotate(360deg);
}
}
@-webkit-keyframes spin-reverse {
0% {
	-webkit-transform: rotate(0deg);
}
100% {
	-webkit-transform: rotate(-360deg);
}
}
@keyframes spin-reverse {
0% {
	transform: rotate(0deg);
}
100% {
	transform: rotate(-360deg);
}
}
#loader-wrapper .loader-section {
	position: fixed;
	top: 0;
	width: 51%;
	height: 100%;
	background: var(--accent);
	z-index: 10;
}

#loader-wrapper .loader-section.section-left {
left: 0;
}

#loader-wrapper .loader-section.section-right {
right: 0;
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
transform: translateX(-100%);
transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
transform: translateX(100%);
transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
opacity: 0;
transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
visibility: hidden;
transform: translateY(-100%);
transition: all 0.3s 1s ease-out;
}


/* HEADER */
#header{
	padding: 16px 0;
	position: fixed;
	width: 100%;
	background-color: #fff;
	z-index: 9;
}
.nav{
	display: grid;
	grid-template-columns: max-content max-content;
	justify-content: center;
	gap: 50px;
}
.btn {
	background: var(--grey-gradient);
	font-size: 22px;
	font-weight: 500;
	text-decoration: none;
	color: var(--text);
	border-radius: var(--radius);
	outline: none;
	cursor: pointer;
	transition: var(--transition);
	text-align: center;
}
.btn:hover{
	background: var(--accent);
	color: #fff;
}
.btn-inner-outer-shadow {
	box-shadow: var(--shadow-light),
	var(--btn-outer-shadow);
	padding: 7px 15px;
}
.btn--lg{
	font-size: 20px;
	padding: 10px 40px;
}
.btn-add-basket:hover{
	background: var(--accent);
	color: #fff;
}
.btn-basket{
	padding: 15px 20px;
}
.icon-basket{
	max-width: 26px;
}
.mark{
	position: relative;
}
.mark::after{
	content: '';
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: linear-gradient(106deg, #DD4557 -9.97%, #E92F44 96.23%);
	box-shadow: 5px 5px 15px 0px rgba(210, 74, 67, 0.50);
	position: absolute;
	top: -8px;
	right: -8px;
	z-index: 1;
}


/* HOME LOGO */
.home-logo{
	padding: 110px 0 40px;
}
.quiz-title, .store-title{
	padding: 40px 50px;
}
.store-title{
	background: var(--grey-gradient);
	box-shadow: 10px 10px 15px 0px #CECECE inset, -5px -5px 30px 0px rgba(255, 255, 255, 0.60) inset,
				-5px -5px 25px 0px rgba(255, 255, 255, 0.65);
	border-radius: var(--radius);
	max-width: fit-content;
}
.quiz-title img, .store-title img{
	max-width: 215px;
}
.home-logo__description{
	color: var(--description);
	text-align: center;
	margin: 30px 20px 0;
	font-weight: 500;
	font-size: 18px;
}

/* SHOP */
#smart-merch, #certificates{
	margin-bottom: 60px;
}
.block-convex{
	background: var(--grey-gradient);
	box-shadow: 15px 15px 100px 0px #CECECE,
				-5px -5px 25px 0px #FFF;
	padding: 18px 20px;
	border-radius: var(--radius);
}
.title {
	margin-bottom: 18px;
}
.title__header {
	color: #000;
	font-family: var(--titlefont);
	font-size: 34px;
	font-weight: 400;
	margin-bottom: 5px;
}
.title__description {
	color: var(--description);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
}
.title__description--black{
	color: #000;
	font-weight:400;
}

.block-shop{
	background: var(--grey-gradient);
	box-shadow: 10px 10px 15px 0px #CECECE inset, -5px -5px 30px 0px rgba(255, 255, 255, 0.60) inset,
				-5px -5px 25px 0px rgba(255, 255, 255, 0.65);
	padding: 6px 20px 8px;
	margin-bottom: 30px;
	border-radius: var(--radius);
}
.product{
	padding: 20px 10px;
	position: relative;
}
.product--2col{
	height: 100%;
}
.product__carousel{
	box-shadow: var(--btn-outer-shadow),
				var(--shadow-light);
	border-radius: var(--radius);
	z-index: 1;
	margin-bottom: 10px;
}
.product__carousel .owl-item{
	border-radius: var(--radius);
}
.product__carousel .owl-nav.disabled+.owl-dots{
	position: absolute;
    bottom: -5px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
}
.product__thumb{
	border-radius: var(--radius);
	object-fit: cover;
	max-width: 375px;
	max-height: 375px;
	width:100%;
}
.product--2col .product__thumb{
	max-height: 105%;
}
.product--2col .product__carousel{
	height: calc(100% - 113px);
}
.product__name {
	font-size: 22px;
	margin-top: 20px;
	margin-bottom: 10px;
	z-index: 5;
	position: relative;
}
.product__name--category{
	font-weight: 300;
	text-transform: uppercase;
	margin-bottom: 2px;
	display: block;
}
.product__name a{
	color: var(--text);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
}
.product__name a:hover{
	color: var(--accent);
}
.product__bottom {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap:15px;
}
.block-inner-shadow{
	background-color: var(--grey-gradient);
	box-shadow: 10px 10px 15px 0px #CECECE inset, -5px -5px 30px 0px rgba(255, 255, 255, 0.60) inset,
				-5px -5px 15px 0px #FFF;
	padding: 7px 15px;
	border-radius: var(--radius);
	text-align: center;
	font-weight: 700;
	font-size: 20px;
}
.product_sale{
	background: var(--blue-gradient);
	box-shadow: 10px 10px 30px 0px #58A0F3,
				var(--shadow-light);
	color: #fff;
	width: fit-content;
	padding: 10px 10px 8px;
	text-transform: uppercase;
	font-weight: 500;
	border-radius: var(--radius);
	position: absolute;
	top: 30px;
	left: 20px;
	z-index: 2;
}

.faq__item{
	margin-bottom: 20px;
}
.faq__top{
	box-shadow: 10px 10px 45px 0px rgba(206, 206, 206, 0.70),
				var(--shadow-light);
	background: var(--grey-gradient);
	padding:10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	border-radius: var(--radius);
}
.faq__top--active{
	border-radius: var(--radius) var(--radius) 0 0;
}
.faq__question{
	color: #000;
	font-size: 24px;
	font-weight: 700;
	margin: 0;
	display: flex;
	align-items: center;
}
.faq__btn{
	position: relative;
	width: 47px;
	height: 47px;
	background: var(--grey-gradient);
	box-shadow: 5px 5px 20px 0px #CECECE,
				-2px -2px 5px 0px #FFF;
	border-radius: 50%;
}
.faq__arrow{
	position: absolute;
	margin: auto;
    left: 4px;
    right: 0;
	top:5px;
	bottom: 0;
    text-align: center;
	transition: transform .2s ease-in;
	transform: scale(1);
}
.faq__top--active .faq__arrow{
	transform: scale(-1);
	left: 2px;
	top: 0;
}

.faq__bottom{
	background-color: #fff;
	padding:10px 20px;
	min-height: 100px;
	min-height: 0;
	position: relative;
	border-radius:0 0 var(--radius) var(--radius);
}


.block-convex.footer{padding:60px 0 30px;position:relative;margin-top: 60px;}
@media (max-width: 992px){.footer:before{top:-60px}
}
.footer_inner{display:flex;justify-content:space-between;margin-bottom:20px}
@media (max-width: 992px){.footer_inner{flex-direction:column;align-items:center;justify-content:center}
}
.footer_left{display:flex;flex-flow:column wrap}
@media (max-width: 992px){.footer_left{margin-bottom:20px;align-items:center}
}
.footer_logo{width:140px;margin-bottom:30px}
.footer_tel{display:flex;align-items:center;margin-bottom:10px;font-size:22px;color:var(--text);cursor:pointer;transition:.2s linear;font-weight: 700;text-decoration: none;}
.footer_tel:hover{color:#109ee6}
.footer_tel i{font-size:30px;color:#109ee6}
.footer_bottom{display:flex;justify-content:space-between}
@media (max-width: 767px){.footer_bottom{flex-direction:column;align-items:center;text-align:center}
}
.footer_bottom_left a,.footer_bottom_right a{color:var(--text);border-bottom: 1px solid #109ee6;transition:.2s linear}
.footer_bottom_left a:hover,.footer_bottom_right a:hover{border-color:transparent}
.footer_bottom_left p,.footer_bottom_right p{margin:0;}
@media (max-width: 767px){.footer_bottom_left p,.footer_bottom_right p{margin-bottom:10px}
}
.footer_center{display:flex;flex-flow:column wrap;height:120px;min-width:365px}
@media (max-width: 992px){.footer_center{width:100%;align-items:center}
}
@media (max-width: 565px){.footer_center{flex-flow:column;height:100%;margin-bottom:15px}
}
.footer_nav{transition:.2s linear;margin-bottom:10px;margin-right:60px;color:var(--text)}
.footer_nav:hover{color:var(--blue)}
@media (max-width: 1199px){.footer_nav{margin-right:25px}
}
@media (max-width: 992px){.footer_nav{margin:0 auto 10px;width:150px;text-align:center}
}
.footer_right{text-align:right}
.footer_right .btn i{font-size:40px;margin-right:10px}
.footer_right button{margin-top:20px}
@media (max-width: 992px){.footer_right{text-align:center}
}
.footer_social{margin-bottom:40px;display:flex;align-items:center;justify-content:center}
.footer_social_icon{font-size:20px;text-decoration:none;margin-left:20px;cursor:pointer}
.footer_social_icon img{width:20px;height:20px}
.footer_social_icon:first-child{margin-left:0}
.footer_social_icon:hover{color:var(--blue)}
.footer_arrow_wrap{position:relative}
@media (max-width: 992px){.footer_arrow_wrap{display:none}
}
.footer_arrow{display:none;position:absolute;top:-20px;left:-192px}
@media (max-width: 1199px){.footer_arrow{left:-145px;max-width:680px}
}
@media (max-width: 992px){.footer_arrow{display:none}
}

.btn--mail{
	color: var(--blue);
	text-transform: uppercase;
	padding: 30px 20px;
	font-weight: 800;
	font-size: 20px;
}
/*--- TOP ---*/
.top {
    height: 70px;
    position: fixed;
    right: -100px;
	bottom: 40px;
    text-align: center;
    -webkit-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    width: 70px;
    z-index: 8;
	cursor: pointer;
}
.top.active {
    right: 10px
}

.grid-requisites{
    display:grid;
    grid-template-columns: 150px 1fr;
    gap:10px;
}
.grid-requisites__left{
    font-size: 14px;
}
.grid-requisites__right{
    font-size: 16px;
}
.btn-close{
	cursor: pointer;
}
.basket-small {
	position: fixed;
    overflow-y: auto;
	width: 680px;
	height: 100%;
	right: -100%;
	top:0;
	background-color: #EDEEF2;
	padding: 80px 40px 40px;
	pointer-events: none;
	transition: var(--transition);
	z-index: 12;
}
.basket-small.active{
	right: 0;
	pointer-events: all;
}
.basket-small__inner .btn-close {
	color: var(--accent);
}
.basket-small__inner h2{
	display: grid;
	justify-content: space-between;
	gap: 20px;
	grid-template-columns: 1fr max-content;
	font-size: 36px;
	font-family: var(--titlefont);
	margin-bottom: 50px;
}
.basket-small__items {
	display: grid;
	gap:15px;
}
.basket-small__item {
	display: grid;
	grid-template-columns: 65px auto 55px 100px 20px;
	gap: 15px;
	background: var(--grey-gradient);
    box-shadow: 10px 10px 15px 0px #CECECE inset, -5px -5px 30px 0px rgba(255, 255, 255, 0.60) inset, -5px -5px 25px 0px rgba(255, 255, 255, 0.65);
    padding: 20px;
    border-radius: var(--radius);
	align-items: center;
	margin-bottom: 10px;
}
.basket-small__descr {
	line-height: 1.1;
}
.basket-small__name {
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 5px;
}
.basket-small__param {
	font-size: 14px;
	margin-bottom: 0;
	display: block;
}
.basket-small__count {
	display: grid;
	text-align: center;
}
.basket-small__count i{
	fill: linear-gradient(222deg, #575F6B 13.27%, #2C3036 110.04%);
	cursor: pointer;
}
.basket-small__price {
	text-align: center;
	font-size: 20px;
	font-weight: 700;
}
.basket-small__sum{
	text-align: right;
	font-weight: 700;
	font-size: 26px;
	padding: 30px 20px;
}
.btn-del{
	font-size: 24px;
	cursor: pointer;
	fill: linear-gradient(222deg, #575F6B 13.27%, #2C3036 110.04%);
	color: #000;
}
.basket-small__btn{
	font-size: 28px;
    padding: 10px 50px;
    font-weight: 700;
    width: 90%;
    display: block;
    margin: 0 auto;
	box-shadow: 3px 3px 20px 0px rgba(36, 65, 93, 0.30),
				-6px -6px 30px 0px #FFF;
	background: linear-gradient(311deg, #F2F3F6 3.8%, #E5E6EC 119.99%);
}

.logo{
	width: 100%;
}
.logo__home{
	max-width: 50px;
}
.btn--header{
	padding: 15px 25px;
	margin-right: 25px;
}
.header--sticky{
	position: sticky!important;
	top: 0;
	width: 100%;
}
.section{
	padding: 50px 0;
}

.swiper {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.swiper-slide {
	background-size: cover;
	background-position: center;
}
.swiper__thumb .swiper-wrapper{
	justify-content: center;
}
.swiper__product {
	height: 80%;
	width: 100%;
	overflow: hidden;
}
.swiper__thumb {
	height: 20%;
	box-sizing: border-box;
	padding: 10px 0;
	overflow: hidden;
	cursor: pointer;
}
.swiper__thumb .swiper-slide {
	width: 25%;
	height: 100%;
	opacity: 0.4;
}
.swiper__thumb .swiper-slide-thumb-active {
	opacity: 1;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.product__wrap{
	background: #ECEDF1;
	box-shadow: 3px 3px 20px 0px rgba(36, 65, 93, 0.30),
				-6px -6px 30px 0px #FFF;
	padding: 35px;
	border-radius: var(--radius);
	height:100%;
}
@media (min-width: 768px) {
  .row.equal {
	display: flex;
	flex-wrap: wrap;
  }
}
.product__wrap .product__name {
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 15px;
	margin-top: 10px;
	line-height: 1.2;
}
.product__price {
	font-weight: 700;
	font-size: 24px;
	margin-bottom: 15px;
	line-height: 1.2;
}
.product__param {
	margin-bottom: 0;
	font-size: 14px;
}
.product__select {
	width: fit-content;
	background: var(--grey-gradient);
	font-size: 18px;
	font-weight: 500;
	text-decoration: none;
	color: var(--text);
	border-radius: var(--radius);
	outline: none;
	cursor: pointer;
	transition: var(--transition);
	padding: 3px 15px;
	box-shadow: var(--shadow-light),
				var(--btn-outer-shadow);
	outline: none;
	border: none;
	margin-bottom: 15px;
	min-width: 150px;
}
.product__add-basket{
	width: fit-content;
	font-size: 18px;
	padding: 5px 20px;
	border-radius: 25px;
	margin-top: 30px;
	display: block;
	font-weight: 700;
	min-width: 150px;
}
.product__descr {
	font-size: 16px;
	line-height: 1.2;
	margin-top: 20px;
	font-weight: 500;
}
.move-back{
	font-size: 30px;
	font-weight: 700;
	margin: 0;
	color: var(--text);
	transition: var(--transition);
}
.move-back:hover{
	color: var(--accent);
}
.basket{
	background: #ECEDF1;
	box-shadow: 3px 3px 20px 0px rgba(36, 65, 93, 0.30),
				-6px -6px 30px 0px #FFF;
	padding: 35px;
	border-radius: var(--radius);
}
hr{
	margin-top: 30px;
}
.basket__price{
	margin-bottom: 0;
	padding-right: 20px;
}
.basket__price span{
	font-weight: 500;
}
.basket-small__sum--bottom{
	padding-bottom: 0;
	margin-bottom: 0;
}
label{
	font-weight: 700;
	display: block;
	font-size: 20px;
}
.input, .woocommerce form .form-row input
, .woocommerce form .form-row .input-text{
	width: 100%;
	display: block;
	border-radius: var(--radius);
	padding: 12px 25px;
	font-size: 20px;
	border: none;
	background-color: var(--grey-gradient);
    box-shadow: 5px 4px 8px 0px #CECECE inset, -5px -5px 30px 0px rgba(255, 255, 255, 0.60) inset, -5px -5px 15px 0px #FFF;
    border-radius: var(--radius);
    font-weight: 500;
}
.form{
	margin-right: 20px;
}
.form-group{
	margin-bottom: 20px;
}
.input-radio{
	position: absolute;
	width: 25px;
	height: 25px;
	opacity: 0;
	cursor: pointer;
}
.input-radio+span {
	display: inline-flex;
	align-items: center;
	user-select: none;
}
.input-radio+span::before {
	content: '';
	display: inline-block;
	width: 25px;
	height: 25px;
	flex-shrink: 0;
	flex-grow: 0;
	border-radius: 50%;
	margin-right: 0.5em;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50% 50%;
	background-color: var(--grey-gradient);
    box-shadow: 5px 4px 4px 0px #CECECE inset, -5px -5px 30px 0px rgba(255, 255, 255, 0.60) inset, -5px -5px 15px 0px #FFF;
	cursor: pointer;
}
.input-radio:checked+span::before {
	background-color: var(--accent);
	box-shadow: none;
}

.input-checkbox{
	position: absolute;
	width: 25px;
	height: 25px;
	opacity: 0;
	cursor: pointer;
}
.input-checkbox+span {
	display: inline-flex;
	align-items: center;
	user-select: none;
	line-height: 1.2;
}
.input-checkbox+span::before {
	content: '';
	display: inline-block;
	width: 25px;
	height: 25px;
	flex-shrink: 0;
	flex-grow: 0;
	border-radius: 5px;
	margin-right: 0.5em;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50% 50%;
	background-color: var(--grey-gradient);
    box-shadow: 5px 4px 4px 0px #CECECE inset, -5px -5px 30px 0px rgba(255, 255, 255, 0.60) inset, -5px -5px 15px 0px #FFF;
	cursor: pointer;
}
.input-checkbox:checked+span::before {
	background-color: var(--accent);
	box-shadow: none;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.basket__btn{
	font-size: 31px;
    padding: 18px 50px;
    font-weight: 700;
    width: 100%;
    display: block;
    box-shadow: 3px 3px 20px 0px rgba(36, 65, 93, 0.30), -6px -6px 30px 0px #FFF;
    background: linear-gradient(311deg, #F2F3F6 3.8%, #E5E6EC 119.99%);
	border-color: transparent;
}
.basket .basket-small__item{
	padding: 15px;
	gap: 10px;
}
.quantity .qty{
	border: none;
	width: 100%;
	border-radius: var(--radius);
	text-align: center;
}
.quantity .qty::-webkit-inner-spin-button, .woocommerce .quantity .qty::-webkit-outer-spin-button{
    -webkit-appearance: none;
    margin: 0;
}
.btn-update{
	background: var(--accent);
	border:1px solid var(--accent);
	color:#fff;
}
#billing_country_field{
	display:none;
}
#order_review .shop_table{
	margin-top: 20px;
}
#order_review .shop_table thead,
#order_review .shop_table tbody,
#order_review .shop_table .order-total,
#order_review .shop_table .cart-subtotal{
	display: none;
}
#order_review table.shop_table{
	border:none;
}
#order_review table.shop_table tbody th, #order_review table.shop_table tfoot td,#order_review table.shop_table tfoot th{
	border:none;
}
#order_review .woocommerce-shipping-totals.shipping{
	display: grid;
}
.woocommerce form .form-row-first{
	width: 100%;
}
.woocommerce-privacy-policy-text{
	font-size: 12px;
}
.woocommerce-checkout #payment{
	background: #fff;
}
.input-checkbox+span.woocommerce-terms-and-conditions-checkbox-text{
	display: inline;
	font-size: 14px;
}
.woocommerce form .form-row label{
	line-height: 1.5;
}
.btn--accept{
	outline: none;
    border: none;
	background: var(--accent);
	color: #fff;
}</pre></body></html>