.testdone-block {
    width: 600px;
    margin: 0 auto;
    display: block;
    margin-top: 90px;
    margin-bottom: 50px;
}

.test-statistic__user-prefered {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 20px;
    background-color: var(--bgblack);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    background-size: 20px;
    background-position: calc(100% - 10px) center;
    background-repeat: no-repeat;
    padding: 15px 45px 15px 15px;
    background-image: url(/local/templates/pikuco/images/icons/arrow-right-slider.svg);
}

.test-statistic__user-prefered-image {
    display: inline-block;
    width: 85px;
    height: 85px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
}

.test-statistic__user-prefered-subtitle {
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 5px;
    color: var(--gray);
}

.test-statistic__user-prefered:hover .test-statistic__user-prefered-result {
    color: var(--yellow);
}

.test-statistic__user-prefered-result {
    margin-bottom: 0;
    font-size: 14px;
}

.test_author a.addsubscribe,
.test_author a.removesubscribe {
    font-size: 14px;
    color: var(--yellow);
}

.testdone-block p.pretitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: rgba(38, 50, 56, 0.5);
    padding-bottom: 40px;
    background-image: url(/local/templates/pikuco/images/crown-yellow.svg?v=2);
    background-repeat: no-repeat;
    background-position: bottom center;
    margin-bottom: 20px;
}

.testdone-block h1 {
    font-weight: bold;
    font-size: 40px;
    line-height: 49px;
    text-align: center;
    margin-bottom: 40px;
}

.test_item_photo {
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    display: block;
    margin-bottom: 20px;
}

body .sharingblock {
    flex-direction: column;
    align-items: baseline;
}

body p.sharingtitle {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--lightgray);
}

a.back,
a.clear {
    color: var(--black);
}

a.back:hover,
a.clear:hover {
    color: var(--black);
}


.copylink {
    width: 100%;
    height: 60px;
    background-color: var(--yellow);
    border: none;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 20px;
}

.copylink:hover {
    background-color: var(--orange);
}

.tomain,
.totest {
    display: inline-block;
    width: 100%;
    height: 60px;
    background-color: var(--yellow);
    border: none;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--black);
    text-transform: uppercase;
    text-align: center;
    background: white;
    border: 2px solid var(--yellow);
    line-height: 56px;
}


.tomain:hover,
.totest:hover {
    background-color: var(--yellow);
    text-decoration: none;
    color: var(--black);
}

.tomain {
    padding-left: 30px;
    background-image: url(/local/templates/pikuco/images/arrow-left.svg?v=2);
    background-repeat: no-repeat;
    background-position: 55px center;
}

.totest {
    padding-right: 30px;
    background-image: url(/local/templates/pikuco/images/arrow-right.svg?v=2);
    background-repeat: no-repeat;
    background-position: calc(100% - 55px) center;
}

.copy-notification {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 30px;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 150px;
    margin-top: -30px;
    margin-left: -85px;
    display: none;
    text-align: center;
    z-index: 10;
}

.typechecker {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.typechecker .radio {
    flex: 1;
}

.typechecker .radio label {
    margin-bottom: 0;
    width: 100%;
    text-align: center;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typechecker p {
    width: 100%;
    font-size: 12px;
    margin-bottom: 5px;
}

.choose_block {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    background: whitesmoke;
    overflow: auto;
}

body .header {
    background-color: var(--yellow);
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    height: 45px;
    font-weight: 700;
    margin-bottom: 0;
    float: left;
    overflow: hidden;
}

body .header .name {
    float: left;
}

body .header .right {
    float: right;
}

body .header .etap i,
body .header .round i {
    font-style: normal;
}

body .header span {
    margin-left: 30px;
}

body .header span:first-child {
    margin-left: 0;
}

.test_window {
    height: calc(100vh - 45px);
    display: flex;
    width: 100%;
}

.test_window .variant {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: black;
    cursor: pointer;
    transition: none;
}

.test_window .variant.winner {
    width: 100%;
    transition: all 0.4s ease;
}

.test_window .variant.loser {
    width: 0;
    transition: all 0.4s ease;
}

.test_window .variant .bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(8px);
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.test_window .variant:hover .image {
    animation: scaling 1s infinite;
}

@keyframes scaling {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}


.test_window .variant_heading {
    display: inline-block;
    width: 100%;
    height: 120px;
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.45);
    color: white;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.test_window.video .variant_heading {
    height: 80px;
}

.test_window .variant_heading p.name {
    font-size: 24px;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.test_window .variant_heading p.description {
    font-size: 12px;
}

.test_window .variant .image {
    width: 600px;
    max-height: 600px;
    height: calc(100vh - 205px);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    margin: 20px auto;
    position: relative;
    z-index: 2;
}

.finish {
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 200px;
    background: #FFCA28;
    box-shadow: 0px 4px 24px rgba(255, 202, 40, 0.5);
    height: 60px;
    border: none;
    border-radius: 0;
    font-weight: 500;
    font-size: 18px;
    color: var(--black);
    text-align: center;
    line-height: 60px;
    transform: scale(0);
    opacity: 0;
    transition: all 0.2s ease;
}

.finish.active {
    transform: scale(1);
    opacity: 1;
}


.finish:hover,
.finish:focus {
    text-decoration: none;
    color: var(--black);
    background: var(--orange);
}

.test_author {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 23px;
}

.test_author a.test-author__squad {
    font-size: 10px;
    margin-left: 2px;
    margin-top: -10px;
    color: var(--yellow);
}


.lightgray {
    color: var(--gray);
}


body h3 {
    margin-bottom: 15px;
    font-size: 16px;
}

body h1 {
    margin-bottom: 25px;
}

.test_author a {
    color: #ffffff;
    margin-left: 10px;
    display: flex;
    align-items: center;
}

.test_author .user_avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
    float: right;
    margin-right: 5px;
}

.statistic_row {
    display: flex;
    margin-bottom: 4px;
    background: var(--bgblack);
    border-radius: 10px;
}

.statistic_row:last-child {
    margin-bottom: 0;
}

.statistic_row > div {
    padding-top: 10px;
    padding-bottom: 10px;
}

.statistic_row > div:nth-child(1) {
    width: 70px;
    min-width: 70px;
    background: var(--bgblack);
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    display: flex;
}

.statistic_row > div:nth-child(2) {
    width: 85px;
    min-width: 85px;
    background: var(--bgblack);
    display: flex;
    align-items: center;
}


.statistic_row > div:nth-child(3),
.statistic_row > div:nth-child(4) {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    background: var(--bgblack);
    border-radius: 0 10px 10px 0;
}

.statistic_row > div:nth-child(3) {
    font-size: 12px;
    word-break: break-word;
}


.statistic_row .statistic-name {
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
    width: 100%;
    margin-bottom: 5px;
    transition: all 0.2s ease;
}

.statistic-name.animated {
    color: var(--yellow)
}

.statistic_row .static-description {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: var(--lightgray);
}

.statistic_row .statistic-image {
    display: inline-block;
    width: 85px;
    height: 85px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.statistic_row .statistic-image:after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: url(/local/components/gtx/test.statistics/templates/.default/eye.svg?v=3);
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #0000005e;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
    margin: auto;
    opacity: 0;
    transition: all 0.2s ease;
}

.statistic_row .statistic-image:hover::after {
    opacity: 1;
}

.statistic_row .statistic-rating {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    background: var(--bgblack);
    cursor: default;
}

.statistic_row .statistic-rating i {
    font-style: normal;
}

.statistic_row .statistic-rating span {
    font-size: 12px;
}

.statistic_table {
    margin-bottom: 50px;
}

.standart-test__statistic .statistic_table {
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
    margin-bottom: 0;
}

.statistic_table > div .statistic-rating [data-role="placeholder"] {
    width: 100%;
    display: inline-block;
    text-align: center;
    border-bottom: 1px solid var(--bggray);
    padding-bottom: 7px;
    margin-bottom: 10px;
}

.statistic_table > div:nth-child(1) .statistic-rating [data-role="placeholder"] {
    color: #FFCA28;
}

.statistic_table > div:nth-child(2) .statistic-rating [data-role="placeholder"] {
    color: var(--gray);
}

.statistic_table > div:nth-child(3) .statistic-rating [data-role="placeholder"] {
    color: #FF9C5A;
}

.h1_wrapper {
    position: relative;
}

.actions_wrapper {
    width: 100px;
    text-align: right;
    position: absolute;
    top: 10px;
    right: 0;
}

.actions_wrapper .copylink {
    background-image: url(/local/templates/pikuco/images/share.svg?v=2);
    background-color: transparent;
    margin-bottom: 0;
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
}


.actions_wrapper .copylink:hover {
    opacity: 0.8;
}

.test_window.video .variant {
    cursor: default;
}

.test_window.video .choose {
    width: 100%;
    height: 60px;
    background-color: #ff5722;
    text-align: center;
    line-height: 60px;
    color: white;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
}

.test_window.video .choose:hover {
    background-color: #f4511e;
}

.test_window.video .second .choose {
    background-color: #03a9f4;
}

.test_window.video .second .choose:hover {
    background-color: #2196f3;
}

.test_window.video iframe {
    width: 100%;
    height: calc(100vh - 200px);
}


.finish_interface {
    position: fixed;
    width: 300px;
    height: 300px;
    top: calc(50vh - 150px);
    left: 0;
    right: 0;
    margin: auto;
    display: none;
    background: white;
    z-index: 100;
    border-radius: 5px;
    box-shadow: 0 0 20px black;
    padding: 20px;
    text-align: center;
}

.finish_interface .title {
    font-weight: 500;
    font-size: 20px;
}

.finish_interface p:not([class]) {
    font-size: 14px;
    margin-bottom: 20px;
}

.finish_interface input {
    width: 100%;
    font-size: 14px;
    border: none;
    background: #f3f3f3;
    height: 40px;
    padding: 0 10px;
    margin-bottom: 15px;
}


.round_window {
    position: absolute;
    z-index: 100;
    width: 300px;
    height: 300px;
    display: flex;
    top: calc(50vh - 150px);
    left: 0;
    right: 0;
    margin: 0 auto;
    background-image: url(/local/templates/pikuco/images/authform.svg?v=2);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 500;
    transform: scale(0);
    transition: all 0.2s ease;
    pointer-events: none;
}

.round_window.active {
    transform: scale(1);
}

.round_window.active:after {
    content: '';
    position: absolute;
    background-image: url(/local/templates/pikuco/images/authform.svg?v=2);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    animation: 2s pulse 1;
}

@keyframes pulse {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(2);
    }
}

.round_window p {
    position: relative;
    z-index: 3;
}

.round_window span {
    display: block;
    text-align: center;
    font-size: 85px;
    line-height: 75px;
}


body .test_item_wrap {
    width: 100%;
}

body .tests_list .test_item .test_item_photo {
    margin-bottom: 0;
}

body .double .masked + .masked {
    left: 36%;
}

body .double .masked {
    width: 64%;
}

.show_others {
    display: none;
}

.statistic_headings {
    display: inline-block;
    width: 100%;
}

.statistic_headings > label {
    margin-bottom: 3px;
    margin-right: 10px;
    font-size: 12px;
    color: var(--lightgray);
    font-weight: 500;
    display: block;
}

.test_results_wrapper {
    display: flex;
    margin-bottom: 40px;
}

.test_results_table {
    flex: 1;
    background: var(--bgblack);
    border-radius: 10px;
    padding: 0 20px;
}

.test_results_table .row:not(:last-child) {
    border-bottom: 1px solid var(--bggray);
}

.test_results_table a {
    width: 100%;
    padding-bottom: 100%;
    display: inline-block;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
}

.test_results_table p {
    margin: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.test_results_table p span {
    color: var(--yellow);
    margin-left: 10px;
}

.test_results_battery {
    width: 70px;
    margin-left: 10px;
    border: 2px solid var(--bgblack);
    border-radius: 10px;
    padding: 2px;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: flex-end;
}

.test_results_battery .battery_section {
    background-color: var(--yellow);
    min-height: 20px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--bgblack);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 0 0px var(--yellow);
}

.test_results_battery .battery_section:hover {
    box-shadow: 0 0 0 2px var(--yellow);
    color: white;
}

.test_results_battery .battery_section span {
    cursor: default;
}

.test_results_battery .battery_section:first-child {
    border-radius: 5px 5px 0 0;
}

.test_results_battery .battery_section:last-child {
    border-radius: 0 0 5px 5px;
}

.test_results_table .row {
    padding-bottom: 15px;
    padding-top: 15px;
}

.test_results_table img {
    width: 100%;
    border-radius: 5px;
}

.test_sections_block {
    margin-bottom: 10px;
    width: calc(100% + 5px);
    display: flex;
    flex-wrap: wrap;
}

.test_sections_block input {
    position: absolute;
    opacity: 0;
    height: 1px;
    width: 1px;
}

.test_sections_block a:not([class]),
.test_sections_block label {
    transition: all 0.2s ease;
    box-shadow: 0px 0px 0px rgb(0 0 0 / 10%);
    background-size: contain;
    background-position: right bottom;
    width: calc(50% - 5px);
    height: 75px;
    position: relative;
    z-index: 3;
    padding: 14px 70px 14px 15px;
    display: inline-block;
    background-color: var(--bgblack);
    border-radius: 10px;
    background-repeat: no-repeat;
    margin-right: 5px;
    color: white;
    font-weight: 500;
    font-size: 10px;
    text-transform: uppercase;
}

.test_sections_block label {
    width: calc(25% - 5px);
    text-align: left;
    cursor: pointer;
    padding: 10px;
    background-size: 85px;
    margin: 2.5px;
}

.test_sections_block a:not([class]):hover,
.test_sections_block input:checked + label {
    background-color: var(--yellow);
    color: var(--black)
}

.test_sections_block input:disabled {
    display: none;
}

.test_sections_block input:disabled + label {
    display: none;
}

.test_sections_block a:not([class]) + a {
    margin-right: 0;
}

#sections_check .test_sections_block {
    width: 100%;
}

label.small-label {
    display: block;
    width: 100%;
    font-size: 14px;
}

.test-editor__heading-counter {
    float: right;
    font-size: 12px;
    color: var(--gray)
}

.correct {
    display: inline-block;
    float: right;
    width: 20px;
    height: 20px;
    background-image: url(/local/templates/pikuco/images/edit.svg?v=2);
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;

}

.sections_list .inputwrap.checkbox {
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: left;
}

.sections_list .inputwrap.checkbox label {
    margin-bottom: 0;
    padding-left: 30px;
    position: relative;
    cursor: pointer;
}

.sections_list .inputwrap.checkbox label:after {
    content: '';
    border: 2px solid var(--gray);
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 1px;
    border-radius: 4px;
}

.sections_list .inputwrap.checkbox input:checked + label:before {
    content: '';
    background-color: var(--yellow);
    display: inline-block;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 3px;
    top: 4px;
    border-radius: 4px;
}

.sections_list .inputwrap.checkbox input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.remodal .thank_you {
    display: none;
    color: var(--yellow);
}

.test-statistic__restrictions {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

.test-statistic__restriction {
    font-size: 12px;
    padding: 8px 0;
    padding-left: 25px;
    color: var(--gray);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 18px;
}

.test-statistic__restriction.active {
    color: white;
}

.test-statistic__restriction.erotic {
    background-image: url('images/erotic-hide.svg?v=2');
}

.test-statistic__restriction.erotic.active {
    background-image: url('images/erotic-show.svg?v=2');
}

.test-statistic__restriction.badwords {
    background-image: url('images/badwords-hide.svg?v=2');
}

.test-statistic__restriction.badwords.active {
    background-image: url('images/badwords-show.svg?v=2');
}

.test-statistic__restriction.plagiat {
    background-size: 20px;
    background-image: url('images/plagiat.svg');
}

.test-statistic__restriction.plagiat.active {
    background-image: url('images/plagiat-show.svg');
}

.bad-restriction {
    display: inline-block;
    float: right;
    width: 20px;
    height: 20px;
    background-image: url(/local/templates/pikuco/images/edit.svg?v=2);
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -2px;
}

body .ya-share2__list.ya-share2__list_direction_horizontal {
    margin-left: 0;
    margin-bottom: 0;
}

.sharing-wrap {
    margin-top: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.statistic-description {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 0;
    display: block;
    width: 100%;
}

.cpa-link {
    margin-top: 5px;
    font-size: 12px;
}

.standart-test__statistic {
    display: flex;
    margin-bottom: 30px;
}

.test-statistic__tags-list {
    display: flex;
    margin-bottom: 25px;
    width: calc(100% + 2px);
    margin-left: -1px;
    margin-right: -1px;
    margin-top: 10px;
    gap: 5px;
    flex-wrap: wrap;
}

.tags-line-wrap {
    margin-bottom: 20px;
    text-align: left;
}

.tags-line-wrap p {
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 15px;
}

.tags-line-wrap p span {
    color: var(--gray);
}

.tags-line-wrap .form-control {
    background: var(--bgblack);
    border: none;
    height: 40px;
}

.tags-line-wrap .form-control input[type="text"] {
    color: white;
    font-size: 14px;
    font-weight: 500;
    width: auto;
    height: 36px;
    padding: 0;
}

.tags-line-wrap .badge-primary {
    background: var(--bggray);
    color: var(--yellow);
    font-weight: 500;
    padding: 7px 10px;
}

.tags-line-wrap .dropdown-menu.show {
    width: 100%;
    left: 0 !important;
    background: var(--bgblack);
    border: none;
    box-shadow: 0 0 0 1px var(--bggray);
    font-size: 14px;
    padding: 9px !important;
}

.tags-line-wrap .dropdown-menu.show li {
    margin: 3px;
}

.tags-line-wrap .dropdown-menu.show .dropdown-item {
    display: inline-block;
    background: var(--bggray);
    color: var(--yellow);
    font-weight: 500;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 6px;
}

.tags-line-wrap .dropdown-menu.show .dropdown-item.bg-primary,
.tags-line-wrap .dropdown-menu.show .dropdown-item.bg-primary:hover {
    color: var(--black);
    background-color: var(--yellow);
}

#sections_check input[type="submit"]:disabled {
    opacity: 0.5;
}

.tags_inputs_wrapper {
    padding: 0 3px;
}

.test-statistics__column-right h3 {
    width: 100%;
    display: block;
}

.fixed-block-wrapper {
    width: 100%;
    position: relative;
}

.test-statistic__graph-wrap {
    background: var(--bgblack);
    border-radius: 10px;
    padding: 20px;
    padding-left: 30px;
    padding-bottom: 40px;
    margin-bottom: 20px;
    width: 100%;
    height: 300px;
    position: relative;
}

.test-statistic__graph-wrap canvas {
    width: 100%;
    height: 100%;
}

.test-statistic__graph-legend {
    position: absolute;
    z-index: 3;
    font-size: 12px;
    display: flex;
    white-space: nowrap;
    gap: 10px;
    right: 25px;
    bottom: 15px;
    color: var(--gray);
}

.test-statistic__graph-legend-item {
    padding-left: 10px;
    position: relative;
}

.test-statistic__graph-legend-item:after {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
}

.test-statistic__graph-legend-item.legend--yellow:after {
    background: var(--yellow);
}


.test-statistic__graph-legend-item.legend--green:after {
    background: var(--green);
}

.test-statistic__graph-line {
    position: absolute;
    font-size: 12px;
    left: 55px;
    bottom: 15px;
    color: var(--gray);
}

.test-statistic__graph-line.line--vertical {
    transform: rotate(180deg);
    bottom: 62px;
    left: 11px;
    writing-mode: vertical-lr;
}

@media screen and (max-width: 1199px) {
    .sortbycontainer label {
        min-width: 50%;
    }
}

@media screen and (max-width: 991px) {
    .ban-plagiat {
        display: none;
    }

    .test-statistics__column-right {
        display: flex;
        flex-direction: column;
    }

    #comments-list,
    .comments-list {
        order: -1;
    }


    .statistic_table .statistic_row.activated {
        display: flex;
    }

    .sharing-wrap {
        margin-bottom: 30px;
    }

    .show_others {
        display: block;
        width: 100%;
        margin-top: -25px;
        margin-bottom: 30px;
        text-align: center;
        padding: 15px 10px;
        background: var(--bgblack);
        font-weight: 500;
        border-radius: 8px;
        color: var(--yellow);
        text-transform: uppercase;
        font-size: 12px;
    }

    .statistic_table {
        margin-bottom: 35px;
    }

    .comments_wrapper {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .sortbycontainer label {
        width: 50%;
        flex: auto;
    }

    body h1 {
        margin-bottom: 15px;
    }

    .test_author {
        margin-bottom: 15px;
    }

    .test_author,
    .test-statistic__user-prefered {
        font-size: 14px;
    }
}

@media screen and (max-width: 575px) {
    .test_results_battery {
        display: none;
    }

    .standart-test__statistic .statistic_table {
        width: 100%;
        max-width: 100%;
    }

    .test_sections_block label {
        width: calc(33.333% - 5px);
    }
}

@media screen and (max-width: 480px) {
    .test-statistic__user-prefered {
        padding: 10px 35px 10px 10px;
        gap: 10px;
    }

    .test-statistic__user-prefered-image,
    .statistic_row .statistic-image {
        width: 60px;
        height: 60px;
    }

    .statistic_row > div:nth-child(2) {
        width: 60px;
        min-width: 60px;
    }

    #sections_check input[type="submit"] {
        height: 50px;
        font-size: 16px;
    }

    .test-statistic__graph-legend {
        bottom: auto;
        top: 8px;
        right: 15px;
    }

    .test-statistic__graph-wrap {
        padding: 25px 0 25px 15px;
        width: calc(100% + 30px);
        margin-left: -15px;
        border-radius: 0;
    }

    .test-statistic__graph-line {
        left: 33px;
        bottom: 10px;
    }

    .test-statistic__graph-line.line--vertical {
        bottom: 55px;
        left: 0px;
    }
}

@media screen and (max-width: 420px) {
    .test_sections_block label {
        width: calc(50% - 5px);
    }


    .standart-test__statistic .statistic_row > div:nth-child(1) {
        position: absolute;
        height: 30px;
        min-width: 30px;
        width: auto;
        padding: 5px;
        display: inline-block;
        left: 40px;
        transform: translate(-50%, 0px);
        top: calc(50% - 15px);
        z-index: 3;
        border-radius: 15px;
        color: var(--yellow);
    }

    .standart-test__statistic .statistic_row > div:nth-child(2) {
        margin-left: 10px;
    }

    .standart-test__statistic .statistic_row > div:nth-child(3) {
        padding-left: 10px;
        padding-right: 10px;
    }

    .standart-test__statistic .statistic_row .statistic-rating {
        font-size: 14px;
    }
}