.courses-element--inner{
	display: block;
	width: 100%;
}

.courses-element--inner > .row{
	    margin: 0px -20px;

}

.courses-element--inner > .row > *{
	padding: 0 20px;
}

.courses-element--inner .col-12.col-lg-6{
	margin-bottom: 10px;
}

.courses-element--inner .col-12.col-lg-6 a{
	display: inline-block;
	width: 100%;
	padding: 20px;
	font-size: 14px;
	color: #000;
	background-color: white;
	border-radius: 5px;
}

.test-person--card .title{
	cursor: pointer;
	padding-right: 20px;
	position: relative;
}

.test-person--card .title:before{
/*
	content: '';
	position: absolute;
	top: calc(50% - 12px);
	right: 0;
	width: 8px;
	height: 8px;
	display: inline-block;
	border-right: solid 2px #131313;
	border-bottom: solid 2px #131313; 
	transform: rotate(45deg);
	transition: 0.5s;
*/
}

.test-person--card.active .title:before{
	transform: rotate(225deg);
}

.test-person--card .progress-education--list{
	overflow: hidden;
	transition: 0.5s;
	margin-bottom: 0px !important;
}

.test-person--card.active .progress-education--list{
	margin-bottom: 0px !important;
}

body.is-mobile{
    padding-top: 50px;
}

.progress-education--element{
	align-items: start;
}

.types-question .types-question__container{
	display: none;
}

.types-question .types-question__container.active{
	display: block;
}

[data-success]{
	margin-bottom: 20px;
	    color: #009701;
}

.loading-block{
	min-height: 50px;
	position: relative;
}

.loading-block:before {
	z-index: 3;
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background-image: url('../img/loading.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    -webkit-animation-name: loading;
    animation-name: loading;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
}

@keyframes loading{
	from{
		transform: rotate(0deg);
	}

	to{
		transform: rotate(360deg);
	}
}

.loading-block:after{
	content:'';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: block;
	background-color: #FFF;
	opacity: 0.35;
}

.loading-block{
	height: auto;
}

.loading-block.row{
	display: flex;
}

[data-error]{
	color: #C00000;
	margin: 10px 0;
}

.answer-block{
	grid-template-columns: 100%;
}

.progress-education--list{
	display: none;
}

.test-person--card.active .progress-education--list{
	display: block;
}

.progress-education--list.progress-education--list__staff-detail{
	display: block;
}