html{
	height: 100%;
	width: 100%;
	margin: 0;
}
body{
	margin: 0;
	color: #000000;
	font-size: 14px;
	font-family: 'Roboto' !important;
	line-height: normal;
	background: #ffffff;
	position: relative;
	width: 100%;
	min-height: 100%;
	min-width: 320px;
}
body *{
    font-family: 'Roboto' !important;
}
body .fa,body .fas{
    font-family: FontAwesome !important;
}
.fab{
    font-family: FontAwesome !important;
}
.left{
	float: left;
}
.right{
	float: right;
}
.clear{
	clear: both;
	visibility: hidden;
}
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

h1, h2, h3, h4, h5, h6{
	margin: 0 0 20px 0;
}
h2{
	font-size: 40px;
	line-height: 46px;
	font-weight: 600;
	color: #e1524b;
	text-transform: uppercase;
}
h2 span {

}
p {
	margin: 0 0 20px 0;
	font-size: 14px;
	line-height: 23px;
	font-weight: 400;
	color: #7f8c8c;
}
img{
	display: block;
	max-width: 100%;
}

/*== buttons
---------------------------------*/
button{
	margin:0;
	padding:0;
	border:none;
	background:none;
	cursor:pointer;
	overflow:visible;
	width:auto;
	outline: none;
}
button:hover , button:focus , button:active{
	outline: none;
}
button.button::-moz-focus-inner { padding:0; border:0; } /* FF Fix */
button.button { -webkit-border-fit:lines; } /* <- Safari & Google Chrome Fix */
.button{
	display: block;
	position: relative;
	width: 355px;
	height: 48px;
	background: transparent;	
	color: #fefefe;
	font-size: 24px;
	line-height: 26px;
	font-weight: 300;
	text-transform: uppercase;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.button:before{
    position: absolute;
    top: -11px;
    left: -13px;
    content: "";
    width: 368px;
    height: 59px;
    border: 1px solid #ffffff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.button:after{
	position: absolute;
    top: 0px;
    left: 0px;
    content: "";
    width: 366px;
    height: 59px;
    border: 1px solid #ffffff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: 0.3s;
}
.button:hover{
	background: #384245;
	transition: 0.3s;
}
button:active,
button:focus{
	outline: none;
}

/*== inputs
---------------------------------*/
.modal-dialog{
	pointer-events: inherit;
}
input{
	outline: none;
	border: none;
}
.b-input-text{
	width: 100%;
	height: 48px;
	background: transparent;
	border: 1px solid #ffffff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 3px;	
	color: #ffffff;
	font-family: 'Roboto', sans-serif;
	font-size: 13px;
	font-weight: 400;
	line-height: 15px;
	padding: 0 13px;
	margin: 0 0 7px 0;
}
.b-input-text.error{
	border-color: red;
}
.b-input-text::-webkit-input-placeholder{
	color: #ffffff;
	font-size: 13px;
	font-weight: 400;
	line-height: 15px;
}
.b-input-text:-moz-placeholder{
	color: #ffffff;
	font-size: 13px;
	font-weight: 400;
	line-height: 15px;	
}
.b-input-btn{
	width: 168px;
	height: 49px;
	font-size: 15px;
	font-weight: 500;
	line-height: 17px;
	display: block;
	margin: 15px 0 0 0;
}
input[type=submit] {
	cursor: pointer;
}

.b-checkbox{
	display: inline-block;
	margin: 0 3px;
}
.b-checkbox input[type="checkbox"]{
    display: none;
}
.b-checkbox input[type="checkbox"] + label span{
	width: 15px;
	height: 15px;
	background: #ffffff;
	border: 1px solid #ddd;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 2px;
	position: relative;
}
.b-checkbox input[type="checkbox"] + label{
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.b-checkbox input[type="checkbox"]:checked + label span{
	width: 15px;
	height: 15px;
	background: url(../images/check.png) center no-repeat #ffffff;
	background-size: 12px;
	border: 1px solid #ddd;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 2px;
}
.b-checkbox input[type="checkbox"]:checked + label span:before{
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
}
.b-checkbox input[type="checkbox"]:checked + label{
    color: #000000;
}
.b-checkbox input[type="checkbox"] + label i{
	font-family: 'Gilroy';
	color: #8d8d8d;
	font-size: 12px;
	font-weight: 500;
	line-height: 18px;
    font-style: normal;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.b-checkbox input[type="checkbox"] + label i a{
	color: #8d8d8d;
}
select{
	outline: none;
}
.b-select{
	width: 100%;
	height: 33px;
	border: 1px solid #e8e8e8;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 6px;
	color: #000000;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;   
	padding: 0 10px;
	background: transparent url(../images/select-arrow.png);
        background-color: white;
	background-position: right 10px center;
	background-repeat: no-repeat;
	-webkit-appearance: none;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	-ms-appearance: none;
	appearance: none !important;        
}

.b-input-text{
	outline: none;  
}
textarea{
	height: 80px;
	outline: none;
}
.fancybox-enabled{
	padding: 0 17px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-container{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	background: #e1e1e1;/*#f4f4f4;*/
}
.fancybox-container{
	z-index: 999999;
}
.b-mobile{
	display: none;
}
/* End Total css ====*/
.container-fluid{
	max-width: 1600px;
}
/* -------------- page index -------------- */
.b-header{

}
.b-aside{
	width: 160px;	
	background: #4b4949;
	background: -moz-linear-gradient(top,  #4b4949 0%, #6b6b6b 100%);
	background: -webkit-linear-gradient(top,  #4b4949 0%,#6b6b6b 100%); 
	background: linear-gradient(to bottom,  #4b4949 0%,#6b6b6b 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4b4949', endColorstr='#6b6b6b',GradientType=0 );
	padding: 30px 0 25px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	flex-shrink: 0;
}
.b-aside-container{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	height: 100%;
}
.b-aside-top{
	width: 100%;
}
.b-logo{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 5px 25px 5px;
}
.b-logo__left{
	margin: 0 9px 0 0;
}
.b-logo__left span{
	color: #ffffff;
	font-size: 26px;
	font-weight: 900;
	line-height: 28px;
	text-transform: uppercase;
}
.b-logo__right{
	width: 50px;
	height: 23px;
	background: rgba(235, 235, 235, 0.99);
	border-radius: 11px;
	box-shadow: inset 1.3px 2.7px 13px rgba(0, 0, 0, 0.15);
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 2px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-logo__right span{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 21px;
	background: #c92323;
	border-radius: 10px;
	color: #ffffff;
	font-size: 12px;
	font-weight: 900;
	line-height: 14px;
}
.b-nav{

}
.b-nav ul{
	padding: 0;
	margin: 0;
}
.b-nav ul li{
	list-style: none;
}
.b-nav ul li.active a{
	background-image: -webkit-linear-gradient(172deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(172deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(262deg, #e36969 0%, #e36969 0%, #a60000 100%);
}
.b-nav-ico{
	width: 24px;
	display: block;
	margin: 0 auto 11px;
}
.b-nav ul li a{
	display: block;
	text-align: center;
	padding: 17px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-decoration: none;
}
.b-nav ul li a p{
	margin: 0;
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	padding: 0;
	transition: 0.3s;
}
.b-nav ul li a svg{
	fill: #de2727;
	transition: 0.3s;
}
.b-nav ul li.active a p{
	color: #ffffff;
	transition: 0.3s;
}
.b-nav ul li.active a svg{
	fill: #ffffff;
	transition: 0.3s;
}
.b-nav ul li a:hover{
	background-image: -webkit-linear-gradient(172deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(172deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(262deg, #e36969 0%, #e36969 0%, #a60000 100%);
	transition: 0.3s;
}
.b-nav ul li a:hover p{
	color: #ffffff;
	transition: 0.3s;
}
.b-nav ul li a:hover svg{
	fill: #ffffff;
	transition: 0.3s;
}
.b-aside-bottom{
	width: 100%;
}
.b-aside-kurs{

}
.b-aside-kurs__top{
	text-align: center;
	margin: 0 0 25px 0;
}
.b-aside-kurs__top span{
	display: block;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	text-transform: uppercase;	
	display: block;
	margin: 0 0 5px 0;
}
.b-aside-kurs__top span:last-child{
	margin: 0;
}
.b-aside-kurs__wrap{
	text-align: center;
}
.b-aside-kurs__wrap p{
	color: #ffffff;
	font-size: 14px;
	line-height: 33px;
	font-weight: 400;
	margin: 0;
}
.b-aside-kurs__wrap p b{
	font-weight: 700;
}
/* -------------- b-content -------------- */
.b-content{
	flex-grow: 1;
}
/* -------------- b-header -------------- */
.b-header{
	background: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-header .b-logo{
	display: none;
}
.b-header-left,
.b-header-left a{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.b-header-left__ico{
	background: url(../images/info2.svg) no-repeat;
	width: 22px;
	height: 22px;
	background-size: contain;
	margin: 0 10px 0 0;
}
.b-header-left span{
	color: #4c4a4a;
	font-size: 14px;
	font-weight: 300;
	line-height: 16px;
}
.b-header-right{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-user{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 20px 0 0;
}
.b-user-ico{
	width: 30px;
	height: 30px;
	border:1px solid #f1547e;
        background-image: white;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 10px 0 0;
	flex-shrink: 0;
        overflow: hidden;
}
.b-user-ico img{
	/*width: 16px;*/
}
.b-user-wrap{

}
.b-user-wrap span{
	color: #4d4b4b;
	font-size: 14px;
	font-weight: 700;
	line-height: 15px;
}
.b-alert{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 17px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 17px 0 0;
	border-left: 1px solid rgba(221, 221, 221, 0.4);
	border-right: 1px solid rgba(221, 221, 221, 0.4);
}
.b-alert-wrap{
	position: relative
}
.b-alert-dot{
	width: 6px;
	height: 6px;
	background: #cc3f3f;
	border-radius: 100%;
}
.b-alert-ico{
	background: url(../images/notification.svg) no-repeat;
	width: 25px;
	height: 25px;
	background-size: contain;
}
.b-alert-dot{
	position: absolute;
	top: 3px;
    right: 4px;
}
.b-settings{
	width: 25px;
	height: 25px;
	/*background: url(../images/settings.svg) center no-repeat;*/
	background-size: contain;
}
.b-settings a{
    color: #757575;
    font-size: 20px;
}
/* -------------- b-footer -------------- */
.b-footer{
    background: rgba(112, 112, 112, 0.08);
    padding: 20px 22px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    clear: both
}
.b-footer-form{
	padding: 0 22px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    border-right: 1px solid rgba(112, 112, 112, 0.13);
    margin: 0 22px 0 0;
}
.b-footer-form__top{
	margin: 0 0 15px 0;
        text-align: center;
}
.b-footer-form__top b{
	color: #313131;
	font-size: 16px;
	font-weight: 700;
	line-height: 18px;
}
.b-footer-form__content{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.b-footer-form__left{
	width: 320px;
	margin: 0 20px 0 0;
}
.b-footer-form__input{
	width: 100%;
	height: 35px;
	background: none;
	border: 1px solid #d1d1d1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 9px;
	color: #313131;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	margin: 0 0 10px 0;
	padding: 0 15px;
}
.b-footer-form__input::-webkit-input-placeholder{
	color: #313131;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
}
.b-footer-form__input:-moz-placeholder{
	color: #313131;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
}
.b-footer-textarea{
	width: 319px;
	height: 82px;
	border: 1px solid #d1d1d1;
	background: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 9px;
	color: #313131;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	padding: 15px;
}
.b-footer-form__btn{
        margin-top: 5px;
	width: 85px;
	height: 29px;
	background-color: red;
	background-image: -webkit-linear-gradient(175deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(175deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(265deg, #e36969 0%, #e36969 0%, #a60000 100%);
	border-radius: 6px;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	line-height: 14px;
	display: block;
}
.b-footer-social{
	margin: 0 0 25px 0;
}
.b-footer-social span{
	display: block;
	color: #313131;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;	
	margin: 0 0 10px 0;
}
.b-footer-social ul{
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-footer-social ul li{
	list-style: none;
	margin: 0 20px 0 0;
}
.b-footer-social ul li:last-child{
	margin: 0;
}
.b-footer-social ul li a{
	color: #cc3f3f;
	font-size: 22px;
	line-height: 24px;
	display: block;
}
.b-copyright{

}
.b-copyright span{
	color: #313131;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
}
/* -------------- b-main -------------- */
.b-main{
	padding: 25px 20px 25px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-main-content{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0 -10px;
}
.b-main-col{
	width: 33.333333%;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;		
}
.b-main-item{
    background: #fbfafa;	
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 1.3px 2.7px 13px rgba(108, 123, 153, 0.1);
	margin: 0 0 10px 0;
}
.b-main-item:last-child{
	margin: 0;
}
.b-main-item__wrapper{
	background: #ffffff;
	padding: 20px 20px 25px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-main-item__wrapper.no_padding{
    padding: 0px 20px;
}
.b-main-item__container{
	padding: 20px 20px 25px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;	
}
.b-main-item__top{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 20px 0;
}
.b-main-item__top__ico{
    
	width: 31px;
	margin: 0 8px 0 0;
}
.b-main-item__top__image{
    overflow: hidden;
    text-align: center;
    width: 100px;
    height: 100px;
    margin-left: auto;
    order: 2;
}
.b-main-item__top b{
	color: #4d4c4c;
	font-size: 15px;
	font-weight: 900;
	line-height: 17px;
}
.b-main-item__plan{
    clear: both;
	margin: 0 0 20px 0;
}
.b-main-item__plan b{
	color: #474747;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	display: block;
	margin: 0 0 10px 0;
}
.b-main-item__plan__row{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-main-item__ico{
	margin: 0 8px 0 0;
	width: 22px;
}
.b-main-item__plan__row span{
	color: #c6c6c6;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	display: block;
	margin: 3px 0 0 0;
}
.b-round{
	width: 187px;
	height: 187px;
    border: 20px solid rgba(232, 232, 232, 0.3);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;	
	margin: 0 auto 0;
	border-radius: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.b-round.big{
    width: 350px;
    height: 350px; 
}
.b-round.big .b-round-img {
    width: 250px;
    height: 250px;
}
.b-round.big:before{
    top: -29px;
    left: -29px;
    background-size: cover;
    width: 369px;
    height: 369px;
}
.b-round:before{
	position: absolute;
    top: -26px;
    left: -26px;
	content: "";
	background: url(../images/round-bg.png) no-repeat;
	width: 199px;
	height: 199px;
}
.chart-1{
	position: absolute;
    top: -15px;
    left: -14px;
	width: 177px;
	height: 177px;
}
.chart-2{
	position: absolute;
    top: 6px;
    left: 6px;
	width: 135px;
	height: 135px;
}
.b-round-img{
	width: 104px;
	height: 104px;
	background: #e2e2e2;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
        color: white;
        font-size: 60px;
        font-weight: bold;
}
.b-round-img img{
	width: 45px;
}
.b-round-info{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0 0 0px;
}
.b-round-info__item{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 0 12px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-right: 2px solid #d2d1d1;
}
.b-round-info__item span{
	display: block;
	color: #4b4949;
	font-size: 12px;
	line-height: 16px;
	font-weight: 700;
        text-align: center;
	margin: 0 10px 0 0;
}
.b-round-info__ico{
	width: 8px;
	height: 5px;
	background: #7b7b7b;
	border-radius: 3px;
}
.b-round-info__ico__red{
	background: #cc3f3f;
}
.b-round-info__item:last-child{
	border: none;
	padding: 0 0 0 12px;
}
.b-main-item__list{

}
.b-main-item__list__top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 20px 0;
}
.b-main-item__list__top b{
	color: #4e4d4d;
	font-size: 11px;
	font-weight: 900;
	line-height: 16px;
}
.b-main-item__list__right{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-main-item__list__right .btn-str{
	width: 90px;
	min-height: 24px;
	background-color: #f1547e;
	background-image: -webkit-linear-gradient(37deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(37deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(127deg, #e36969 0%, #e36969 0%, #a60000 100%);
	border-radius: 12px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
}
.b-main-item__list__right button{
	width: 60px;
	color: #4e4c4c;
	font-size: 14px;
	font-weight: 700;
	line-height: 15px;
	text-align: center;
	display: block;
	margin: 0 13px 0 13px;
}
.b-main-item__list ul{
	padding: 0;
	margin: 0;
}
.b-main-item__list ul li{
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	color: #4b4949;
	font-size: 13px;
	font-weight: 400;
	line-height: 16px;	
	margin: 0 0 13px 0;
}
.b-main-item__list ul li:last-child{
	margin: 0;
}
.banners{
    display: flex;
}
.banners .b-main-item{
    width: 48%;
    margin-right: 4%;
}
.banners .b-main-item a{
    display: block;
    width: 100%;
    height: 200px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.banners .b-main-item:last-child {
     margin: 0 0 10px 0;   
}
.dot{
	border: 1px dotted #d7d7dd;
	flex-grow: 1;
	margin: 0 0 4px 0;
}
.b-main-item__list ul li span{
	color: #4b4949;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
}
.b-main-item__total{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: 1px solid #ebebeb;
	margin: 0 0 20px 0;
}
.b-main-item__total span{
	width: 186px;
	height: 37px;
	background-color: #010410;
	background-image: -webkit-linear-gradient(172deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(172deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(262deg, #e36969 0%, #e36969 0%, #a60000 100%);
	border-radius: 12px;
	font-size: 16px;
	line-height: 20px;
	color: #ffffff;
	font-weight: 900;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bottom .b-main-item__link{
    position: absolute;
    bottom: 20px;
    width: 100%;
    height: 15px;    
}
.b-main-item__link{
    text-align: center;
}
.b-main-item__link a{
	color: #2e2e2e;
	font-size: 14px;
	font-weight: 900;
	line-height: 16px;
}
.b-main-item__link a i{
	font-style: normal;
	font-size: 20px;
	line-height: 15px;
}
.b-hidden{
	display: none;
}
.b-main-item__2 .b-main-item__wrapper{
	background: none;
}
.b-main-bonus{
	border-top: 1px solid #ebebeb;
	padding: 20px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-main-bonus__top{
	text-align: center;
	margin: 0 0 22px 0;
}
.b-main-bonus__top span{
	color: #383838;
	font-size: 14px;
	font-weight: 900;
	line-height: 16px;
	text-transform: uppercase;
}
.b-main-bonus__content{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.b-main-bonus__col{
	width: 50%;
	padding: 0 10px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-right: 1px solid #ebebeb;
}
.b-main-bonus__col:last-child{
	padding: 0 0 0 10px;
	border: none;
}
.b-main-bonus__col__top{
	margin: 0 0 15px 0;
}
.b-main-bonus__col__bottom{
	margin: 15px 0 0 0;
}
.b-main-bonus__col strong{
	display: block;
	color: #313131;
	font-size: 16px;
	font-weight: 900;
	line-height: 20px;
	text-align: center;
}
.b-main-bonus__item{
	width: 100%;
	height: 73px;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 0 5px 0;
}
.b-main-bonus__item span{
	display: block;
	color: #3d3d3d;
	line-height: 14px;
	font-size: 12px;
	font-weight: 400;
	text-align: center;
	margin: 0 0 8px 0;
}
.b-main-bonus__item b{
	display: block;
	color: #3d3d3d;
	line-height: 16px;
	font-size: 14px;
	font-weight: 700;
}
.b-main-item__2 .b-main-item__total{
	border: none;
	margin: 0;
	padding: 20px 0 0 0;
}
.btn-hide{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 auto 20px;
	color: #bc2626;
	font-size: 14px;
	font-weight: 900;
	line-height: 16px;
	text-transform: uppercase;
	position: relative;
	padding: 0 13px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transition: 0.3s;
}
.b-main-item .btn-hide{
    cursor: pointer;
    display: inline-block;
    width: 100%;
    /* justify-content: center; */
    /* align-items: center; */
    text-align: center;
    margin: 20px auto 0px;
    color: #bc2626;
    font-size: 14px;
    font-weight: 900;
    line-height: 16px;
    text-transform: uppercase;
    position: relative;
    padding: 0 13px 0 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    transition: 0.3s;
}
.b-main-item .btn-hide i{
	position: relative;
        left: 4px;
        top: 1px;
	font-style: normal;
	font-size: 20px;
	line-height: 22px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transform: rotate(90deg);
	display: inherit;
	transition: 0.3s;
}
.btn-hide i{
	position: absolute;
    top: -4px;
    right: -4px;
	font-style: normal;
	font-size: 20px;
	line-height: 22px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transform: rotate(90deg);
	display: block;
	transition: 0.3s;
}
.btn-hide.active i{
	transform: rotate(-90deg);
	transition: 0.3s;
}
.b-gift{

}
.b-gift-item{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin: 0 0 15px 0;
}
.b-gift-item:last-child{
	margin: 0;
}
.b-gift-item__left{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-gift-item__ico{
	width: 20px;
	flex-shrink: 0;
	margin: 0 5px 0 0;
}
.b-gift-item__left span{
	color: #4b4949;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
}
.b-gift-wrapper .btn-hide{
	margin: 20px auto 0;
}
.b-gift-item:first-child .b-gift-item__left span{
	color: #b21d1d;
	text-decoration: underline;
}
.b-gift-item b{
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	color: #cc3f3f;
}
.b-gift-item.active b{
	color: #c5c5c5;
}
.b-main-item__3 .b-main-item__wrapper{
	padding: 20px 20px 0 20px;
	background: none;
}
.b-main-item__3 .b-main-item__container{
	padding: 0 20px 20px 20px;
}
.b-main-item__4{
	background: #757575;
}
.b-main-item__4 .b-main-item__top b{
	color: #ffffff;
}
.b-main-trips{
	margin: 0 0 24px 0;
}
.b-main-trips:last-child{
	margin: 0;
}
.b-main-trips__top{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 10px 0;
}
.b-main-trips__left{
	margin: 0 16px 0 0;
}
.b-main-trips__left b{
	display: block;
	color: #ffffff;
	line-height: 14px;
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 10px 0;
}
.b-main-trips__left span{
	display: block;
	color: #ffffff;
	line-height: 18px;	
	font-size: 14px;
	font-weight: 400;
}
.btn-trips{
	width: 88px;
	height: 23px;
    background: rgba(91, 91, 91, 0.71);
	border-radius: 12px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	line-height: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
.btn-trips:hover{
    color: #ffffff;
}
.b-main-trips__row{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-main-trips__track{
	width: 84%;
	height: 7px;
	background: #e2e7f1;
	border-radius: 4px;
	position: relative
}
.b-main-trips__bar{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: #f1547e;
	background-image: -webkit-linear-gradient(359deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(359deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(89deg, #e36969 0%, #e36969 0%, #a60000 100%);
	border-radius: 4px;	
}
.b-main-trips__btn{
	position: absolute;
    top: -2.6px;
    right: -1px;
	border-radius: 100%;
	width: 12px;
	height: 12px;
	background: #ffffff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-main-trips__btn:before{
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
	width: 6px;
	height: 6px;
	background: red;
	border-radius: 100%;
	margin: -3px 0 0 -3px;
}
.b-main-trips__pr{
	margin: 0 0 0 15px;
}
.b-main-trips__pr span{
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
}
.b-main-item__5{
	background-image: -webkit-linear-gradient(117deg, #e3e5e5 0%, #e4e6e6 96%, #e4e6e6 100%);
	background-image: -o-linear-gradient(117deg, #e3e5e5 0%, #e4e6e6 96%, #e4e6e6 100%);
	background-image: linear-gradient(207deg, #e3e5e5 0%, #e4e6e6 96%, #e4e6e6 100%);
}
.b-main-item__5 .b-main-item__plan__row span{
	color: #393939;
}
.b-main-trainings{

}
.b-main-trainings__item{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0 0 25px 0;
}
.b-main-trainings__item__ico{
	margin: 0 22px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 4px solid #ffffff;
	width: 16px;
	height: 16px;
	border-radius: 100%;
	position: relative;
}
.b-main-trainings__item__ico:after{
	position: absolute;
	top: 100%;
	left: 0;
	content: "";
	width: 9px;
	height: 65px;
	background: #ffffff;
	border-radius: 4px;	
}
.b-main-trainings__item:last-child .b-main-trainings__item__ico:after{
	display: none;
} 
.b-main-trainings__item:last-child{
	overflow: hidden;
}
.b-main-trainings__item__ico__wrap{
	background: red;
	width: 8px;
	height: 8px;
	border-radius: 100%;
}
.b-main-trainings__item__text{

}
.b-main-trainings__item__text span{
	display: block;
	color: #252525;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	margin: 0 0 6px 0;
}
.b-main-trainings__item__text b{
	display: block;
	color: #252525;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
}
.b-main-trainings__btn{
	width: 97px;
	height: 29px;
	background: #e4e6e6;
	border: 2px solid #c33232;
	border-radius: 12px;
	color: #272727;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	margin: 0 0 0 35px;
}
/* -------------- page statement -------------- */
.b-wrapper{
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 1.3px 2.7px 13px rgba(108, 123, 153, 0.1);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 25px;
}
.b-top{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 25px 0;
}
.b-top__left{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-top__left + .b-top__left{
    margin-left: 25px;
}
.b-top__left__ico{
	margin: 0 10px 0 0;
}
.b-top__left span{
	color: #4d4c4c;
	font-size: 18px;
	font-weight: 900;
	line-height: 20px;
}
.b-row{
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	margin: 0 -8px;
}
.b-col{
	width: 50%;
	padding: 0 8px;
}
.b-item{
	margin: 0 0 15px 0;
}
.b-item span{
	display: block;
	color: #4b4949;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	margin: 0 0 10px 0;
}
.b-item span i{
	font-style: normal;
	display: block;
	font-size: 10px;
	line-height: 12px;
}
.b-item-input{
	width: 100%;
	height: 33px;
	border: 1px solid #e8e8e8;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 6px;
	color: #000000;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	padding: 0 15px;
}
.b-item-input::-webkit-input-placeholder{
	color: #757575;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
}
.b-item-input:-moz-placeholder{
	color: #757575;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
}
.b-item__text{
	margin: 0px 0 15px 0;
}
.b-item__text p{
	color: #4b4949;
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
	margin: 0;
}
.b-step-1{

}
.b-step-top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #ddd;
	background-image: -webkit-linear-gradient(92deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(92deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(182deg, #e36969 0%, #e36969 0%, #a60000 100%);
	border-radius: 6px;
	padding: 8px 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 0 15px 0;
}
.b-step-top span{
	display: block;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	text-transform: uppercase;
}
.b-step-top p{
	margin: 0;
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
}
.b-col__wrap{
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}
.b-col__wrap .b-item{
	margin: 0 12px 15px 0;
}
.b-col__wrap .b-item:last-child{
	margin: 0 0 15px 0;
}
.w-50{
	width: 50%;
}
.w-25{
	width: 25%;
}
.w-33{
	width: 33.333333%;
}
.w-60{
	width: 60%;
}
.w-70{
	width: 70%;
}
.w-20{
	width: 20%;
}
.w-40{
	width: 40%;
}
.w-30{
	width: 30%;
}
.datepicker{
	background: url(../images/calendar-ico.svg) no-repeat;
	background-repeat: no-repeat;
	background-size: 16px;
        background-color: white;
	background-position: right 10px center;
}
.b-step-btns{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0 0 0;
}
.step-back{
	width: 145px;
	height: 37px;
	border: 2px solid #a60000;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 6px;	
	color: #373737;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 10px 0 0;
	transition: 0.3s;
}
.step-back:hover{
	color: #ffffff;
	background: #a60000;
	transition: 0.3s;
}
.b-item-textarea{
	width: 100%;
	height: 63px;
	border: 1px solid #e8e8e8;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 6px;
	padding: 15px;
	color: #000000;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
}
.next-step{
	width: 145px;
	height: 37px;
	background-color: #08a9e5;
	background-image: -webkit-linear-gradient(339deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(339deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(69deg, #e36969 0%, #e36969 0%, #a60000 100%);
	border-radius: 6px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
}
button{
	transition: 0.3s;
}
button:hover{
	opacity: 0.8;
	transition: 0.3s;
	text-decoration: none;
}
button:active{
	opacity: 1;
	transition: 0.3s;
	text-decoration: none;	
}
input[type="submit"] {
	transition: 0.3s;
}
input[type="submit"]:hover{
	opacity: 0.7;
	transition: 0.3s;
	text-decoration: none;
}
input[type="submit"]:active{
	opacity: 1;
	transition: 0.3s;
	text-decoration: none;	
}
.b-step{
	margin: 0 0 40px 0;
}
.b-step:last-child{
	margin: 0;
}   
.b-program{

}
.b-program-top{
	color: #4b4949;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	text-transform: uppercase;
	margin: 0 0 20px 0;
}
.b-program-content{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	flex-wrap: wrap;
	margin: 0 -5px;
}
.b-program-col{
	width: 20%;
	padding: 0 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 10px;
}
.b-program-item{
	height: 180px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #ddd;
	border-radius: 12px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	padding: 0 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-program-item span{
	display: block;
	text-align: center;
	color: #4d4d4d;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
}
.b-program-item.active{
	background-color: #f3f0ed;
	background-image: -webkit-linear-gradient(287deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(287deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(17deg, #e36969 0%, #e36969 0%, #a60000 100%);
}
.b-program-item.active span{
	color: #ffffff;
}
.b-table{
	margin: 40px 0;
}
.b-table table{
	width: 100%;
}
.b-table table thead tr td{
	width: 10%;
	padding: 0 0 10px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-table table thead tr td:first-child{
	width: 70%;
	text-align: left;
}
.b-table table thead tr td{
	color: #4b4949;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;	
	text-align: center;
}
.b-table-top{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
}
.b-table-top b{
	color: #4b4949;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	display: block;
	margin: 0 15px 0 0;
}
.b-table-top span{
	color: #4b4949;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	display: block;
	margin: 0 10px 0 0;
}
.b-table-top .b-item-input{
	width: 285px;
}

.b-table table tbody tr td{
	color: #4b4949;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	background: #fbfbfb;
	border-bottom: 2px solid #ffffff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px 0;
	border-right: 1px solid #e8e8e8;
}
.b-table table tbody tr td p{
	color: #4b4949;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	margin: 10px 0;
}
.b-table table tbody tr td p:last-child{
	margin: 0;
}
.b-table table tbody tr:nth-child(even) td{
	background: #f9f9f9;
}
.b-table table tbody tr td:first-child{
	padding-left: 16px;
	padding-right: 16px;
}
.b-table table tbody tr td:last-child{
	border: none;
}
.b-item-bottom .b-item-input{
	width: 302px;
	height: 48px;
}
.b-item-bottom span{
	font-size: 14px;
	line-height: 16px;
}
.btn-add{
	width: 100%;
	height: 37px;
	background: #f3f3f3;
	border-radius: 6px;
	color: #4b4949;
	font-size: 15px;
	font-weight: 700;
	line-height: 17px;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
	margin: 0 0 15px 0;
}
.btn-add:hover{
	transition: 0.3s;
    background: #f7f7f7;
}
.btn-add:active{
	transition: 0.3s;
	background: #dedddd;
}
.btn-add__ico{
	background: url(../images/btn-add__ico.png) no-repeat;
	width: 18px;
	height: 18px;
	margin: 0 10px 0 0;
}
.b-radio{
	position: relative;
	width: 92px;
	height: 26px;
	background: #ececec;
	border-radius: 13px;
	margin: 0 auto 0;
}
.switch {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
input[type=radio] {
  display: none;
}
.switch label {
	cursor: pointer;
	color: rgba(0,0,0,0.2);
	line-height: 50px;
	transition: all 0.2s ease;
	font-size: 12px;
	font-weight: 700;
	line-height: 15px;
	color: #4b4949;
	margin: 0;
	position: relative;
	z-index: 2;
	width: 50%;
	text-align: center;
}
.switch:before{
	width: 47px;
	height: 26px;
	background-color: #ddd;
	background-image: -webkit-linear-gradient(339deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(339deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(69deg, #e36969 0%, #e36969 0%, #a60000 100%);
	border-radius: 13px;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	transition: 0.3s;
}
.b-radio-no:checked ~ .switch:before{
	right: 0;
	transition: 0.3s;
}
.b-radio-yes:checked ~ .switch:before{
	left: 0;
	transition: 0.3s;
}
 
.b-radio-no:checked ~ .switch .label-no{
	color: #ffffff;
}
.b-radio-yes:checked ~ .switch .label-yes{
	color: #ffffff;
}
.b-table__2{

}
.b-table__2 table thead tr td{
	width: 15%;
}
.b-table table tbody tr .b-table-td{
	vertical-align: top;
	padding-top: 46px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-table-td .b-radio{
	margin: 0 auto 17px;
}
.b-table-td .b-radio:last-child{
	margin: 0 auto 0;
}
.b-table-input{
	background: none;
	border: none;
	border-bottom: 1px solid #e2e2e2;
	padding: 0 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    margin: 4px 0;
}
.b-input-info__wrap{
	position: relative;
	width: 95px;
	border-radius: 13px;
	margin: 0 auto 0;
	overflow: hidden;
}
.b-input-info__wrap span{
	position: absolute;
	top: 0;
	right: 0;
	color: #3e3e3e;
	font-size: 12px;
	font-weight: 700;
	line-height: 13px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;	
	padding: 0 15px 0 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #ebebeb;
}
.b-input-info{
	width: 100%;
	height: 26px;
	background: #ebebeb;
	border-radius: 13px;
	padding: 0 25px 0 20px;
	color: #3e3e3e;
	font-size: 12px;
	font-weight: 700;
	line-height: 13px;	
}
.b-step-6 .b-table{
	margin: 0 0 40px 0;
}
.b-step-6  table tbody tr td:first-child{
	width: 85%;
}
.b-table-6 table tbody tr td{
	width: 15%;
}
.b-step-bottom{

}
.b-step-content{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	margin: 0 -10px;
}
.b-step-col{
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	width: 50%;
}
.b-step-col:after{
	position: absolute;
	top: 0;
	right: 0;
	content: "";
	content: ;
	width: 1px;
	height: 250px;
	background: #eeeeee;
}
.b-step-col:last-child:after{
	display: none;
}
.b-step-title{
	text-align: center;
	margin: 0 0 20px 0;
}
.b-step-title b{
	display: block;
	color: #4b4949;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	margin: 0 0 10px 0;
}
.b-step-title span{
	display: block;
	color: #4b4949;
	font-size: 12px;
	font-weight: 400;
	line-height: 14px;
}
.b-step-wrap{
	text-align: center;
	margin: 0 0 30px 0;
}
.b-step-wrap .b-item-input{
	width: 100%;
	height: 40px;
	margin: 0 auto 13px;
}
.b-step-wrap span{
	color: #4b4949;
	font-size: 12px;
	font-weight: 400;
	line-height: 14px;
	display: block;
}
.b-step-wrap p{
	margin: 65px 0 0 0;
	color: #4b4949;
	font-size: 12px;
	font-weight: 400;
	line-height: 15px;
}
/* -------------- page guide -------------- */
.b-guide{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	flex-wrap: wrap;
	margin: 0 -5px;
}
.b-guide-col{
	padding: 0 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 10px;
	width: 20%;
}
.b-guide-item{
	height: 181px;
	border: 2px solid #ddd;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.b-guide-item__img {
	width: 41px;
	margin: 0 0 5px 0;
}
.b-guide-item__img svg{
	fill: #b9b9b9;
}
.b-guide-item span{
	color: #525252;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;	
	text-align: center;
	display: block;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.b-guide-item:hover{
	background-color: #f3f0ed;
	background-image: -webkit-linear-gradient(287deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(287deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(17deg, #e36969 0%, #e36969 0%, #a60000 100%);
	border-radius: 12px;
	border-color: transparent;
}
.b-guide-item:hover span{
	color: #ffffff;
}
.b-guide-item:hover .b-guide-item__img svg{
	fill: #ffffff;
}
/* -------------- page b-news -------------- */
.b-news{

}
.b-news-item{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 8px;
	padding: 8px;
	margin: 0 0 10px 0;
}
.b-news-item__img{
	border-radius: 6px;
	overflow: hidden;
	margin: 0 15px 0 0;
	flex-shrink: 0;
}
.main_page .b-news-item__img{
    margin: 18px 15px 0 0;
}
.main_page .b-news-item__date{
    margin: 0;
}
.news_text *{
    font-size: 12px !important;
}
.b-news-item__content{

}
.b-news-item__content b{
	display: block;
	color: #4b4949;
	font-size: 16px;
	font-weight: 700;
	line-height: 18px;
	margin: 0 0 10px 0;
}
.b-news-item__date{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 7px 0;
}
.b-news-item__date__ico{
	background: url(../images/calendar.svg) no-repeat;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin: 0 10px 0 0;
}
.b-news-item__date span{
	color: #393939;
	font-size: 13px;
	font-weight: 400;
	line-height: 15px;
}
.b-news-item__content p{
	color: #393939;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
	margin: 0;
}
.b-news-item__link{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #bc2626;
	font-size: 12px;
	font-weight: 900;
	line-height: 14px;
	margin: 8px 0 0 0;
}
.b-news-item__link:after{
	content: "";
	background: url(../images/select-arrow.png) center;
	width: 7px;
	height: 4px;
	transform: rotate(-90deg);
	display: block;
	margin: 1px 0 0 5px;
}
.b-news-item__link:hover , .b-news-item__link:active{
	color: #bc2626;
	text-decoration: none;
}
.b-stock-item{
	position: relative;
}
.b-stock-item img{
	width: 100%;
}
.b-stock-item:before{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	background: url(../images/stock-bg.png) center no-repeat;
	background-size: cover;
	width: 502px;
	height: 100%;
}
.b-news-item__content__wrap{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.b-stock-item .b-news-item__content{
	padding: 12px 25px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 450px;
}
.b-stock-item .b-news-item__content b , .b-stock-item .b-news-item__date span , .b-stock-item .b-news-item__content p{
	color: #ffffff;
}
.b-stock-item .b-news-item__date__ico{
	background: url(../images/calendar2.svg) no-repeat;
}
.b-news-item__link{
	color: #ffffff;
	position: absolute;
	bottom: 20px;
	right: 20px;
}
.b-news-item__link:after{
	content: "";
	background: url(../images/sa.png) center;
	width: 3px;
	height: 5px;
	transform: rotate(0deg);
}
.b-pagination{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0 0 0;
}
.b-pagination-btn{
	width: 21px;
	height: 21px;
	background-color: #010410;
	background-image: -webkit-linear-gradient(299deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(299deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(29deg, #e36969 0%, #e36969 0%, #a60000 100%);
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
}
.b-pagination ul{
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.b-pagination ul li{
	list-style: none;
	margin: 0 14px;
}
.b-pagination ul li a{
	font-weight: 700;
	line-height: 16px;
	color: #404040;
	font-size: 14px;
}
.b-pagination ul li a:hover{
	text-decoration: none;
	color: #a60000;
}
.b-pagination ul li.active a{
	text-decoration: none;
	color: #a60000;
}
/* -------------- page b-structure -------------- */
.b-structure{
    min-height: 615px;
}
.b-structure .b-wrapper{
	margin: 0 0 6px 0;
}
.b-structure-top{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
}
.b-structure-top__left{
	padding: 0 10px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 10px 0 0;
	border-right: 1px solid #e8e8e8;
	width: 280px;
}
.b-structure-top__name{
	margin: 0 0 15px 0;
}
.b-structure-top__name b{
	display: block;
	color: #4d4c4c;
	line-height: 18px;
	font-size: 16px;
	font-weight: 700;
}
.b-structure-top__name span{
	display: block;
	color: #4d4c4c;
	font-size: 12px;
	font-weight: 400;
	line-height: 16px;
}
.b-structure-link{
	display: flex;
	justify-content: flex-start;
	align-items: center;
        overflow: hidden;
}
.cm-copy{
    cursor: pointer;
}
.b-structure-link__ico{
	background: url(../images/man-user.png) no-repeat;
	width: 10px;
	height: 13px;
	flex-shrink: 0;
	margin: 0 10px 0 0;
}
.b-structure-link__text{

}
.b-structure-link__text span{
	display: block;
	font-size: 12px;
	font-weight: 400;
	line-height: 14px;
	color: #4d4c4c;
}
.b-structure-link__text a{
	display: block;
	font-size: 12px;
	font-weight: 400;
	line-height: 14px;
	color: #c02c2c;

}
.b-structure-top__right{
	flex-grow: 1;
        text-align: center;
}
.b-structure-top__right .b-main-trips__track{
	width: 100%;
	background: #efefef;
	border-radius: 5px;
	box-shadow: 0.9px 1.8px 6px rgba(65, 65, 65, 0.21);
	height: 9px;
}
.b-structure-top__right .b-main-trips__btn{
	width: 17px;
	height: 17px;
	background: #bf2a2a;
}
.b-main-trips__btn:before{
	background-image: -webkit-linear-gradient(171deg, #f6f8f7 0%, #e2e5ec 100%);
	background-image: -o-linear-gradient(171deg, #f6f8f7 0%, #e2e5ec 100%);
	background-image: linear-gradient(261deg, #f6f8f7 0%, #e2e5ec 100%);
    width: 9px;
    height: 9px;
   margin: -4.5px 0 0 -5.1px;
}

.b-structure-top__right__top{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 15px 0;
}
.b-structure-top__right__top b{
	max-width: 255px;
	color: #474747;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
}
.b-structure-top__right__btns{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.b-structure-top__btn{
	width: 108px;
	height: 25px;
	border-radius: 12px;
	color: #363636;
	font-size: 12px;
	font-weight: 700;
	line-height: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
.b-structure-top__btn.active{
	background-color: #2f3aa1;
	background-image: -webkit-linear-gradient(171deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(171deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(261deg, #e36969 0%, #e36969 0%, #a60000 100%);
	color: #ffffff;
}
.b-structure-top__right__bottom{
	margin: 10px 0 0 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.b-structure-top__right__bottom p{
	color: #363636;
	font-size: 12px;
	line-height: 18px;
	font-weight: 400;
	margin: 0;
	max-width: 135px;
}
.b-structure-top__right__bottom p b{
	font-weight: 700;
}
.b-structure-top__right__bottom p:last-child{
	text-align: right;
}

.b-agents{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.b-agents-content{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	flex-grow: 1;
}
.b-agents-item{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border-right: 1px solid #e8e8e8;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 28px 0 0;
	margin: 0 28px 0 0;
	flex-shrink: 0;
    flex-grow: 1;
}
.b-agents-item:last-child{
	border: none;
}
.b-agents-item__img{
	flex-shrink: 0;
	margin: 0 15px 0 0;
}
.b-agents-item__wrap{

}
.b-agents-item__wrap span{
	display: block;
	color: #474747;
	font-size: 12px;
	font-weight: 700;
	line-height: 15px;
}
.b-agents-item__wrap b{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #474747;
	font-size: 22px;
	font-weight: 900;
	line-height: 24px;
}
.b-agents-item__arrow{
	background: url(../images/b-agents-item__arrow.png) no-repeat;
	width: 12px;
	height: 8px;
	margin: 0 0 0 7px;
	display: block;
}
.b-agents-btn{
	width: 167px;
	height: 37px;
	background-color: #2f3aa1;
	background-image: -webkit-linear-gradient(171deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(171deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(261deg, #e36969 0%, #e36969 0%, #a60000 100%);
	border-radius: 19px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	flex-shrink: 0;
}
.b-search{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-search-item{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-shrink: 0;
	margin: 0 15px 0 0;
}
.b-search-item__ico{
	background: url(../images/b-search-item__ico.png) center top no-repeat;
	width: 23px;
	height: 23px;
	margin: 0 13px 0 0;
}
.b-search-item span{
	color: #282828;
	font-size: 14px;
	font-weight: 900;
	line-height: 16px;
	text-transform: uppercase;
}
.b-search-wrap{
	flex-grow: 1;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
}
.b-search-input{
	width: 100%;
	height: 32px;
	border: 1px solid #c02d2d;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 16px;
	color: #282828;
	font-size: 14px;
	font-weight: 400;
	line-height: 14px;
	padding: 0 85px 0 15px;
}
.b-input-text::-webkit-input-placeholder{
	color: #9e9e9e;
	font-size: 12px;
	font-weight: 400;
	line-height: 14px;
}
.b-input-text:-moz-placeholder{
	color: #9e9e9e;
	font-size: 12px;
	font-weight: 400;
	line-height: 14px;	
}
.b-search-btn{
	background: none;
	color: #373737;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	width: 78px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	border-left: 1px solid #d1d1d1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-wrapper-two{
	padding: 15px 15px;
}
.b-structure-item__top{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
}
.b-structure-item__content{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	flex-grow: 1;
	margin: 0 -8px;
}
.b-structure-item__col{
	padding: 6px 8px 6px 8px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-right: 1px solid #e8e8e8;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
    width: 20%;
    flex-shrink: 0;
}
.alarms .b-structure-item__col{
   
   justify-content: left;
	align-items: start;
}
.alarms .b-structure-item__col:last-child{
    padding: 6px 8px 6px 8px; 
}
.alarms .b-contract-item .b-structure-item__col{
    width: 15%;
}
#dolg_pays .b-contract-item .b-structure-item__col,
#repays .b-contract-item .b-structure-item__col{
    width: 18%;
}
.b-structure-item__col.start{
    justify-content: flex-start;
	align-items: flex-start;
}
.b-structure-item__col:last-child{
	margin: 0;
	padding: 0;
	border: none;
}
.b-structure-user{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-structure-user strong{
	color: #282828;
	font-size: 14px;
	font-weight: 700;
	line-height: 17px;
	display: block;
	text-align: center;
}
.b-structure-user__img{
	width: 45px;
	height: 45px;
	background-color: #60676e;
	background-image: -webkit-linear-gradient(171deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(171deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(261deg, #e36969 0%, #e36969 0%, #a60000 100%);
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 10px 0 0;
}
.b-structure-user__img img{
	width: 16px;
}
.b-structure-user__content{

}
.b-structure-user__content b{
	display: block;
	color: #282828;
	font-size: 13px;
	font-weight: 700;
	line-height: 15px;	
	margin: 0 0 10px 0;
}
.b-structure-user__wrap{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-structure-user__wrap__ico{
	background: url(../images/calendar.svg) no-repeat;
	width: 14px;
	height: 14px;
	margin: 0 6px 0 0;
}
.b-structure-user__wrap__text{

}
.b-structure-user__wrap__text span{
	display: block;
	color: #373737;
	font-size: 12px;
	font-weight: 400;
	line-height: 14px;
	margin: 0 0 4px 0;
}
.b-structure-user__wrap__text p{
	margin: 0;
	color: #9e9e9e;
	font-size: 11px;
	font-weight: 400;
	line-height: 13px;
}
.b-structure-contacts{

}
.b-structure-contacts__item{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 10px 0;
}
.b-structure-contacts__item:last-child{
	margin: 0;
}
.b-structure-contacts__item__ico{
	margin: 0 6px 0 0;
}
.b-structure-contacts__item b{
	color: #373737;
	font-size: 12px;
	line-height: 14px;
	font-weight: 700;
}
.b-structure-contacts__item span{
	color: #373737;
	font-size: 12px;
	line-height: 14px;
	font-weight: 400;	
}
.b-structure-item__text{
	text-align: center;
}
.alarms .b-structure-item__text{
        text-align: left;
}
.b-structure-item__text b{
	display: block;
	color: #373737;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	margin: 0 0 6px 0;
}
.b-structure-item__text span{
	display: block;
	color: #ae0d0d;
	font-size: 16px;
	font-weight: 900;
	line-height: 18px;
}
.b-structure-item__wrap{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 0 15px;
}
.b-structure-item__btn{
	width: 94px;
	height: 32px;
	border: 1px solid #a90606;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 16px;
	color: #373737;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
	position: relative;
	padding: 0;
}
a.b-structure-item__btn{
    margin: 0 auto;
}
a.b-structure-item__btn:hover{
    color: white !important;
}
.b-structure-item__btn:after{
	position: absolute;
	top: 13px;
	right: 14px;
	content: "";
	background: url(../images/select-arrow.png) no-repeat;
	width: 7px;
	height: 4px;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
.b-structure-item__btn:hover{
	background: #a90606;
	transition: 0.3s;
	text-decoration: none;
	color: #ffffff;
}
.b-structure-item__btn.active{
	transition: 0.3s;
	padding: 0 10px 0 0;
}
.b-structure-item__btn.active:after{
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
}
.b-structure-item__bottom{
	padding: 15px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-top: 1px solid #e8e8e8;
	margin: 13px 0 0 0;
	display: none;
}
.b-structure-item__btn.active:hover{
	background: none;
	color: #a90606;
}

.b-structure-item__nav{

}
.b-structure-item__nav ul{
	padding: 0;
	margin: 0 0 15px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.b-structure-item__nav.alarms_top li{
    padding: 10px 0 0 0;
}
.b-structure-item__nav.alarms_top ul li a{
    width: auto;
    padding: 0 10px;
    margin-right: 25px;
    text-align: center;
}
.b-structure-item__nav ul li{
	list-style: none;
}
.b-structure-item__nav ul li a{
	width: 124px;
	height: 32px;
	border-radius: 16px;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	color: #373737;
	display: flex;
	justify-content: center;
	align-items: center;
        text-align: center;
}
.b-structure-item__nav ul li a.active{
	background-color: #d1d1d1;
	background-image: -webkit-linear-gradient(336deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(336deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(66deg, #e36969 0%, #e36969 0%, #a60000 100%);
	color: #ffffff;
}
.b-structure-item__blocks{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	flex-wrap: wrap;
	margin: 0 -5px;
}
.b-structure-item__blocks.center{
    	justify-content: center;
	align-content: center;
}
.b-structure-item__blocks__col{
	padding: 0 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 16.666666%;
	margin-bottom: 10px;
}
.b-structure-item__blocks__col.big{
    width: 28%;
}
.messages .b-col{
    width: 20%;
}
.messages .b-contract-row .b-item-input{
    width: 200px;
}
.b-structure-item__block{
	height: 120px;
	border: 1px solid #e8e8e8;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
}
.b-structure-item__block span{
	display: block;
	color: #373737;
	font-size: 12px;
	font-weight: 700;
	line-height: 14px;
}
.b-structure-item__block p{
	margin: 6px 0;
	color: #373737;
	font-size: 12px;
	font-weight: 400;
	line-height: 14px;
}
.b-structure-item__block b{
	display: block;
	color: #ae0d0d;
	font-size: 16px;
	font-weight: 900;
	line-height: 18px;
}
.btn-struckrure{
	width: 176px;
	height: 32px;
	border: 1px solid #a90606;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 16px;
	color: #373737;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px auto 0;
	transition: 0.3s;
}
.btn-struckrure:hover{
	background: #a90606;
	transition: 0.3s;
	text-decoration: none;
	color: #ffffff;
}
.b-calc-top{
	margin: 0 0 15px 0;
}
.b-calc-top b{
	color: #4b4949;
	font-size: 14px;
	font-weight: 900;
	line-height: 16px;
	text-transform: uppercase;
}
.b-table-3{
	margin: 0 0 20px 0;
}
.b-table-3 table thead tr td{
	background: #f9f9f9;
	width: 12.5% !important;
    padding: 10px 15px;
    border-bottom: 2px solid #ffffff;
    border-right: 1px solid #e8e8e8;

}
.b-table-3 table thead tr td:first-child{
	width: 40% !important;
}
.b-table-3 table thead tr td:last-child{
	border-right: none;
}
.b-table-block{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.b-table-block .b-radio{
	margin: 0;
}
.b-table-4{

}
.b-table-4 table thead tr td{
	width: 25% !important;
	text-align: center;
}
.b-table-4 table thead tr td:first-child{
	width: 25% !important;
	text-align: center;
}
.b-table-4 table tbody tr td{
	text-align: center;
}
.items{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	margin: 0 0 20px 0;
}
.item{
	width: 25%;
	text-align: center;
	margin: 0 15px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: column;
}
.item:last-child{
	margin: 0;
}
.item b{
	display: block;
	color: #4b4949;
	font-size: 12px;
	font-weight: 900;
	line-height: 16px;
	margin: 0 0 15px 0;
}
.item-wrap{
	width: 100%;
	height: 41px;
	border: 1px solid #e8e8e8;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.item-wrap span{
	color: #b01111;
	font-size: 15px;
	font-weight: 900;
	line-height: 17px;
}
.b-btns{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 20px 0 0 0;
}
.b-btn{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 10px;
}
.b-calc-graph{

}
.b-calc-graph img{
	margin: 0 auto 0;
}
.b-btn-ico{
	margin: 0 10px 0 0;
}
.b-btn span{
	color: #3d3d3d;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	flex-shrink: 0;
}
.b-top__wrap{
	padding: 0 0 0 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 0 0 15px;
	border-left: 1px solid #bababa;
}
.btn-contract{
	color: #a1a1a1;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	border-bottom: 0px dashed #a1a1a1;
	padding: 0 0 2px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.btn-contract:hover{
   color: #a1a1a1;
   text-decoration: none;
}
.btn-contract:focus{
    outline: none;
}
.btn-form{
	width: 100%;
	height: 31px;
	background-image: -webkit-linear-gradient(159deg, #e36969 0%, #e36969 0%, #a60000 100%), -webkit-linear-gradient(69deg, #00fde8 0%, #0e7c7b 100%);
	background-image: -o-linear-gradient(159deg, #e36969 0%, #e36969 0%, #a60000 100%), -o-linear-gradient(69deg, #00fde8 0%, #0e7c7b 100%);
	background-image: linear-gradient(249deg, #e36969 0%, #e36969 0%, #a60000 100%), linear-gradient(159deg, #00fde8 0%, #0e7c7b 100%);
	border-radius: 16px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
}
.b-item__r1{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-item__r1 b{
	color: #2e2d2d;
	font-size: 12px;
	line-height: 14px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 10px 0 0;
}
.b-contract-row .b-item-input{
	border: 1px solid #be2a2a;
	border-radius: 16px;
}
.b-contract-row .b-select{
	border: 1px solid #be2a2a;
	border-radius: 16px;
}
.b-contract-row{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
}
.b-contract-row__left{
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.b-contract-row__left b{
	color: #282828;
	display: block;
	font-size: 12px;
	font-weight: 700;
	line-height: 15px;
	margin: 0 0 6px 0;
	padding: 0 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-contract-row__left span{
	color: #ffffff;
	font-size: 10px;
	font-weight: 400;
	line-height: 12px;
	background-color: #d1d1d1;
	background-image: -webkit-linear-gradient(317deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(317deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(47deg, #e36969 0%, #e36969 0%, #a60000 100%);
	border-radius: 12px 0 12px 0;
	padding: 4px 7px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-contract-row__content{
	display: flex;
	justify-content: flex-start;
	align-content: flex-start;
	flex-wrap: wrap;
}
.b-contract-row__col{
	width: 100%;
 	margin: 0 5px 0 0;
	border-right: 1px solid #e8e8e8;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-contract-row__text{
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;	
}
.b-contract-row__text p{
	color: #373737;
	font-size: 11px;
	font-weight: 400;
	line-height: 18px;
	margin: 0;
}
.b-contract-row__text p span{
	color: #525252;
	font-size: 12px;
	font-weight: 700;
	line-height: 14px;
}
.b-contract-row__text p b{
	display: block;
	color: #525252;
	font-size: 12px;
	font-weight: 700;
	line-height: 22px;
}
.b-structure-item__two{
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.b-structure-contacts__wrap{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.b-contract-row__wrap{
	text-align: center;
	width: 100%;
	border-bottom: 1px solid #e8e8e8;
	padding: 5px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-contract-row__wrap:last-child{
	border: none;
}
.b-contract-row__wrap span{
	display: block;
	color: #373737;
	font-size: 12px;
	font-weight: 700;
	line-height: 14px;
}
.b-contract-row__wrap b{
	display: block;
	color: #ae0d0d;
	font-size: 12px;
	font-weight: 900;
	line-height: 28px;
}
.b-contract-row__two{
	border-bottom: 1px solid #e8e8e8;
}
.b-structure-item__left__block{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 33.333333%;
}
.b-structure-item__left__block{
	border-right: 1px solid #e8e8e8;
}
.b-contract-row__4{
    /*margin: 0 109px 0 0;*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.b-generation .b-wrapper-two{
	min-height: 700px;	
}
 .b-structure-item__col{
	width: 20%;
}
.b-contract-item .b-contract-row__4 .b-structure-item__col{
	width: 25%;
}
.b-structure-contacts > b{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 10px 0;
}
.b-table_5{
	margin: 20px 0 0 0;
}
.b-table_5 table {

}
.b-table_5 table thead tr td{
	text-align: center;
	width: 15%;
	background: #fbfbfb;
    padding: 10px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-right: 1px solid #e8e8e8;
}
.b-table_5 table thead tr td:last-child{
	border: none;
}
.b-table_5 table thead tr td:first-child{
	width: 15%;
	text-align: center;
}
.b-table_5 table thead tr td:nth-child(5) , .b-table_5 table thead tr td:nth-child(5){
	width: 20%;
}
.b-table_5 table tbody tr td{
	text-align: center;
	width: 15%;
}
.b-table_5 table tbody tr td img{
	float: right;
}
.b-generation-bottom{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background: #f9f9f9;
	border-radius: 6px;
	padding: 10px 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 2px 0 0 0;
}
.b-generation-bottom__left{
	margin: 0 25px 0 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.b-generation-bottom__left span{
	color: #4b4949;
	font-size: 14px;
	font-weight: 900;
	line-height: 16px;
	display: block;
	margin: 0 20px 0 0;
}
.btn-copy{
	width: 102px;
	height: 26px;
	background-color: #d1d1d1;
	background-image: -webkit-linear-gradient(25deg, #a60000 0%, #e36969 100%, #e36969 100%);
	background-image: -o-linear-gradient(25deg, #a60000 0%, #e36969 100%, #e36969 100%);
	background-image: linear-gradient(115deg, #a60000 0%, #e36969 100%, #e36969 100%);
	border-radius: 12px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.btn-copy:hover {
    opacity: 0.8;
    transition: 0.3s;
    text-decoration: none;
}
.btn-copy a{
    display: block;
    width: 100%;
    line-height: 26px;
    text-align: center;
    color: #ffffff;
}
.b-generation-bottom .b-btns{
	margin: 0;
}
.generation-btn{
	width: 100%;
	height: 45px;
	border: 2px solid red;
	border-radius: 6px;
	color: #bb2626;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px 0 0 0;
}
.generation-btn__ico{
	background: #fff url(../images/generation-btn__ico.png) no-repeat;
	background-position: left 0px top;
    width: 15px;
    height: 15px;
	margin: 0 7px 0 0;
	display: block;
	border-radius: 100%;
}
.generation-btn:hover{
	color: #ffffff;
	transition: 0.3s;
	background: red;
}
.b-text-container{

}
.b-text-container{

}
.b-text-container b{
	display: block;
	color: #525252;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;	
	margin: 0 0 15px 0;
}
.b-text-container p{
	margin: 0 0 20px 0;
	color: #525252;
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;	
}
.b-text-container ul{
	list-style: none;
	padding: 0;
	margin: 20px 0;
}
.b-text-container ul li{
	position: relative;
	color: #525252;
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;		
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 22px 0;
}
.b-text-container ul li:last-child{
	margin: 0;
}
.b-text-container ul li:before{
	display: block;
	content: "";
	width: 21px;
	height: 21px;
	flex-shrink: 0;
	background: url(../images/checkedt.png) center no-repeat;
	margin: 0 11px 0 0;
}
.b-text-container ol{
	margin: 20px -15px;
	padding: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	counter-reset: myCounter;
}
.b-text-container ol li{
	list-style: none;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0 0 22px 0;	
	width: 50%;
	padding: 0 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: #525252;
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;		
}
.b-text-container ol li:before{
	counter-increment: myCounter;
	content:counter(myCounter);	
	width: 22px;
	height: 22px;
	background-color: #d1d1d1;
	background-image: -webkit-linear-gradient(317deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(317deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(47deg, #e36969 0%, #e36969 0%, #a60000 100%);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	line-height: 16px;	
	border-radius: 100%;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;	
	margin: 4px 11px 0 0;
}
.chart-info{
	position: absolute;
	top: -60px;
	left: 50%;
    padding: 4px 9px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #f1547e;
	background-image: -webkit-linear-gradient(299deg, #919191 0%, #535353 99%, #535353 100%);
	background-image: -o-linear-gradient(299deg, #919191 0%, #535353 99%, #535353 100%);
	background-image: linear-gradient(29deg, #919191 0%, #535353 99%, #535353 100%);
	border-radius: 6px;
	box-shadow: 1.3px 2.7px 13px rgba(108, 123, 153, 0.65);	
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	min-width: 110px;
}
.chart-item:hover .chart-info{
	opacity: 1;
	visibility: visible;
	transition: 0.3s;
}
.chart-info__red{
	background-color: #f1547e;
	background-image: -webkit-linear-gradient(299deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: -o-linear-gradient(299deg, #e36969 0%, #e36969 0%, #a60000 100%);
	background-image: linear-gradient(29deg, #e36969 0%, #e36969 0%, #a60000 100%);
	border-radius: 6px;
	box-shadow: 1.3px 2.7px 13px rgba(108, 123, 153, 0.63);
}
.chart-info span{
	display: block;
	color: #ffffff;
	font-size: 12px;
	font-weight: 400;
	line-height: 22px;
}
.chart-info b{
	display: block;
	color: #ffffff;
	font-size: 13px;
	font-weight: 900;
	line-height: 16px;
}
.main_login{
    background-color: #F4F4F4;
}
.main_login .b-logo__left span{
    color: #000;
}
.main_login .b-logo{
    justify-content: center;
}
.main_login .b-container{
    background: transparent;
}
.b-logo:hover{
    text-decoration: none;
}
.recover_password{
    text-align: center;
    display: block;
    margin: 5px auto 10px;
    width: 50%;
    color: #B9494A;
    text-decoration: underline;
}
.b-structure-top__right i{
    display: inline-block;
    position: relative;
    top: -7px;
    margin-right: 10px;
}
.b-structure-top__right .b-structure-top__name{
    display: inline-block;

}
.title.red{
    margin-left: 30px;
    font-size: 20px;
    font-weight: bold;
    color:  #a60000;
}
.ty-fileuploader *{
   cursor: pointer;
}
.ty-fileuploader a {
    display: block;
    border: 1px solid #c02d2d;
    text-align: center;
    border-radius: 16px;
    padding: 5px 0;
}
.ty-fileuploader:hover{
    
}
.ty-fileuploader:hover a{
    background-color: #c02d2d;
    color: white; 
}
.b-footer-menu{
    width: 33.33%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.b-footer-menu a{
    padding-top: 18px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    margin: 15px;
    width: 120px;
    height: 120px;
    border: 1px solid #d1d1d1;
    border-radius: 9px;    
    text-decoration: none;
    color: #313131;
}
.b-footer-menu a p{
    color: #313131;
}
.b-footer-menu a:hover{
    border-color: #4b4949;
}
.b-footer-menu .b-nav-ico{
    width: 35px;
}
.buttons-container-picker .b-structure-item__btn{
    margin: 0 auto;
}
.type_insurance label{
    display: inline-block;
}
.type_insurance .ty-input-text-full{
    width: auto;
}
.ui-dialog-content .object-container{
    padding: 10px 10px 0;
}
.ui-dialog-content .ty-control-group:last-child{
    margin: 0
}
marquee span{
    font-size: 20px;
}