@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;
	color: #424242;
	margin: 0 0 25px 0;
}
p strong{
	font-weight: 500;
	font-size: 20px;
	line-height: 1.2;
}
p a{
	text-decoration: underline;
	text-decoration-skip-ink: none;
	color: #424242;
}
p a:hover{
	text-decoration: none;
}
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
---------------------------------*/
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 #66A212;
	border-radius: 0px;
	width: 24px;
	height: 24px;
	position: relative;
	margin: 0 10px 0 0;
	flex-shrink: 0;
	cursor: pointer;
}
.b-checkbox input[type="checkbox"]:checked + label span{
	background: #66A212 url("../images/check.svg") center no-repeat;
}
.b-checkbox input[type="checkbox"] + label i{
	padding: 0px 0 0 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	color: #666;
	font-style: normal;
	cursor: pointer;
}
.b-checkbox input[type="checkbox"] + label i a{
	font-weight: 400;
	font-size: 16px;
	color: #666;
	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 12px 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 #424242;
	border-radius: 100%;
	transition: 0.3s;
	position: relative;
	margin: 0 12px 0 0;
	flex-shrink: 0;
	cursor: pointer;
}
.b-radio input[type="radio"] + label span:after{
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
	width: 13px;
	height: 13px;
	background: #66a212;
	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 #424242;
	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: 500;
	font-size: 16px;
	color: #424242;
	padding: 2px 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 #66a212;
	border-radius: 0px;
	width: 100%;
	height: 41px;
	padding: 0 13px;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #424242;
	cursor: pointer;
	background: transparent url(../images/select-arrow.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 16px;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	-ms-appearance: none;
	appearance: none !important;
}
.b-select:focus{
	border-color: #3627ab;
	outline: 3px solid rgba(134, 118, 255, 0.21);
	border-radius: 1px;
}
/* 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{
	position: relative;
}
.b-mobile{
	display: none;
}


/* -------------- page index -------------- */
.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 20;
	transition: 0.3s;
}
.header .container{
	max-width: 1310px;
}
.header__container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo{
	display: block;
	width: 176px;
	height: 49px;
	background: url("../images/logo.svg") no-repeat;
}
.logo:hover{

}
.nav ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 10px;
}
.nav ul li{

}
.nav ul li a{
	width: 127px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	font-size: 20px;
	line-height: 4.5;
	padding: 10px;
	letter-spacing: -0.04em;
	text-align: right;
	color: #fff;
	transition: 0.3s;
	text-decoration: none;
}
.nav ul li a:hover{
	color: #66a212;
}
.nav ul li a.active{
	color: #66a212;
}
.nav .header__right{
	display: none;
}
.header__right{

}
.header__contacts{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 20px;
}
.header__contacts-item{
	font-weight: 700;
	font-size: 14px;
	color: #fff;
	text-decoration: none;
	transition: 0.3s;
}
.header__contacts-item.mail{
	font-weight: 500;
	color: #bf95ff;
}
.header__contacts-item:hover{
	color: #66a212;
}

.header__btn{
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #5842ff;
	width: 179px;
	height: 60px;
	font-weight: 500;
	font-size: 20px;
	letter-spacing: -0.04em;
	text-align: center;
	color: #66a212;
	transition: 0.3s;
}
.header__btn:hover{
	background: #4331cb;
	color: #fff;
	border-color: #66a212;
}
.header__btn:hover svg path{
	stroke: #fff;
}
/*header.fixed*/
.header.fixed{
	background: #fff;
}
.header.fixed .logo{
	background: url("../images/logo_color.svg") no-repeat;
	background-size: cover;
}
.header.fixed .nav ul li a{
	color: #3627ab;
	padding: 0 10px;
}
.header.fixed .nav ul li a:hover{
	color: #66a212;
}
.header.fixed .header__contacts-item{
	color: #3627ab;
}
.header.fixed .header__contacts-item:hover{
	color: #66a212;
}
.header.fixed .header__btn{
	border-color: #3f26ff;
	color: #3627ab;
}
.header.fixed .header__btn:hover{
	color: #fff;
	background: #4331cb;
	border-color: #66a212;
}


/* =========== main =========== */
.main{
	height: 980px;
	position: relative;
	background: #3b2bb1;
}
video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	opacity: 0.5;
	transform: rotate(-180deg);
}
.main:after{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(71, 57, 172, 0.89) 55%, rgba(49, 37, 143, 0.89) 100%);
	opacity: 0.8;
	z-index: 2;
}
.main .container{
	height: 100%;
}
.main__wrapper{
	position: relative;
	z-index: 4;
	padding: 225px 0 0 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	height: 100%;
	gap: 0 75px;
}
.main__title{
	font-weight: 800;
	font-size: 96px;
	line-height: 0.9;
	letter-spacing: -0.04em;
	color: #66a212;
}
.main__title:not(:last-child){
	margin-bottom: 50px;
}
.main__title span{
	color: #fff;
}
.main__sb{
	font-weight: 600;
	font-size: 24px;
	letter-spacing: -0.02em;
	color: #fff;
}
.main__arrow{
	width: 52px;
	height: 52px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 60px 0 0 -25px;
}
.main__arrow:after{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: url("../images/ellipse.png") center no-repeat;
	background-size: cover;
	animation: spinAlt 1.3s ease-out infinite;

}
@keyframes spinAlt {
	0%   { transform: rotate(0deg); }

	100% { transform: rotate(360deg); }  /* вправо */
}
.main__arrow svg{
	animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.2; }
}
.main__wrapper img{
	position: absolute;
	bottom: 0;
	left: -161px;
	max-width: 907px;
}
/* =========== section =========== */
.section{
	padding: 115px 0 0 0;
	overflow: hidden;
}
.section_1{
	background: #ededed;
}
.section__sb{
	font-weight: 600;
	font-size: 24px;
	color: #66a212;
	margin-bottom: 40px;
}
.section_1 .title{
	margin-bottom: 71px;
}
.title__item{
	font-weight: 800;
	font-size: 80px;
	line-height: 0.9;
	letter-spacing: -0.04em;
	color: #66a212;
}
.section__wrapper{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0 46px;
	position: relative;
	z-index: 2;
}
.section__left{
	width: 445px;
	flex-shrink: 0;
}
.section__img-wrap{
	width: 272px;
}
.section__img-wrap img{
	border-radius: 100%;
}
.section_img{
	position: relative;
	z-index: 1;
	transform: translateX(-50%);
	left: 50%;
}
.section_1 .section_img{
	margin: -194px 0 0 0;
	max-width: 1142px;
}
.section__wrapper .main__arrow{
	margin-top: 90px;
}
.section__xs{
	display: none;
}
.section_2{
	background: #D4D9D4;
}
.section_2 .title{
	margin-bottom: 108px;
}
.section__items{
	margin: 40px 0 0 0;
}
.section__items-box{
	font-weight: 600;
	font-size: 24px;
	text-align: center;
	color: #66a212;
	border-radius: 100px;
	padding: 23px 24px;
	background: #fff;
}
.section__items-box:not(:last-child){
	margin-bottom: 20px;
}
.section_2 .section__right{
	max-width: 431px;
}
.section_2 .main__arrow{
	margin-top: 57px;
}
.section_2 .section_img{
	max-width: 1440px;
	margin: -40px 0 0 0;
}
.section_3{
	padding: 95px 0;
}
.section__image{
	flex-shrink: 0;
	max-width: 439px;
}
.section_3 .title{
	margin-bottom: 40px;
}
.section_3 .section__wrapper{
	gap: 0 52px;
}
.section_3 .section__right{
	max-width: 492px;
	padding: 22px 0 0 0;
}
/* =========== cta =========== */
.cta{
	background: url("../images/cta_bg.jpg") center top no-repeat;
	background-size: cover;
	padding: 118px 0 100px 0;
	text-align: center;
}
.cta span{
	font-weight: 600;
	font-size: 24px;
	text-align: center;
	color: #3829af;
	display: block;
	margin-top: 15px;
}
.cta p{
	font-weight: 500;
	font-size: 14px;
	text-align: center;
	color: #424242;
	margin: 2px 0 0 0;
}
/* =========== footer =========== */
.footer{
	background: #3b2f94;
}
.copyright{
	font-weight: 500;
	font-size: 12px;
	line-height: 60px;
	text-align: center;
	color: #fff;
}
/* =========== about =========== */
.in-page .nav ul li a.active{
	background: #2c2181;
	color: #fff;
}
.in-page .header__contacts-item.mail{
	color: rgba(255, 255, 255, 0.5);
}
.in-page .header__btn{
	color: #fff;
}
.in-page .header.fixed .header__contacts-item.mail{
	color: #3627ab;
}

.main_2{
	background: url("../images/about_bg.jpg") center top no-repeat;
	background-size: cover;
	height: 873px;
}
.main_2:after{
	display: none;
}
.main_2 .main__title{
	color: #3b2f94;
}
.main_2 .main__sb{
	margin-bottom: 50px;
}
.main_2 .main__wrapper{
	gap: 0 30px;
}
.main_2 p{
	max-width: 474px;
}
.main_2 .main__wrapper-left{
	width: 600px;
	max-width: inherit;
	display: flex;
	justify-content: flex-end;
}
.main_2 .main__wrapper-right{
	width: 611px;
}


.about_section{

}
.container.md{
	max-width: 1290px;
}
.about_section .section__wrapper{
	gap: 0 30px;
}
.about_section .section__left ,
.about_section .section__image{
	width: 600px;
	max-width: inherit;
}
.about_section .section__right {
	width: 611px;
	max-width: inherit;
}




/*about_1*/
.about_1{
	padding: 0;
}
.about_1 .title{
    margin-bottom: 50px;
}
.about_1 .section__wrapper{
	align-items: center;
}
.about_1 .section__image{
	height: 558px;
	position: relative;
}
.about_1 .section__image img{
	position: absolute;
	top: 0;
	right: 0;
	max-width: 700px;
}
.about_1 p{
	max-width: 492px;
}
.about_1-xs{
	display: none;
}
/*about_2*/
.about_2{
	background: #E9E8FF;
	padding: 114px 0 0 0 !important;
}
.about_2 .title{
	position: relative;
	z-index: 2;
}
.about_2 .section__img-wrap img{
	border-radius: 0;
}
.about_2 .section__img-wrap{
	width: 100%;
	height: 615px;
	position: relative;
}
.about_2 .section__img-wrap img{
	position: absolute;
	top: 0;
	right: -27px;
	max-width: 823px;
}
.about_2 .section__right{
	padding-right: 189px;
}
.about_2 .section__items{
	margin: 40px 0;
}
/*about_3*/
.about_3{
	padding: 112px 0;
}
.about_3 .section__image{
	display: flex;
	justify-content: flex-end;
	padding: 0 20px 0 0;
}
.about_3 .section__image img{
	max-width: 439px;
	position: static;
}
.about_3 .title{
	margin-bottom: 40px;
}

/* =========== support =========== */
.container.xl{
	max-width: 1310px;
}
.main_3{
	background: #85B43F;
	height: 842px;
	overflow: hidden;
}
.main_3:after{
	display: none;
}
.main_3 .main__wrapper{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.main_3 .main__wrapper-left{
	display: block;
	max-width: 509px;
}
.main_3 .main__sb{
	margin-bottom: 50px;
}
.main_3 p{
	max-width: 474px;
}
.main_3 .main__wrapper-right{
	flex-grow: 1;
	height: 704px;
}
.main_3 .main__wrapper-right img{
	bottom: 0;
	left: auto;
	right: -162px;
	max-width: 1094px;
}

/*support*/
.support{
	padding: 116px 0 100px 0;
}
.support .title{
	max-width: 480px;
}
.support_section .section__left{
	width: 649px;
}

.support__block{
	max-width: 431px;
}
.support__block .section__sb{
	margin: 0 0 10px 0;
}
.support__block:not(:last-child){
	margin-bottom: 40px;
}
.support__block p a{
	text-decoration: none;
}
.support__block p a:hover{
	text-decoration: underline;
}
/*form*/
.form{
	background: #F7F0EE;
	padding: 104px 0 0 0;
}
.form .section__left{
	position: relative;
	height: 696px;
}
.form .section__left img{
	position: absolute;
	top: 0;
	right: 123px;
	max-width: 651px;
}
.form .section__right{
	padding: 10px 0 0 0;
}
.section__right .title{
	margin: 0 0 50px 0;
}
.form__item , .form__btn{
	max-width: 339px;
}
.form__item:not(:last-child){
	margin-bottom: 20px;
}
.form__item-title{
	font-weight: 500;
	font-size: 16px;
	color: #424242;
	margin-bottom: 10px;
}
.form__item-input{
	border: 1px solid #66a212;
	background: transparent;
	width: 100%;
	height: 42px;
	padding: 0 10px;
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #424242;
}
.form__item-input::-webkit-input-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #666;
}
.form__item-input:-moz-placeholder{
	font-weight: 400;
	font-size: 16px;
	line-height: 18px;
	color: #666;
}
.form__btn{
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #66a212;
	background: #fff;
	width: 100%;
	height: 51px;
	font-weight: 500;
	font-size: 20px;
	letter-spacing: -0.04em;
	text-align: center;
	color: #66a212;
	transition: 0.3s;
}
.form__btn:hover{
	color: #ffffff;
	border-color: #66a212;
	background: #4331cb;
}

/* 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;
}