.psy-test {
    display: none;
	flex-direction: column;
    gap: 24px;
	background: #1c7597;
	color: #fff;
	padding: 32px;
	border-radius: 24px;
}
.psy-test-wrapper {
	padding: 32px;
    width: 900px;
    flex-direction: column;
	display: flex;
    gap: 16px;
    border-radius: 10px;
    margin: 60px auto 40px;
}
.psy-test__item {
    margin: 24px 0;
    display: none;
    flex-direction: column;
    gap: 24px;
}
.psy-test__item.active {
	display: flex;
}
.psy-test__answers {
    display: flex;
    flex-direction: column;
	gap: 4px;
}
.psy-test__question {
    font-size: 18px;
    background: #4991ac;
    padding: 16px;
    border-radius: 8px;
	display: flex;
    flex-direction: column;
    gap: 12px;
}
.copy-links-block {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.copy-links-block__text {
	font-size: 20px;
} 
.copy-links-block__links {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}
.copy-links-block__item {
    background: #fff;
    color: rgb(50 158 185);
    border: 1px solid rgb(50 158 185);
    cursor: pointer;
    padding: 16px;
    text-align: center;
    border-radius: 4px;
    user-select: none;
    transition: all .3s;
}
.copy-links-block__item:hover {
    background: rgb(50 158 185);
    color: #fff;
}


.test-12-types .psy-test__question {
	height: 68px;
}
.psy-test-results__line.very-high {
    background: #10B981;
}
.psy-test-results__line.high {
    background: #228d69;
}
.psy-test-results__line.medium {
    background: #1b5a45;
}
.psy-test-results__line.low {
    background: #708f84;
}
.psy-test-results__line.normal {
    background: #505c58;
}
   
.psy-test__answer {
    padding: 6px 8px;
    border-radius: 4px;
	cursor: pointer;
	transition: all .3s;
}
.psy-test__message.active {
    background: red;
    display: inline-block;
    padding: 12px;
    text-align: center;
    width: 100%;
    border-radius: 4px;
}
.psy-test__answer.active {
	background: #10B981;
}
.psy-test__answer:hover {
	background: #4991ac;
}
.psy-test__answer.active:hover {
	background: #aaaaaa;
}
.psy-test__header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
	align-items: center;
}
.psy-test__progress-bar {
    height: 40px;
    border: 1px solid #eee;
    width: 100%;
    border-radius: 8px;
	overflow: hidden;
	position: relative;
}
.psy-text__comment {
    color: #7ae0bd;
}
.psy-text__question-text {
    font-size: 20px;
}
.psy-test__progress-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgb(50 158 185);
	transition: all .3s;
}
.psy-test__step {
    display: flex;
    gap: 16px;
    font-size: 24px;
}
.psy-test-btn {
	font-weight: 800;
    font-size: 18px;
    line-height: 160%;
    text-align: center;
    color: rgb(50 158 185);
    padding: 16px 20px;
    cursor: pointer;
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin-top: 16px;
}
.psy-test-btn.disactive {
	cursor: auto;
	background: #4d4d4d;
	color: #6a6a6a;
	user-select: none;
}
.psy-test-preview {
	display: none;
	flex-direction: column;
    gap: 24px;
	background: #1c7597;
	color: #fff;
	border-radius: 24px;
	padding: 32px;
}
.psy-test-preview.active {
	display: flex;
}
.psy-test.active {
	display: flex;
}
.start-test-btn {
    font-weight: 800;
    font-size: 18px;
    line-height: 160%;
    text-align: center;
    color: rgb(50 158 185);
    padding: 16px 20px;
    cursor: pointer;
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
    margin-bottom: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin-top: 16px;
}
.start-test-btn.disactive {
    cursor: auto;
    background: #4d4d4d;
    color: #6a6a6a;
	user-select: none;
}	
.sex-1 .psy-test__answer.female-ver {
	display: none;
}
.sex-2 .psy-test__answer.male-ver {
	display: none;
}
.sex-1 .psy-test__answer.male-ver {
	display: inline-block;
}
.sex-2 .psy-test__answer.female-ver {
	display: inline-block;
}
.sex-1 .psy-text__question-text.female-ver {
	display: none;
}
.sex-2 .psy-text__question-text.male-ver {
	display: none;
}
.sex-1 .psy-text__question-text.male-ver {
	display: inline-block;
}
.sex-2 .psy-text__question-text.female-ver {
	display: inline-block;
}


.psy-test-results {
	display: none;
    flex-direction: column;
    gap: 24px;
	background: #fff;
	color: #000;
	box-shadow: 1px 1px 15px #eee;
	padding: 32px;
}
.psy-test-results__graph {
    display: flex;
    flex-direction: column;
    padding-bottom: 48px;
    gap: 12px;
    border-bottom: 1px solid #eee;
}
.psy-test-results.active {
	display: flex;
}
.psy-test-results__item {
    display: grid;
    gap: 12px;
    align-items: center;
    grid-template-columns: 23% auto 2%;
}
.psy-test-results__bar {
    position: relative;
    height: 30px;
    border-radius: 4px;
    background: #f0f0f0;
    box-shadow: 1px 1px 6px #bdbdbd;
    overflow: hidden;
}
.psy-test-results__line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #10B981;
}
.psy-test-results__points {
    color: rgb(50 158 185);
    font-weight: 600;
}
.psy-test-results__info p {
	margin: 16px 0;
    line-height: 26px;
}
.psy-test-results__info strong {
	color: #F59E0B;
}	
.psy-test-results__name {
    color: rgb(50 158 185);
    font-weight: 600;
}
.psy-test-wrapper h2 {
	font-size: 30px;
	text-align: center;
}

.test-belbina .psy-test__answer {
	padding: 0;
	cursor: auto;
	border-radius: 0;
	line-height: 24px;
}
.test-belbina .psy-test__answer:hover {
	background: transparent;
}
.psy-test__points {
    display: flex;
    gap: 8px;
    padding: 0px 0 16px;
}
.psy-test__point {
    background: #4991ac;
    width: 40px;
    height: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}
.psy-test__point.active {
	background: #10B981;
}
.psy-test__point.hover {
	background: #10B981;
}
.psy-test__point.selected {
	background: #10B981;
}
.psy-test__free-points {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 20px;
}
.psy-test__free-points span {
	color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    padding: 4px 9px;
    background: #4991ac;
}
.psy-test__free-points span.bad {
	background: #e33c3c;
}
.psy-test__free-points span.good {
	color: #7ae0bd;
}
.tests-results__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.test-results__item {
    padding: 16px 32px;
    box-shadow: 1px 1px 15px #dbdbdb;
    display: flex;
	cursor: pointer;
    justify-content: space-between;
	border-radius: 8px;
}
.test-results__date {
    color: rgb(50 158 185);
}
.test-results__fio {
    color: #000;
}
.tests-results__content {
	display: none;
}
.tests-results__content.active {
	display: flex;
}
.tests-results__tab:hover {
    background: rgb(50 158 185);
    color: #fff;
}
.tests-results__tabs {
    display: flex;
    gap: 1px;
}
.tests-results__tab {
    padding: 16px;
    text-align: center;
    user-select: none;
    transition: all .3s;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    display: flex;
}
.tests-results__tab.active {
    background: rgb(50 158 185);
    color: #fff;
}
.tests-results__tab:first-child {
    border-radius: 8px 0 0 0;
}
.tests-results__tab:last-child {
    border-radius: 0 8px 0 0;
}
.tests-results__contents {
    box-shadow: 1px 1px 15px #eee;
    padding: 24px;
    border-radius: 0 10px 10px 10px;
    display: flex;
    flex-direction: column;
}

.test-results .psy-test-results__graph {
    max-width: 800px;
    margin: 0 auto;
}
@media(max-width: 991px){
	.psy-test-wrapper {
		max-width: 100%;
	}
	.page-title {
		font-size: 36px;
	}
}
@media(max-width: 767px){
	.page-title {
		font-size: 28px;
	}
	.psy-test-wrapper {
		padding: 0;
	}
	.psy-test-preview {
		padding: 24px;
	}
	.psy-test {
		padding: 16px;
	}
	.psy-test__item {
		margin: 0;
	}
	.psy-test-results__item {
		grid-template-columns: 23% auto 5%;
	}
}
@media(max-width: 500px){
	.psy-test__step {
		font-size: 20px;
	}
	.psy-test__free-points {
		font-size: 18px;
	}
	.psy-test__point {
		font-size: 14px;
		width: 24px;
		height: 24px;
	}
	.test-belbina .psy-test__answer {
		font-size: 14px;
		line-height: 18px;
	}
	.psy-text__comment {
		font-size: 14px;
	}
	.psy-text__question-text {
		font-size: 16px;
	}
	.psy-test__progress-bar {
		height: 20px;
	}
	.psy-test-btn {
		padding: 10px;
		border-radius: 6px;
		font-size: 16px;
	}
	.start-test-btn {
		padding: 10px;
		border-radius: 6px;
		font-size: 16px;
	}
	.tests-results__tab {
		padding: 16px 4px;
		font-size: 12px;
	}
	.tests-results__contents {
		padding: 12px;
	}
	.psy-test-results__item {
		display: flex;
		gap: 12px;
		flex-direction: column;
		grid-template-columns: 23% auto 5%;
		border-top: 1px solid #c9c9c9;
		padding-top: 18px;
	}
	.psy-test-results__bar {
		width: 100%;
	}
}
@media(max-width: 400px){
	.psy-test__step {
        font-size: 16px;
    }
	.psy-test__header {
		flex-direction: column;
	}
	.psy-test {
		gap: 14px;
		padding: 16px;
	}
	.psy-test-preview {
		border-radius: 12px;
		padding: 16px;
	}
	.input-group input {
		border-radius: 6px;
		padding: 12px 16px 12px 16px;
	}
	.psy-test__free-points {
        font-size: 16px;
    }
	.psy-test__points {
		gap: 4px;
	}
	.tests-results__contents {
        padding: 12px 0;
    }
}