@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
html{
	height: 100%;
	width: 100%;
	margin: 0;
	-webkit-overflow-scrolling:touch;
}
body{
	margin: 0;
	color: #000000;
	background: #ebeff6;
	font-size: 14px;
	line-height: 1.2;
	font-family: 'Roboto', sans-serif;
	position: relative;
	width: 100%;
	-webkit-overflow-scrolling: touch;
	min-height: 100%;
	min-width: 320px;
}
body.body-overflow{
	overflow: hidden;
}
.clear{
	clear: both;
	visibility: hidden;
}
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}
.white{
	color: #ffffff;
}
h1, h2, h3, h4, h5, h6{
	margin: 0 0 10px 0;
	font-weight: 900;
	color: #FFFFFF;
	text-transform: capitalize;
	line-height: 1.3;
}
h1{
	font-size: 62px;
}
h2{
	font-size: 44px;
}
h3{
	font-size: 32px;
}
h4{
	font-size: 28px;
}
h5{
	font-size: 24px;
}
h6{
	font-size: 18px;
}
p {
	font-weight: normal;
	font-size: 18px;
	line-height: 1.4;
	color: #333333;
	margin: 0 0 15px 0;
}
p:last-child{
	margin-bottom: 0;
}
img{
	display: block;
	max-width: 100%;
}
a{
	outline: none;
}
ul{
	padding: 0;
	margin: 0;
}
li{
	list-style: none;
}
/* buttons */
.b-link{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	color: #FFFFFF;
	text-shadow: 0 4px 9px rgba(10, 10, 35, 0.32);
	text-decoration: none;
	transition: 0.3s;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
}
.b-link_mt{
	margin-top: 20px;
}
.b-link:after{
	font-family: 'icomoon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e904";
	font-size: 14px;
	color: #ffffff;
	margin: 5px 0 0 20px;
	transition: 0.3s;
}
.b-link:hover{
	text-decoration: none;
	color: #6A4BFF;
	transition: 0.3s;
	opacity: 0.8;
}
.b-link:hover:after{
	text-decoration: none;
	color: #6A4BFF;
	transition: 0.3s;
}
.b-link_black:hover{
	color: #050512;
}
.b-link_black:hover:after{
	color: #050512;
}
.b-link_purple{
	color: #6A4BFF;
}
.b-link_purple:after{
	color: #6A4BFF;
}
.b-link_purple:hover , .b-link_purple:hover:after{
	color: #ffffff;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  margin: 0; /* 2 */
}
button{
	margin:0;
	padding:0;
	border:none;
	background:none;
	cursor:pointer;
	overflow:visible;
	width:auto;
	outline: none;
	box-shadow: none;
}
button:hover , button:focus , button:active{
	outline: none;
	text-decoration: none;
}
.green-btn{
	width: 338px;
	height: 81px;
	background: #009e76;
	border-radius: 15px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.11);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-decoration: none;
	transition: 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #f2f5fa;
	letter-spacing: 1px;
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}
.green-btn:hover{
	background: #0bd29f;
	text-decoration: none;
	color: #ffffff;
	transition: 0.3s;
}
.green-btn:active{
	background: #11906f;
	text-decoration: none;
	color: #ffffff;
	transition: 0.3s;
}
.orange-btn{
	font-weight: 700;
	background: #ff5e2c;
	border-radius: 22px;	
	color: #ffffff;
	transition: 0.3s;
}
.orange-btn:hover{
	background: #e73e0a;
	transition: 0.3s;
}
.orange-btn:active{
    background: #b93106;
	transition: 0.3s;
}
.disable{
	color: #CCCCCC !important;
	border-color: #E6E6E6 !important;
	pointer-events: none;
}
.disable i{
	color: #CCCCCC !important;
}
.disable:hover , .disable:active , .disable:focus{
	color: #CCCCCC;
	border-color: #E6E6E6;	
}
.disable:hover i, .disable:active i, .disable:focus i{
	color: #CCCCCC;
}
.swiper-button-disabled{
	color: #CCCCCC !important;
	border-color: #E6E6E6 !important;
	pointer-events: none;	
}
/* ripple-effect */
.ripple {
   position: relative;
   overflow: hidden;
}
.ripple-effect {
   display: inline-block;
   position: absolute;
   top: 0;
   left: 0;
   border: 2px solid rgba(255, 255, 255, .3);
   -webkit-border-radius: 50%;
   border-radius: 50%;
   -webkit-animation: ripple 1s ease forwards;
   animation: ripple 1s ease forwards;
   z-index: 3;
}
@-webkit-keyframes ripple {
   0% {
       -webkit-transform: scale(0);
       transform: scale(0);
   }
   100% {
       -webkit-transform: scale(200);
       transform: scale(200);
   }
}
@keyframes ripple {

    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(200);
        transform: scale(200);
    }
}


/* inputs */
input{
	outline: none;
	border: none;
}
.b-input{
	margin: 0 0 25px 0;
}
.b-input__label{
	display: block;
	position: relative;
	margin: 0;
}
.b-input__title{
	margin: 0 0 13px 0;
	color: #09090a;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
}
.b-input__item{
	width: 100%;
	height: 64px;
	background: #f2f5fa;
	border-radius: 15px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	padding: 0 45px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: #181a25;
	font-size: 22px;
	font-weight: 400;
	line-height: 24px;
}
.b-input__item::-webkit-input-placeholder{
	color: #999;
	font-size: 22px;
	font-weight: 400;
	line-height: 24px;
}
.b-input__item:-moz-placeholder{
	color: #999;
	font-size: 22px;
	font-weight: 400;
	line-height: 24px;
}
textarea{
	height: 80px;
	outline: none;
}
.b-textarea{
	width: 100%;
	height: 331px;
	background: #f2f5fa;
	border-radius: 15px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	padding: 25px 45px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: none;
	outline: none;
	color: #181a25;
	font-size: 22px;
	font-weight: 400;
	line-height: 24px;
}
.b-textarea::-webkit-input-placeholder{
	color: #999;
	font-size: 22px;
	font-weight: 400;
	line-height: 24px;
}
.b-textarea:-moz-placeholder{
	color: #999;
	font-size: 22px;
	font-weight: 400;
	line-height: 24px;
}
.b-input-btn{
	width: 100%;
	height: 50px;
	border-radius: 25px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	margin: 22px auto 0;
}

/* checkbox , radio */
.b-checkbox{
	margin: 0 0 24px 0;
}
.b-checkbox:last-child{
	margin-bottom: 0px;
}
.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: 28px;
	height: 28px;
	border: 2px solid #999;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: none;
	position: relative;
	margin: 0;
	flex-shrink: 0;
	cursor: pointer;
	color: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
}
.b-checkbox input[type="checkbox"]:checked + label span{
	width: 28px;
	height: 28px;
	color: #999;
}

.b-check{
	margin: 0 0 14px 0;
}
.b-check:last-child{
	margin-bottom: 0;
	margin-top: 0;
}
.b-check input[type="checkbox"]{
    display: none;
}
.b-check input[type="checkbox"] + label span{
	width: 28px;
	height: 28px;
	background: #ffffff;
	flex-shrink: 0;
	margin: 0 13px 0 0;
	cursor: pointer;
}
.b-check input[type="checkbox"] + label{
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.b-check input[type="checkbox"]:checked + label span{
	width: 28px;
	height: 28px;
	background: url(../images/check-ico.png) center no-repeat #ffffff;
}
.b-check input[type="checkbox"] + label i{
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	font-style: normal;
	padding: 5px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
/* radio */
.b-radio{
	
}
.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;
	border: 1px solid #d1d1d1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 11px;
	color: transparent;
	transition: 0.3s;
	position: relative;
	margin: 0 15px 0 0;
	flex-shrink: 0;
	cursor: pointer;
}
.b-radio input[type="radio"]:checked + label span{
	width: 24px;
	height: 24px;
	border: 1px solid #d1d1d1;
	color: #2098b6;
	transition: 0.3s;
}
.b-radio input[type="radio"] + label i{
	color: #000000;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	font-style: normal;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
select{
	outline: none;
}
.b-select{
	width: 100%;
	height: 72px;
	border: none;
	border-right: 1px solid #e8e8e8;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 0px;		
	background: #ffffff url(../images/select-arrow.png);
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 9px;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	-ms-appearance: none;
	appearance: none !important; 
    transition: 0.3s;
	color: black;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;    
	padding: 0 30px;
}
.b-select:hover{
	border-color: #2f95fe;
	transition: 0.3s;
}
.fancybox-enabled{
	padding: 0 17px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-container{
	position: relative;
}
.fancybox-container{
	z-index: 999999;
}
.b-mobile{
	display: none;
}
.modal-dialog{
	pointer-events: inherit;
}
.modal{
	z-index: 99999999;
}
.slick-slide , .slick-slide:hover , .slick-slide:focus{
	outline: none !important;
}
/* End Total css ====*/
.container-fluid , .container{
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.container{
	max-width: 1760px;
}
.b-container{
	background: #ebeff6;
}
.front-page{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100vh;
}
/* -------------- page index -------------- */
.b-header{

}
.b-header__top{
	padding: 40px 0 25px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-header__top-container{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 75px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-logo{
	display: block;
	width: 179px;
}
.b-header__top-wrap{
	display: flex;
	justify-content: flex-end;
	flex-grow: 1;
	margin: 0 70px 0 0;
}
.change-theme{
	width: 86px;
	height: 36px;
	background: #f2f5fa;
	border-radius: 18px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 13px 0 13px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transition: 0.3s;
	cursor: pointer;
}
.change-theme:after{
	width: 26px;
	height: 25px;
	background: #f2f5fa;
	box-shadow: 0 0 6px rgba(8, 8, 8, 0.34);
	position: absolute;
	top: 50%;
	right: 13px;
	content: "";
	transform: translateY(-50%);
	border-radius: 100%;
	transition: 0.3s;
}
.change-theme .icon-light-theme{
	font-size: 24px;
	color: #999;
}
.change-theme .icon-black-theme{
	font-size: 23px;
	color: white;
}
.change-theme.active:after{
	right: 48px;
	transition: 0.3s;
}
.change-theme.active{
	transition: 0.3s;
	background-color: #d3bcb8;
	background-image: linear-gradient(178deg, #3b3c46 0%, #2e2e37 100%);
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.36);
}
.b-header__top-btn{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #25252c;
	font-size: 30px;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
}
.b-header__top-btn i{
	font-size: 16px;
	margin: 0 0 0 10px;
	transition: 0.3s;
}
.b-header__top-btn.active i{
	transform: rotate(90deg);
	transition: 0.3s;
}
.b-header .b-header__top-btn.active{
	opacity: 0;
}


.b-header__nav{

}
.b-header__nav-wrap{
	background: #f2f5fa;
	border-radius: 25px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	padding: 31px 75px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-header__nav-wrap ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.b-header__nav-wrap ul li{

}
.b-header__nav-wrap ul li a{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-decoration: none;
	color: #25252c;
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	transition: 0.3s;
}
.b-header__nav-wrap ul li a i{
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	width: 42px;
	height: 42px;
	background: #ff0711;
	color: #ffffff;
	margin: 0 15px 0 0;
	flex-shrink: 0;
	font-size: 42px;
	transition: 0.3s;
}
.b-header__nav-wrap ul li a b{
	color: red;
	font-weight: 900;
}
.b-header__nav-wrap ul li.not-entered a{
	color: #999;
}
.b-header__nav-wrap ul li a:hover i{
	transition: 0.3s;
	background: #dc020b;
}
.b-header__nav-wrap ul li a:hover{
	color: #000000;
	transition: 0.3s;
}
.b-header__nav-arrow{
	display: none;
}
/* -------------- b-nav -------------- */
.b-nav{
	position: absolute;
	top: 0;
	right: 0;
	width: 700px;
	height: 100%;
	background: #ebeff6;
	box-shadow: 0 0 54px rgba(8, 8, 8, 0.23);
	z-index: -1;
	padding: 70px 100px 50px 100px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: auto;
	scrollbar-color: #ffffff #ffffff;
	scrollbar-width: thin;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.b-nav.active{
	z-index: 60;
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
}
.b-nav::-webkit-scrollbar {
	width: 0px;
	background-color: #ffffff;
}
.b-nav__top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 150px 0;
}
.b-nav__close{
	font-size: 35px;
	line-height: 1;
	color: #999;
	transition: 0.3s;
}
.b-nav__close:hover{
	color: #000000;
	transition: 0.3s;
}
.b-nav ul{

}
.b-nav ul li{
	margin: 0 0 30px 0;
}
.b-nav ul li:last-child{
	margin-bottom: 0px;
}
.b-nav ul li a{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 22px;
	font-weight: 500;
	line-height: 1;
	text-transform: uppercase;
	color: #25252c;
	text-decoration: none;
}
.b-nav ul li a .icon-question{
	font-size: 36px;
	margin-left: 10px;
}
.b-nav ul li a i{
	font-size: 50px;
	color: #454753;
	margin: -4px 30px 0 0;
}
.b-nav ul li a.active{
	color: #ff0711;
}
.b-nav ul li a.active i{
	color: #ff0711;
}

.b-nav ul li a:hover{
	color: #ff0711;
	transition: 0.3s;
}
.b-nav ul li a:hover i{
	color: #ff0711;
	transition: 0.3s;
}
/* -------------- b-menu -------------- */
.b-menu{
	position: fixed;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: #f2f5fa;
	border-radius: 0 25px 25px 0;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	z-index: 60;
}
.b-menu ul{

}
.b-menu ul li{

}
.b-menu ul li a{
	width: 100px;
	width: 64px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 40px;
	color: #454753;
	text-decoration: none;
	transition: 0.3s;
}
.b-menu ul li a.active{
	color: #ff0711;
}
.b-menu ul li a:hover{
	transition: 0.3s;
	color: #ff0711;
}
.b-menu ul li a .icon-question{
	font-size: 30px;
}

/* -------------- b-main -------------- */
.b-main{

}
.b-main__wrapper{
	overflow: hidden;
	padding: 70px 0 115px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-main__container{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
}
.b-main__container-left{
	width: 775px;
	flex-shrink: 0;
	margin: 0 185px 0 75px;
}
.b-main__container-top{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 60px 30px;
}
.b-main__container-top p{
	color: #999;
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	margin: 0 80px 0 0;
}
.b-select_gray{

}
.b-select_gray .selectric{
	border: 2px solid #999;
	border-radius: 15px;
	background: none;
}
.b-select_gray .selectric .label{
	height: 48px;
	line-height: 48px;
	margin: 0 90px 0 30px;
	color: #999;
	font-size: 22px;
	font-weight: 900;
}
.selectric .button{
	height: 100% !important;
	background: none;
}
.selectric .button:after{
	font-family: 'icomoon' !important;
	content: "\e90d" !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 13px;
	color: #999;
	border: none;
	bottom: auto;
	top: 50%;
	transform: translateY(-50%);
	width: auto;
	height: auto;
}
.b-slider{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
}
.b-slider__preview{
	width: 215px;
	flex-shrink: 0;
	position: relative;
	z-index: 10;
}
.b-slider__preview .b-contract{
	transform: translateY(-50%) scale(0.2);
	position: absolute;
	top: 50%;
	left: -200px;
}
.b-slider__preview .b-contract__select{
	pointer-events: none;
}
.b-slider__preview-item{
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	position: relative;
	min-height: 88px;
}
.b-slider__preview-item .b-contract__label-text{
	display: none;
}
.b-slider__big{
	width: 100%;
	position: relative;
	z-index: 1;
}
.b-slider__big .slick-list{
	overflow: visible;
}
.b-slider__big-item .b-contract{
	opacity: 0;
	position: relative;
	animation: hideImage .5s, scaleBackImage .5s forwards;
        text-decoration: none !important;
}
a.b-contract *{
    text-decoration: none !important;
}
.b-slider__big-item.slick-current .b-contract{
	animation: showImage .8s .5s forwards, scaleImage .5s .5s forwards;
}
@keyframes showImage {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes hideImage {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes scaleImage {
	0% {
		transform: scale(0);
		transform-origin: center;
	}
	100% {
		transform: scale(1);
		transform-origin: center;
	}
}
@keyframes scaleBackImage {
	0% {
		transform: scale(1);
		transform-origin: center;
	}
	100% {
		transform: scale(0);
		transform-origin: center;
	}
}
.b-main__app-right__xs{
	display: none;
}
/* -------------- b-contract -------------- */
.b-contract{
	width: 562px;
	height: 360px;	
        background: #6E57A7;
	border-radius: 25px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.36);
	padding: 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: column;
	position: relative;
}
.b-contract__label{
	position: absolute;
	top: -35px;
	right: -42px;
	border-radius: 100%;
	width: 84px;
	height: 83px;
	background: #009e76;
	box-shadow: 0 0 51px rgba(0, 0, 0, 0.36);
	display: flex;
	justify-content: center;
	align-items: center;
}
.b-contract__label i{
	color: #ffffff;
	font-size: 40px;
}
.b-contract__label-text{
	position: absolute;
	bottom: 117%;
	left: 17px;
	background: #f2f5fa;
	border-radius: 25px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	color: #009d76;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	padding: 20px 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-width: 180px;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
	transition: 0.3s;
}
.b-contract__label-text:after{
	position: absolute;
	top: 98%;
	left: 17px;
	width: 18px;
	height: 30px;
	content: "";
	background: url("../images/label-arrow.png") center no-repeat;
}
.b-contract__label:hover .b-contract__label-text{
	z-index: 2;
	opacity: 1;
	visibility: visible;
	transform: 0.3s;
}
.b-contract__top{
	width: 100%;
}
.b-contract__top{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.b-contract__top span{
	display: block;
	color: #ffffff;
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}
.b-contract__row{
	width: 100%;
}
.b-contract__top-item{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 25px 0;
}
.b-contract__top-item:last-child{
	margin-bottom: 0;
}
.b-contract__top-item span{
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
}
.b-contract__top-item b{
	color: #ffffff;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
}
.b-contract__bottom{
	color: #ffffff;
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
}
.b-contract__bottom span{

}
.b-contract__top-item_red{
	color: #ff0611;
}
.b-contract__top-item_orange{
	color: #fe6b1b;
}
.b-contract__select{
	width: 226px;
	margin: 0 auto 0;
}
.b-contract__select .selectric .label{
	height: 44px;
	border: 2px solid #f2f5fa;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 22px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	line-height: 44px;
	color: #fefeff;
	font-size: 18px;
	font-weight: 900;
	margin: 0;
	padding: 0 70px 0 35px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-contract__select .selectric{
	background: none;
	border: none;
	border-radius: 22px;
}
.b-contract__select .selectric .button{
	background: none;
	color: #ffffff;
	width: 60px;
}
.b-contract__select .selectric .button:after{
	color: #ffffff;
}
.b-contract__select .selectric-open .selectric{
	background: #ffffff;
	border-radius: 22px 22px 0 0;
}
.b-contract__select .selectric-open .selectric .label{
	box-shadow: none;
	border-color: #ffffff;
	color: #454753;
}
.b-contract__select .selectric-open .button:after{
	color: #454753;
	transform: translateY(-50%) rotate(90deg);
}
.b-contract__select .selectric-items li{
	color: #454753;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.1;
	padding: 8px 35px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-contract__select .selectric-items li:last-child{
	border-radius: 0 0 23px 23px;
}
.b-contract__select .selectric-open .selectric-items li:hover{
	background: red;
	color: #ffffff;
}
.b-contract__select .selectric-open .selectric-items li.highlighted{
	background: #d61717;
	color: #ffffff;
}
.b-contract__select .selectric-items{
	border-radius: 0 0 23px 23px;
	border: none;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
}
.b-contract__select .selectric-above .selectric-items{
	border-radius: 23px 23px 0 0;
}
.b-contract__select .selectric-above .selectric-items li:last-child{
	border-radius: 0px;
}
.b-contract__select .selectric-above .selectric-items li:first-child{
	border-radius: 23px 23px 0 0;
}
.b-contract__select .selectric-above .selectric{
	border-radius: 0 0 23px 23px;
}




.b-contract__label_red{
	background: #ff0611;
	box-shadow: 0 0 51px rgba(0, 0, 0, 0.36);
}
.b-contract__label_red i{
	font-size: 88px;
}
.b-contract__label_red .b-contract__label-text{
	color: #ff0611;
}

.b-contract__label_orange{
	background: #fe6b1b;
	box-shadow: 0 0 51px rgba(0, 0, 0, 0.36);
}
.b-contract__label_orange i{
	font-size: 88px;
}
.b-contract__label_orange .b-contract__label-text{
	color: #fe6b1b;
}

.b-main__container-right{
	position: relative;
	z-index: 10;
	flex-grow: 1;
	padding: 40px 75px 0 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-main__app{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	background: #f2f5fa;
	border-radius: 25px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	padding: 45px 50px 30px 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 0 90px 0;
}
.b-main__app-left{

}
.b-main__app-title{
	color: #454753;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
	margin: 0 0 30px 0;
}
.b-main__app-wrapper{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.b-main__app-item{
	margin: 0 55px 0 0;
	width: 86px;
}
.b-main__app-item:last-child{
	margin-right: 0px;
}
.b-main__app-img{
	display: block;
	margin: 0 0 30px 0;
}
.b-main__app-img img{
	height: 30px;
	object-fit: contain;
}
.b-main__btns{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.b-main__btn{
	width: 100%;
	height: 89px;
	background: #f2f5fa;
	border: 2px solid transparent;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 25px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	color: #999;
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	max-width: 320px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	transition: 0.3s;
	margin: 0 20px 0 0;
}
.b-main__btn i{
	font-size: 32px;
	color: #999;
	margin: -4px 20px 0 0;
	ransition: 0.3s;
}
.b-main__btn:hover{
	border-color: red;
	transition: 0.3s;
	color: #ff0610;
}
.b-main__btn:hover i{
	color: red;
	transition: 0.3s;
}
.b-main__btn:last-child{
	margin-right: 0px;
}
.b-slider__status{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 30px 0 0 0;
}
.b-slider__status-wrap{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	font-size: 20px;
	line-height: 1;
	color: #999;
	font-weight: 500;
	margin: 0 30px;
}
.b-slider__status-wrap p{
	font-size: 20px;
	line-height: 1;
	color: #ff0611;
	font-weight: 700;
	margin: 0;
}
b-slider__status-wrap span{
	font-size: 20px;
	line-height: 1;
	color: #999;
	font-weight: 500;
}
.b-slider__status-arrow{
	color: #999;
	font-size: 43px;
	line-height: 1;
	padding: 3px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


	/* -------------- b-footer -------------- */
.b-footer{

}
.b-footer__container{
	background-color: #f2f5fa;
	border-radius: 25px 25px 0 0;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 75px 50px 75px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-footer__container-contacts{

}
.b-footer__container-contacts > ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-footer__container-contacts > ul > li{
	margin: 0 80px 0 0;
}
.b-footer__container-contacts > ul > li > button:after{
	display: none;
}
.b-footer__container-contacts > ul > li:last-child{
	margin-right: 0px;
}
.b-footer__container-contacts ul li a , .b-footer__container-contacts ul li button{
	color: #454753;
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	transition: 0.3s;
}
.b-footer__container-contacts ul li a i , .b-footer__container-contacts ul li button i{
	margin: 0 0 0 10px;
	font-size: 18px;
}
.b-footer__container-contacts ul li a:hover , .b-footer__container-contacts ul li button:hover{
	opacity: 0.6;
	transition: 0.3s;
}
.b-footer__container-contacts .dropdown-menu{
	border: none;
	background: #ffffff;
	padding: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 14px;
	min-width: 19rem;
}
.b-footer__container-contacts .dropdown-menu a{
	margin: 15px 0;
}
.b-footer__container-contacts .dropdown-menu p{
	font-size: 20px;
}
.b-footer__container-partners{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-footer__container-partners a{
	display: block;
	margin: 0 100px 0 0;
}
.b-footer__container-partners a:last-child{
	margin-right: 0px;
}
.b-footer__container-social ul{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.b-footer__container-social ul li{
	margin: 0 45px 0 0;
}
.b-footer__container-social ul li:last-child{
	margin-right: 0px;
}
.b-footer__container-social ul li a{
	display: block;
	transition: 0.3s;
}
.b-footer__container-social ul li a:hover{
	opacity: 0.6;
	transition: 0.3s;
}

/* -------------- b-content -------------- */
.b-content{
	margin: 70px 0;
}
.b-content__row{
	padding: 0 75px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-content__row_mb{
	margin-bottom: 80px;
}
.b-row{
	margin-left: -40px;
	margin-right: -40px;
}
.b-col{
	padding-left: 40px;
	padding-right: 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-contract_two{

}
/* -------------- b-info -------------- */
.b-info{
	width: 562px;
	min-height: 360px;
	background: #f2f5fa;
	border-radius: 25px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	padding: 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.b-info__row-item{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 0 5px 0;
}
.b-info__row-item:last-child{
	margin-bottom: 0px;
}
.b-info__row-item span{
	color: #000000;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}
.b-info__row-item b{
	color: #0a0a0a;
	font-family: Roboto;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
}
.b-info__row-item .b.red{
	color: #ff0611;
}

/* -------------- b-questions -------------- */
.b-questions{
	text-align: center;
	padding: 33px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-questions__ico{
	background: url("../images/b-questions__ico.png") center no-repeat;
	width: 55px;
	height: 55px;
	margin: 0 auto 40px;
}
.b-questions__text{
	margin: 0 0 45px 0;
}
.b-questions__text b{
	display: block;
	color: #ff0710;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.5;
}
.b-questions__text span{
	display: block;
	color: #ff0710;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.5;
}
.b-questions__btn{
	width: 100%;
	height: 80px;
	background: #f2f5fa;
	border-radius: 15px;
	border: 2px solid #f2f5fa;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.11);
	display: flex;
	justify-content: center;
	align-items: center;
	color: #009e76;
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
}
.b-questions__btn:hover{
	box-shadow: 0 0 151px rgba(8, 8, 8, 0.11);
	border-color: #009e76;
	transition: 0.3s;
	color: #009e76;
}
.b-questions__btn:active{
	box-shadow: 0 0 31px rgba(8, 8, 8, 0.11);
	transition: 0.2s;
}
.mb-80{
	margin-bottom: 80px;
}
.b-content__nav{
	padding: 0 75px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 0 50px 0;
}
.b-content__nav ul{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: nowrap;
	border-bottom: 1px solid #999999;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;	
}
.b-content__nav ul li{

}
.b-content__nav ul li a{
	display: block;
	color: #999;
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0 20px 20px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	transition: 0.3s;
}
.b-content__nav ul li a:after{
	position: absolute;
	bottom: -6px;
	left: 0;
	content: "";
	width: 100%;
	height: 0px;
	background: #ff0611;
	border-radius: 6px;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.b-content__nav ul li a:hover{
	color: #ff0611;
	transition: 0.3s;
}
.b-content__nav ul li a.active{
	color: #ff0611;
	transition: 0.3s;
}
.b-content__nav ul li a.active:after{
	height: 12px;
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
}


.b-table{
	padding: 50px 75px 30px 75px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #f2f5fa;
	border-radius: 25px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	margin: 0 0 50px 0;
}
.b-table table{
	width: 100%;
}
.b-table table thead tr th{
	color: #131212;
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	padding: 0 0 23px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: 1px solid #999999;
}
.b-table table tbody tr td{
	color: #454753;
	font-size: 18px;
	font-weight: 400;
	line-height: 2;
	padding: 14px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: 1px solid #999999;
	padding-right:  25px;
}
.b-table table thead tr th.w-1{
	width: 220px;
}
.b-table table thead tr th.w-2{
	width: 260px;
}
.b-table table tbody tr td:last-child{
	padding-right: 0px;
}
.b-table table tbody tr td strong{
	font-weight: 900;
	text-transform: uppercase;
}
.b-table table tbody tr:last-child td{
	border: none;
	padding-bottom: 0px;
}
.b-pagination{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-pagination ul{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-pagination ul li{
	margin: 0 20px 0 0;
}
.b-pagination ul li a{
	display: block;
	color: #999;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
}
.b-pagination ul li a:hover{
	color: #000;
	transition: 0.3s;
}
.b-pagination ul li a.active{
	color: #ff0711;
}
.b-pagination__next{
	color: #999;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	display: block;
	transition: 0.3s;
	text-decoration: none;
}
.b-pagination__next:hover{
	color: #000;
	transition: 0.3s;
}
.b-table_4 table thead tr th{
	width: 17.333333%;
}
.b-table_5 table thead tr th{
	width: 100%;
}
.b-table_5 table thead tr th{
	width: 22%;
}
.b-table_5 table thead tr th:last-child{
	width: 10%;
}
.b-table tbody tr td.tabl-debt{
	color: #ff0611;
}

.b-content__wrapper{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	margin-right: -62.5px;
	margin-left: -62.5px;
	margin-bottom: 50px;
}
.b-table_3{
	margin-bottom: 0;
}
.b-table_3 table thead tr th:first-child{
	width: 50%;
}
.b-table_3 table thead tr th:last-child{
	width: 5%;
	text-align: center;
}
.b-table_3 table tbody tr td:last-child{
	text-align: center;
}
.b-content__wrapper-col{
	padding-left: 62.5px;
	padding-right: 62.5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-content__wrapper-col_left{
	flex-grow: 1;
}
.b-content__wrapper-col_right{
	width: 625px;
	max-height: 499px;
}
.b-total{
	min-height: 489px;
	height: 100%;
	background-color: #f2f5fa;
	border-radius: 25px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	padding: 45px 20px 35px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	align-items: center;
}
.b-total__top{
	text-align: center;
	color: #131212;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
	margin: 0 0 15px 0;
}
.b-total__block{

}
.b-total__block-title{
	color: #25252c;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 20px 0;
}
.b-total__block-item{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin: 0 0 30px 0;
}
.b-total__block-item:last-child{
	margin-bottom: 0px;
}
.b-total__block-item span{
	display: block;
	width: 35px;
	color: #25252c;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
}
.b-total__block-item input{
	width: 227px;
	height: 48px;
	background: none;
	border: 2px solid #ff0711;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 15px;
	padding: 0 20px
}
.b-total__block-item input.datepicker{
	width: 100%;
	background: url("../images/calendar.svg") center right 20px no-repeat;
}
.b-total__bottom{
	text-align: center;
}
.b-total__bottom span{
	display: block;
	color: #25252c;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	margin: 0 0 15px 0;
}
.b-total__bottom b{
	display: block;
	color: #a6a7a7;
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
}
/* -------------- b-messages -------------- */
.b-messages__row{
	margin-left: -37.5px;
	margin-right: -37.5px;
	align-items: flex-start;
}
.b-messages__row-col{
	padding-left: 37.5px;
	padding-right: 37.5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-messages__row-col_left{
	width: 70%;
}
.b-messages__row-col_right{
	width: 30%;
}
.b-messages__top{
	padding: 0 0 0 80px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-messages__top-wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 50px 0;
}
.b-messages__top-title{
	color: red;
	font-size: 30px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}
.b-messages__top-wrap .b-total__block{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-messages__top-wrap .b-total__block-title{
	margin: 0 35px 0 0;
}
.b-messages__top-wrap .b-total__block-form{
	display: flex;
	justify-content: center;
	align-items: center;
}
.b-messages__top-wrap .b-total__block-item{
	margin: 0 20px 0 0;
}
.b-messages__top-wrap .b-total__block-item:last-child{
	margin-right: 0px;
}
.b-messages__nav{
	margin: 0 0 50px 0;
	padding: 0 70px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-messages__nav ul{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	border-bottom: 1px solid #999;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-messages__nav ul li{

}
.b-messages__nav ul li a{
	display: block;
	text-align: center;
	text-decoration: none;
	padding: 0 20px 20px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
.b-messages__nav ul li a:after{
	position: absolute;
	bottom: -5px;
	left: 0;
	content: "";
	width: 100%;
	height: 0px;
	background: #ff0611;
	border-radius: 6px;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.b-messages__nav ul li a b{
	color: #999;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
	transition: 0.3s;
}
.b-messages__nav ul li a:hover b{
	color: #ff0611;
	transition: 0.3s;
}
.b-messages__nav ul li a.active:after{
	z-index: 2;
	height: 12px;
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
}
.b-messages__nav ul li a.active b{
	color: #ff0611;
}
.message-chart{
	position: relative;
	display: block;
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
}
.message-chart canvas{
	position: relative;
	z-index: 3;
}
.message-chart:after{
	width: 59px;
	height: 59px;
	border: 6px solid #999;
	content: "";
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	border-radius: 100%;
	z-index: 1;
}
.message-chart__text{
	font-family: 'Roboto Condensed', sans-serif;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	color: #ff0610;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}
.b-messages__content{
	background: #f2f5fa;
	border-radius: 25px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	padding: 0 70px 0 80px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 0 60px 0;
}
.b-messages__content-item{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	border-bottom: 1px solid #999;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 25px 0;
}
.b-messages__content-item:last-child{
	border: none;
}
.b-messages__content-text{
	flex-grow: 1;
}.b-messages__content-text p{
	 color: #25252c;
	 font-size: 18px;
	 line-height: 1.35;
	 font-weight: 400;
 }
.b-messages__content-text p b{
	font-weight: 700;
}
.b-messages__content-date{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	color: #454753;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	width: 100px;
	margin: 0 0 0 40px;
}
.b-messages__row-col_right{
	background: #f2f5fa;
	border-radius: 25px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	padding: 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-messages__row-col_title{
	color: #999;
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
	margin: 0 0 65px 0;
}
.b-messages__slider{

}
.b-messages__slider-item{
	display: flex !important;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.b-messages__slider-item a{
	width: 80px;
	display: block;
	border: 2px solid #ff0711;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 15px;
	padding: 10px 5px;
	margin: 0 20px 30px 20px;
}
.b-messages__slider-item a img{
	margin: 0 auto 0;
}
.b-messages__row-col_right .b-slider__status{
	justify-content: center;
}
.b-archive__table{

}
.b-archive__table table thead tr th{
	color: #999;
}
.b-table__block{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-table__block .b-select_gray{
	margin: 0 0 0 100px;
}
.b-messages__top-title_gray{
	color: #999;
}
.b-messages__top-title_mr{
	margin: 0 160px 0 0;
}
.b-content__row_flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.b-archive__total{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.b-archive__total span{
	color: #999;
	font-weight: 900;
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
	display: block;
	margin: 12px 30px 0 0;
}
.b-archive__total b{
	color: #999;
	font-weight: 900;
	font-size: 30px;
	line-height: 1;
	text-transform: uppercase;
}
.b-checkbox_all input[type="checkbox"] + label i{
	color: #25252c;
	font-size: 16px;
	font-weight: 900;
	line-height: 1;
	font-style: normal;
	text-transform: uppercase;
	margin: 0 40px 0 0;
}
.b-messages__top-wrap_pr{
	padding-right: 75px;
}
.b-archive__bottom{
	display: flex;
	justify-content: flex-end;
	padding: 0 75px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 45px 0 0 0;
}
/* -------------- page order -------------- */
.body-bg .b-container{
	background-color: #ebeff6;
	background-image: linear-gradient(181deg, #ebeff6 0%, red 100%);
	padding-bottom: 145px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.body-bg{
	background-color: #ebeff6;
	background-image: linear-gradient(181deg, #ebeff6 0%, red 100%);
}
.b-content__bg{
	background: #ebeff6;
	border-radius: 25px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	padding: 90px 15px 120px 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-content__form{
	max-width: 1120px;
	margin: 0 auto 0;
}
.b-content__title{
	text-align: center;
	color: #25252c;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	margin: 0 0 45px 0;
}
.b-order-btn{
	width: auto;
	padding: 0 50px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-order__row{
	margin-right: -25px;
	margin-left: -25px;
}
.b-order__row-col{
	padding-left: 25px;
	padding-right: 25px;
}
.b-file{
	position: relative;
}
.b-file__item{
	width: 100%;
	height: 64px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #f2f5fa;
	border-radius: 15px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	padding: 0 45px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
.b-file__item span{
	color: #999;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
}
.b-file__item-ico{
	background: url("../images/photo.png") center no-repeat;
	width: 34px;
	height: 25px;
	flex-shrink: 0;
	margin: 0 0 0 15px;
}
.b-file input{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}
.b-order__select{
	width: 100%;
}
.b-order__select .selectric{
	border-radius: 15px;
}
.b-order__select .selectric{
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
}
.b-order__select .selectric .label{
	height: 64px;
	line-height: 64px;
	background: #f2f5fa;
	border-radius: 15px;
	box-shadow: none;
	border: none;
	color: #999;
	font-size: 22px;
	font-weight: 400;
}
.b-order__select .selectric .button:after{
	color: #999;
}
.mt-50{
	margin-top: 50px;
}
.b-content__title_red{
	color: #ff0611;
}
.b-settings__form{
	max-width: 1555px;
	margin: 0 auto 0;
}
.b-settings__row{
	margin-left: 45px;
	margin-right: 45px;
}
.b-settings__row-col{
	padding-left: 45px;
	padding-right: 45px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-settings__block{
	text-align: center;
	margin: 25px 0 0 0;
}
.b-settings__block{
	text-align: center;
}
.b-settings__link{
	color: #ff0611;
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
	text-decoration: underline;
	text-transform: uppercase;
	margin: 0 0 45px 0;
}
.b-settings__block p{
	color: #161618;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	margin: 0 0 25px 0;
}
.b-settings__block-qr img{
	margin: 0 auto 0;
}
/* -------------- page faq -------------- */
.b-faq{
	padding: 0 55px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-faq-content{

}
.b-faq-item{
	background: #f2f5fa;
	border-radius: 15px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	padding: 25px 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 0 30px 0;
}
.b-faq-item__top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.b-faq-item__top span{
	display: block;
	color: #454753;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
}
.b-faq-item__top.collapsed span{
	color: #999;
}
.b-faq-item__ico{
	font-size: 18px;
	color: #999;
	flex-shrink: 0;
	margin: 0 0 0 15px;
	transform: rotate(90deg);
	transition: 0.3s;
}
.b-faq-item__top.collapsed .b-faq-item__ico{
	transform: rotate(0deg);
}
.b-faq-item__text{
	padding: 25px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-faq-item__text p,
.b-faq-item__text li{
	color: #454753;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
}
.b-faq-item__text ul{
    margin-top: 0;
    margin-bottom: 1rem;
    padding-left: 2rem;
}
.b-faq-item__text li{
    list-style-type: disc;
}
.b-faq .b-textarea{
	height: 211px;
}
/* -------------- page registration -------------- */
.b-page{
	background: url(../images/page-bg.png) right top no-repeat #ebeff6;
	padding: 0 0 145px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}
.b-page__top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 80px 55px 80px 60px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	z-index: 4;
}
.b-page__top-left{

}
.b-page__top-left p{
	color: #25252c;
	font-family: Roboto;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 500;
}
.b-page__top-left p b{
	font-weight: 900;
}
.b-page__top-right{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-page__top-right .change-theme{
	margin: 0 250px 0 0;
}
.b-page__authorization{
	color: red;
	font-size: 30px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	transition: 0.3s;
}
.b-page__authorization:hover{
	text-decoration: none;
	color: #ff7777;
	transition: 0.3s;
}
.b-page__authorization:active{
	text-decoration: none;
	color: #d60a0a;
	transition: 0.3s;
}


.b-page__content{
	width: 100%;
	height: 737px;
	background: #ebeff6;
	border-radius: 25px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	position: relative;
	z-index: 4;
	padding: 70px 0 90px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
.b-page__container{
	max-width: 1120px;
	margin: 0 auto 0;
}
.b-settings__row_2{
	margin-left: -25px;
	margin-right: -25px;
}
.b-settings__row_2 .b-settings__row-col{
	padding-left: 25px;
	padding-right: 25px;
}
.b-page__logo{
	position: absolute;
	left: 60px;
	bottom: 90px;
}
.b-page__text{
	position: absolute;
	bottom: 127px;
	right: 60px;
	color: red;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
}
.b-login__container{
	display: flex;
	justify-content: center;
	align-items: center;
}
.b-login__container-logo{
	flex-shrink: 0;
	width: 400px;
	margin: 0 350px 0 0;
}
.b-login__container-logo .b-logo{
	width: 100%;
}
.b-login__container-right{
	width: 450px;
	flex-shrink: 0;
}
.b-login__container-right .b-content__title{
	margin: 0 0 50px 0;
	text-align: center;
}
.b-login__container-block{
	margin: 0 0 40px 0;
}
.b-login__container-block p{
	text-align: center;
	color: #454753;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
	margin: 0 0 20px 0;
}
.b-login__container-block .b-contract__select .selectric .label{
	height: 81px;
	background-color: #f2f5fa;
	border-radius: 15px;
	box-shadow: none;
	line-height: 81px;
	color: #454753;
	font-size: 30px;
	font-weight: 400;
}
.b-login__container-block .b-contract__select .selectric-open .selectric{
	background-color: #f2f5fa;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
}
.b-login__container-block .b-contract__select{
	width: 336px;
}
.b-login__container-block .b-contract__select .selectric .button:after{
	color: #25252c;
}
/* -------------- modal payment -------------- */
.b-modal-payment{

}
.b-modal-payment .modal-dialog{
	max-width: 1464px;
	background-color: #ebeff6;
	background-image: linear-gradient(158deg, rgba(255, 0, 0, 0.08) 0%, rgba(235, 239, 246, 0.08) 21%, rgba(235, 239, 246, 0.08) 47%, rgba(235, 239, 246, 0.08) 70%, rgba(255, 0, 0, 0.08) 100%);
	border-radius: 25px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	padding: 75px 100px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
.b-modal-payment__close{
	position: absolute;
	top: 70px;
	right: 50px;
	font-size: 46px;
	color: #999;
}
.b-modal-payment__top{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0 0 70px 0;
}
.b-modal-payment__btn{
	width: 278px;
	height: 67px;
	border: 2px solid #999;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 15px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.11);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: #999;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	margin: 0 50px 0 0;
	transition: 0.3s;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
.b-modal-payment__btn:hover{
	color: red;
	text-decoration: none;
	transition: 0.3s;
}
.b-modal-payment__btn.active{
	border-color: red;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.11);
	color: red;
	transition: 0.3s;
}
.b-modal-payment__btn:last-child{
	margin-right: 0px;
}
.b-modal-payment__content{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	/* margin-right: -70px;
	margin-left: -70px;
	margin-bottom: 50px;*/
}
.b-modal-payment__col{
	padding-right: 70px;
	padding-left: 70px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 50%;
}


.b-modal-text{

}
.b-modal-text .modal-dialog{
	max-width: 1255px;
	background-color: #ebeff6;
	background-image: linear-gradient(158deg, rgba(255, 0, 0, 0.08) 0%, rgba(235, 239, 246, 0.08) 21%, rgba(235, 239, 246, 0.08) 47%, rgba(235, 239, 246, 0.08) 70%, rgba(255, 0, 0, 0.08) 100%);
	border-radius: 25px;
	box-shadow: 0 0 51px rgba(8, 8, 8, 0.1);
	position: relative;
	padding: 150px 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-modal-text_big .modal-dialog{
	max-width: 1465px;
}
.b-modal-text__top{
	text-align: center;
	margin: 0 0 60px 0;
}
.b-modal-text__ico img{
	margin: 0 auto 40px;
}
.b-modal-text__top span{
	font-size: 30px;
	line-height: 1;
	color: red;
	font-weight: 900;
}
.b-modal-text__content{
	text-align: center;
}
.b-modal-text__content p{
	color: #25252c;
	font-weight: 500;
	font-size: 30px;
	line-height: 1.5;
	margin: 0 0 55px 0;
}
.b-modal-text__content p:last-child{
	margin-bottom: 0px;
}
.payed td{
    color: #009e76 !important;
}
.payed_red td{
    color: #ff0710 !important;
}
/* цвета пантона */

.b-contract_1{
	background: #6E57A7;
}
.b-contract_2{
	background: #6D33EA;
}
.b-contract_3{
	background: #3C4DA5;
}
.b-contract_4{
	background: #512C8C;
}.b-contract_5{
	background: #2041A0;
}.b-contract_6{
	background: #0B42DA;
}.b-contract_7{
	background: #392968;
}.b-contract_8{
	
        background: #5F77BD;
}
.b-contract_9{
    background: #9781BF;
}
#ui-datepicker-div{
    z-index: 5 !important;
}
.col_2{
    width: 100%
}
.col_2 textarea{
    height: 100px;
}
.b-input__label.date_label,
.btn_wr.end{
    display: flex;
}
.date_label .b-input__item,
.date_label .b-order__select{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: max-content;
}
.btn_wr.end button{
      display: flex;
    justify-content: flex-start;
    align-items: flex-start;  
}
#testuserdata p{
    font-size: 2em;
}
.b-settings__row-col .selectric{
    width: 100%;
    height: 64px;
    background: #f2f5fa;
    border-radius: 15px;
    box-shadow: 0 0 51px rgb(8 8 8 / 10%);
    padding: 0 45px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #181a25;
    font-size: 22px;
    font-weight: 400;
    line-height: 24px;
}
.b-settings__row-col  .selectric .label{
    color: #181a25;
    font-size: 22px;
    font-weight: 400;
    line-height: 64px;
    overflow: visible;
}
.b-messages__content.zayava p{
    padding-top: 20px;
    margin: 0px 0 5px 0;
}
.b-messages__content.zayava ul li{
    padding: 5px 0;
}

.decimal li{
    list-style: decimal;
    font-size: 18px;
}
.custom .b-modal-payment__close{
    top:30px;
    right: 30px;
}
.custom .b-modal-text__top{
    margin: 0 0 30px 0;
}
.custom .b-modal-text__content p{
    line-height: 1;
    margin: 0 0 8px 0;
}
.custom img{    
    margin: 0 auto;
    height: 230px;
}
.custom.b-modal-text .modal-dialog{
    padding: 45px 15px;
}
.custom .download{
    margin: 25px 0;
}
.custom .download > div{
    width: 50%;
    float: left;
}
.custom .download:after{
    content: "";
    display: block;
    clear: both;
}
.custom .download_buttom{
    width: 30%;
    height: auto
}
.diia_choose_container{
	width: 25%;
}
@media (max-width: 767px) {
    .custom .download > div{
        width: 100%;
        float: none;
        margin-bottom: 30px;            
    }
    .custom .download_buttom{
        width: 50%;
        height: auto
    }
	.diia_choose_container{
		 width: 100%;
	 }

}