

/* Start:/local/components/harlamoff/test.view/Process/templates/.default/style.css?15753982908130*/


/* Базовые */
.ts__question-img + .ts__question-title {
    margin-top: 30px;
}

.ts__question {
    max-width: 900px;
    margin: 0 auto;
}

.ts__question-img {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.ts__answer_img{
    height: 170px;
    max-width: 100%;
    display: block;
    margin-bottom: 10px;
}

.ts__answer-text{
	min-width: 290px;
}

.ts__answer-text,
.ts__answer-number {
    height: 50px;
    display: block;
    border: 1px solid #f1f4f7;
    background-color: #f1f4f7;
    color: #5e5c74;
    border-radius: 3px;
    padding: 0 15px;
    font-size: 16px;
    box-shadow: none;
}

@media (max-width: 480px){
	.ts__question-img {
	    width: 100%;
	    height: auto;
	    min-height: 100px;
	    margin: -20px auto 0;
	    display: block;
	    margin-bottom: 20px;
	}
}

@media (min-width: 481px) and (max-width: 992px){
	.ts__question-img{
		max-width: 350px;
		height: auto;
	    margin: 0 auto;
	    display: block;
	    margin-bottom: 20px;
	}
}

/* END базовые */



/* Текст вопроса */
.ts__question-title {
	font-size: 2em;
    font-weight: 500;
    padding: 0 0 0.5em;
    margin: 0 0 20px;
    /*font-family: 'Roboto Slab', serif;*/
    display: block;
	width: 100%;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

@media (max-width: 480px) {
	.ts__question-title {
	    font-size: 1.4em;
	    padding: 0em;
	}
}

@media (min-width: 481px) and (max-width: 992px) {
	.ts__question-title {
		font-size: 1.5em;
	}
}
/* END Текст вопроса */


/* Список ответов */
.ts__answer-list {
	max-width: 900px;
	margin: 0;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
    list-style: none;
    padding: 0;
}
/* END Список ответов */


/* Ответы */
.ts__answer-li {
	margin: 0 auto;
	padding: 2em 0;
	position: relative;
}

.ts__answer-li:nth-child(2n+1){
	clear: both;
}

@media (max-width: 480px){
	.ts__answer-li {
	    padding: 1.2em 0;
	}
}

@media (min-width: 481px) and (max-width: 992px){
	.ts__answer-li {
	    padding: 1.1em 0;
	}
}

/* END Ответы */


/* Радио кнопки ответов */
.ts__question-inp[type="radio"],
.ts__answer-checkbox[type="checkbox"],
.ts__question-label:before,
.ts__answer-label-checkbox:before {
	width: 30px;
	height: 30px;
	left: 10px;
	position: absolute;
	cursor: pointer;
}

.ts__question-inp[type="radio"],
.ts__answer-checkbox[type="checkbox"] {
	opacity: 0;
	-webkit-appearance: none;
	display: inline-block;
	vertical-align: middle;
	z-index: 100;
}

.ts__question-label,
.ts__answer-label-checkbox {
    display: inline-block;
    position: relative;
    font-size: 1.5em;
    padding: 0 0 0 80px;
    vertical-align: top;
    color: #fff;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    -webkit-transition: opacity 0.3s cubic-bezier(.25,.8,.25,1);
	transition: opacity 0.3s cubic-bezier(.25,.8,.25,1);
}

.ts__question-label:before,
.ts__answer-label-checkbox:before {
	content: '';
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.ts__question-label:before {
	background-color: #fff;
	border: none;
}

.ts__answer-label-checkbox:before {
    border: 3px solid #fff;
}

.ts__question-label:before {
	border-radius: 50%;
}

.ts__question-inp[type="radio"]:checked + .ts__question-label,
.ts__answer-checkbox[type="checkbox"]:checked + .ts__answer-label-checkbox {
	color: #fff;
	opacity: 1;
}

.ts__question-inp[type="radio"]:checked + .ts__question-label:before,
.ts__answer-checkbox[type="checkbox"]:checked + .ts__answer-label-checkbox:before {
	opacity: 0.8;
}

.ts__answer-li svg {
	position: absolute;
	width: 70px;
	height: 70px;
	top: 10px;
	left: -10px;
	pointer-events: none;
}

.ts__answer-li svg path {
	stroke: #fdfcd3;
	stroke-width: 13px;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

.ts__answer-li svg path {
	stroke-width: 5px;
}

.ts__answer-li .ts__answer-label-checkbox + svg {
    width: 45px;
    height: 45px;
    top: 7px;
    left: 10px;
}

.ts__answer-li .ts__answer-label-checkbox + svg path {
	stroke-width: 9px;
}

.ts__answer-checkbox[type="checkbox"]:disabled + .ts__answer-label-checkbox  {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 480px) {
	.ts__question-inp[type="radio"],
	.ts__question-label:before,
    .ts__answer-checkbox[type="checkbox"] {
	    width: 25px;
	    height: 25px;
	}

	.ts__question-label,
    .ts__answer-label-checkbox {
		font-size: 1.2em;
	    padding: 0 0 0 70px;
	    font-weight: 400;
	    letter-spacing: 0.03em;
	}

	.ts__answer-li svg {
		width: 50px;
		height: 50px;
		top: 5px;
		left: -2px;
	}

	.ts__answer-li .ts__answer-label-checkbox + svg {
	    width: 34px;
	    height: 34px;
	    top: 5px;
	    left: 12px;
	}
}

@media (min-width: 481px) and (max-width: 992px) {
	.ts__question-label,
    .ts__answer-label-checkbox {
	    font-size: 1.2em;
	    color: #fff;
	    font-weight: 400;
	}

	.ts__answer-li svg {
		top: 0;
	}

	.ts__answer-li .ts__answer-label-checkbox + svg {
	    width: 34px;
	    height: 34px;
	    top: 5px;
	    left: 12px;
	}
}

@media (min-width: 768px) {
    .ts__question-label:hover,
    .ts__answer-label-checkbox:hover {
        opacity: 0.5;
    }
}
/* END Радио кнопки ответов */


/* Прогресс-счетчик */
.ts__progress {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 2em;
    padding: 10px 20px;
    color: rgb(255, 255, 255);
    margin-top: 0;
    position: absolute;
    top: 15px;
    left: 0px;
}

.ts__progress-passed {
	color: rgba(0, 0, 0, 0.3);
	font-weight: 500;
}

@media (max-width: 480px){
	.ts__progress {
	    width: 100%;
	    top: 0;
	    padding: 15px;
	    font-size: 1.5em;
	    left: 0;
	    margin: 0;
	}
}

@media (min-width: 481px) and (max-width: 992px){
	.ts__progress {
	    font-size: 2em;
	}
}
/* END Прогресс-счетчик */


/* Прогресс-бар */
.ts__progress-bar {
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 10px;
	background: rgba(0, 0, 0, 0.26);
	z-index: 3;
}

.ts__progress-bar-load {
	position: absolute;
	top: 0;
	background: #fff;
	height: 100%;
	width: 0%;
    -webkit-transition: width 0.3s ease-in-out;
    transition: width 0.3s ease-in-out;
}

/* END Прогресс-бар */


/*Крестик закрытия теста*/
.ts__exit-btn {
    display: block;
    height: 25px;
    width: 25px;
    background-image: url(/upload/static/close.svg);
    background-repeat: no-repeat;
    position: absolute;
    z-index: 4;
    right: 30px;
    opacity: 0.3;
    cursor: pointer;
    top: 100px;
}

@media (max-width: 480px) {
	.ts__exit-btn {
		width: 18px;
		height: 18px;
		right: 20px;
	}
}
/*END Крестик закрытия теста*/

/* Кнопка Назад */
.button__arrow {
    width: 25px;
    top: 0;
    left: calc(50% - 13px);
    position: absolute;
    height: 100%;
    background-position-y: center;
    background-repeat: no-repeat;
}

.button__arrow_left {
	background-image: url(/upload/static/arrow_left.svg);
}

.button__arrow_right {
	background-image: url(/upload/static/arrow_right.svg);
}

/* END Кнопка Назад */





@-webkit-keyframes fadeIn { 0% {opacity: 0;} to {opacity: 1;} }
@keyframes fadeIn { 0% {opacity: 0;} to {opacity: 1;} }
/* End */


/* Start:/local/components/harlamoff/test.view/ResultTest/templates/.default/style.css?158022121918511*/
.pulse-widget-result-test{
    margin-top: 20px;
}

/*Proffesions test*/ 

.result__stenayn-img-card {
    background: #48467a;
    padding: 30px 0 0;
}

.ts__class__prof-klimov .result-stenayn {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -1px -2px 20px rgba(166, 176, 185, 0.21), 
                1px 50px 64px rgba(186, 194, 202, 0.39);
    margin-bottom: 40px;
}

.result__stenayn-img-card img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    height: 180px;
}

.result__stenayn-text-card {
    padding: 40px 6vw 60px;
}

/*END Proffesions test*/ 


/* Wikium */
/*.result__wikium-wrap img{*/
/*    padding: 10px;*/
/*}*/
.result__wikium-wrap,
.result__wikium-wrap_mob {
    margin: 30px auto;
    max-width: 400px;
}

.result__wikium-img {
    width: 100%;
    border-radius: 5px; 
}

.result__wikium-wrap_mob {
    display: none;
}

@media (max-width: 767px) {
    .result__wikium-wrap_mob {
        display: block;
    }

    .result__wikium-wrap {
        display: none;
    }
}

/*END Wikium*/



.result__description-footer__litres{
    padding: 2em 0 1em;
}
.result__description-footer__litres-img{
    padding-top: 1em;
    width: 100%;
    max-width: 500px;
}
.ts-alibn-wrp{
    display: block;
    max-width: 300px;
    margin: 10px auto;
    position: relative;

    border-bottom: none !important;
}

.ts-alibn-img{
    display: block;
    width: 100%;
}

.ts-alibn-label{
    position: absolute;
    bottom: 0;
    width: 100%;
    color: #000;
    line-height: 33px;
    text-align: center;
    background: #ffffffa6;
}

.smartBnr__container {
    display: none;
    height: 100%;
    margin: 20px auto;
    position: relative
}

.smartBnr {
    display: block;
    height: 56px !important;
    background: none !important;
    border: none !important;
    font-family: inherit !important
}

.smartBnr__close {
    width: 25px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    cursor: pointer
}

.smartBnr__close__svg {
    position: absolute;
    top: 50%;
    left: 8px;
    margin: -5px 0 0
}

.smartBnr__button {
    position: relative;
    display: block;
    height: 100%;
    font-size: 10px;
    color: #4d7cfe;
    cursor: pointer;
    text-decoration: none
}

.smartBnr__icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 8px 8px 0 0;
    position: absolute
}

.smartBnr__info {
    position: relative;
    font-size: 10px;
    line-height: 16px;
    color: #222;
    text-shadow: 0 1px 0 hsla(0, 0%, 100%, .8);
    margin: 0 15px 0 53px;
    height: 56px;
    overflow: hidden
}

.smartBnr__title {
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0;
    margin: 6px 0 0;
    font-weight: 700
}

.smartBnr__text {
    margin-bottom: 2px
}

.smartBnr__stars {
    position: relative;
    left: 2px;
    display: inline-block;
    width: 48px;
    height: 8px
}

.smartBnr__link-text {
    display: block;
    width: 67px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    position: absolute;
    top: 50%;
    right: 0px;
    margin: -12px 0 0;
    color: #fff;
    background: #02A0EA;
    border-radius: 3px;
    font-size: 10px
}

@media (max-width: 480px) {
    .smartBnr__container{
        display: block;
    }
}


.core-title {
    font-size: 14px !important;
    font-weight: normal !important;
}

.result__horizontal-banner {
    margin-top: 20px;
}


/*Фоны результатов для особых тестов*/
.ts__class__white-bg .result__header,
.ts__class__image-choice .result__header{
    background: #04a0ea;
}

/*.result__banner-space{
    width: 160px;
}
*/

.result-stenayn{
    margin-top: 1em;
    margin-bottom: 1em;
}

.result__caption-saved {
    text-align: center;
    cursor: pointer;
    padding: 5px 10px;
    color: #02A0EA;
    border-radius: 3px;
    transition: background .2s ease-out;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: -10px;
    text-decoration: none;
}

.result__caption-saved:hover {
    background: #f1f4f7;
}

.result__header {
    width: 100%;
    padding: 30px 20px;
}

.result__h1 {
    font-size: 30px;
    color: #FFFFFF;
    letter-spacing: 0;
    font-weight: 400;
    line-height: 1;
    text-align: center;
}

.result__h2{
    font-size: 18px;
    color: #5D5C73;
    letter-spacing: 0.1px;
    /*font-family: 'Roboto Slab', serif !important;*/
    font-weight: 500;
    -webkit-font-smoothing: auto;
    font-smoothing: auto;
}

.result__h2 {
    font-size: 20px;
}

.result__back {
    display: inline-block;
    width: auto;
    padding: 9px 18px 9px 35px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1.5;
    font-weight: 400;
    position: relative;
    cursor: pointer;
    transition: all .2s ease;
}

.result__back:after {
    position: absolute;
    top: 14px;
    left: 14px;
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
    content: '';
    width: 12px;
    height: 10px;
    background: url(/local/templates/main/img/slider-tests__arrow.svg);
    background-position: center center;
    background-size: cover;
    transition: all .2s ease;
}

.result__back:hover:after {
    left: 11px;
}

/*Breadcrumb*/
.result_breadcrumb {
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    opacity: 0.6;
}

.result_breadcrumb__item a {
    color: inherit;
    transition: all 0.2s ease-out;
    border-bottom: 1px solid transparent;
}

.result_breadcrumb__item a:hover {
    border-bottom: 1px solid #FFFFFF;
}

.result_breadcrumb__item {
    display: flex;
    align-items: center;
}

.result_breadcrumb__separate {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
}

.result_breadcrumb__separate:before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 10px;
    background-color: #FFFFFF;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

@media (max-width: 767px) {
    .result__header {
        margin-top: 0;
    }

    .result_breadcrumb {
        display: none;
    }

    .result__back.js-back-panel {
        width: 100%;
        position: fixed;
        left: 0;
        top: 70px;
        background-color: rgba(255, 255, 255, 0.95);
        border-radius: 0;
        z-index: 4;
        color: #5d5b73;
        font-size: 16px;
        letter-spacing: initial;
        font-weight: 500;
        padding: 0 20px 0 40px;
        height: 45px;
        display: flex;
        align-items: center;
    }

    .result__back.js-back-panel:after {
        -webkit-transform: initial;
        transform: initial;
        background-image: url(/upload/static/dark-arrow-back.svg);
        width: 14px;
        height: 12px;
        top: 17px;
        left: 17px;
    }

    .result__back.js-back-panel:hover {
        background-color: rgba(255, 255, 255, 0.95);
    }
}

/* END header */


/*Result body*/
.result__body {
    background-color: #FFFFFF;
    padding-bottom: 50px;
}

.result__no-right-gutter {
    padding-right: 0;
}

.result__description-wrap {
    font-size: 16px;
    color: #5e5e73;
    line-height: 1.7em;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    margin: 40px auto 0;
}

.result__description-footer{
    margin-top: 1em;
}

.result__description a,
.ts-share__url a,
.result__description-footer a {
    color: #02A0EA;
    cursor: pointer;
    transition: all 0.2s ease-out;
    border-bottom: 1px solid transparent;
    text-decoration: none !important;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: initial;
}

.result__description a:hover,
.ts-share__url a:hover,
.result__description-footer a:hover {
    border-bottom: 1px solid #02A0EA;
}

.result__description-wrap b {
    font-weight: 500;
}

.result__description-footer ul,
.result__description ol {
    padding-left: 20px;
}

.result__tests {
    margin-top: 40px;
}

.result__link-ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 767px){
    .ts__container {
        padding-top: 70px;
    }

    .result__description-wrap {
        margin: 20px 0 0;
    }

    .result__h1 {
        font-size: 26px;
        line-height: 1.1;
    }
}

/*Share*/
.ts-share {
    margin: 40px 0;
}

.ts-share__url {
    display: flex;
    align-items: center;
    width: 100%;
}

.ts-share__copy-link {
    display: inline-block;
    background: #f1f4f7;
    border-radius: 3px;
    font-size: 12px;
    color: #8B9CAB;
    height: 36px;
    line-height: 36px;
    padding: 0 14px;
    margin: 5px 0 5px 10px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.2px;
    transition: all .3s ease-out;
    cursor: pointer;
}

.ts-share__copy-link:hover,
.ts-share__copy-link.active {
    background: #dae1e7;
}

.ts-share__copy-link.active {
    position: relative;
}

.ts-share__copy-link.active {
    background: #dae1e7;
}

.ts-share__lble {
    font-size: 16px;
    color: #5D5C73;
    letter-spacing: 0.1px;
    font-weight: 500;
    margin: 15px 0 5px;
}

/*END Share*/

/*Yandex share global*/
.ya-share2__badge {
    border-radius: 20px !important;
    padding: 2px;
}

.ya-share2__icon {
    height: 26px;
    width: 26px;
    border: 2px solid transparent;
}

.ya-share2__container_size_m .ya-share2__item {
    margin: 5px 8px 5px 0 !important;
}

a.ya-share2__link,
a.ya-share2__link:hover {
    border-bottom: none;
    padding-bottom: 0;
}

.ya-share2__container_size_m div.ya-share2__popup {
    padding: 15px 25px;
    width: auto;
    z-index: 3;
}

.ya-share2__container_size_m
.ya-share2__popup_direction_bottom {
    bottom: 41px !important;
    left: -155px !important;
    right: auto !important;
    top: auto !important;
}

.ya-share2__container_size_m
.ya-share2__popup_direction_bottom:before{
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #ffffff;
    bottom: -9px;
    right: 34px;
}

.ya-share2__popup {
    border: none !important;
    border-radius: 6px;
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.ya-share2__popup_direction_bottom {
    box-shadow: -1px -2px 20px rgba(166, 176, 185, 0.21),
                1px 50px 64px rgba(186, 194, 202, 0.39) !important;
    z-index: 1;
}

.ya-share2__popup .ya-share2__title {
    color: #5d5b73;
    font-size: 13px;
    font-weight: 400;
    transition: all .5s ease;
    font-family: "Roboto", sans-serif;
}

.ya-share2__link:hover .ya-share2__title {
    color: #02A0EA;
}

.ya-share2__list_direction_horizontal .ya-share2__icon.ya-share2__icon_more {
    background-color: transparent !important;
    border: 3px solid transparent !important;
}

.ya-share2__container_size_m .ya-share2__icon_more:before {
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #8B9CAB;
}

.ya-share2__popup_clipboard .ya-share2__link_copy {
    display: block !important;
    padding: 10px 0 0;
}

@-webkit-keyframes fadeInUp {
   0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
   0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/*END Yandex share global*/


/*Other tests*/
.other-tests {
    margin-bottom: 50px;
}

.other-tests__h2 {
    margin: 40px 0;
}

.col-md-8.result__no-gutters {
    padding: 0;
}

/*Basic templates for test list*/
.other-tests__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    position: relative;
    height: 100px;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.other-tests__link:hover {
    box-shadow: 8px 14px 21px rgba(163, 172, 181, 0.23);
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
}

.other-tests__title {
    display: block;
    display: -webkit-box;
    padding-left: 30px;
    /*font-family: 'Roboto Slab', serif !important;*/
    font-weight: 400;
    color: #5e5d73;
    font-size: 16px;
    line-height: 1.3;
    box-sizing: border-box;
    overflow: hidden;
    text-decoration: none;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.other-tests__img {
    height: 100%;
}

.other-tests__ok,
.other-tests__time-load {
    position: absolute;
    width: 26px;
    height: 26px;
    bottom: 10px;
    right: 10px;
    background-repeat: no-repeat;
    background-image: url(/local/templates/main/components/bitrix/news/tests/bitrix/news.list/.default/image/ok.svg);
}

.other-tests__ok {
    background-image: url(/local/templates/main/components/bitrix/news/tests/bitrix/news.list/.default/image/ok.svg);
}

.other-tests__time-load {
    background-image: url(/local/templates/main/components/bitrix/news/tests/bitrix/news.list/.default/image/time-load.svg);
}

@media (max-width: 767px) {
    .other-tests__title {
        -webkit-line-clamp: 3;
        font-size: 14px;
        line-height: 1.2;
        padding-left: 20px;
    }

    .other-tests__ok,
    .other-tests__time-load {
        width: 20px;
        height: 20px;
        bottom: 8px;
        right: 8px;
    }

    .other-tests__img {
        height: 55px;
    }

    .other-tests__link {
        height: 90px;
        margin-bottom: 20px;
    }

    .result__h2 {
        text-align: center;
    }

    .result__header {
        padding-top: 20px;
    }
}


.ajax-list div:nth-child(n+5){
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
 -webkit-animation-name: fadeInUpTests;
  animation-name: fadeInUpTests;
}

@-webkit-keyframes fadeInUpTests {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpTests {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/*END Other tests*/


/*We are in social networks*/

.we-are-in-soc {
    margin: 30px auto;
}

.we-are-in-soc__list {
    display: flex;
}

.we-are-in-soc__item {
    display: block;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    background-repeat: no-repeat;
    border-bottom: none;
    transition: opacity .2s ease-out;
}

.we-are-in-soc__item:hover {
    opacity: 0.7;
}

.we-are-in-soc__vk {
    background-image: url('/local/templates/.default/components/bitrix/socserv.auth.form/.default/images/vk.svg');
}

.we-are-in-soc__fb {
    background-image: url('/local/templates/.default/components/bitrix/socserv.auth.form/.default/images/fb.svg');
}

.we-are-in-soc__instagram {
    background-image: url('/local/templates/.default/components/bitrix/socserv.auth.form/.default/images/insta.svg');
}

/*END We are in social networks*/


/*Banner space*/
.result__banner-space {
    margin-top: 20px;
}
/*END Banner space*/

@media (max-width: 767px) {
    .we-are-in-soc {
        display: none;
    }

    .result__banner-space {
        display: none;
    }

    .result__no-gutters_mob {
        padding: 0;
    }
}



@-webkit-keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
}

@keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
}

/*Buttons*/
.result__buttons-wrap {
    width: 100%;
    clear: both;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.result__button-save {
    width: 225px;
}

@media (max-width: 439px) {
    .result__buttons-wrap {
        justify-content: center;
    }

    .result__button-save {
        order: 2;
    }

    .result__repeat {
        order: 3;
    }

    .ts-share {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


/*Repeat test*/
.result__repeat {
    color: #02A0EA;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background .2s ease-out;
    margin-left: -5px;
    margin-right: -5px;
}

.result__repeat:hover {
    background: #f1f4f7;
}

.result__repeat_img {
    background: url(/upload/static/repeat.svg) no-repeat;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-position: center;
    margin-right: 10px;
}

/*END Repeat test*/


/*Загрузить еще*/
.btn_load {
    display: block;
    text-align: center;
    color: #69687c;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* End */


/* Start:/local/components/harlamoff/test.view/templates/.default/style.css?15828976308902*/

.mgbox .mgheader{
    display: none !important;
}

.ablock-detected{
    display: none;
}
.process-ablock-style{
    max-width: 350px;
    margin: 20px auto;
}

/*FB*/
.fb-soc-subscribe{
    display: none;
    background: #FFFFFF;
    box-shadow: -1px -2px 20px rgba(0, 0, 0, 0.06), 1px 50px 64px rgba(0, 0, 0, 0.18);
    border-radius: 8px;
}
.fancybox-slide--html .fancybox-content.fb-soc-subscribe{
    margin-bottom: 0;
}

.fb-soc-subscribe__title {
    text-align: center;
    font-family: "Roboto Slab", serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.5em;
    color: #5E5C74;
    letter-spacing: 0;
    margin: 0 0 30px;
}

.fb-soc-subscribe__block {
    margin: 0 auto 20px;
    padding: 0 40px;
    text-align: center;
}

.fb-soc-subscribe__vk{
    margin: 0 auto;
}

.fb-soc-subscribe__list-soc {
    font-family: "Roboto Slab", serif;
    color: #5f5c74;
    margin: 0 auto 20px;
    text-align: center;
}

.fb-soc-subscribe__list-soc a {
    color: #5f5c74;
    font-size: 1.1em;
    line-height: 3em;
    padding: 0 1em;
    transition: color 0.3s cubic-bezier(.25,.8,.25,1);
    cursor: pointer;
}

.fb-soc-subscribe__list-soc a:hover {
    color: #000;
}

@media (max-width: 480px) {


    .fb-soc-subscribe{
        width: 100%;
        min-height: 100vh;
        border-radius: 0px;
    }
    .fb-soc-subscribe__title{
        font-size: 16px;
    }
}

.rm-gnezdo iframe{

}
/* adfox */
.rm-vidpotok{
    margin: 10px auto;  
}
.rm-vidpotok div{
    margin: 0 auto;  
}
.rm-test-top-wrp{
    margin-top: 25px;
    margin-bottom: 45px;
}
.rm-test-wrp{
width: 100%;
margin-top: 50px;
}
.rm-result .yap-rtb__wrapper,
.rm-result-mob .yap-rtb__wrapper,
.rm-result-bootom .yap-rtb__wrapper,
.rm-result-bootom-mob .yap-rtb__wrapper{
z-index: 1;
}

.rm-result-bootom-mob{
margin-top: 2em;  /*внимание зависит desktop реклама от этого*/
}
@media (max-width: 480px) {
    .rm-test-top-wrp{
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .rm-test-wrp{
        margin-top: 15px;
    }
}
/*google*/
.rm-goo-wrp{
    text-align: center;
    margin: 20px 0 0;
}

/*РСЯ*/
.rm-block-ts-wrp{
    max-width: 940px;
    margin: 30px auto 0;
}

.rm-block-ts-wrp .rm-block yatag{
    font-family: 'Roboto', sans-serif !important;
}

.ts__start-rm-2 {
    margin-top: 40px;
}

#yandex_rtb_R-A-266642-2.rm-block td yatag yatag a yatag svg {
    display: none;
}

#yandex_rtb_R-A-266642-2 table td yatag {
    border: none !important;
}

#yandex_rtb_R-A-266642-2 table td.bxactr {
    border-radius: 5px !important;
}

#yandex_rtb_R-A-266642-2.rm-block .yap-feedback-menu__form {
    color: #5E5C74 !important;
}

div.b24-widget-button-wrapper{
    display: none;
}

.rm-block{
    font-size: 10px;
}

#yandex_rtb_R-A-266642-1.rm-block yatag,
#yandex_rtb_R-A-266642-2.rm-block yatag {
    font-family: inherit !important;
}

#yandex_rtb_R-A-266642-1.rm-block td > yatag {
    border-radius: 5px;
}

.ts__stanayn-consultation-label{
    margin-top: 10px;
}

.ts__stanayn-duration{
    margin-bottom: 10px;
}



/*Глобальные*/

.footer {
    display: none;
}

.body .ts__container {
    padding: initial;
}

.ts__wrapper {
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 0 50px;
}

.ts__start-page-wrapper {
    margin-top: 50px;
}

/*Кнопки*/
.ts__btn-bar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: space-between;
    flex-wrap: wrap;
    margin: 10px auto 10px -5px;
    width: calc(100% + 10px);
}

.ts__btn-next,
.ts__btn-clear,
.ts__btn-to-test {
    margin-right: 5px;
    margin-left: 5px;
    flex-grow: 1;
}

.button-start {
    margin: 5px 0;
}

.ts__btn-bar-duble {
    display: none;
}

@media (max-width: 480px) {
    .ts__btn-bar-duble {
        display: block;
    }
}
/*END Кнопки*/


/* Стартовая страница теста */
.ts__start-img {
    display: block;
    max-width: 160px;
    margin: 0 auto;
}

.ts__h1{
    text-align: center;
    color: #fff;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.2;
}

.ts__description{
    margin: 50px 0 40px;
}

.ts__author,
.ts__description{
    font-size: 16px;
    color: #fff;
    text-align: left;
}

.ts__description ul {
    list-style: circle outside !important;
    padding-left: 35px !important;
    margin-bottom: 15px !important;
    text-align: left;
}

.ts__description ul li {
    padding: 0 0 10px 0 !important;
}

.ts__description p {
    margin: 0 0 10px;
}

.ts__description a,
.ts__author-link-item {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2px 7px;
    border-radius: 3px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    text-decoration: none;
}

.ts__description a:hover,
.ts__author-link-item:hover {
    opacity: 0.6;
    background-color: transparent;
    text-decoration: none;
}

.ts__description h5,
.ts__description h3 {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    display: block;
    font-size: 1.1em;
    text-align: center;
    color: #5e5d73;
    margin: 20px 0;
}

.ts__description-note {
    text-align: center;
    font-size: 1em;
    letter-spacing: 0.05em;
    color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 480px) {
    .ts__h1 {
       font-size: 26px;
       padding: 0;
    }

    .ts__description {
        margin: 10px 0 20px;
        text-align: left;
    }

    .ts__description,
    .ts__author {
        font-size: 1.1em;
        line-height: 1.7em;
    }

    .ts__start-img{
        height: 120px;
    }
}

@media (min-width: 481px) and (max-width: 992px) {
    .ts__h1{
        font-size: 26px;
    }
}
/* END Стартовая страница теста */


/* Стартовая для нестандартных тестов */
@media (max-width: 480px){
    .ts__background-color.ts__section__projective,
    .ts__background-color.ts__class__illustrative{
        padding: 40px 0 20px 0;
    }

    .ts__section__projective .ts__question-img+.ts__question-title,
    .ts__class__illustrative .ts__question-img+.ts__question-title,{
        padding: 0em;
        margin-top: 0px;
    }
}

@media (min-width: 992px){
    .ts__section__projective .ts__answer-list,
    .ts__class__illustrative .ts__answer-list{
        -webkit-box-flex: 1;
            -ms-flex: 1 60%;
                flex: 1 60%;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        margin: auto;
    }

    .ts__section__projective .ts__question,
    .ts__class__illustrative .ts__question {
        display: flex;
        flex-flow: row wrap;
    }

    .ts__section__projective .ts__question-img,
    .ts__class__illustrative .ts__question-img{
        -webkit-box-flex: 1;
            -ms-flex: 1 40%;
                flex: 1 40%;
        height: 400px;
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
    }

    .ts__section__projective .ts__arrows,
    .ts__class__illustrative .ts__arrows{
        -webkit-box-ordinal-group: 5;
            -ms-flex-order: 4;
                order: 4;
        -webkit-box-flex: 1;
            -ms-flex: 1 100%;
                flex: 1 100%;
    }

    .ts__section__projective .ts__start-img,
    .ts__class__illustrative .ts__start-img {
        -webkit-box-flex: 1;
            -ms-flex: 1 100%;
                flex: 1 100%;
    }

    .ts__section__projective .ts__h1,
    .ts__section__projective .ts__description,
    .ts__section__projective .ts__description-note,
    .ts__class__illustrative .ts__h1,
    .ts__class__illustrative .ts__description,
    .ts__class__illustrative .ts__description-note{
        -webkit-box-flex: 1;
            -ms-flex: 1 100%;
                flex: 1 100%;
    }
}
/* END Стартовая для нестандартных тестов */


.ts__answer__color {
    width: 20px;
    height: 100px;
}

.ts__answer_img-style label.ts__question-label{
    padding: 0 !important;
}

.ts__answer_img-style label::before,
.ts__answer_img-style label+svg{
    display: none !important;
}

.ts__answer_img-style+.ts__answer__string-style {
    display: inline-block;
}

@media (min-width: 481px){
    .ts__answer_img-style label{
        font-size: 16px !important;
        letter-spacing: 0.5px;
        line-height: 1.5em;
    }
}

/* End */


/* Start:/local/components/harlamoff/test.view/Process/templates/.default/nonstandard_tests.css?158262731619838*/
/* number answer in line */
.answer-list__22480,
.answer-list__22481,
.answer-list__22483,
.answer-list__22485,
.answer-list__22486,
.answer-list__22488,
.answer-list__22489 {
    display: flex;
    flex-wrap: wrap;
}

.question__22480 .ts__question-title,
.question__22481 .ts__question-title,
.question__22483 .ts__question-title,
.question__22485 .ts__question-title,
.question__22486 .ts__question-title,
.question__22488 .ts__question-title,
.question__22489 .ts__question-title {
    text-align: center;
}


.answer-list__22480 .ts__question-label,
.answer-list__22481 .ts__question-label,
.answer-list__22483 .ts__question-label,
.answer-list__22485 .ts__question-label,
.answer-list__22486 .ts__question-label,
.answer-list__22488 .ts__question-label,
.answer-list__22489 .ts__question-label {
    padding: 5px 15px;
}

.answer-list__22480 .ts__question-label:before,
.answer-list__22481 .ts__question-label:before,
.answer-list__22483 .ts__question-label:before,
.answer-list__22485 .ts__question-label:before,
.answer-list__22486 .ts__question-label:before,
.answer-list__22488 .ts__question-label:before,
.answer-list__22489 .ts__question-label:before {
    display: none;
}
/* END number answer in line */

/*Proffesions test*/

.ts__class__prof-klimov .ts__answer-list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.ts__class__prof-klimov .ts__answer-li {
    background: #6C69A1;
    border-radius: 15px;
    padding: 0;
    width: calc(50% - 20px);
    margin-bottom: 20px;
    -webkit-transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.ts__class__prof-klimov .ts__question-label {
    display: block;
    text-align: center;
    line-height: 1.5em;
    padding: 50px 40px;
}

.ts__class__prof-klimov .ts__answer_img {
    height: 240px;
    max-height: 30vh;
    max-width: 364px;
    width: 100%;
    margin-bottom: 3vh;
    display: inline-block;
}

.ts__class__prof-klimov .ts__question-answer-text {
    display: block;
}


.ts__class__prof-klimov svg,
.ts__class__prof-klimov .ts__question-inp[type="radio"], 
.ts__class__prof-klimov .ts__question-label:before,
.ts__class__prof-klimov .ts__answer-li svg {
    display: none !important;
}

.ts__class__prof-klimov .ts__answer-li:hover {
    box-shadow: 0 38px 48px 0 #3D3B6F;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
}

@media (min-width: 540px) {
    .ts__class__prof-klimov .ts__question-label:hover {
        opacity: 1;
    }

}

@media (max-width: 539px) {
    .ts__class__prof-klimov .ts__answer-list {
        margin: 0;
    }

    .ts__class__prof-klimov .ts__answer-li {
        width: 100%;
        box-shadow: 0 38px 48px 0 #3D3B6F;
        border-radius: 10px;
    }

    .ts__class__prof-klimov .ts__answer_img {
        height: 130px;
        margin-bottom: 15px;
    }

    .ts__class__prof-klimov .ts__question-label {
        font-size: 14px;
        padding: 25px 30px;
    }
}

/* END Proffesions test*/





.ts__class__exercise-concentration .ts__answer-li{
    padding: 0.8em 0;
}
.ts__class__exercise-concentration .ts__answer-li svg {
    top: -5px;
}


/*КОТ*/
.question__17293 .ts__question-title,
.question__17298 .ts__question-title {
    text-align: center;
}
.cat-block-question{
    font-size: 16px;
    line-height: 1.5em;
    display: inline-block;
}
.answer-list__17334 .ts__answer-li {
    display: inline-block;
    vertical-align: top;
    padding: 0;
}
.answer-list__17334 .ts__question-answer-text, 
.answer-list__17334 .ts__question-label:before,
.answer-list__17334 svg {
    display: none;
}
.answer-list__17334 .ts__question-label{
    padding: 0 40px;
}

.answer-list__17302 .ts__question-inp[type="radio"], 
.answer-list__17302 .ts__question-label:before,
.answer-list__17302 .ts__question-answer-text,
.answer-list__17302 .ts__answer-li svg {
    display: none !important;
}

.answer-list__17302 .ts__question-label {
    padding: 0 10px;
}

.answer-list__17302 .ts__answer_img {
    max-width: 120px;
    height: 100px;
}

.answer-list__17302 .ts__answer-li {
    display: inline-block;
    vertical-align: top;
    padding: 0;
}

.answer-list__17302.ts__answer-list {
    margin: 20px auto;
    text-align: center;
}

.question__17314 .ts__question-img {
    max-width: 100%;
    width: 400px;
    display: block;
    margin: auto;
}

.answer-list__17317 .ts__answer_img,
.answer-list__17334 .ts__answer_img {
    height: 80px;
}

.answer-list__17317 .answer__3 .ts__answer_img {
    height: 53px;
}



/*Дроби*/
.answer-list__17325 .ts__answer-li,
.answer-list__17330 .ts__answer-li {
    display: inline-block;
    width: calc(50% - 18px);
    box-sizing: content-box;
    max-width: 200px;
}

.answer-list__17325 .ts__answer-text, 
.answer-list__17325 .ts__answer-number,
.answer-list__17330 .ts__answer-text, 
.answer-list__17330 .ts__answer-number  {
    width: 100%;
}

.answer-list__17325 .ts__answer-li:first-child,
.answer-list__17330 .ts__answer-li:first-child {
    padding-right: 30px;
    position: relative;
}

.answer-list__17325 .ts__answer-li:first-child:before,
.answer-list__17330 .ts__answer-li:first-child:before {
    content: '/';
    position: absolute;
    right: 6px;
    font-size: 20px;
    display: block;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 30px;
    line-height: 30px;
}



@media (max-width: 767px) {
   .answer-list__17302 .ts__answer_img {
        max-width: 80px;
        height: 60px;
    } 
}
/*END КОТ*/




/* Рокич */
.ts__class__RokichValueOrientations .result-stenayn{
    margin: 0;
}


/*Сонди*/
.ts__class__sondi .ts__answer-order-li {
    max-width: 25%;
}

.ts__class__sondi .ts__answer__img {
    width: 100%;
    cursor: pointer;
    transition: opacity .3s ease-out;
}

.ts__class__sondi .ts__answer__img:hover {
    opacity: 0.7;
}

/*END Сонди*/

@media (max-width: 767px) {
    .ts__class__sondi .ts__answer-order-li {
        max-width: 50%;
    }
}

/*Роршах*/
.ts__class__rorshah .ts__question-title {
    padding-top: 15px;
    font-size: 18px;
}

@media (min-width: 768px) {
    .ts__class__rorshah .ts__question-title {
        font-size: 22px;
    }
}

@media (max-width: 992px) and (min-width: 481px) {
    .ts__class__rorshah .ts__question-img {
        max-width: 100%;
    }
}
/*END Роршах*/

/*Тесты с шкалами типа 3 2 1 0 1 2 3*/
.ts__class__test-szo-leontiev .ts__question-text {
    display: flex;
    width: 100%;
    text-align: center;
    flex-wrap: nowrap;
    justify-content: space-around;
}

.ts__class__test-szo-leontiev .ts_question-left-text,
.ts__class__test-szo-leontiev .ts_question-right-text {
    padding: 10px 10px 40px;
    flex: 0 0 48%; 
    max-width: 48vw;   
    font-size: 18px;
    position: relative;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}

.ts__class__test-szo-leontiev .ts_question-left-text:before,
.ts__class__test-szo-leontiev .ts_question-right-text:before,
.ts__class__test-szo-leontiev .ts_question-right-text:after,
.ts__class__test-szo-leontiev .ts_question-left-text:after {
    content: '';
    position: absolute;
}

.ts__class__test-szo-leontiev .ts_question-left-text:before,
.ts__class__test-szo-leontiev .ts_question-right-text:before {
    height: 30px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.ts__class__test-szo-leontiev .ts_question-right-text:after,
.ts__class__test-szo-leontiev .ts_question-left-text:after {
    height: 16px;
    bottom: -16px;
    display: block;
    width: 100%;
    left: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.ts__class__test-szo-leontiev .ts__question-title {
    margin: 0;
}

.ts__class__test-szo-leontiev .ts__question-label {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: initial;
}

.ts__class__test-szo-leontiev .ts__answer-list {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
}

.ts__class__test-szo-leontiev .ts__answer-list:before {
    content: '';
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: linear-gradient(90deg, #ade28d 0%, #f7ce52 30%, #f1f4f7 50%, #f7ce52 70%, #ade28d 100%);
}

.ts__class__test-szo-leontiev .ts__answer-li {
    margin: 0;
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    position: relative;
}

.ts__class__test-szo-leontiev .ts__question-inp[type="radio"], 
.ts__class__test-szo-leontiev .ts__question-label:before {
    top: 0;
    left: 0;
    margin: 0;
}

.ts__class__test-szo-leontiev .ts__question-label {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    position: initial;
}


.ts__class__test-szo-leontiev .ts__question-answer-text {
    position: absolute;
    color: #5E5C74;
    font-size: 14px;
    font-weight: bold;
    /*text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.12);*/
}

.ts__class__test-szo-leontiev  .ts__answer-li svg {
    top: -20px;
    left: -20px;
}

@media (max-width: 480px) {
    .ts__class__test-szo-leontiev .ts_question-left-text,
    .ts__class__test-szo-leontiev .ts_question-right-text {
        word-wrap: break-word;
        font-size: 14px;
    }

    .ts__class__test-szo-leontiev .ts__answer-li {
        width: 25px;
        height: 25px;
    }

    .ts__class__test-szo-leontiev .ts__answer-li svg {
        top: -8px;
        left: -8px;
        width: 40px;
        height: 40px;
    }
}


/*!!!! Это только для Леонтьева !!!! */

.ts__class__test-szo-leontiev .ts__answer-li:first-child .ts__question-label:before,
.ts__class__test-szo-leontiev .ts__answer-li:last-child .ts__question-label:before {
    background-color: #ade28d;
}


.ts__class__test-szo-leontiev .ts__answer-li:nth-child(4) .ts__question-label:before {
    background-color: #f1f4f7;
}

.ts__class__test-szo-leontiev .ts__answer-li:nth-child(2) .ts__question-label:before,
.ts__class__test-szo-leontiev .ts__answer-li:nth-child(6) .ts__question-label:before {
    background-color: #d3d966;
}


.ts__class__test-szo-leontiev .ts__answer-li:nth-child(3) .ts__question-label:before,
.ts__class__test-szo-leontiev .ts__answer-li:nth-child(5) .ts__question-label:before {
    background-color: #f7ce52;
}



/*END Тесты с шкалами типа 3 2 1 0 1 2 3*/




/*/business/anchor-career-schein/ */
.ts__class__anchor-career-schein .ts__question-label {
    padding: 0 0 0 55px;
}

.ts__class__anchor-career-schein .ts__answer-list {
    display: flex;
    flex-wrap: wrap;
}


.ts__class__color-blind .ts__question-img{
    display: block;
    margin: 0 auto 30px;
    max-width: 300px;
    height: auto;
}

/* iq roven */
.ts__class__raven-iq .ts__question-inp[type="radio"],
.ts__class__raven-iq .ts__question-label:before{
    display: none;
}

.ts__class__raven-iq .ts__question-answer-text {
    display: none;
}

.ts__class__raven-iq .ts__answer_img {
    max-width: 120px;
    height: 100px;
}

.ts__class__raven-iq .ts__answer-li {
    display: inline-block;
    vertical-align: top;
    padding: 0;
}

.ts__class__raven-iq .ts__question-label{
    padding: 0 10px;
}

.ts__class__raven-iq .ts__question-img{
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

.ts__class__raven-iq .ts__question-title {
    min-height: 0;
    text-align: center;
    padding: 0;
    margin: 20px 0;
}

.ts__class__raven-iq .ts__answer-list{
    text-align: center;
}

.ts__class__raven-iq .ts__description-footer ul {
    text-align: left;
}

.ts__class__raven-iq .ts__answer-li svg {
    display: none;
}

.ts__class__raven-iq .ts__answer-list {
    margin: 20px auto;
}

@media (max-width: 480px) {
    .ts__class__raven-iq .ts__question-img {
        height: auto;
        min-height: 100px;
    }
}

@media (max-width: 767px) {
    .ts__class__raven-iq .ts__answer_img {
        max-width: 80px;
        height: 60px;
    }
}
/* end iq roven */


/* /intellectual/iq-test-for-children-7-to-18-years/ */
.ts__class__raven-iq .answer-list__8400 .ts__question-answer-text{
    display: block;
}

.ts__class__raven-iq .answer-list__11390 .ts__question-answer-text,
.ts__class__raven-iq .answer-list__11391 .ts__question-answer-text,
.ts__class__raven-iq .answer-list__11392 .ts__question-answer-text
{
    display: block;
}

.ts__class__raven-iq .ts__answer-list.answer-list__11390 li,
.ts__class__raven-iq .ts__answer-list.answer-list__11391 li,
.ts__class__raven-iq .ts__answer-list.answer-list__11392 li
{
    display: block;
    margin: 10px 0;
}
/* END /intellectual/iq-test-for-children-7-to-18-years/ */

/* /intellectual/iq-test-for-kids-7-to-16-year-old/ */
.ts__class__raven-iq .answer-list__15455 .ts__question-answer-text{
    display: block;
}

.ts__class__raven-iq .answer-list__15456 .ts__question-answer-text,
.ts__class__raven-iq .answer-list__15457 .ts__question-answer-text,
.ts__class__raven-iq .answer-list__15458 .ts__question-answer-text
{
    display: block;
}

.ts__class__raven-iq .ts__answer-list.answer-list__15456 li,
.ts__class__raven-iq .ts__answer-list.answer-list__15457 li,
.ts__class__raven-iq .ts__answer-list.answer-list__15458 li
{
    display: block;
    margin: 10px 0;
}
/* END /intellectual/iq-test-for-kids-7-to-16-year-old/ */



/*Картиночные тесты*/
.ts__class__image-choice .ts__answer_img {
	max-height: 100px;
	max-width: 120px;
}

.ts__class__image-choice .ts__question-inp[type="radio"],
.ts__class__image-choice .ts__question-label:before,
.ts__class__image-choice .ts__question-answer-text,
.ts__class__image-choice .ts__answer-li svg {
    display: none !important;
}

.ts__class__image-choice .ts__answer-li {
    display: inline-block;
    vertical-align: top;
    padding: 0;
    min-width: 30%;
    text-align: center;
}

.ts__class__image-choice .ts__answer-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.ts__class__image-choice .ts__question-title,
.ts__class__image-choice .ts__progress-passed,
.ts__class__image-choice .ts__h1,
.ts__class__image-choice .ts__description {
    color: #5E5C74;
}

.ts__class__image-choice .ts__progress {
    color: rgb(217, 217, 217);
}

.ts__class__image-choice .button-dark:after {
    background-color: #ff6e77;
}

.ts__class__image-choice .button-dark:hover {
    color: #37474f;
}

.ts__class__image-choice .button-dark:before {
    border: 3px solid #37474f !important;
}

.ts__class__image-choice .ts__question-label {
    padding: 0;
}

.ts__class__image-choice.ts__section__projective .ts__question-label,
.ts__class__image-choice.ts__class__illustrative .ts__question-label {
    padding: 10px;
}

.ts__section__projective.ts__class__image-choice .ts__answer-list {
    margin: 40px auto;
}


@media (max-width: 480px) {
	.ts__class__image-choice .ts__answer-li {
	    width: 50%;
	}
}

@media (min-width: 992px) {
	.ts__class__image-choice.ts__section__projective .ts__question,
	.ts__class__image-choice.ts__class__illustrative .ts__question {
	    display: block;
	    -webkit-box-orient: vertical;
	    -webkit-box-direction: normal;
	        -ms-flex-flow: initial;
	            flex-flow: initial;
	}

    .ts__section__projective.ts__class__image-choice .ts__answer-list {
        margin: 40px auto;
    }
}
/*END Картиночные тесты*/



/*lusher*/
.button-next-lusher {
    margin: 20px 0 0 -5px;
}

.ts__class__white-bg .ts__background-color{
    color: #5E5C74;
}

.ts__class__white-bg .ts__h1{
    color: #5E5C74;
}

.ts__class__white-bg .ts__description,
.ts__class__white-bg .ts__author,
.ts__class__image-choice .ts__description,
.ts__class__image-choice .ts__author {
    color: #5E5C74;
    letter-spacing: 0.01em;
}

.ts__class__white-bg .ts__description a,
.ts__class__white-bg .ts__author-link-item,
.ts__class__image-choice .ts__description a,
.ts__class__image-choice .ts__author-link-item {
    background-color: transparent;
    text-decoration: none;
    color: #02A0EA;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    border-bottom: 1px solid transparent;
    padding: 0 0 2px 0;
    border-radius: 0;
}

.ts__class__white-bg .ts__author-link-item,
.ts__class__image-choice .ts__author-link-item {
    margin-right: 8px;
}

.ts__class__white-bg .ts__description a:hover,
.ts__class__white-bg .ts__author-link-item:hover,
.ts__class__image-choice .ts__description a:hover,
.ts__class__image-choice .ts__author-link-item:hover {
    border-bottom: 1px solid #02A0EA;
}

.ts__class__white-bg .ts__description-note{
    color: #becbd2;
}

.ts__class__white-bg .button-global:after {
    background-color: #ff6e77;
}

.ts__class__white-bg .button-global:before{
    border: 3px solid #37474f !important;
}

.ts__class__white-bg .button-global:hover{
    color: #37474f;
}

.ts__class__white-bg .ts__answer-list{
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
}

.ts__class__white-bg .ts__answer__color{
    margin: 0;
    display: inherit;
    padding: 10px;
    width: 100px;
    height: 100px;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    border: 3px solid white;
    cursor: pointer;
}

.ts__class__white-bg .s__answer__info{
    font-size: 1.1em;
    font-family: 'Roboto', sans-serif;
    line-height: 1.7em;
    text-align: left;
    letter-spacing: 0.02em;
}

.ts__class__white-bg .ts__progress {
    color: rgb(217, 217, 217);
}

.ts__class__white-bg .ts__progress-passed {
    color: rgb(95, 93, 117);
}

.ts__class__white-bg .ts__progress-bar {
    background: rgba(204, 204, 204, 0.4);
}

.ts__class__white-bg .ts__progress-bar-load {
    background: #b1e091;
}

@media (max-width: 275px) {
    .ts__class__white-bg .ts__answer__color{
        width: 50px;
    }
}

@media (max-width: 480px){
.ts__class__white-bg .s__answer__info{
        font-size: 1em;
    }
}
/*END lusher*/


/* Таймер */
.ts__timer {
    color: #f7ce52;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 2em;
    padding: 10px 0px;
    text-align: center;
    position: absolute;
    z-index: 0;
    top: 15px;
    left: 0;
    width: 150px;
    right: 0;
    margin: auto;
    display: none;
}

@media (max-width: 480px){
    .ts__timer {
        top: 0;
        font-size: 1.5em;
        padding: 13px 0;
    }
}
/* END Таймер */



/* End */


/* Start:/local/components/harlamoff/test.rating/templates/main/style_inc.css?15650050806282*/
.ts-rating{
    display: none;
}
.result__rating-h2,
.result__rating_number {
    font-size: 18px;
    color: #5D5C73;
    letter-spacing: 0.1px;
    font-family: 'Roboto Slab', serif !important;
    font-weight: 400;
    -webkit-font-smoothing: auto;
    font-smoothing: auto;
}

.result__rating-description {
    padding: 0 0 10px;
    max-width: 300px;
    text-align: center;
    margin: auto;
    line-height: 1.2;
    font-size: 12px;
    color: #a5a9b0;
}

/*Fancy rating*/
.fb-rating {
    display: none;
    background: #FFFFFF;
    box-shadow: -1px -2px 20px rgba(166, 176, 185, 0.21), 1px 50px 64px rgba(186, 194, 202, 0.39);
    border-radius: 8px;
}

.fancybox-bg {
    background: none;
}

.fb-rating__wrap {
    padding: 20px;
    text-align: center;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.result__rating-part {
    padding: 10px 0;
}

.result__rating_send {
    width: 100%;
}

@media (max-width: 480px) {
    .fb-rating {
        height: 100%;
        width: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }
}

/*END Fancy rating*/

/*Fancy rating values*/
.result__rating_value_wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fb-rating__votes {
    color: #a3a7ae;
}
/*END Fancy rating values*/



.result__rating_link {
    margin: 10px auto;
    color: #02A0EA;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background .2s ease-out;
    cursor: pointer;
    display: inline-block;
}

.result__rating_link:hover {
    background: #f1f4f7;
}

.result__bug-field{
    display: none;
}

.result__bug-text-area, .result__bug-input {
    display: block;
}

/*General rating stars*/
.reveiw_stars {
    display: block;
    position: relative;
    width: 129px;
    height: 24px;
    background-color: #D9E1E7;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-delay: .5s;
            animation-delay: .5s;
}

.reveiw_stars__progress {
    display: block;
    z-index: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFC257;
}

.reveiw_stars__whitesvg {
    display: block;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: url("/upload/static/stars.svg") no-repeat;
}

.result__rating {
    display: block;
    margin: 10px 0;
    transition: all .2s ease-out;
    cursor: pointer;
}

.result__rating:hover {
    opacity: 0.8;
}

.result__rating_number {
    display: block;
    font-size: 27px;
    padding-top: 4px;
}


/*Set rating*/
.result__set-rating {
    display: inline-block;
    position: relative;
    letter-spacing: 0;
    font-size: 0;
    margin: 10px 0 0 8px;
    padding: 0;
}

.result__set-rating_star,
.result__set-rating:not(.vote-cast):hover .result__set-rating_star:hover ~ .result__set-rating_star,
.result__set-rating.vote-cast .result__set-rating_star.selected ~ .result__set-rating_star {
    /* normal state */
    background: url("/upload/static/graystar.svg") no-repeat;
}

.result__set-rating:hover li,
.result__set-rating.vote-cast .result__set-rating_star {
    /* highlighted state */
    background: url("/upload/static/yellowstar.svg") no-repeat;
}

.result__set-rating_star {
    width: 35px;
    height: 25px;
    cursor: pointer;
    display: inline-block;
    list-style-type: none;
    position: relative;
}

.result__set-rating_star:hover:after,
.result__set-rating_star:hover:before {
    position: absolute;
     -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    z-index: 4;
}

.result__set-rating_star:hover:after {
    content: attr(data-title);
    top: -40px;
    left: -30px;
    color: #5d5b73;
    display: block;
    width: 88px;
    text-align: center;
    background: #dae1e7;
    padding: 6px 0;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.result__set-rating_star:hover:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #dae1e7;
    top: -13px;
    left: 7px;
}

.result__set-rating_wrap {
    position: relative;
    margin: 40px 10px 0;
}

.result__buttons-wrap .result__set-rating_wrap {
    margin-bottom: 40px;
}

.result__set-rating_text {
    top: -30px;
    left: 50%;
    margin-left: -50px;
    color: #5d5b73;
    display: block;
    position: absolute;
    width: 100px;
    text-align: center;
    background: #f1f4f7;
    padding: 6px 0;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.result__set-rating_text:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #f1f4f7;
    bottom: -5px;
    left: 50%;
    margin-left: -11px;
    position: absolute;
}


@media (max-width: 767px) {
    .reveiw_stars_mob {
        width: 16px;
        height: 17px;
        overflow: hidden;
        order: 2;
        margin-left: 10px;
    }

    .reveiw_stars__whitesvg_mob {
        width: 91px;
    }

    .reveiw_stars__progress_mob {
        width: 100%;
    }

    .result__rating_number {
        font-size: 20px;
        padding-top: 2px;
    }

    .result__set-rating_star {
        width: 30px;
        height: 22px;
    }

    .result__rating {
        display: flex;
        align-items: center;
    }
}
/*END Set rating*/
/*END General rating stars*/
@media (max-width: 439px) {
    .result__rating {
        justify-content: center;
    }
}

/* End */


/* Start:/local/templates/.default/components/bitrix/main.pagenavigation/lazy/style_inc.css?15312428271519*/
/*Loader START*/
.ajax-pager-wrap.row{
    margin: 0;
}
.loader-wrap{
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    clear: both;
}

.loader {
    width: 45px;
    height: 10px;
    font-size: 0;
    margin: auto auto -6px;
}

.loader-item {
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-left: 6px;
    border-radius: 50%;
    background: #8b9cab;
    -webkit-animation: anim .8s infinite linear;
          animation: anim .8s infinite linear;
}

.loader-item:nth-child(2) {
    -webkit-animation-delay: -.6s;
          animation-delay: -.6s;
}
.loader-item:nth-child(3) {
    -webkit-animation-delay: -.4s;
          animation-delay: -.4s;
}

@-webkit-keyframes anim {
    0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: .2;
    }
    50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    opacity: .6;
    }
    100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: .2;
    }
}

@keyframes anim {
    0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: .2;
    }
    50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    opacity: .6;
    }
    100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: .2;
    }
}


/*Loader END*/
/* End */


/* Start:/local/components/harlamoff/correct-answers/templates/.default/style_inc.css?1577262688312*/
.correct-answers__true{
    color: #22c721;
    font-weight: 600;
}

.correct-answers__true mjx-math {
    font-weight: 600;
}

.correct-answers__false{
    text-decoration: line-through;
}

.correct-answers__list{
    list-style-type: none;
    padding: 0;
}
.correct-answers__options{
    padding-left: 20px;
}
/* End */


/* Start:/local/templates/main/components/bitrix/sender.subscribe/popup/style.css?15555841261560*/
/*FB*/
.fb-email-subscribe{
    min-width: 320px;
    display: none;
    box-shadow: -1px -2px 20px rgba(0, 0, 0, 0.06), 1px 50px 64px rgba(0, 0, 0, 0.18);
    border-radius: 8px;
}
.fancybox-slide--html .fancybox-content.fb-email-subscribe{
    margin-bottom: 0;
    background: #02A0EA;
}

#sender_subscribe_component{
    z-index: 99993 !important;
}


.announce__newslater_h {
    text-align: center;
    font-family: "Roboto Slab", serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.5em;
    color: #FFFFFF;
    letter-spacing: 0;
    margin-bottom: 20px;
}

.announce__subscribe_btn {
    width: 40px;
    height: 100%;
    border: none;
    position: absolute;
    right: 8px;
    top: 0;
    background-color: transparent;
    transition: right .2s ease;
}

.announce__subscribe_btn:focus {
    outline: none;
}

.announce__subscribe_btn:hover {
    right: 3px;
}

.announce__input_wrap {
    width: 100%;
}

.announce__input {
    width: 100%;
    background: transparent;
    border: 2px solid #FFFFFF;
    padding-left: 20px;
    height: 60px;
    font-size: 16px;
    padding-right: 50px;
    font-weight: 400;
    color: #FFFFFF;
    border-radius: 5px;
}

.announce__input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #FFFFFF;
}

.announce__input::-moz-placeholder { /* Firefox 19+ */
  color: #FFFFFF;
}

.announce__input:-ms-input-placeholder { /* IE 10+ */
  color: #FFFFFF;
}

.announce__input:-moz-placeholder { /* Firefox 18- */
  color: #FFFFFF;
}

.announce__input_wrap {
    position: relative;
}

/* End */


/* Start:/local/templates/.default/components/bitrix/main.register/promo/style.css?15753974522780*/
.fb-reg{
    min-width: 320px;
    display: none;
    box-shadow: -1px -2px 20px rgba(0, 0, 0, 0.06), 1px 50px 64px rgba(0, 0, 0, 0.18);
    border-radius: 8px;
}
@media (max-width: 480px) {
    .fb-reg{
        width: 100%;
        min-height: 100vh;
        border-radius: 0px;
    }
}
.promo_reg__title {
    text-align: center;
    color: #5e5c74;
    font-family: 'Roboto Slab', serif;
    font-size: 1.2em;
    padding: 20px 0;
}
.promo_reg__title-sub {
    text-align: center;
    color: #5e5c74;
    font-family: 'Roboto Slab', serif;
    font-size: 1em;
    padding: 20px 0;
}

.auth__form__link__sign__up{
    display: block;
    text-align: center;
    line-height: 45px;
    color: #02A0EA;
    transition: opacity 0.3s ease-out;
}

.auth__form__link__sign__up.g__spoiler{
    cursor: pointer;
    padding: 20px 0;
}

.promo_reg__from_email{
    display: none;
}
.auth__form__input.error{
    border-color: #ffb3b3;
}
.auth__form__input.valid{
    border-color: #85bb86;
}
.auth__form__wrap label.error{
    display: none !important;
}

.auth__form__input:focus{
    outline: none;
}


/*Регистрация*/
.auth__form{
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.auth__form:hover{
    box-shadow: 0 11px 15px rgba(94, 92, 116, 0.3), 0 1px 3px rgba(94, 92, 116, 0.13);
}

.auth__form__wrap{
  padding: 30px 30px 0;
}

.auth__form__input{
    width: 100%;
    clear: both;
    margin: 8px 0;
    height: 50px;
    line-height: 40px;
    padding: 0 15px;
    border: 1px solid #f1f4f7;
    background-color: #f1f4f7 !important;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #5e5c74;
    font-size: 1.1em;
}

.auth__button {
    width: 100%;
    min-width: 100%;
}

.auth__form__link{
  display: block;
  font-family: 'Roboto', sans-serif;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.auth__form__title {
    text-align: center;
    color: #5e5c74;
    /*font-family: 'Roboto Slab', serif;*/
    font-weight: 600;
    font-size: 1.5em;
    padding: 20px 0;
}

.auth__form__link.forgot__password{
  font-size: 0.9em;
    color: #aaaaaa;
    text-align: right;
    padding-right: 2px;
    transition: opacity 0.3s cubic-bezier(.25,.8,.25,1);
}

.auth__form__link.forgot__password:hover,
.auth__form__link.sign__up:hover{
  opacity: 0.7;
}


.auth__form__link.sign__up{
  text-align: center;
    line-height: 45px;
    background-color: #f1f4f7;
    border-radius: 5px;
    color: #5e5c74;
    transition: opacity 0.3s cubic-bezier(.25,.8,.25,1);
}


.font.errortext {
    color: #ff6d76 !important;
    font-size: 0.9em;
    line-height: 1.4em;
}

/*END Регистрация*/
/* End */


/* Start:/local/templates/.default/components/bitrix/socserv.auth.form/.default/style.css?15245559311759*/
.bx-authform-social-popup{
	display: none;
	background: #fff;
	width: auto;
	padding: 15px;
	font-size: 14px;
	white-space: nowrap;
}

.bx-authform-social-popup form{margin-bottom: 0;}

.bx-authform-social-popup input[type="text"]{
	display: inline-block;
	max-width: 150px;
	font-size: 18px;
	height: 30px;
	margin: 0;
	padding: 0 4px;
	border: 1px solid #CCD5DB;
	border-radius: 2px;
	background: #f8fafc;
	outline: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.bx-authform-social{
	text-align: center;
}

.bx-authform-social ul{
  	padding: 0;
}

.bx-authform-social ul li{
    position: relative;
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-right: 8px;
}
.bx-authform-social ul li .bx-authform-social-icon{
	display: block;
 	width: 28px;
    height: 28px;;
	background-repeat: no-repeat;
	border-bottom: none;
}
.bx-authform-social ul li .bx-authform-social-icon:hover{opacity: .9;}


.bx-authform-social ul li .bx-authform-social-icon.vkontakte{
	background-image: url('/local/templates/.default/components/bitrix/socserv.auth.form/.default/images/vk.svg');
}

.bx-authform-social ul li .bx-authform-social-icon.twitter{
	background-image: url('/local/templates/.default/components/bitrix/socserv.auth.form/.default/images/tw.svg');
}

.bx-authform-social ul li .bx-authform-social-icon.facebook{
	background-image: url('/local/templates/.default/components/bitrix/socserv.auth.form/.default/images/fb.svg');
}

.bx-authform-social ul li .bx-authform-social-icon.google{
	background-image: url('/local/templates/main/img/google.svg');
}

.bx-authform-social ul li .bx-authform-social-icon.odnoklassniki{
	background-image: url('/local/templates/main/img/ok.svg');
}

    

/* End */
/* /local/components/harlamoff/test.view/Process/templates/.default/style.css?15753982908130 */
/* /local/components/harlamoff/test.view/ResultTest/templates/.default/style.css?158022121918511 */
/* /local/components/harlamoff/test.view/templates/.default/style.css?15828976308902 */
/* /local/components/harlamoff/test.view/Process/templates/.default/nonstandard_tests.css?158262731619838 */
/* /local/components/harlamoff/test.rating/templates/main/style_inc.css?15650050806282 */
/* /local/templates/.default/components/bitrix/main.pagenavigation/lazy/style_inc.css?15312428271519 */
/* /local/components/harlamoff/correct-answers/templates/.default/style_inc.css?1577262688312 */
/* /local/templates/main/components/bitrix/sender.subscribe/popup/style.css?15555841261560 */
/* /local/templates/.default/components/bitrix/main.register/promo/style.css?15753974522780 */
/* /local/templates/.default/components/bitrix/socserv.auth.form/.default/style.css?15245559311759 */
