@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..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: "Inter", sans-serif;
	position: relative;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	background: #fff;
	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-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{
	border-radius: 0px;
	background: #fff;
	border: 1px solid #c9c9c9;
	width: 20px;
	height: 20px;
	position: relative;
	margin: 0 10px 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: 400;
	font-size: 14px;
	line-height: 1.14286;
	color: #6b6b6b;
	font-style: normal;
	cursor: pointer;
}
.b-checkbox input[type="checkbox"] + label i a{
	font-weight: 500;
	font-size: 12px;
	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 #49791a;
	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: 12px;
	height: 12px;
	background: #49791a;
	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 #a0a0a0;
	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: 600;
	font-size: 16px;
	line-height: 1;
	color: #353535;
	padding: 1px 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 #c9c9c9;
	border-radius: 0px;
	width: 100%;
	height: 46px;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: #333;
	padding: 0 10px;
	background: #ffffff url(../images/select-arrow.svg);
	background-repeat: no-repeat;
	background-position: right 13px center;
	background-size: 18px;
	-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{

}
.header__top-wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #e7e7e7;
	padding: 19px 0;
}
.header__top-item{
	font-weight: 400;
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none;
	color: #959595;
}
.header__top-item b{
	font-weight: 700;
	transition: 0.3s;
}
.header__top-item:hover b{
	color: #ff6123;
}
.header__content{
	padding: 20px 0 0 0;
}
.header__content .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-decoration: none;
	gap: 0 8px;
}
.logo p{
	font-weight: 700;
	font-size: 21px;
	letter-spacing: -0.02em;
	color: #565656;
	margin: 0;
}
.header__right{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.nav{
	margin: 0 40px 0 0;
}
.nav ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 30px;
}
.nav ul li{

}
.nav ul li a{
	display: block;
	font-weight: 700;
	font-size: 13px;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: right;
	color: #565656;
	text-decoration: none;
}
.nav ul li a:hover{
	color: #ff6123;
}
.nav ul li a.active{
	color: #ff6123;
}
.header__btn{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 146px;
	height: 69px;
	background: #ff6123;
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	color: #fff;
	transition: 0.3s;
}
.header__btn:hover{
	background: #eb5012;
}
/* -------------- main -------------- */
.main{

}
.slid1{
	background: url("../images/slid.jpg")  center no-repeat;
	background-size: 1440px;
}
.slid2{
	background: url("../images/slid2.jpg")  center no-repeat;
	background-size: 1440px;
	position: relative;
}
.slid3{
	background: url("../images/slid3.jpg")  center no-repeat;
	background-size: 1440px;
}
.main__item{
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.main__item .container{
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.main__item-wrap{
	max-width: 466px;
	position: relative;
	z-index: 2;
}
.main__title{
	font-weight: 800;
	font-size: 52px;
	line-height: 1.07692;
	color: #fff;
	margin: 0 0 25px 0;
}
.main__sb{
	font-weight: 500;
	font-size: 16px;
	line-height: 1.375;
	color: #fff;
}
.swiper-pagination{
	position: relative;
	height: 3px;
	margin: 50px 0 0 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.swiper-pagination:after{
	position: absolute;
	top: 50%;
	left: 0;
	content: "";
	transform: translateY(-50%);
	width: 100%;
	height: 1px;
	background: rgba(185, 225, 0, 0.5);
}
.main .swiper-pagination-bullet{
	display: block;
	width: 100%;
	height: 3px;
	background: none;
	border-radius: 0px;
}
.main .swiper-pagination-bullet-active{
	background: #fff;
}
/* -------------- items -------------- */
.items{
	padding: 33px 0;
}
.items .container{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0 15px;
}
.item{

}
.item__img{
	height: 86px;
	margin: 0 0 10px 0;
}
.item__img svg{
	display: block;
	margin: 0 auto 0;
}
.item span{
	display: block;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.25;
	text-align: center;
	color: #7c7c7c;
}
/* -------------- reviews -------------- */
.reviews{
	background: #F4F0EA;
	padding: 100px 0;
}
.title{

}
.title__item{
	font-weight: 900;
	font-size: 55px;
	line-height: 0.87273;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 15px 0;
}
.title__item.red{
	color: #8a4343;
}
.title__item.green{
	color: #417f4a;
}
.title p{
	font-weight: 500;
	font-size: 16px;
	line-height: 1.375;
	text-align: center;
	color: #565656;
}
.reviews .title{
	margin: 0 0 50px 0;
}
.reviews__row{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 50px;
}
.reviews__item{
	width: 33.333333%;
}
.reviews__item-number{
	width: 57px;
	height: 57px;
	border: 1.5px solid #ff6123;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 800;
	font-size: 20px;
	line-height: 1.1;
	letter-spacing: -0.07em;
	text-align: center;
	color: #ff6123;
	margin: 0 0 23px 0;
}
.reviews__item-name{
	font-weight: 700;
	font-size: 24px;
	line-height: 1.125;
	color: #8a4343;
	margin: 0 0 15px 0;
}
.reviews__item p{
	font-weight: 500;
	font-size: 12px;
	line-height: 1.33333;
	color: #565656;
}
.reviews__user{
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	margin: 20px 0 0 0;
}
.reviews__user-img{
	max-width: 58px;
	margin: 0 10px 0 0;
}
.reviews__user-name{
	font-size: 12px;
	line-height: 1.33333;
	color: #565656;
	font-weight: 700;
}
/* -------------- desc -------------- */
.desc{
	padding: 120px 0 60px 0;
}
.desc .container{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.desc__left{

}
.desc .title__item{
	text-align: left;
}
.desc__img{
	margin: -35px 0 0 -64px;
}
.desc__img img{
	max-width: 373px;
}
.desc__right{
	max-width: 480px;
}
.desc__title{
	font-weight: 700;
	font-size: 24px;
	line-height: 1.125;
	color: #417f4a;
	max-width: 450px;
	margin: 0 0 30px 0;
}
.desc__right p{
	font-weight: 500;
	font-size: 12px;
	line-height: 1.33333;
	color: #000;
}
.desc__right p b{
	font-weight: 700;
}
.desc__right p:not(:last-child){
	margin: 0 0 20px 0;
}

/* -------------- footer -------------- */
.footer{
	background: #e9e9e9;
	padding: 28px 0;
}
.footer .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer__logo{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-decoration: none;
	gap: 0 5px;
}
.footer__logo p{
	font-weight: 700;
	font-size: 14px;
	letter-spacing: -0.02em;
	color: #888;
}
.footer__nav{

}
.footer__nav ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 25px;
}
.footer__nav ul li a{
	display: block;
	font-weight: 700;
	font-size: 11px;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-align: center;
	color: #888;
	text-decoration: none;
	transition: 0.3s;
}
.footer__nav ul li a:hover{
	color: #626262;
}
.footer__btn{
	border: 1px solid #888;
	width: 105px;
	height: 45px;
	font-weight: 700;
	font-size: 12px;
	text-align: center;
	color: #888;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
}
.footer__btn:hover{
	background: #888;
	color: #fff;
}
/* -------------- about -------------- */
.about{
	background: #E9EED8;
	padding: 90px 0;
}
.about .title{
	margin: 0 0 50px 0;
}
.about__row{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.about__img{

}
.about__text{
	max-width: 492px;
	flex-shrink: 0;
	margin: 0 0 0 60px;
}
.about__title{
	font-weight: 500;
	font-size: 16px;
	line-height: 1.375;
	color: #000;
	margin: 0 0 20px 0;
}
.about__text p{
	color: #000;
	font-weight: 500;
	font-size: 12px;
	line-height: 1.33333;
}
.about__text p:not(:last-child){
	margin: 0 0 20px 0;
}
.about__text p b{
	font-weight: 700;
}
/* -------------- trust -------------- */
.trust{
	padding: 90px 0;
}
.trust .title{
	margin: 0 0 45px 0;
}
.trust__row{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 60px;
}
.trust__block{
	width: 50%;
}
.trust__block-img{
	margin: 0 0 25px 0;
	display: flex;
	justify-content: center;
}
.trust__block-text{

}
.trust__block-text b{
	display: block;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.125;
	text-align: center;
	color: #8a4343;
	margin: 0 0 12px 0;
}
.trust__block-text p{
	font-weight: 500;
	font-size: 12px;
	line-height: 1.33333;
	text-align: center;
	color: #565656;
}
/* -------------- bottom -------------- */
.bottom{
	background: #f6f4e7;
	padding: 60px 0 70px 0;
	text-align: center;
}
.bottom__title{
	font-weight: 700;
	font-size: 24px;
	line-height: 1.125;
	color: #8a4343;
	margin: 0 0 35px 0;
}
.bottom p{
	font-weight: 500;
	font-size: 12px;
	line-height: 1.33333;
	color: #000;
}
.bottom p a{
	font-weight: 700;
	text-decoration: none;
}
.bottom p a:hover{
	text-decoration: underline;
}
/* -------------- order -------------- */
.order{

}
.order__title{
	background: #F4F0EA;
	padding: 90px 0 50px 0;
	text-align: center;
}
.order__title-item{
	font-weight: 900;
	font-size: 55px;
	line-height: 0.87273;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #8a4343;
	margin: 0 0 24px 0;
}
.order__title-sb{
	font-weight: 700;
	font-size: 24px;
	line-height: 1.125;
	color: #8a4343;
	margin: 0 0 20px 0;
}
.order__title p{
	font-weight: 500;
	font-size: 16px;
	line-height: 1.375;
	text-align: center;
	color: #565656;
}
.order__form{
	padding: 55px 0 75px 0;
}
.order__form-title{
	font-weight: 700;
	font-size: 14px;
	line-height: 1.42857;
	text-align: center;
	color: #565656;
	margin: 0 0 50px 0;
}
.order__form-wrap{
	max-width: 355px;
	margin: 0 auto 0;
}
.order__input:not(:last-child){
	margin: 0 0 20px 0;
}
.order__input-title{
	font-weight: 400;
	font-size: 14px;
	line-height: 1.14286;
	color: #353535;
	margin: 0 0 4px 0;
}
.order__input input{
	border: 1px solid #b5b5b5;
	width: 100%;
	height: 46px;
	background: #fff;
	padding: 0 15px;
	font-size: 14px;
	line-height: 16px;
	text-align: left;
	color: #565656;
}
.order__form-btn{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 70px;
	background: #49791a;
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	color: #fff;
	transition: 0.3s;
}
.order__form-btn:hover{
	background: #2f5e00;
}
/* -------------- faq -------------- */
.faq{
	background: #F6F4E7;
	padding: 100px 0;
}
.faq .title{
	margin: 0 0 60px 0;
	text-align: left;
}
.faq .title__item{
	text-align: left;
	margin: 0 0 20px 0
}
.faq .title p{
	text-align: left;
	font-weight: 500;
	font-size: 15px;
	line-height: 1.46667;
	color: #565656;
}
.faq__item{
	padding: 0 0 24px 0;
}
.faq__item:not(:last-child){
	margin: 0 0 24px 0;
	border-bottom: 1px solid rgba(138, 67, 67, 0.15);
}
.faq__item-title{
	font-weight: 700;
	font-size: 24px;
	line-height: 1.125;
	color: #8a4343;
	margin: 0 0 15px 0;
}
.faq__item-text p{
	font-weight: 500;
	font-size: 12px;
	line-height: 1.33333;
	color: #565656;
}
/* -------------- contactsPage -------------- */
.contactsPage{
	padding: 100px 0;
	background: #f6f4e7;
}
.title__sb{
	font-weight: 700;
	font-size: 24px;
	line-height: 1.125;
	text-align: center;
	color: #8a4343;
	margin: 0 0 24px 0;
}
.contactsPage .title{
	margin: 0 0 100px 0;
}
.contactsPage__row{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0 0 70px 180px;
}
.contactsPage__row:not(:last-child){
	border-bottom: 1px solid rgba(138, 67, 67, 0.15);
	margin: 0 0 50px 0;
}
.contactsPage__img{

}
.contactsPage__text{
	max-width: 467px;
}
.contactsPage__text p{
	font-weight: 500;
	font-size: 12px;
	line-height: 1.33333;
	color: #565656;
}
.contactsPage__text p b{
	font-weight: 700;
}
.contactsPage__text p a{
	font-weight: 700;
	color: #ff6123;
	text-decoration: none;
}
.contactsPage__text p a:hover{
	text-decoration: underline;
}

/* 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;
}










