@import url('https://fonts.googleapis.com/css2?family=Khand:wght@300;400;500;600;700&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: 'Rift', sans-serif;
	position: relative;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	min-height: 100%;
	min-width: 320px;
}
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-family: 'Helvetica' , sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.55556;
	color: #000;
	margin: 0 0 30px 0;
}
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{
	background: #545A3E;
	transition: 0.3s;
}
.green-btn:hover{
    background: #7e8d49;
}
.green-btn:active{
	background: #566033;
}
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;
}
.input{
	max-width: 500px;
	position: relative;
}
.input:not(:last-child){
	margin: 0 0 10px 0;
}
.input__text{
	border-radius: 5px;
	width: 100%;
	height: 60px;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #000;
	padding: 0 15px 0 58px;
}
.input__text::-webkit-input-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #9ca7ae;
}
.input__text:-moz-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #9ca7ae;
}
.input__text-mail{
	background-image: url("../images/mi_email.svg") ;
	background-position: center left 20px;
	background-repeat: no-repeat;
}
.input__text-order {
	background-image: url("../images/mi_archive.svg");
	background-position: center left 20px;
	background-repeat: no-repeat;
}
.input__text-card{
	background-image: url("../images/mi_credit-card.svg");
	background-position: center left 20px;
	background-repeat: no-repeat;
}
.card__text{
	font-family: 'Helvetica' , sans-serif;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	max-width: 132px;
	text-align: right;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.16667;
	color: #c3cbcf;
}
.input__text.error{
	border-color: #EF4231;
}
.input__btn{
	border-radius: 5px;
	width: 200px;
	height: 70px;
	background: #e7bd27;
	margin: 10px 0 0 0;
	font-weight: 600;
	font-size: 36px;
	letter-spacing: -0.03em;
	text-align: center;
	color: #55491f;
}
textarea{
	height: 80px;
	outline: none;
	resize: none;
}
.b-textarea{
	width: 100%;
	height: 180px;
	background: #FFFFFF;
	border: 1px solid #CAD1D7;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	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{
	width: 20px;
	height: 20px;
	border: 1px solid #E0E0E0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 4px;
	transition: 0.3s;
	position: relative;
	margin: 0 10px 0 0;
	flex-shrink: 0;
	cursor: pointer;
}
.b-checkbox input[type="checkbox"]:checked + label span{
	width: 20px;
	height: 20px;
	border-color: #E0E0E0;
	border-radius: 4px;
	transition: 0.3s;
}
.b-checkbox input[type="checkbox"]:checked + label span b {
	width: 14px;
	height: 14px;
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50% , -50%);
	background: url("../images/black-check.svg") center no-repeat;
}
.b-checkbox input[type="checkbox"] + label i{
	color: #333;
	font-size: 11px;
	font-style: normal;
	font-weight: 300;
	line-height: 1;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
.b-checkbox input[type="checkbox"] + label i a{
	color: #5a8af5;
	font-size: 15px;
	font-weight: 400;
	line-height: 1;	
	border-bottom: 1px dashed #5a8af5;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	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 11px 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: 24px;
	height: 24px;
	background: #FFFFFF;
	border: 1px solid #CAD1D7;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	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: 14px;
	height: 14px;
	background: #9BDC9D;
	border-radius: 100%;
	transform: translate(-50% , -50%);	
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.b-radio input[type="radio"]:checked + label span{
	width: 24px;
	height: 24px;
	border: 1px solid #CAD1D7;
	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: 700;
	font-size: 14px;
	line-height: 1;
	color: #000000;
	font-style: normal;
	padding: 1px 0 0 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
select{
	outline: none;
	font-family: inherit;
}
*{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-select{
	width: 100%;
	height: 48px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-weight: 400;
	font-size: 12px !important;
	line-height: 14px;
	color: #333 !important;
	background: #ffffff url(../images/select-arrow.svg);
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 16px;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	-ms-appearance: none;
	appearance: none !important; 
    transition: 0.3s;
}
/* 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{

}
/* -------------- page index -------------- */
.header{
	background: #333;
	padding: 12px 0;
}
.header .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.b-mobile{
	display: none;
}
.logo{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-weight: 600;
	font-size: 28px;
	letter-spacing: -0.03em;
	color: #f9fbf5;
	text-decoration: none;
}
.logo img{
	width: 36px;
	flex-shrink: 0;
	margin: 0 8px 0 0;
}
.nav{

}
.nav ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.nav ul li:not(:last-child){
	margin: 0 40px 0 0;
}
.nav ul li a{
	display: block;
	font-weight: 600;
	font-size: 20px;
	letter-spacing: -0.03em;
	color: #a0e559;
	text-decoration: none;
}
.nav ul li a:hover{
	text-decoration: underline;
}
.nav ul li a.active{
	color: #f9fbf5;
	text-decoration: none;
}

/* -------------- promo -------------- */
.promo{
	background: url("../images/promo-bg.png") center top no-repeat;
	background-size: 1280px;
	min-height: 500px;
	position: relative;
	padding: 62px 0 0 0;
}
.promo__left-top{
	max-width: 371px;
}
.promo:after{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(235deg, rgba(245, 245, 245, 0) 0%, #f5f5f5 100%),
	linear-gradient(323deg, rgba(245, 245, 245, 0) 0%, #f5f5f5 100%),
	linear-gradient(71deg, rgba(245, 245, 245, 0) 0%, #f5f5f5 100%),
	linear-gradient(119deg, rgba(245, 245, 245, 0) 0%, #f5f5f5 100%);
	z-index: -1;
}
.promo__title{
	font-weight: 700;
	font-size: 100px;
	line-height: 0.8;
	letter-spacing: -0.03em;
	color: #000;
	margin: 0 0 21px 0;
}
.promo__sub{
	font-weight: 500;
	font-size: 40px;
	line-height: 1;
	color: #000;
	margin: 0 0 30px 0;
}
.promo__left-text{
	max-width: 440px;
}
/* -------------- desc -------------- */
.desc{
	padding: 100px 0;
	background: url("../images/desc-bg.svg") bottom right no-repeat;
	max-width: 1280px;
	margin: 0 auto 0;
}
.desc .container{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.desc__left{

}
.desc__title{
	font-family: 'Helvetica';
	font-weight: 400;
	font-size: 24px;
	line-height: 1.33333;
	color: #000;
	margin: 0 0 30px 0;
}
.desc__icons{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.desc__icons img:not(:first-child){
	margin: 0 0 0 -10px;
}
.desc__img{
	flex-shrink: 0;
	margin: 0 0 0 77px;
	position: relative;
}
.desc__img:before{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	border: 10px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	box-sizing: border-box;
}
.desc__img img{
	max-width: 450px;
	border-radius: 20px;
}
/* -------------- info -------------- */
.info{
	background: #f1f3f8 url("../images/info-bg.png") center top no-repeat;
	background-size: 1280px;
	padding: 80px 0;
	position: relative;
}
.info__left{
	max-width: 458px;
}
.info__title{
	font-weight: 500;
	font-size: 40px;
	line-height: 1;
	color: #000;
	margin: 0 0 30px 0;
}
.info__sub{
	max-width: 390px;
	font-family: 'Helvetica';
	font-weight: 400;
	font-size: 24px;
	line-height: 1.33333;
	color: #000;
}
.info__left p{
	max-width: 390px;
}
/* -------------- block -------------- */
.block{
	background: url("../images/block-bg.jpg") center top no-repeat;
	background-size: cover;
	min-height: 520px;
	padding: 127px 0 60px 0;
}
.stars{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 30px 0;
}
.stars li{
	background: url("../images/star.svg") center no-repeat;
	width: 30px;
	height: 30px;
}
.block__title{
	font-weight: 500;
	font-size: 36px;
	line-height: 1.11111;
	text-align: center;
	color: #fff;
	margin: 0 0 30px 0;
}
.block__sub{
	font-weight: 500;
	font-size: 28px;
	line-height: 1.14286;
	text-align: center;
	color: #fff;
}
/* -------------- bottom -------------- */
.bottom{
	background: url("../images/bottom-bg.png") right top no-repeat;
	background-size: 1280px;
	padding: 106px 0;
	position: relative;
	max-width: 1280px;
	margin: 0 auto 0;
}
.bottom__left{
	max-width: 510px;
}
.bottom__left p{
	max-width: 400px;
}
.bottom__title{
	font-weight: 400;
	font-size: 40px;
	line-height: 1;
	color: #000;
	margin: 0 0 30px 0;
}
.bottom__btn{
	width: 240px;
	height: 70px;
	border-radius: 5px;
	background: #e7bd27;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 36px;
	letter-spacing: -0.03em;
	text-align: center;
	color: #55491f;
	text-decoration: none;
	margin: 32px 0 0 0;
}
.bottom__btn:hover{
	background: #ffc907;
}
.bottom__btn:active{
	background: #e5b509;
}
/* -------------- footer -------------- */
.footer{
	background: #333;
	padding: 40px 0;
}
.footer__top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 21px 0;
}
.footer__logo{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-weight: 600;
	font-size: 28px;
	letter-spacing: -0.03em;
	color: #f9fbf5;
}
.footer__logo img{
	width: 36px;
	flex-shrink: 0;
	margin: 0 8px 0 0;
}
.footer__nav ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.footer__nav ul li:not(:last-child){
	margin: 0 40px 0 0;
}
.footer__nav ul li a{
	font-weight: 600;
	font-size: 20px;
	letter-spacing: -0.03em;
	color: #f9fbf5;
	text-decoration: none;
}
.footer__nav ul li a:hover{
	text-decoration: underline;
}
.footer__contacts{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer__contacts-item{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-weight: 400;
	font-size: 14px;
	text-align: start;
	color: #fff;
	font-family: 'Helvetica';
	text-decoration: none;
}
.footer__contacts-item:not(:last-child){
	margin: 0 27px 0 0;
}
.footer__contacts-item img{
	width: 24px;
	flex-shrink: 0;
	margin: 0 10px 0 0;
}
.footer__contacts-item:hover{
	opacity: 0.8;
}

/* -------------- about -------------- */
.aboutPromo{
	background-position: top 73px right 71px !important;
	padding-top: 40px;
}
.aboutPromo .container{
	align-items: flex-start;
}
.page-title{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-weight: 500;
	font-size: 24px;
	line-height: 1.16667;
	text-align: center;
	color: #999;
	margin: 0 0 32px 0;
}
.page-title:after{
	content: "";
	display: block;
	width: 60px;
	height: 1px;
	background: #999;
	margin: 0 0 0 10px;
}
.desc__main{
	font-weight: 500;
	font-size: 60px;
	line-height: 1;
	letter-spacing: -0.02em;
	color: #000;
	margin: 0 0 30px 0;
}
.aboutPromo p{
	margin: 0 0 20px 0;
}
.aboutPromo p:last-child{
	margin: 0;
}

.desc_two{
	background: none;
}
.desc .container.reverse{
	flex-direction: row-reverse;
}
.desc .container.reverse .desc__img{
	margin: 0 60px 0 0;
}
.aboutBlock{
	background: url("../images/about-bg.jpg") center top no-repeat;
	background-size: cover;
	padding: 83px 0;
}
.aboutBlock__title{
	max-width: 489px;
	font-weight: 500;
	font-size: 36px;
	line-height: 1.11111;
	color: #000;
	margin: 0 0 34px 0;
}
.aboutBlock__row{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.aboutBlock__row img{
	flex-shrink: 0;
	max-width: 130px;
	margin: 0 20px 0 0;
}
.aboutBlock__row p{
	font-weight: 400;
	font-size: 18px;
	line-height: 1.33333;
	color: #627078;
	max-width: 340px;
}

/* -------------- contacts -------------- */
.contactsPromo{

}
.contactsPromo .desc__main{
	font-size: 40px;
}
.contactsPromo p b{
	display: block;
}
.aboutPromo p{
	margin: 0 0 30px 0;
}
.aboutPromo p:last-child{
	margin: 0;
}
.contactsPromo .desc__img{
	margin: 0 0 0 36px;
}
.contactsPromo .desc__title{
	max-width: 470px;
}
.contactsBlock{

	background: #e9f0f4;
}
.contactsBlock__wrapper{
	max-width: 1280px;
	padding: 60px 0 80px 0;
	margin: 0 auto 0;
	background: url("../images/contacts-bg.svg") right 70px bottom 32px no-repeat;
}

.contactsBlock__title{
	font-family: 'Helvetica';
	font-weight: 400;
	font-size: 24px;
	line-height: 1.33333;
	color: #000;
	max-width: 834px;
	margin: 0 0 10px 0;
}
.contactsBlock p{
	max-width: 520px;
}
.contactsBottom{
	background: url("../images/contacts-bg.png") top right no-repeat;
	padding: 80px 0;
}
.contactsBottom__title{
	font-weight: 500;
	font-size: 36px;
	line-height: 1.16667;
	letter-spacing: -0.02em;
	color: #000;
	max-width: 560px;
}



































/* -------------- edit -------------- */
.b-edit__block{
	margin-bottom: 30px;
}
.b-edit__block .b-order-left__top{
	font-weight: 700;
	font-size: 16px;
	color: #000;
	padding: 0 0 20px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: 1px solid #eee;
	margin: 0 0 30px 0;
}
.b-edit__block:last-child{
	margin-bottom: 0px;
}
.b-edit__row{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 5px 0;
}
.b-edit__row:last-child{
	margin-bottom: 0px;
}
.b-edit__row-text{
	width: 120px;
	flex-shrink: 0;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.66667;
	color: #333;
}
.b-edit__row-item{
	flex-grow: 1;
}
.b-edit__input{
	width: 100%;
	height: 48px;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 20px;
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
	color: #333;
}
.b-edit__input::-webkit-input-placeholder{
	font-weight: 400;
	font-size: 12px;
	line-height: 14px;
	color: #888;
}
.b-edit__input:-moz-placeholder{
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: #888;
}
.b-edit__row .b-contacts-item{
	flex-grow: 1;
	width: auto;
}
.b-edit__row .b-contacts-item .b-select{
	padding: 0 40px 0 20px;
}
.b-edit__row-item.col-6{
	max-width: calc(50% - 5px);
}




/* -------------- b-order -------------- */
.inner-page{
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	justify-content: space-between;
}
.b-order{
	background: #F1F3F8;
	padding: 60px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	flex-grow: 1;
}
.b-order-top{
	margin: 0 0 50px 0;
	text-align: center;
}
.b-order-top__ico{
	margin: 0 0 30px 0;
}
.b-order-top__ico img{
	margin: 0 auto 0;
}
.b-order-title{
	font-weight: 500;
	font-size: 48px;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	text-align: center;
	color: #000;
	margin: 0 0 20px 0;
}
.b-order-top p{
	font-family: "Helvetica", sans-serif;
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: #000;
	margin: 0 0 50px 0;
}
.b-order-top_2 p{
	font-size: 20px;
	margin: 0 auto 57px;
}
.b-order-top__number{
	font-family: "Helvetica", sans-serif;
	font-weight: 700;
	font-size: 24px;
	text-align: center;
	color: #e83f0a;
}
.b-order-content {
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	font-family: "Helvetica", sans-serif;
}
.order__left{
	flex-grow: 1;
	border-radius: 0px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
	background: #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 40px 0 0;
}
.order__left-wrap{
	padding: 30px 30px 25px 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.order__left-top{
	font-weight: 700;
	font-size: 20px;
	color: #000;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: 1px solid #eee;
	padding: 0 0 20px 0;
	margin: 0 0 30px 0;
}
.order__left-container{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: -30px 0 0 0;
}
.order__left-item{
	width: 50%;
	margin: 30px 0 0 0;
}
.order__left-item b{
	display: block;
	font-weight: 700;
	font-size: 14px;
	color: #000;
	margin: 0 0 11px 0;
}
.order__left-item ul{

}
.order__left-item ul li {
	font-weight: 400;
	font-size: 12px;
	line-height: 1.66667;
	color: #888;
}
/* payment card */
.order__left-item .card {
	padding: 5px 0 0 0;
}
.order__left-item .card .text {
	line-height: 12px;
	color: #888888;
	padding: 0 0 0 10px;
	margin: 0 0 0 45px;
}
.order__left-item .card .text b {
	color: #666;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 16px;
	display: block;
	margin: 0;
}
.order__left-item .card .text span {
	color: #666;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
}
.order__left-item .card figure {
	width: 45px;
	height: 28px;
	float: left;
	margin: 0;
	position: relative;
	top: 2px;
}
.order__left-item .card figure.visa {
	background: url("../images/card-icon-visa-1x.png") no-repeat 0 0;
}
.order__left-item .card figure.mastercard {
	background: url("../images/card-icon-mastercard-1x.png") no-repeat 0 0;
}
.order__left-item .card figure.amex {
	background: url("../images/card-icon-amex-1x.png") no-repeat 0 0;
}
.order__left-item .card figure.maestro {
	background: url("../images/card-icon-maestro-1x.png") no-repeat 0 0;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
	.order__left-item .card figure.visa {
		background: url(../images/card-icon-visa-2x.png) no-repeat 0 0;
		background-size: 45px 28px;
	}
	.order__left-item .card figure.mastercard {
		background: url(../images/card-icon-mastercard-2x.png) no-repeat 0 0;
		background-size: 45px 28px;
	}
	.order__left-item .card figure.amex {
		background: url(../images/card-icon-amex-2x.png) no-repeat 0 0;
		background-size: 45px 28px;
	}
	.order__left-item .card figure.maestro {
		background: url(../images/card-icon-maestro-2x.png) no-repeat 0 0;
		background-size: 45px 28px;
	}
}
/* end payment card */

.order__map{
	width: 100%;
	height: 300px;
	max-width: 588px;
	overflow: hidden;
}
.order__map img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.order__right{
	width: 360px;
	flex-shrink: 0;
	border-radius: 0px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
	background: #fff;
	font-family: "Helvetica", sans-serif;
}
.b-order-right__wrap{
	padding: 30px 30px 30px 30px;
}

.b-order-item{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0 0 33px 0;
}
.b-order-item__img{
	width: 119px;
	height: 119px;
	margin: 0 20px 0 0;
}
.b-order-item__img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.b-order-item__text{
	padding: 11px 0 0 0;
}
.b-order-item__text__top{

}
.b-order-item__name{
	display: block;
	font-weight: 700;
	font-size: 14px;
	color: #000;
	margin: 0 0 2px 0;
}
.b-order-item__desc{
	font-weight: 400;
	font-size: 10px;
	color: #000;
	margin: 0 0 12px 0;
}
.b-order-item__price{
	font-weight: 400;
	font-size: 10px;
	color: #888;
}

.b-order-info ul{

}
.b-order-info ul li{
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 700;
	font-size: 14px;
	color: #000;
	margin: 0 0 12px 0;
}
.b-order-info ul li:last-child{
	margin-bottom: 0px;
}
.b-order-info ul li span{
	margin: 0 0 0 5px;
}
.b-order-info__total{
	border-top: 1px solid #eee;
	padding: 30px 0 0 0;
	margin: 30px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-order-info__total ul li{
	font-weight: 700;
	font-size: 18px;
	color: #000;
}

.b-order-bottom{
	padding: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-top: 1px solid #EEEEEE;
	background: #fbfbfb;
}
.b-order-bottom__text{
	border-bottom: 1px solid #DDD;
	padding: 0 0 30px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 0 20px 0;
}
.b-order-bottom__text b{
	display: block;
	font-weight: 700;
	font-size: 14px;
	color: #000;
	margin: 0 0 20px 0;
}
.b-order-bottom__text p{
	font-weight: 400;
	font-size: 12px;
	line-height: 1.33333;
	color: #888;
}
.b-order-bottom__status{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.b-order-bottom__status b{
	font-weight: 700;
	font-size: 14px;
	color: #000;
}
.b-order-bottom__item{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-order-bottom__item i{
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	margin: 0 10px 0 0;
}
.b-order-bottom__item span{
	font-weight: 700;
	font-size: 14px;
	text-align: right;
}
.confirmed i{
	background: url("../images/confirmed-ico.svg") center no-repeat;
}
.confirmed span{
	color: #78af40;
}
.canceled i{
	background: url("../images/canceled-ico.svg") center no-repeat;
}
.canceled span{
	color: #DA4646;
}
.b-order-btns{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 36px 0 0 0;
}
.btn-edit{
	width: 50%;
	height: 50px;
	background: #e7bd27;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 20px;
	text-align: center;
	color: #55491f;
	font-family: 'Rift', sans-serif;
	margin: 0 10px 0 0;
}
.btn-edit:hover{
	color: #fff;
	background: #ead43a;
	transition: 0.3s;
}
.btn-cancel{
	width: 50%;
	height: 50px;
	background: #e7bd27;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 20px;
	text-align: center;
	color: #55491f;
	font-family: 'Rift', sans-serif;
}
.btn-cancel:hover{
	color: #fff;
	background: #ead43a;
	transition: 0.3s;
}
.b-order-btns__xs{
	display: none;
}
.b-order.save .b-order-title{
	margin: 0 0 10px 0;
}


.btn-back{
	width: 200px;
	height: 60px;
	background: #EEEEEE;
	border-radius: 5px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	letter-spacing: -0.03em;
	color: #888888;
	margin: 0 auto 0;
	transition: 0.3s;
}
.btn-back:hover{
	background: #e3b90c;
	transition: 0.3s;
}
.btn-back:active{
	background: #e4e1e1;
	transition: 0.3s;
}
.b-order-block{
	width: 520px;
	background: #FFFFFF;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	border-radius: 30px;
	margin: 0 auto 0;
	padding: 32px 40px 40px 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-order-block__top{
	margin: 0 0 34px 0;
}
.b-order-block__top b{
	display: block;
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
	letter-spacing: -0.02em;
	color: #C75191;
	margin: 0 0 10px 0;
}
.b-order-block__top p{
	font-weight: 500;
	font-size: 12px;
	line-height: 1.667;
	color: #888888;
}
.b-order-block__content{
	padding: 0 0 0 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-order-block__btn{
	width: 160px;
	height: 50px;
	margin: 30px 0 0 0;
}
.order__left-edit{
	padding: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Helvetica", sans-serif;

}

.b-edit__row-wrap{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-grow: 1;
}
.b-edit__row-wrap .b-contacts-item{
	width: 50%;
}
.b-edit__row-wrap .b-contacts-item:not(:last-child){
	margin: 0 10px 0 0;
}
.input-cvv{
	max-width: 203px;
}
.b-edit__block .b-checkbox{
	margin: 15px 0 0 0;
}

.b-quantity{
	margin: 0 0 30px 0;
	max-width: 298px;
}
.b-quantity__top{
	color: #000;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	padding: 0 0 18px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-quantity__wrap{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.b-quantity__wrap-row{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	border-radius: 5px;
	border: 1px solid #CCC;
	background: #FFF;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	flex-grow: 1;
	overflow: hidden;
}
.b-quantity-btn{
	width: 48px;
	height: 48px;
	border-radius: 0;
	border-right: 1px solid #CCC;
	background: #FBFBFB;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	font-size: 24px;
	font-weight: 400;
	line-height: normal;
	flex-shrink: 0;
}
.b-quantity-btn:last-child{
	border-right: none;
	border-left: 1px solid #CCC;
	border-radius: 0 5px 5px 0;
}
.b-quantity-input{
	width: 94px;
	font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	text-align: center;
	color: #000000;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-quantity__save{
	width: 99px;
	height: 48px;
	color: #FFF;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 0 11px;
	border-radius: 5px;
	background: #969E3B;
	transition: 0.3s;
}
.b-quantity__save:hover{
	background: #a7af48;
}
.b-quantity__save:active{
	background: #899130;
}
.order__right-edit .b-order-item{
	margin: 0 0 20px 0;
}
.edit__btns{
	padding: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 0px 0px 20px 20px;
	border-top: 1px solid #EEE;
	background: #fbfbfb;
	font-family: "Rift", sans-serif;

}
.b-order-content_edit{
	align-content: inherit;
	align-items: flex-start;
}

.b-edit__save{
	width: 100%;
	height: 50px;
	border-radius: 5px;
	background: #e7bd27;
	font-weight: 600;
	font-size: 20px;
	text-align: center;
	color: #55491f;
	text-transform: uppercase;
	margin: 0 0 10px 0;
	transition: 0.3s;
}
.b-edit__save:hover{
	color: #fff;
	background: #ead43a;
}
.b-edit__btn{
	width: 100%;
	height: 50px;
	border-radius: 5px;
	background: #e7bd27;
	font-weight: 600;
	font-size: 20px;
	text-align: center;
	color: #55491f;
	text-transform: uppercase;
	margin: 0 0 10px 0;
	transition: 0.3s;
}
.b-edit__btn:last-child{
	margin-bottom: 0px;
}
.b-edit__btn:hover{
	color: #fff;
	background: #ead43a;
}
.b-edit__btns_xs{
	display: none;
}
.b-order_questions{
	display: flex;
	justify-content: center;
	align-items: center;
}
.b-order_questions-btn{
	font-family: 'Raleway', sans-serif !important;
	width: 200px;
	height: 50px;
	background: #9BDC9D;
	border-radius: 5px;
	font-weight: 700;
	font-size: 12px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000000;
	margin: 0 20px 0 0;
}
.b-order_questions-btn:last-child{
	margin-right: 0px;
}
.b-order-content_edit .b-order-right__wrap{
	padding: 30px 30px 21px 30px;
}
/*.b-order__height{
	min-height: 519px;
}*/
.b-order_questions-btn_big{
	font-size: 16px;
}
.b-order__date{
	margin: 40px 0 0 0;
}
.b-order__date-title{
	color: #000;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 0 0 30px 0;
}
.b-order__date-row{
	display: flex;
	justify-content: center;
	align-content: flex-start;
	flex-wrap: wrap;
	margin: 0 0 20px 0;
}
.b-order__date-item{
	background: #FFFFFF;
	border: 1px solid #CACACA;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 5px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	color: #999999;
	margin: 0 10px 0 0;
	padding: 17px 32px;
}
.b-order__date-item:last-child{
	margin-right: 0px;
}
.b-order__date-item_month{
	min-width: 200px;
}
.b-order__date-btn{
	width: 160px;
	height: 50px;
	background: #e7bd27;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 20px;
	text-align: center;
	color: #55491f;
	font-family: 'Rift', sans-serif;
	margin: 0 auto 40px;
	transition: 0.3s;
}
.b-order__date-btn:hover {
	color: #fff;
	background: #ead43a;
	transition: 0.3s;
}






.b-order__radio{
	width: 200px;
	font-family: "Helvetica", sans-serif;

}
.b-order__radio:not(:last-child){
	margin: 0 10px 0 0;
}
.b-order__radio input[type="radio"]{
	display: none;
}
.b-order__radio input[type="radio"] + label{
	position: relative;
	display: block;
	cursor: pointer;
}
.b-order__radio input[type="radio"] + label span{
	width: 100%;
	height: 50px;
	border: 1px solid #78af40;
	border-radius: 5px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #464C5B;
	position: relative;
	cursor: pointer;
	transition: 0.3s;
}
.b-order__radio:hover input[type="radio"] + label span{
	background: #89bf47;
	transition: 0.3s;
}
.b-order__radio input[type="radio"]:checked + label span{

}
.b-order__radio input[type="radio"]:checked + label span{
	background: #78af40;
	border-color: #78af40;
}
.b-order__radio input[type="radio"] + label i{
	color: #000;
	text-align: center;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	z-index: 5;
	cursor: pointer;
}
.b-order__radio input[type="radio"]:checked + label i{
	color: #fff;
	font-weight: 700;
}
.b-order__date-row .b-select{
	width: 	100px;
	height: 48px;
	border: 1px solid #D9DDE7;
	color: #888;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	color: #888;
	background-position: center right 15px;
}
.b-order__date-row .b-select:not(:last-child){
	margin: 0 10px 0 0;
}
.b-order__date-row .b-select_month{
	width: 160px
}
.back-btn{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 160px;
	width: 100%;
	height: 50px;
	border-radius: 5px;
	background: #e7bd27;
	text-decoration: none;
	font-weight: 600;
	font-size: 20px;
	text-align: center;
	color: #55491f;
	text-transform: uppercase;
	margin: 0 auto;
	transition: 0.3s;
}
.back-btn:hover{
	color: #fff;
	background: #ead43a;
}
.reschedule .back-btn{
	background: #DFE2E6;
	color: #464C5B;
}
.reschedule .back-btn:hover{
	background: #000;
	opacity: 1;
	color: #fff;
}

.quantities{
	margin: 0 0 30px 0;
}
.quantities__title{
	font-weight: 700;
	font-size: 14px;
	color: #000;
	margin: 0 0 17px 0;
}
.quantities__row{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.quantities__wrap{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: #fff;
	flex-grow: 1;
}
.quantities__btn{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	font-weight: 400;
	font-size: 24px;
	line-height: 1;
	text-align: center;
	color: #000;
	width: 48px;
	height: 48px;
	background: #fbfbfb;
}
.quantities__minus{
	border-radius: 5px 0 0 5px;
	border-right: 1px solid #ccc;
}
.quantities__plus{
	border-radius: 0 5px 5px 0;
	border-left: 1px solid #ccc;
	padding-bottom: 2px;
}
.quantities__input{
	width: 100%;
	flex-grow: 1;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	color: #000;
}
.quantities__save{
	background: #78af40;
	border-radius: 5px;
	width: 100px;
	height: 48px;
	flex-shrink: 0;
	margin: 0 0 0 10px;
	font-weight: 400;
	font-size: 14px;
	text-align: center;
	color: #fff;
}
.quantities__save:hover{
	background: #9fe25e;
}
.b-order__date-title{
	font-family: "Helvetica", sans-serif;

	font-weight: 400;
	font-size: 14px;
	text-align: center;
	color: #000;
	margin: 0 0 30px 0;
}
.b-order__date-row .b-select{
	padding-left: 20px !important;
}

.b-order-top__cancelled {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* 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);
}

.no-order {
	background: #F1F3F8;
	flex-grow: 1;
	padding: 60px 0;
}

.have-order, .no-order {
	display:none;
}

.b-order-top__cancelled{
	margin: 0 0 63px 0;
}


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;
}