@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&family=Maven+Pro:wght@400..900&display=swap');
html{
	height: 100%;
	width: 100%;
	margin: 0;
	-webkit-overflow-scrolling:touch;
}
body{
	margin: 0;
	color: #000000;
	font-size: 14px;
	line-height: 1.2;
	font-family: "Gabarito", serif;
	position: relative;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	background: #fff;
	min-height: 100%;
	min-width: 320px;
}
.fonts{
	font-family: "Maven Pro", serif;
	font-family: "Instrument Sans", serif;
}
body.active{
	overflow: hidden;
}
h1, h2, h3, h4, h5, h6{
	margin: 0 0 30px 0;
	font-weight: 700;
	color: #040404;
	line-height: 1.2;
}
h1{
	font-weight: 700;
	font-size: 72px;
}
h2{
	font-size: 48px;
}
h3{
	font-size: 30px;
}
h4{
	font-size: 24px;
}
h5{
	font-size: 20px;
}
h6{
	font-size: 16px;
}
p {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.25;
	color: #333;
	margin: 0 0 20px 0;
}
p strong{
	font-weight: 500;
	font-size: 20px;
	line-height: 1.2;
}
p a{
	color: #333;
	font-weight: 700;
	text-decoration: none;
}
p a:hover{
	text-decoration: underline;
}
p:last-child{
	margin-bottom: 0px;
}
img{
	display: block;
	max-width: 100%;
}
a {
	outline: none;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}
ul{
	padding: 0;
	margin: 0;
}
li{
	list-style: none;
}
/*== buttons
---------------------------------*/
.green-btn{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #62e2b8;
	color: #000;
	text-decoration: none;
	transition: 0.3s;
}
.green-btn:hover{
	opacity: 0.8;
}
.green-btn:active{
	opacity: 0.9;
}
button{
	margin:0;
	padding:0;
	border:none;
	background:none;
	cursor:pointer;
	overflow:visible;
	width:auto;
	outline: none;
	box-shadow: none;
	font-family: inherit;
}
button:hover , button:focus , button:active{
	outline: none;
	text-decoration: none;
}
/*== inputs
---------------------------------*/
input{
	outline: none;
	border: none;
}

textarea{
	height: 80px;
	outline: none;
}
.b-input-text{
	width: 100%;
	height: 52px;
	background: rgba(255, 255, 255, 0.42);
	mix-blend-mode: normal;
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	color: #333333;
	transition: 0.3s;
	padding: 0 15px 0 33px;

}
.b-input-text::-webkit-input-placeholder{
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	color: #A7A7A7;
}
.b-input-text:-moz-placeholder{
	font-weight: 500;
	font-size: 16px;
	line-height: 18px;
	color: #A7A7A7;
}
.b-input-text.error{
	border-color: #EF4231;
}
textarea{
	height: 80px;
	outline: none;
	resize: none;
}
.b-textarea{
	width: 100%;
	height: 180px;
	background: #FFFFFF;
	border: 1px solid #CAD1D7;

	border-radius: 10px;
	padding: 20px 30px;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #888888;	
}
.b-textarea::-webkit-input-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #888888;	
}
.b-textarea:-moz-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #888888;		
}
/*== checkbox , raido
---------------------------------*/
.b-checkbox{

}
.b-checkbox input[type="checkbox"]{
    display: none;
}
.b-checkbox input[type="checkbox"] + label{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
}
.b-checkbox input[type="checkbox"] + label span{
	background: #fff;
	border: 1px solid #cad1d7;
	border-radius: 3px;
	width: 20px;
	height: 20px;
	position: relative;
	margin: 0 11px 0 0;
	flex-shrink: 0;
	cursor: pointer;
}
.b-checkbox input[type="checkbox"]:checked + label span{
	background: #fff url("../images/check.svg") center no-repeat;
}
.b-checkbox input[type="checkbox"] + label i{
	padding: 0px 0 0 0;
	font-weight: 600;
	font-size: 13px;
	color: #808080;
	font-style: normal;
	cursor: pointer;
}
.b-checkbox input[type="checkbox"] + label i a{
	font-weight: 600;
	font-size: 13px;
	line-height: 1.66667;
	color: #24192c;
	text-decoration: underline;
	margin: 0 0 0 5px;
}
.b-checkbox input[type="checkbox"] + label i a:hover , .b-checkbox input[type="checkbox"] + label i a:focus , .b-checkbox input[type="checkbox"] + label i a:active{
	text-decoration: none;
	opacity: 0.8;
	transition: 0.3s;
}
.b-check{
	margin: 10px 0 0 0;
}
.b-check input[type="checkbox"]{
    display: none;
}
.b-check input[type="checkbox"] + label span{
	width: 11px;
	height: 11px;
	color: rgba(36, 39, 52, 0.35);
	font-size: 11px;
	flex-shrink: 0;
	margin: 2px 4px 0 0;
	cursor: pointer;
}
.b-check input[type="checkbox"] + label{
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.b-check input[type="checkbox"]:checked + label span{
	width: 11px;
	height: 11px;
	color: #333333;
}
.b-check input[type="checkbox"] + label i{
	font-style: italic;
	font-weight: 400;
	font-size: 13px;
	line-height: 1;
	text-align: right;
    color: rgba(36, 39, 52, 0.35);
	cursor: pointer;
}
.b-check input[type="checkbox"]:checked + label i{
	color: #333333;
}
/*== raido
---------------------------------*/
.b-radio{
	margin: 0 0 13px 0;
}
.b-radio input[type="radio"]{
    display: none;
}
.b-radio input[type="radio"] + label{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
}
.b-radio input[type="radio"] + label span{
	width: 22px;
	height: 22px;
	background: #FFFFFF;
	border: 1px solid #005036;
	border-radius: 100%;
	transition: 0.3s;
	position: relative;
	margin: 0 10px 0 0;
	flex-shrink: 0;
	cursor: pointer;
}
.b-radio input[type="radio"] + label span:after{
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
	width: 15px;
	height: 15px;
	background: #a2c014;
	border-radius: 100%;
	transform: translate(-50% , -50%);	
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.b-radio input[type="radio"]:checked + label span{
	width: 22px;
	height: 22px;
	border: 1px solid #005036;
	border-radius: 100%;
	transition: 0.3s;
}
.b-radio input[type="radio"]:checked + label span:after{
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
}
.b-radio input[type="radio"] + label i{
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	color: #444;
	padding: 4px 0 0 0;
	font-style: normal;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
select{
	outline: none;
	font-family: inherit;
}
.b-select{
	border: 1px solid #848484;
	border-radius: 6px;
	width: 100%;
	height: 46px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.14286;
	color: #b6b6b6;
	padding: 0 15px;
	background: #ffffff url(../images/select-arrow.svg);
	background-repeat: no-repeat;
	background-position: right 13px center;
	background-size: 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	-ms-appearance: none;
	appearance: none !important;
}
/* End Total css ====*/
.container{
	max-width: 1010px;
	margin: 0 auto 0;
	padding: 0 15px;

}
*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-container{
    min-height: 100vh;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.b-mobile{
	display: none;
}
/* -------------- page index -------------- */
.header{
	background: #fff;
}
.header__top{
	background: #005238;
	padding: 12px 0;
}
.header__top-wrap{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0 40px;
}
.header__top-item{
	font-weight: 400;
	font-size: 14px;
	text-align: right;
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}
.header__top-item:hover{
	text-decoration: underline;
	color: #a2c014;
}
.header__content{
	padding: 31px 0;
}
.header__content .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-family: "Maven Pro", serif;
	gap: 0 14px;
	text-decoration: none;
}
.logo span{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.05803;
	text-transform: uppercase;
	color: #005036;
}
.logo:hover rect{
	fill: #006746;
}
.nav{

}
.nav ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 25px;
}
.nav ul li{

}
.nav ul li a{
	display: block;
	font-weight: 600;
	font-size: 16px;
	color: #005036;
	text-decoration: none;
	position: relative;
	transition: 0.3s;
}
.nav ul li a:hover{
	color: #649384;
}
.nav ul li a:after{
	position: absolute;
	bottom: -46px;
	left: 0;
	content: "";
	width: 100%;
	height: 5px;
	background: #005238;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.nav ul li a.active{
	color: #4d8472;
}
.nav ul li a.active:after{
	opacity: 1;
	visibility: visible;
}
.header__btn{
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	border-radius: 47px;
	width: 148px;
	height: 40px;
	background: #005036;
	font-weight: 700;
	font-size: 13px;
	color: #a2c014;
	gap: 0 11px;
	transition: 0.3s;
}
.header__btn:before{
	content: "";
	background: url("../images/chat.svg") center no-repeat;
	width: 16px;
	height: 15px;
}
.header__btn:hover{
	background: #a2c014;
	color: #005036;
}
.header__btn:hover:before{
	background: url("../images/chat-hover.svg") center no-repeat;
}

/* ----------- .main -----------  */
.main{
	position: relative;
}
.main__slide{
	height: 622px;
	padding: 135px 0 45px 0;
}
.main__slide .container{
	position: relative;
	height: 100%;
}
.main__title{
	font-family: "Instrument Sans", serif;
	max-width: 444px;
	font-weight: 700;
	font-size: 62px;
	line-height: 1.02083;
	letter-spacing: -0.01em;
	color: #73b00a;
	margin: 0 0 40px 0;
}
.main__title span{
	display: block;
	color: #005036;
}
.main p{
	max-width: 322px;
	font-weight: 400;
	font-size: 22px;
	line-height: 1.27273;
	color: rgba(0, 0, 0, 0.61);
}
.main__ico{
	position: absolute;
	bottom: 0;
	right: 15px;
}
.main__slide_1{
	background: url("../images/main.jpg") center top no-repeat;
	background-size: cover;
}
.main__slide_2{
	background: url("../images/main2.jpg") center top no-repeat;
	background-size: cover;
}
.main__slide_3{
	background: url("../images/main3.jpg") center top no-repeat;
	background-size: cover;
}
.main__slide_2 .main__title{
	color: #fff;
}
.main__slide_3 .main__title {
	color: #76ba00;
}
.main__bottom{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}
.swiper-pagination{
	position: static;
	display: flex;
	justify-content: flex-start;
}
.swiper-pagination-bullet{
	width: 82px;
	height: 12px;
	background: #fff;
	border-radius: 0px;
	opacity: 1;
}
.swiper-pagination-bullet-active{
	background: #005238;
}
/* -------- desc -------- */
.desc{
	background: url("../images/desc__bg.jpg") center top no-repeat;
	background-size: cover;
	padding: 90px 0;
}
.desc .container{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.desc__left{
	width: 205px;
	flex-shrink: 0;
	margin: 0 40px 0 0;
}
.title{

}
.title__item{
	font-weight: 600;
	font-size: 18px;
	text-transform: uppercase;
	color: #121f1b;
}
.desc__left .title{
	margin: 0 0 32px 0;
}
.desc__left p{
	font-weight: 400;
	font-size: 22px;
	line-height: 1.27273;
	color: rgba(0, 0, 0, 0.61);
}
.desc__row{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	flex-wrap: wrap;
}
.desc__row:nth-child(2n){
	flex-direction: row-reverse;
}
.desc__text{
	width: 50%;
	padding: 38px;
}
.desc__text.green{
	background: #cbf59e;
}
.desc__text.blue{
	background: #92effb;
}
.desc__text p{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.25;
	color: #444;
}
.desc__text p:not(:last-child){
	margin: 0 0 25px 0;
}
.desc__img{
	width: 50%;
}

/* -------- reviews -------- */
.reviews{
	background: url("../images/rev__bg.jpg") center top no-repeat #ffdd80;
	background-size: contain;
	padding: 80px 0 0 0;
}
.reviews__top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 70px 0;
}
.reviews__nav{
	width: 149px;
	height: 40px;
	border-radius: 100px;
	background: #fff;
	border: 1px solid #11694d;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 15px;
}
.reviews__slider-xs{
	display: none;
}
.reviews__nav-text{
	width: 70px;
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: #145943;
}
.reviews__container{
	display: flex;
	justify-content: flex-end;
}
.reviews__slider{
	max-width: 737px;
	margin: 0;
	min-height: 355px;
	border-bottom: 6px solid #73b00a;
}
.reviews__item{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 65px;
}
.reviews__item-img{
	flex-shrink: 0;
	max-width: 178px;
}
.reviews__item-text p{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4375;
	color: #444;
}
.reviews__item-name{
	font-weight: 600;
	font-size: 16px;
	line-height: 1.4375;
	color: #444;
	margin: 25px 0 0 0;
}
/* -------- bottom -------- */
.bottom{
	padding: 100px 0;
}
.bottom .container{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 64px;
}
.bottom__text{
	max-width: 420px;
}
.bottom__text:last-child{
	max-width: 246px;
}
.bottom__text p{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4375;
	color: #444;
}
.bottom__text p a{
	font-weight: 700;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: #73b00a;
}
.bottom__text p a{
	text-decoration: none;
}
/* -------- footer -------- */
.footer{
	background: #005036;
	padding: 31px 0;
}
.footer .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer__logo{
	font-family: "Maven Pro", serif;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-decoration: none;
	gap: 0 13px;
	font-weight: 400;
	font-size: 15px;
	color: #dcdcdc;
}
.footer__nav{

}
.footer__nav ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 33px;
}
.footer__nav ul li{

}
.footer__nav ul li a{
	display: block;
	font-weight: 500;
	font-size: 15px;
	text-decoration: underline;
	text-decoration-skip-ink: none;
	text-align: right;
	color: #a2c014;
	transition: 0.3s;
}
.footer__nav ul li a:hover{
	color: #fff;
}

/* --------- aboutMain --------- */
.aboutMain{
	background: url("../images/aboutMain_bg.jpg") center top no-repeat;
	background-size: cover;
	padding: 95px 0;
}
.aboutMain .container{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0 60px;
}
.aboutMain .title{
	flex-shrink: 0;
}
.aboutMain__text{
	font-family: "Instrument Sans", serif;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.21722;
	color: #121f1b;
}

.aboutText{
	background: url("../images/aboutText_bg.jpg") center top no-repeat;
	background-size: cover;
	padding: 140px 0;
}
.aboutText .container{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 64px;
}
.aboutText .title{
	max-width: 185px;
	flex-shrink: 0;
}
.aboutText .title__item{
	color: #a5c478;
}
.aboutText__item{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4375;
	color: #fff;
}


.aboutItems{
	padding: 80px 0;
	background: url("../images/aboutItems_bg.png") center top no-repeat;
	background-size: cover;
}
.aboutItems .container{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 65px;
}
.aboutItems .title{
	flex-shrink: 0;
	max-width: 183px;
	padding: 50px 0 0 0;
}
.aboutItem{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 50px;
}
.aboutItem:not(:last-child){
	padding: 0 0 58px 0;
	margin: 0 0 58px 0;
	border-bottom: 1px solid #fff;
}
.aboutItem__text{

}
.aboutItem__text b{
	display: block;
	font-weight: 700;
	font-size: 28px;
	font-family: "Instrument Sans", serif;
	line-height: 1.21722;
	color: #121f1b;
	margin: 0 0 16px 0;
}
.aboutItem__text p{
	font-weight: 400;
	font-size: 22px;
	line-height: 1.27273;
	color: rgba(0, 0, 0, 0.61);
}

.aboutBlock{
	background: #ffc260;
	padding: 80px 0;
}
.aboutBlock .container{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 50px;
}
.aboutBlock .title{
	width: 195px;
	flex-shrink: 0;
}
.aboutBlock__text{
	max-width: 458px;
}
.aboutBlock__text p{
	font-weight: 400;
	font-size: 22px;
	line-height: 1.27273;
	color: rgba(0, 0, 0, 0.61);
}
.aboutBlock.yellow{
	background: #f9ee2e;
	padding: 27px 0;
}
.aboutBlock.yellow .container{
	align-items: center;
}

/* --------- order --------- */
.orderMain{
	background: url("../images/orderMain_bg.jpg") center top no-repeat;
	background-size: cover;
}
.orderMain .container{
	justify-content: flex-start;
}
.orderMain .title{
	width: 185px;
}
.orderBlock{
	background: url("../images/orderBlock_bg.jpg") center top no-repeat;
	background-size: cover;
	padding: 133px 0;
}
.orderBlock .container{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.orderBlock__img{
	flex-shrink: 0;
	margin: 0 140px 0 0;
}
.orderBlock__text{
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4375;
	color: #fff;
}
.orderBlock__text:not(:last-child){
	margin: 0 60px 0 0;
}
.orderForm{
	background: url("../images/orderForm_bg.jpg") center top no-repeat;
	background-size: cover;
	padding: 96px 0;
	min-height: 740px;
}
.orderForm .container{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 100px;
}
.orderForm__form{
	width: 100%;
	max-width: 448px;
	flex-shrink: 0;
}
.orderForm__text{
	font-weight: 400;
	font-size: 22px;
	line-height: 1.27273;
	color: #121f1b;
}
.orderForm__form-input{
	margin: 0 0 12px 0;
}
.orderForm__form-input input{
	border: 1px solid #848484;
	border-radius: 6px;
	width: 100%;
	height: 60px;
	background: #fff;
	padding: 0 18px;
	font-weight: 700;
	font-size: 18px;
	line-height: 20px;
	color: #005036;
}
.orderForm__form-input input:focus{
	border-color: #005036;
}
.orderForm__form-input input::-webkit-input-placeholder{
	font-weight: 400;
	font-size: 18px;
	line-height: 20px;
	color: #4f4f4f;
}
.orderForm__form-input input:-moz-placeholder{
	font-weight: 400;
	font-size: 18px;
	line-height: 20px;
	color: #4f4f4f;
}
.orderForm__form-btn{
	border-radius: 14px;
	width: 100%;
	height: 60px;
	background: #005036;
	font-weight: 700;
	font-size: 13px;
	text-align: center;
	color: #a2c014;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 8px;
	transition: 0.3s;
}
.orderForm__form-btn:hover{
	background: #a2c014;
	color: #005036;
}
.orderForm__form-btn:hover svg path{
	fill: #005036;
}


.contactsBlock{
	padding: 80px 0;
}
.contactsBlock .container{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 140px;
}
.contactsBlock__text{

}
.contactsBlock__text p{
	font-weight: 400;
	font-size: 22px;
	line-height: 1.27273;
	color: #121f1b;
}
.contactsBlock__text p:not(:last-child){
	margin: 0 0 30px 0;
}


.contactsInfo{
	padding: 90px 0 100px 0;
	background: url("../images/contactsInfo_bg.jpg") center top no-repeat;
	background-size: cover;
}
.contactsInfo .container{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 52px;
}
.contactsInfo .title{
	width: 194px;
	flex-shrink: 0;
}
.contactsInfo__right{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 94px;
}
.contactsInfo__col{
	width: 50%;
}
.contactsInfo__col p{
	font-weight: 400;
	font-size: 22px;
	line-height: 1.27273;
	color: #121f1b;
}
.contactsInfo__col p a{
	font-weight: 400;
	font-size: 22px;
	line-height: 1.27273;
	color: #121f1b;
}
.contactsInfo__col p:not(:last-child){
	margin: 0 0 30px 0;
}
.contactsInfo__col p b a{
	font-weight: 700;
}


.contactsDesc{
	background: #f9ee2e;
	padding: 80px 0;
}
.contactsDesc .container{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 84px;
}
.contactsDesc__img{
	flex-shrink: 0;
}
.contactsDesc__img img{
	transform: rotate(21deg);
}
.contactsDesc .header__btn{
	width: 100%;
	max-width: 396px;
	height: 60px;
	border-radius: 14px;
}
.contactsDesc__text{
	padding: 15px 0 0 0;
}
.contactsDesc__text p{
	font-weight: 400;
	font-size: 22px;
	line-height: 1.27273;
	color: rgba(0, 0, 0, 0.61);
	margin: 0 0 60px 0;
}

.contactsBottom{
	padding: 86px 0;
}
.contactsBottom .container{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 140px;
}
.contactsBottom__img{

}
.contactsBottom__text{
	font-weight: 400;
	font-size: 22px;
	line-height: 1.27273;
	color: #121f1b;
}

/* Absolute Center Spinner */
.loading {
	position: fixed;
	z-index: 999;
	height: 2em;
	width: 2em;
	overflow: show;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

/* Transparent Overlay */
.loading:before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));

	background: -webkit-radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
	/* hide "loading..." text */
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

.loading:not(:required):after {
	content: '';
	display: block;
	font-size: 10px;
	width: 1em;
	height: 1em;
	margin-top: -0.5em;
	-webkit-animation: spinner 1000ms infinite linear;
	-moz-animation: spinner 1000ms infinite linear;
	-ms-animation: spinner 1000ms infinite linear;
	-o-animation: spinner 1000ms infinite linear;
	animation: spinner 1000ms infinite linear;
	border-radius: 0.5em;
	-webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
	box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0, rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) 0 1.5em 0 0, rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0, rgba(255, 255, 255, 0.75) -1.5em 0 0 0, rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0, rgba(255, 255, 255, 0.75) 0 -1.5em 0 0, rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-o-keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spinner {
	0% {
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.blur {
	filter: blur(10px);
}

.have-order, .no-order {
	display: none;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-default-outline:focus {
	box-shadow: none !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-cancel {
	color: #666 !important;
}

button:disabled {
	pointer-events: none;
	opacity: 0.5;
}

.btn-live-chat {
	text-decoration: none;
}

.b-order-top__cancelled {
	margin: 0 0 63px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}
