@font-face {
  font-family: 'rubik300';
  src: url('../fonts/Rubik-Light.eot');
  src: url('../fonts/Rubik-Light.eot') format('embedded-opentype'),
  url('../fonts/Rubik-Light.woff') format('woff'),
  url('../fonts/Rubik-Light.ttf') format('truetype'),
  url('../fonts/Rubik-Light.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}  
@font-face {
  font-family: 'rubik400';
  src: url('../fonts/Rubik-Regular.eot');
  src: url('../fonts/Rubik-Regular.eot') format('embedded-opentype'),
  url('../fonts/Rubik-Regular.woff') format('woff'),
  url('../fonts/Rubik-Regular.ttf') format('truetype'),
  url('../fonts/Rubik-Regular.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'rubik500';
  src: url('../fonts/Rubik-Medium.eot');
  src: url('../fonts/Rubik-Medium.eot') format('embedded-opentype'),
  url('../fonts/Rubik-Medium.woff') format('woff'),
  url('../fonts/Rubik-Medium.ttf') format('truetype'),
  url('../fonts/Rubik-Medium.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'rubik600';
  src: url('../fonts/Rubik-SemiBold.eot');
  src: url('../fonts/Rubik-SemiBold.eot') format('embedded-opentype'),
  url('../fonts/Rubik-SemiBold.woff') format('woff'),
  url('../fonts/Rubik-SemiBold.ttf') format('truetype'),
  url('../fonts/Rubik-SemiBold.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* @font-face {
  font-family: 'rubik800';
  src: url('../fonts/Rubik-Bold.eot');
  src: url('../fonts/Rubik-Bold.eot') format('embedded-opentype'),
  url('../fonts/Rubik-Bold.woff') format('woff'),
  url('../fonts/Rubik-Bold.ttf') format('truetype'),
  url('../fonts/Rubik-Bold.svg') format('svg');
  font-weight: normal;
  font-style: normal;
} */

:root {
  --border-radius: 0.37rem;
  --padding: 1.5rem;
}

*	{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body	{
  width: 100%;
  font-size: 16px;
}

body	{
  /* color: #212121; */
  color: #212121;
  background: #FFFFFF;
  font-family: 'rubik400', Arial, sans-serif;
  line-height: 1.3;
  letter-spacing: -.015rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  font-size: 1rem;
}

a	{
  color: #212121;
  text-decoration: underline;
}
a:hover	{
  /* color: #224586; */
  text-decoration: none;
}


.container	{
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
.test__cols {
  display: flex;
  gap: 1.5rem;
}
.col__right {
  
}


.header	{
  position: sticky;
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 1;
  box-shadow: 0 4px 20px 0 #292a2e14;
}
.header .container	{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
main  {
  /*background: #fafafc;*/
  /*background: #f7f7f7;*/
  /*background: #f4f4f4;*/
  background: #f2f2f2;
  flex-grow: 1;
}
.header__logo	{
  margin: 1rem 0;
}
.header__logo img, .footer__right img	{
  height: 2.7rem;
}
.header__search, .header__search form {
  display: flex;
  flex: 1;
}
.search__container  {
  display: flex;
  width: 100%;
  padding: 0 2rem 0 0;
}
.search__input  {
  flex: 1;
  width: 100%;
  font-size: 1rem;
  border: 2px solid #F8E808;
  border-right-width: 0;
  border-radius: .37rem 0 0 .37rem;
  background-color: #fff;
  background-clip: padding-box;
  padding: 0;
  line-height: 2.25rem;
  position: relative;
}
.search__input input[type='text']  {
  font-family: inherit;
  margin: 0;
  font-size: 100%;
  border: none;
  outline: none;
  background: transparent;
  line-height: 2.5rem;
  padding: 0 2.25rem 0 1rem;
  box-shadow: none;
}
.search__container button[type="submit"] {
  flex-shrink: 0;
  outline: none;
  color: #212121;
  background-color: #F8E808;
  font-size: 1rem;
  line-height: 1rem;
  padding: 0 1rem;
  border: none;
  border-radius: 0 .37rem .37rem 0;
  font-family: 'rubik500';
  cursor: pointer;
  background-image: none;
  -webkit-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
}
.search__container button[type="submit"]:hover	{
  background-color: #9cf808;
}

.header__menu	{

}
.header__menu dl	{
  list-style: none;
  display: flex;
  align-items: end;
}
.header__menu dl li	{
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header__menu img	{
  width: 1.7rem;
}
.header__menu dl a	{
  font-size: 0.8rem;
  color: #505050;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

footer  {
  background: #e3e3e3;
  padding: 1rem 0;
  color: #737373;
}
.footer__cols {
  display: flex;
  justify-content: space-between;
}
footer dl  {
  list-style: none;
}
footer a  {
  text-decoration: none;
  color: #737373;
  font-size: .8rem;
}
footer a:hover  {
  color: #365577;
}
.footer__right  {
  font-size: .8rem;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.3rem;
}


.promo	{
  background-color: #6FA4CB;
  color: #FFFFFF;
  height: 26rem;
  /*background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%235582a4' fill-opacity='0.13' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");*/
  background: #6FA4CB url('/media/images/wave2.svg') 50% 50% no-repeat;
  background-size: cover;
}
.promo .container	{
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: relative;
  /* background: url('../images/promo3.svg') center right no-repeat content-box; */
}
.promo__video {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}
.promo__video video {
  height: 100%;
}
.promo h1	{
  font-family: 'rubik600';
  font-weight: normal;
  font-size: 3.75rem;
  line-height: 1;
}
.promo ul	{
  margin: 1.5rem 0;
}
.promo li {
  position: relative;
  list-style-type: none;
  font-size: 1.25rem;
  line-height: 1.45;
  background: url('../images/white_square.svg') no-repeat left center;
  list-style: none;
  margin: 0;
  padding-left: 1rem;
}

.page	{
  padding: var(--padding) 0;
}
.page__col-left	{
  width: 100%;
  flex-grow: 0;
  flex-shrink: 1;
}
.page__col-right	{
  width: 330px;
  flex-shrink: 0;
}
.block  {
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #fff;
  padding: var(--padding);
  margin-bottom: 1.5rem;
}
.block:last-child  {
  margin-bottom: 0;
  overflow: unset;
}

.log {
  background: #333;
  color: #b9b9b9;
  padding: 2rem;
}

.left_menu  {
  padding-right: 2rem;
}
.left_menu ul {
  list-style: none;
  margin: 0.5rem 0;
}
.left_menu ul a {
  font-size: 1.1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #505050;
}
.left_menu ul a img {
  width: 2rem;
}
.left_menu ul a span {
  padding-left: 0.5rem;
}
.left_menu ul li {
  padding: 0.5rem;
}
.left_menu ul li.actives {
  background: #f2f2f2;
  border-radius: var(--border-radius);
}
.test__cols h2 {
  font-size: 1.3rem;
}

.cards  {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(4,minmax(300px,320px));
  grid-gap: 1rem 1rem;
  margin: 1rem 0;
}
.similar__container {
  position: sticky;
  top: 5.7rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #fff;
  padding: var(--padding);
}
.similar__hidden  {
  display: none;
}
.similar  {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(1,minmax(14rem,18rem));
  grid-gap: 1rem 1rem;
}
.similar__container h2  {
  margin-bottom: 1rem;
}
.card {
  border-radius: var(--border-radius);
  border: 1px solid #f2f2f2;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.similar .card {
  display: none;
  flex-direction: column;
}
.similar .card:nth-child(-n+4) {
  display: flex;
}
.card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  background: #f2f2f2;
  overflow: hidden;
  position: relative;
}
.card__status {
  position: absolute;
  top: .3rem;
  left: .3rem;
  padding: .15rem .5rem;
  font-size: .8rem;
  border-radius: var(--border-radius);
  font-family: 'rubik300';
}
.test__status_info {
  padding: .25rem 1rem;
  border-radius: var(--border-radius);
  background: #ff9c9c;
  display: inline-block;
  margin-top: .5rem;
}
.status__bg_ {
  background: #ff9c9c;
}
.status__bg_0 {
  background: #e9e8db;
}
.status__bg_1 {
  background: #f8e808;
}
.status__bg_2 {
  background: #8bf808;
}
.similar .card__image {
  height: 8rem;
  flex-shrink: 0;
  background: #f0f0f0;
}
.card__image a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.card__image a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.card__content {
  padding-bottom: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card__body {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card__title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  padding: 0 1rem 0 1rem;
  font-family: 'rubik500';
}
.card__title a {
  text-decoration: none;
}
.card__description {
  padding: 0 1rem;
  font-size: 1rem;
}
.clamp3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card__header {
  padding: 1rem 1rem .5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card__user {
  
}
.card__user a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: .3rem;
}
.card__user img {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
}
.card__user span {
  font-family: 'rubik400';
  font-size: .85rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 10rem;
  line-height: 1;
}
.card__edit {
  
}
.card__edit a {
  display: flex;
  text-decoration: none;
  gap: .25rem;
  align-items: center;
  line-height: 1;
}
.card__edit img {
  width: 1rem;
  height: 1rem;
}
.card__date {
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  font-family: 'rubik300';
  flex-shrink: 0;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 1rem 0 1rem;
  margin-top: auto;
  font-family: 'rubik300';
}
.card__category {
  overflow: hidden;
  padding-right: .3rem;
}
.card__category a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: .15rem;
  font-size: .8rem;
  text-decoration: none;
  align-items: center;
  line-height: 1;
}
.card__category a img {
  width: 1rem;
  height: 1rem;
}
.card__category span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}
.card__stat {
  display: flex;
  gap: .25rem;
}
.card__stat div {
  display: flex;
  gap: .1rem;
  font-size: .8rem;
  text-decoration: none;
  align-items: center;
  line-height: 1;
}
.card__stat div img {
  width: 1rem;
  height: 1rem;
}
.svg__color  {
  --icon-fill: steelblue;
  --icon-stroke: darkblue;
}

.test__cards  {
  margin-top: 1.5rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #fff;
  padding: var(--padding);
}




.image__buttons {
  display: flex;
  gap: .5rem;
}
.croppie-container .cr-slider-wrap  {
  display: none;
}

.image__block {
  position: relative;
  width: auto;
  display: inline-block;
  margin: .5rem 0;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.image__block .image__preview {
  display: none;
  overflow: hidden;
  border-radius: var(--border-radius);
  margin-bottom: .5rem;
  width: 400px;
  height: 200px;
}
.image__block .image__preview.opened {
  display: flex;
}
.image__block .image__preview.loading {
  background: #000 url(/media/images/file_loader5.svg) 50% 50% no-repeat;
}
.image__block, .image__preview img {
  max-width: 100%;
  width: 100%;
}
.question__image .image__block, .question__image .image__preview, .estimate__image .image__preview, .estimate__image .image__block {
  margin-top: 0;
}
a.button__small {
  position: relative;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.5rem 1rem
}
a.button__middle {
  position: relative;
  cursor: pointer;
  font-size: 0.87rem;
  padding: 0.7rem 1.2rem;
  height: 2.33rem;
}
a.button__enlarged {
  display: inline-flex;
  justify-content: center;
  height: 2.7rem;
}
a.button__loading img  {
  display: none;
}
a.button__small.disabled  {
  background: #ddd;
  cursor: default;
}
a.button__loading.disabled  {
  background: #ddd;
  border: 1px solid #c7c7c7;
  cursor: default;
}
a.button__loading.disabled img  {
  display: block;
}
.button__radio {
  display: inline-block;
  margin: .5rem .5rem .5rem 0;
}
.button__radio input[type=radio] {
	display: none;
}
.button__radio label {
	display: inline-block;
	cursor: pointer;
	user-select: none;
}
.button__radio input[type=radio]:checked + label {
  background: #9cf808;
  outline: 3px solid #7bc800;
  outline-offset: -3px;
}
label a {
  color: #5073c5;
}
.form .type__label  {
  display: none;
}
.form .type__label.active  {
  display: block;
}

#cookie__accept {
  position: fixed;
  bottom: 0;
  padding: var(--padding);
  max-width: 25rem;
  right: 1rem;
  border-radius: 0.625rem;
  border: 1px solid #CFCFCF;
  background: #FFF;
  display: none;
  opacity: 0;
  transition: 0.5s ease-in-out;
  flex-direction: column;
  gap: 1rem;
}

.image__loader  {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000 url(/media/images/file_loader5.svg) 50% 50% no-repeat;
  display: none;
}

a.image__save {
  display: none;
  background: #9cf808;
}
a.image__upload {
  background: #dbe2e4;
}
a.image__upload:hover {
  background: #c3dfe7;
}
a.image__upload img {
  
}
a.image__upload input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
a.image__upload input[type="file"], a.image__upload input[type="file"]::-webkit-file-upload-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
a.image__upload.edit {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  background: #00000047;
  color: #fff;
  opacity: 0;
}
a.image__upload.edit:hover {
  opacity: 1;
  transition: opacity 0.3s;
}
.image__wrapper {
  width: 100%;
  height: 20rem;
  display: none;
  margin-top: .5rem;
  margin-bottom: 2.5rem;
}
.image__wrapper.ready {
  display: block;
}
.image__wrapper .croppie-container .cr-slider-wrap {
  width: 100%;
  margin: 1rem auto;
}
.image__wrapper .cr-slider {
  width: 100%;
  max-width: 100%;
  cursor: pointer;
}



.form	{
  margin: 1rem 0;
  position: relative;
}
.form form	{
  display: inline-flex;
  flex-direction: column;
}
.form.create form	{
  width: 100%;
  max-width: 60rem;
}
.form .error	{
  margin: 0 0 0.5rem 0;
  color: #d34343;
  display: none;
}
.or	{
  margin: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.or::before {
  content: "";
  width: 3rem;
  height: 1px;
  background-color: #ccc;
  margin-right: .5rem;
}
.or::after {
  content: "";
  width: 3rem;
  height: 1px;
  background-color: #ccc;
  margin-left: .5rem;
}
#registerConfirm	{
  display: none;
}
.register__confirm	{
  display: none;
  padding: 5rem 0;
}
.register__confirm p	{
  margin-top: 1rem;
}

.centered	{
  text-align: center;
}
.button.gray	{
  background-color: #ddd;
}
.button.dashed	{
  background: none;
}
a.dashed	{
  border-bottom: 1px dashed;
  color: inherit;
  text-decoration: none;
}
a.dashed:hover	{
  border-bottom: 0;
  text-decoration: none;
}
.button.dashed span	{
  border-bottom: 1px dashed;
}
.button.dashed:hover	{
  background: none;
}
.button.dashed:hover span	{
  border-bottom: 1px solid transparent;
}

.button {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  text-decoration: none;
  padding: .7rem 1.1rem;
  background: #F8E808;
  border-radius: var(--border-radius);
  font-size: 15px;
  color: #212121;
  text-align: center;
  line-height: 1;
  -webkit-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
  border: 0;
  cursor: pointer;
  font-family: 'rubik400';
  font-size: 1rem;
}
.button img {
  display: block;
  margin-right: .5rem;
  width: 1.15rem;
}
.button__big {
  padding: 1.15rem 2.4rem;
  border-radius: 0.7rem;
  font-size: 1.125rem;
  font-family: 'rubik500';
}
.button__big img {
  display: block;
  margin-right: 13px;
}
.button:hover	{
  text-decoration: none;
  background: #9cf808;
}
input.button, button.button	{
  width: 100%;
  display: flex;
  justify-content: center;
  height: 2.7rem;
  max-width: 20rem;
}
.button__blue {
  background: #7bc6ff;
}
.button__blue:hover {
  background: #3baaff;
}
.button__gray {
  background: #ddd;
}
.button__gray:hover {
  background: #c7c7c7;
}
.button__orange {
  background: #ff9e27;
}
.button__orange:hover {
  background: #ff7227;
}
img	{
  display: block;
}

h1	{
  font-weight: normal;
  font-family: 'rubik600';
}
h2, h3, h4, h5	{
  font-weight: normal;
  font-family: 'rubik500';
  line-height: 1;
}
h1  {
  font-size: 1.8rem;
  line-height: 1.1;
}
h2  {
  font-size: 1.5rem;
}
h3  {
  font-size: 1.17rem;
}
h4	{
  font-size: 1rem;
}
input[type='text'],input[type='email'],input[type='password']	{
  font-size: 1.2rem;
  padding: .5rem .5rem;
  border-radius: var(--border-radius);
  border: 1px solid #c3c3c3;
  outline-color: #b9b9b9;
  margin: .5rem 0;
}
input[type='text'].small,input[type='email'].small,input[type='password'].small 	{
  font-size: 1rem;
  padding: .5rem .5rem;
}

#loginForm a,#reminderForm a	{
  margin-top: 1rem;
}
.header__login  {
  cursor: pointer;
}
.header__dropdown	{
  position: relative;
}
.header__user	{
  padding: 1rem 1.4rem;
  display: block;
  position: relative;
  z-index: 3;
  text-decoration: none;
  display: flex;
  align-items: center;
  min-width: 10rem;
  font-size: 1rem;
}
.header__user span	{
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 10rem;
  line-height: 1;
}
.header__user::after	{
  content: "";
  width: 10px;
  height: 10px;
  background: url('/media/images/triangle.svg') 0 0 no-repeat;
  display: block;
  margin-left: 3px;
  transition: .15s;
}
.header__show .header__user::after	{
  transform: rotate(180deg);
}
.header__user img	{
  width: 37px;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.header__user img.no_avatar	{
  width: 2.3rem;
  border-radius: 0;
  margin-right: 0.5rem;
}
.header__dropdown a	{
  color: #212121;
  min-width: 10rem;
  font-size: 1rem;
  text-decoration: none;
}
.header__dropdown a:hover	{
  color: #365577;
}
.header__links	{
  position: absolute;
  top: 0;
  border: 1px solid #CFCFCF;
  right: 0;
  left: 0;
  border: 1px solid #CFCFCF;
  -webkit-border-radius: var(--border-radius);
  -moz-border-radius: var(--border-radius);
  border-radius: var(--border-radius);
  background: #FFFFFF;
  list-style: none;
  padding: 4.37rem 1.4rem 1rem 1.4rem;
  display: none;
  opacity: 0;
  z-index: 2;
}
.header__links li a	{
  padding: .3rem 0;
  display: inline-block;
  min-width: auto;
  width: 100%;
}
.header__links li:first-child a	{
  padding: 0 0 0.3rem 0;
}

.test__save_buttons {
  display: flex;
  gap: 1rem;
}


#reminder	{
  display: none;
}

.my__menu	{
  display: flex;
  list-style: none;
  padding: 0 0 1.5rem 0;
}
.my__menu li	{
  margin: 0 1rem 0 0;
}
.my__menu li a	{
  background: #ddd;
  font-size: .95rem;
}
.my__menu li a:hover,.my__menu li.active a	{
  background: #F8E808;
}


textarea	{
  font-size: 1.2rem;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  border: 1px solid #e3e3e3;
  outline-color: #e3e3e3;
  margin: .5rem 0;
  width: 600px;
  width: 100%;
  resize: none;
  font-family: 'rubik400';
  display: block;
  color: #212121;
}

input[type='text']	{
  width: 100%;
  color: #212121;
}

.user__profile  {
  border-radius: var(--border-radius);
  border: 1px solid #f2f2f2;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.user__background  {
  width: 100%;
  height: 13rem;
}
.user__background img  {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user__image  {
  margin: -7rem 0 0 1rem;
}
.user__image img  {
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  width: 10rem;
  height: 10rem;
}
.user__data {
  padding: 1rem var(--padding) var(--padding) var(--padding);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 1.5rem;
}
.user__header {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.user__header h1 {
  font-size: 2rem;
}
.user__header div {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.user__stat {
  display: flex;
  flex-grow: 1;
  gap: 7rem;
}
.user__about {  
  display: flex;
  flex-direction: column;
}
.user__about span {
  font-family: 'rubik500';
  display: block;
  margin-bottom: .5rem;
}
.user__blocks {
  display: flex;
  flex-grow: 1;
  justify-content: space-around;
}
.user__block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.user__block span {
  font-size: 2rem;
  font-family: 'rubik500';
  color: #378725;
}
.user__block div {
  color: #7e7e7e;
}

.user__links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: normal;
}

.input__half  {
  display: flex;
}
.input__half input:nth-child(1)  {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  background: #e0e0e0;
  width: 10rem!important;
}
.input__half input:nth-child(2)  {
  margin-left: -7px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.profile__links  {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.profile__links div  {
  display: flex;
  gap: .5rem;
  align-items: center;
}
.profile__links a  {
  text-decoration: none;
}


.image__user_avatar .image__preview {
  width: 200px;
  height: 200px;
}
.image__user_background .image__preview {
  background: #ddd;
}
.image__user_background .image__preview img {
  object-fit: contain;
  height: 100%;
}



.link_vk  {
  position: relative;
}
.input__vk input::before  {
  content: "https://vk.com/";
  position: relative;
}
.link_tg::before  {
  content: "https://t.me/";
}





.form label	{
  color: #a3a3a3;
  font-size: .9rem;
  display: block;
}
.form label.button	{
  margin-bottom: 0;
  color: #212121;
  font-size: 1rem;
}

#testCreationChart  {
}
.statistic__row {
  margin: 1rem 0;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--border-radius);
}
.stats  {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}
.stats__chart  {
  flex: 1 0 0;
  padding: .5rem;
  border-radius: var(--border-radius);
  border: 1px solid #CFCFCF;
}
.stats__control  {
  width: 20rem;
  flex-shrink: 0;
  display: flex;
  gap: .5rem;
  flex-direction: column;
}



.step	{
  margin-bottom: 1rem;
  padding: 1.1rem 1.5rem 1.5rem 1.5rem;
  background: #fff;
  border-radius: var(--border-radius);
}
.step__header {
  display: flex;
  align-items: center;
}
.step__num	{
  font-size: 1rem;
  background: #ddd;
  border-radius: var(--border-radius);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  font-family: 'rubik600';
  color: #fff;
  line-height: 0;
}
.step__title {
  font-size: 1.3rem;
  font-family: 'rubik500';
}





#saveImage	{
  display: none;
}

#imageUpload	{
  display: flex;
  flex-direction: column;
  margin: 1rem 0;
}






#imageForm	{
  max-width: none;
}


#imageTest {
  max-width: 850px;
  max-height: 400px;
  position: relative;
  margin-top: 0.5rem;
}

#imageTest img {
  display: block;
  max-width: 100%;
  border-radius: var(--border-radius);
}
#saveImage, #reloadImage	{
  margin-top: .5rem;
}
#saveImage .button, #reloadImage .button	{
  margin-top: .5rem;
}
#reloadImage	{
  display: flex;
}
#imageUpload > div	{
  display: flex;
}
#imageUpload > div .button	{
}

#inputImage,#reloadImage	{
  display: none;
}

.login__reminder,.login__enter  {
  margin-top: 1rem;
}



.notify__container  {
  display: flex;
  align-items: center;
  justify-content: center;
}
.notify {
  opacity: 0;
  position: fixed;
  z-index: 999;
  max-width: 90%;
  top: 1rem;
  border-radius: var(--border-radius);
  padding: 1rem 2.5rem;
  font-size: .9rem;
  color: #FFFFFF;
  line-height: 1.3;
  background: #57cb3a;
}
.notify.error {
  background: #cb3a3a;
}
.notify__title {
  font-family: 'rubik600';
}
.notify__close  {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 1rem;
}

.questions  {
  margin: 1rem 0 0 0;
}
.question  {
  background: #f7f7f7;
  border-radius: var(--border-radius);
  margin-bottom: .5rem;
  padding: 0.5rem;
}
.question__slide  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}
.question__name  {
  width: 100%;
  cursor: pointer;  
  display: flex;
  align-items: center;
  padding-left: .5rem;
  font-size: 1.15rem;
  font-family: 'rubik500';
  overflow: hidden;
}
.question__name b  {
  font-size: 1.15rem;
  font-family: 'rubik500';
  font-weight: normal;
  white-space: nowrap;
}
.question__name::before {
  content: "";
  width: 10px;
  height: 10px;
  background: url('/media/images/triangle.svg') 0 0 no-repeat;
  display: block;
  margin-right: 5px;
  transition: .15s;
  flex-shrink: 0;
}
.question.opened .question__name::before {
  transform: rotate(180deg);
}
.question__name span  {
  font-size: 1.15rem;
  font-family: 'rubik400';
  padding-left: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.question__content  {
  display: none;
}
.question.opened .question__content  {
  display: block;
}







.question input[type='text'] {
  margin: 0;
}
.question__image {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  margin-top: 1rem;
}
.question__header {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  margin-top: 1rem;
}
.question__body {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  margin-top: 1rem;
}
.question__body>div {
  display: flex;
  justify-content: space-between;
}
.question__body>div span {
  font-size: .8rem;
  display: none;
}
.question__box  {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #ddd;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}
.question__body {
  display: flex;
}
.question__num {
  cursor: grab;
}
.question__move {
  background-image: url(../images/icons/move-alt.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 70%;
  cursor: grab;
}
.del_question, .del_estimate {
  background-image: url(../images/icons/delete.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 70%;
}
.image_question {
  background-image: url(../images/icons/image.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 70%;
}
.del_answer {
  background-image: url(../images/icons/fail.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 70%;
}
.add_answer {
  background-color: #85eb71;
  background-image: url(../images/icons/i-plus.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 70%;
  margin: 0.5rem 0 0 0rem;
}



.answers {
  width: 100%;  
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.answer {
}
.answer__body {
  display: flex;
  gap: 0.5rem;
  margin: 0;
}
.is_correct {
  display: none;
}
.form.create.type_1 .is_correct, .form.create.type_1 .question__body>div span {
  display: flex;
}
.is_correct input[type="checkbox"] {
  width: 70%;
  height: 70%;
  cursor: pointer;
}

.settings {
  margin: 1rem 0 1.5rem 0;
}
.settings:last-child {
  margin: 1rem 0 0rem 0;
}
.settings__title {
  margin: .5rem 0;
  font-family: 'rubik500';
}
.settings__block {
}
.settings label {
  font-size: 0.9rem;
  color: #212121;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: .3rem 0;
}
.settings label input {
  margin-right: 0.5rem;
  width: 1.3rem;
  height: 1.3rem;
  cursor: pointer;
  flex-shrink: 0;
}
#settings__private_pass {
  max-width: 20rem;
  display: none;
  align-items: center;
  gap: .5rem;
}
#settings__private_pass.opened {
  display: flex;
}
.password_gen {
  background-image: url(../images/icons/refresh.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 50%;
}
.password_copy {
  background-image: url(../images/icons/copy.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 50%;
}



.private  {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.private input  {
  width: 100%;
  max-width: 30rem;
}

.vk_login_form  {
  margin: 1rem auto 3rem auto;
  max-width: 20rem;
}
.vk_login_form small  {
  display: inline-block;
  font-size: .77rem;
  color: #212121;
  padding: 1rem 0 0 0;
}
.vk_login_form small a  {
  color: #5073c5;
}
input[type="checkbox"] {
  width: 1.3rem;
  height: 1.3rem;
  cursor: pointer;
  flex-shrink: 0;
}
.rules__container label {
  font-size: 0.9rem;
  color: #212121;
  display: flex;
  align-items: self-start;
  cursor: pointer;
  padding: .3rem 0;
}
#login, #register {
  max-width: 20rem;
  width: 100%;
}
.rules__container {
  margin-bottom: .5rem;
}
.rules__container div {
  text-align: left;
  font-size: .77rem;
  margin-left: .5rem;
}
input[type="submit"]:disabled {
  background: #ddd;
  border: 1px solid #c7c7c7;
  cursor: default;
}
form#settings {
  width: 100%;
}
.form__settings form input[type="text"] {
  width: auto;
}
form#settings .image__block {
}
form#settings a.image__upload.edit {
}
form#settings .image__preview img {
  
}

input:focus::placeholder {
  color: transparent;
}
.match__points input.filled {
  background-color: #0075ff;
  color: #fff;
  border-left: 1px solid #0075ff;
}
.match__points input.error {
  background-color: #b90019;
  color: #fff;
  border-left: 1px solid #b90019;
}


.croppie-container {
  
}

.chosen-container  {
  margin: .5rem 0;
}
.chosen-container>*  {
  font-size: 1.2rem;
}
main .chosen-container-single .chosen-single {
  padding: .5rem;
  border-radius: var(--border-radius);
}
.chosen-container .chosen-results li.active-result {
  padding: .5rem!important;
}
main .chosen-container-single .chosen-single span, main .chosen-container-single .chosen-single-with-deselect.chosen-default span {
  margin-right: 1rem;
}
.test__badges {
  margin: 1rem 1rem 0 1rem;
}
.test__params {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 5.7rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  background: #fff;
  padding: var(--padding);
  width: 15rem;
  gap: 1rem;
}
.test__rating {
  display: flex;
  gap: 1rem;
}
.test__rating div {
  flex: 0 1 50%;
}
.test__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card__content .test__params {
  margin: 0 0 0.5rem 0;
  font-size: 0.8rem;
  background: #f2f2f2;
  padding: 0.5rem 1rem;
}
.similar .card__content .test__params {
  margin: 0 0 0rem 0;
  background: #fff;
}
.card__content .test__user img {
  width: 33px;
  margin-right: 0.5rem;
}
.card__content .test__user img.no_avatar {
  width: 20px;
}
.card__content .test__stat {
  gap: 0.3rem;
  background-color: inherit;
  padding: 0;
}

.card__edit {
  font-size: .9rem;
  display: inline-flex;
  gap: 0.3rem;
  align-items: center;
  text-decoration: none;
}
.card__edit img {
  flex-shrink: 0;
  width: 1rem;
}

strong {
  font-family: 'rubik500';
  font-weight: normal;
}

.stat__category {
  display: flex;
  gap: .3rem;
  font-family: 'rubik300';
}
.stat__category a {
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: .9rem;
}
.stat__category img {
  width: 1rem;
}
.test__stat  {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stat__row  {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzM4IiBoZWlnaHQ9IjIiIHZpZXdCb3g9IjAgMCAzMzggMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMUgzMzciIHN0cm9rZT0iI2U3ZTdlNyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtZGFzaGFycmF5PSI2IDYiLz4KPC9zdmc+);
  background-position: 0 100%;
  background-repeat: repeat-x;
  padding-bottom: .3rem;
  background-size: 180%;
  gap: .3rem;
}
.stat__row > div:nth-child(2)  {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
.stat__row img {
  width: 1.3rem;
  height: 1.3rem;
}












.comment__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f2f2f2;
}
.comment__rating .rating__likes, .comment__rating .rating__dislikes {
  display: flex;
  align-items: center;
  height: 1.3rem;
}
.rating__like {
  background-image: url(../images/icons/like.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 80%;
  height: 100%;
  width: 1.7rem;
  height: 1.7rem;
  cursor: pointer;
}
.rating__like.active {
  background-image: url(../images/icons/like_active.svg);
}
.rating__dislike {
  background-image: url(../images/icons/dislike.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 80%;
  height: 100%;
  width: 1.7rem;
  height: 1.7rem;
  cursor: pointer;
}
.rating__dislike.active {
  background-image: url(../images/icons/dislike_active.svg);
}

.comment__rating .rating__like, .comment__rating .rating__dislike {
  background-size: 63%;
}
.test__share  {
  display: flex;
  border-radius: var(--border-radius);
  cursor: pointer;
}
.share__image  {
  width: 1.7rem;
  height: 1.7rem;
  display: flex;
  justify-content: center;
}
.share__image img  {
  width: 80%;
}
.test__claim  {
  display: flex;
  border-radius: var(--border-radius);
  cursor: pointer;
}
.claim__image  {
  width: 1.7rem;
  height: 1.7rem;
  display: flex;
  justify-content: center;
}
.claim__image img  {
  width: 80%;
}

.modal  {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 11;  
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  display: none;
  opacity: 0;
}
.modal h2  {
  
}
.modal.opened  {
  display: flex;
  opacity: 1;
}
.modal__background  {
  background: #0000003d;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.modal__head  {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.modal__content  {
  position: relative;
  background: #fff;
  max-height: 90%;
  max-width: 94%;
  border-radius: var(--border-radius);
  padding: var(--padding);
}
.modal__body  {
  margin-top: 1.5rem;
}
span.modal__close  {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: #ddd;
  border-radius: var(--border-radius);
  cursor: pointer;
  flex-shrink: 0;
}
.share__modal {
  
}
.share__modal dl {
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  grid-gap: 1rem;
}
.share__modal dl li {
  
}
.share__modal dl li img {
  width: 2.5rem;
  height: 2.5rem;
}
.share__modal dl li a {
  display: flex;
  align-items: center;
  padding: .5rem 1rem;
  gap: .5rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: .3s;
}
.share__modal dl li a:hover {
  background: #efefef;
}
.claim__modal {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.claim__success {
  display: none;
  max-width: 30rem;
}
.claim__success h4 {
  margin-bottom: .5rem;
  font-family: 'rubik600';
  font-size: 1.5rem;
  line-height: 1.25;
}
.modal__body.success .claim__modal {
  display: none;
}
.modal__body.success .claim__success {
  display: block;
}
.claim__modal label {
  font-size: 0.9rem;
  color: #212121;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: .7rem;
  border: 1px solid #dddddd;
  border-radius: var(--border-radius);
}
.claim__modal label input {
  margin-right: 0.5rem;
  width: 1.3rem;
  height: 1.3rem;
  cursor: pointer;
  flex-shrink: 0;
}
.claim__submit {
  margin-top: .5rem;
}
.params__button {
  display: flex;
  align-items: center;
  border-radius: var(--border-radius);
  cursor: pointer;
  background-position: 1rem 50%;
  background-size: 1.3rem;
  background-repeat: no-repeat;
  padding: .7rem .7rem .7rem 3rem;
  background-color: #f0f0f0;
  line-height: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.test__favorites  {
  background-image: url(../images/icons/heart_f.svg);
}
.test__favorites.active  {
  background-image: url(../images/icons/heart_fa.svg);
}
.test__share  {
  background-image: url(../images/icons/share.svg);
}
.test__claim  {
  background-image: url(../images/icons/warn.svg);
}
.rating__likes  {
  background-image: url(../images/icons/like.svg);
}
.rating__likes.active  {
  background-image: url(../images/icons/like_active.svg);
}
.rating__dislikes  {
  background-image: url(../images/icons/dislike.svg);
}
.rating__dislikes.active  {
  background-image: url(../images/icons/dislike_active.svg);
}

.comments__container  {
  margin-top: 1.5rem;
  border-radius: var(--border-radius);
  max-width: 840px;
  overflow: hidden;
  background: #fff;
  padding: var(--padding);
}
.comments__container h2  {
  margin-bottom: 1rem;
}
.comments {
}
.comment {
  margin-bottom: 0rem;
}
.comment__header {
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1;
  padding: 0.5rem 1rem;
  background: #f2f2f2;
  justify-content: space-between;
  border-radius: var(--border-radius);
}
.comment__user {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.comment__header a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.comment__header a img {
  width: 1.5rem;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.comment__header a img.no_avatar {
  width: 1.5rem;
}
.comment__header div {
  font-size: 0.8rem;
  color: #777;
}
.comment__comment {
  padding: 1rem;
}
.reply__link  {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: #22813f;
}
.reply__icon  {
  width: 8px;
}
.reply__icon img  {
  width: 100%;
}
.comment__level_2  {
  margin-left: 1rem;
}
.comment__level_3  {
  margin-left: 2rem;
}
.comment__level_4  {
  margin-left: 3rem;
}
.comment__level_5  {
  margin-left: 4rem;
}
.comment__level_6  {
  margin-left: 5rem;
}
.comment__level_7  {
  margin-left: 6rem;
}
.comment__level_8  {
  margin-left: 7rem;
}
.comment__level_9  {
  margin-left: 8rem;
}
.comment__level_10  {
  margin-left: 9rem;
}
.comment__level_11  {
  margin-left: 10rem;
}
.comment__level_12  {
  margin-left: 11rem;
}
.comment__level_13  {
  margin-left: 12rem;
}
.comment__level_14  {
  margin-left: 13rem;
}
.comment__level_15  {
  margin-left: 14rem;
}
.comment__is_reply .comment__header  {
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}
.comment__write {
  padding: 1rem;
  background: #f2f2f2;
  border-radius: var(--border-radius);
}
.comment__write.reply__write {
  padding: 0;
  background: none;
  margin-top: 0.5rem;
}
.comment__write textarea {
  margin: 0;
  font-size: 1rem;
}
.comment__write .button {
  margin-top: 0.5rem;
}
.comments__empty {
  padding: .5rem 0 1.5rem 0;
  display: flex;
  align-items: center;
}
.comments__empty img {
  width: 34px;
  margin-right: 0.5rem;
}
.comment_new  {
  
}

.image__container {
 
}

.test__header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  display: none;
  width: 100%;
}


.test__header_user a  {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-grow: 1;
}
.test__header_user img  {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  margin-right: 0.7rem;
}
.test__user_cat  {
  display: flex;
}
.test__user_cat a  {
  text-decoration: none;
  font-size: 0.9rem;
  color: #777;
}
.test__user_cat img  {
  width: 1rem;
}



.test__user a {
  display: flex;
  text-decoration: none;
  align-items: center;
}
.test__user_name {
  font-family: 'rubik500';
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 10rem;
}
.test__user_date {
  font-size: 0.9rem;
  color: #777;
}
.test__user div {
  display: flex;
  flex-direction: column;
}
.test__user img {
  width: 50px;
  border-radius: 50%;
  margin-right: 0.7rem;
}
.test__user img.no_avatar {
  width: 3rem;
}
.test__badge  {
  padding: 0.3rem 0.5rem;
  display: inline-block;
  border-radius: var(--border-radius);
  border: 1px solid #e7e7e7;
  background: #f5f7fa;
  font-size: 0.87rem;
  display: inline-flex;
  align-items: center;
  padding-left: 1.7rem;
}
.test__badge a  {
  text-decoration: none;
}
.badge__user  {
  background-image: url('/media/images/icons/user.svg');
  background-position: 0.5rem 50%;
  background-size: 1rem;
  background-repeat: no-repeat;
}
.badge__created  {
  background-image: url('/media/images/icons/calendar.svg');
  background-position: 0.5rem 40%;
  background-size: 1rem;
  background-repeat: no-repeat;
}
.badge__views  {
  background-image: url('/media/images/icons/show.svg');
  background-position: 0.5rem 50%;
  background-size: 1.1rem;
  background-repeat: no-repeat;
}
.badge__time  {
  background-image: url('/media/images/icons/clock.svg');
  background-position: 0.5rem 50%;
  background-size: 1rem;
  background-repeat: no-repeat;
}
.badge__passed  {
  background-image: url('/media/images/icons/pass.svg');
  background-position: 0.5rem 50%;
  background-size: 1rem;
  background-repeat: no-repeat;
}
.badge__rating  {
  background-image: url('/media/images/icons/star.svg');
  background-position: 0.5rem 50%;
  background-size: 1rem;
  background-repeat: no-repeat;
}
.badge__private  {
  background-image: url('/media/images/icons/lock.svg');
  background-position: 50% 50%;
  background-size: 0.9rem;
  background-repeat: no-repeat;
}
.badge__share  {
  background-image: url('/media/images/icons/share.svg');
  background-position: 0.5rem 40%;
  background-size: 0.9rem;
  background-repeat: no-repeat;
}
.badge__count  {
  background-image: url('/media/images/icons/list.svg');
  background-position: 0.5rem 40%;
  background-size: 0.9rem;
  background-repeat: no-repeat;
}
.test__container {
  border-radius: var(--border-radius);
  padding: var(--padding);
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.test__content  {
  position: relative;
}
.test__cover  {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.col__center  {
  width: 100%;
  max-width: 800px;
}
.test__image {
  border-radius: var(--border-radius);
  overflow: hidden;
}
.test__image img  {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}
.test__description  {
  font-size: 1.15rem;
}
.test__button  {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.test__container h1  {
  margin-bottom: 0.5rem;
}
.test__answer {
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: start;
  padding: .5rem 0;
}
.test__answer span {
  padding-right: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.test__answer span:before {
  content: "";
  display: inline-block;
  width: 1.3rem;
  height: 1.3rem;
  border: 2px solid #a4a6a8;
  border-radius: 50%;
}
.test__answer.active span:before {
  border: 2px solid #fde600;
  background: #fde600;
}
.test__answer.active span::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  position: absolute;
  background: #2b2c33;
  border-radius: 50%;
}

.test__answer.disabled {
  cursor: not-allowed;
}
.test__answer.disabled span:before {
  background: #d8d8d8;
}
.test__answer.active span:before {
  border: 2px solid #fde600;
  background: #fde600;
}
.test__answer.active span::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  position: absolute;
  background: #2b2c33;
  border-radius: 50%;
}

.test__buttons  {
}
.test__buttons a  {
  margin-right: 0.5rem;
}
.test__buttons a.disabled {
  background: #d5d5d6;
  cursor: not-allowed;
}
.test__answers  { /* grid? */
  display: flex;
  flex-direction: column;
}
.test__question  {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  display: none;
}
.estimates  {
  margin: 1rem 0;
}
.estimate  {
  background: #f7f7f7;
  border-radius: var(--border-radius);
  margin-bottom: .5rem;
  padding: 0.5rem;
}

.estimate__slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}
.estimate__name  {
  width: 100%;
  cursor: pointer;  
  display: flex;
  align-items: center;
  padding-left: .5rem;
  font-size: 1.15rem;
  font-family: 'rubik500';
  overflow: hidden;
}
.estimate__name b  {
  font-size: 1.15rem;
  font-family: 'rubik500';
  font-weight: normal;
  white-space: nowrap;
}
.estimate__name::before {
  content: "";
  width: 10px;
  height: 10px;
  background: url('/media/images/triangle.svg') 0 0 no-repeat;
  display: block;
  margin-right: 5px;
  transition: .15s;
  flex-shrink: 0;
}
.estimate.opened .estimate__name::before {
  transform: rotate(180deg);
}
.estimate__name span  {
  font-size: 1.15rem;
  font-family: 'rubik400';
  padding-left: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.estimate__content  {
  display: none;
}
.estimate.opened .estimate__content  {
  display: block;
}
.estimate__image {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  margin-top: 1rem;
}
.estimate__header {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  margin-top: 1rem;
}
.estimate__body {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  margin-top: 1rem;
}


.estimate input[type='text'] {
  margin: 0;
}

.estimate__box  {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #ddd;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}
.estimate__text  {
}

.estimate__condition  {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  margin-top: 1rem;
}
.estimate label  {
  padding-left: 3.5rem;
  margin-top: 5px;
}
.estimate textarea  {
  margin: 0;
}
.estimate__inputs  {
  display: flex;
  margin: 0;
}
input.estimate__from, input.estimate__to  {
  width: 3.3rem;
  text-align: center;
}
.estimate__delimiter  {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-family: 'rubik600';
  font-size: 1.5rem;
  padding: 0 0.5rem;
}
.estimate__condition label {
  padding-left: 0;
}
.form.create.type_2 .estimate__condition {
  display: none;
}
.matches {
  margin-left: 3rem;
  margin-right: 3rem;
  display: none;
}
.form.create.type_2 .matches {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-top: .25rem;
}
.match  {
  font-size: 1rem;
  border-radius: var(--border-radius);
  border: 1px solid #c3c3c3;
  outline-color: #b9b9b9;
  color: #696969;
  background: #ededed;
  display: flex;
}
.match__num {
  font-family: 'rubik500', Arial, sans-serif;
  display: flex;
  align-items: center;
  padding: 0 .5rem;
  background: #ddd;
  width: 2rem;
  justify-content: center;
  border-right: 1px solid #c3c3c3;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.match__title  {
  padding: .3rem .5rem .3rem .5rem;
  display: flex;
  align-items: center;
  flex: 1;
}
.match__points input {
  width: 2.7rem;
  text-align: center;
  font-size: 1rem;
  border: 0;
  border-left: 1px solid #c3c3c3;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  color: #696969;
  height: 100%;
}

.test__question_name  {
}
.test__question_name h2  {
  font-size: 1.5rem;
  font-family: 'rubik500';
  line-height: 1.3;
}
.test__question_image img {
  width: 100%;
  max-width: 100%;
}

.test__dots {
  display: flex;
}
.test__dots i	{
	width: 1rem;
	height: 1rem;
	display: block;
	background: #a4a6a8;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	margin-right: 10px;
}
.test__dots i.active	{
	background: #fde600;
}
.test__dots i.active.current	{
	transform: scale(1.3);
}
.test__question_image {
  border-radius: var(--border-radius);
  overflow: hidden;
}
.test__result {
  font-size: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  display: none;
}
.result__title  {
}
.result__title h2  {
  font-size: 1.5rem;
  font-family: 'rubik500';
  line-height: 1.3;
  margin-bottom: .5rem;
}
.result__info  {
  font-family: 'rubik500';
  display: none;
}
.result__image  {
  border-radius: var(--border-radius);
  overflow: hidden;
}
.result__image img  {
  max-width: 100%;
  width: 100%;
}
.result__estimate  {
}
.result__buttons  {
  display: flex;
  justify-content: space-between;
}
.test__spinner  {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 0;
}
.test__animation  {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  font-size: 2.5rem;
  font-family: 'rubik600';
  text-align: center;
}
.correct_answers  {
  display: none;
  border-top: 1px solid #dddddd;
  gap: 1.5rem;
  flex-direction: column;
  padding-top: 1.5rem;
  display: none;
}
.correct_answers .correct_answer  {
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  padding: var(--padding);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.correct_answers span  {
  font-family: 'rubik500';
  color: #212121;
}
.correct_answers .correct_answer__selected_answer  {
}
.correct_answers .correct_answer__selected_answer.correct  {
  color: #35b211
}
.correct_answers .correct_answer__selected_answer.wrong  {
  color: #b21111
}
.test__show_correct {
  background: #bfc8f3;
  display: none;
}

.test__category {
  display: flex;
  align-items: center;
  gap: .3rem;
  color: #777;
  padding: 0 0 1.5rem 0;
}
.test__category a {
  text-decoration: none;
  padding: .5rem 1rem;
  border-radius: var(--border-radius);
  background: #e7e7e7;
  color: #535353;
}

.display_none {
  display: none!important;
}
.params {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.params .count {
  flex-shrink: 0;
}
#params__form {
  display: block;
}
.sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
}
.sort .chosen-container-single .chosen-single, .sort .chosen-container .chosen-drop {
  font-size: 1rem;
}
main .chosen-container .chosen-single span, main .chosen-container .chosen-results li.active-result  {
  display: flex;
  gap: 5px;
  align-items: center;
  line-height: 1.5rem;
}
main .chosen-container .chosen-single span img, main .chosen-container .chosen-results li.active-result img  {
  width: 1.5rem;
}
.sort_direction {
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url(../images/icons/sort-desc.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 70%;
  cursor: pointer;
  border: 1px solid #aaa;
  border-radius: var(--border-radius);
  background-color: #fff;
}
.sort_direction.asc {
  background-image: url(../images/icons/sort-asc.svg);
}
.pagination {
  display: flex;
  list-style: none;
}
.pagination li {
  padding: 0 .1rem;
}
.pagination li.current {
  font-family: 'rubik500';
}
.pagination li a, .pagination li span {
  text-decoration: none;
  display: block;
  border: 1px solid transparent;
  padding: 0.15rem 0.7rem;
  min-width: 1.5rem;
}
.pagination li a:hover {
  border: 1px solid #cccccc;
}
.pagination li.current a {
  border: 1px solid #e1d30f;
  background: #f8e808;
}
.pagination li span {
  cursor: default;
  color: #cccccc;
}


.category_list  {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(4, minmax(15%, 25%));
  grid-gap: 1rem 1rem;
  margin: 1rem 0;
  background: #fff;
}
.category  {
  display: flex;
  flex-direction: column;
  border-radius: 0.625rem;
  border: 1px solid #CFCFCF;
  overflow: hidden;
}
.category a  {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 10rem;
  background: #f3f3f3;
  width: 100%;
}
.category a img  {
  display: block;
  height: auto;
  height: 77%;
}
.category__desc  {
  padding: 1rem;
}
.category__desc h3  {
  margin-bottom: .5rem;
}

.header__category {
  margin: 0 1rem 0 3rem;
}
.header__category button {
  flex-shrink: 0;
  outline: none;
  color: #212121;
  background-color: #F8E808;
  font-size: 1rem;
  line-height: 1rem;
  padding: 0 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: 'rubik500';
  cursor: pointer;
  background-image: none;
  -webkit-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.7rem;
  gap: 0.5rem;
}
.header__category button:hover, .header__category button.active	{
  background-color: #9cf808;
}
.header__category button .l1, .header__category button .l2, .header__category button .l3 {
  transition: transform .3s;
  transform-origin: center;
}
.header__category button.active .l1 {
  transform: rotate(45deg) translate3d(0,5px,0);
}
.header__category button.active .l2 {
  opacity: 0;
}
.header__category button.active .l3 {
  transform: rotate(-45deg) translate3d(0, -5px, 0);
}
.header__categories {
  position: absolute;
  z-index: 1;
  width: auto;
  left: 0px;
  right: 0px;
  margin: 0px 2rem;
  top: 100%;
  background: #fff;
  border: 1px solid #CFCFCF;
  padding: 1rem;
  border-radius: var(--border-radius);
  display: none;
  opacity: 0;
}
.header__categories ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 25%);
}
.header__categories ul a {
  font-size: 1.1rem;
  text-decoration: none;
  align-items: center;
  color: #505050;
  transition: .3s;
  display: inline-flex;
  padding: .5rem 1rem;
  border-radius: var(--border-radius);
}
.header__categories ul a:hover {
  background: #efefef;
}
.header__categories ul a img {
  width: 2rem;
}
.header__categories ul a span {
  padding-left: 0.5rem;
}
.header__categories ul li {
  
}
.header__categories ul li.actives {
  background: #f2f2f2;
  border-radius: var(--border-radius);
}


.header__login .button  {
  height: 2.7rem;
}

.table__container {
  margin: 1rem 0;
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
}
.table th {
  font-weight: normal;
  font-family: 'rubik500';
  text-align: left;
  padding: .3rem .5rem;
  border: 1px solid #dddddd;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #f7f7f7;
}
.table tr {
  font-size: 0.9rem;
}
.table td {
  padding: .3rem .5rem;
  border: 1px solid #dddddd;
  border-right: 0;
  border-left: 0;
}
.table a {
  text-decoration: none;
}
.table input[type="checkbox"] {
  display: block;
}
.table__image {
  width: 10rem;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.table__description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; 
  line-clamp: 3;         
}
.table__test_name {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; 
  line-clamp: 2;         
}
.table__user {
  display: flex;
  gap: .3rem;
  white-space: nowrap;
}
.table__user img {
  border-radius: 50%;
}
.table__image img {
  max-width: 100%;
}
.table td .card__status {
  position: static;
  top: 0;
  left: 0;
  padding: .15rem .5rem;
  font-size: .8rem;
  border-radius: var(--border-radius);
  font-family: 'rubik300';
  display: inline-block;
  white-space: nowrap;
}



.page__cols {
  margin-top: 1rem;
  display: flex;
  gap: 1.5rem;
}
.page__cols_left  {
  flex-shrink: 0;
}
.page__cols_right  {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  min-width: 0;
}

.left__menu {
  padding: var(--padding);
  background: #fff;
  border-radius: var(--border-radius);
  max-width: 17rem;
  position: sticky;
  top: 5.5rem;
  min-width: 11rem;
}
.left__menu dl {
  list-style: none;
}
.left__menu dl li {
  margin: .5rem 0;
}
.left__menu dl li a {
  text-decoration: none;
}
.left__menu dl li.active a {
  font-family: 'rubik500';
  color: #212121;
  text-decoration: none;
}

.block__category p  {
  padding: 0.3rem 0 0.3rem 0rem;
  color: #7d7d7d;
}

.page__cols_text {
  padding: var(--padding);
  background: #fff;
  border-radius: var(--border-radius);
}
.policy h3 {
  margin: 0.5rem 0;
}
.policy p {
  padding: 0.3rem 0 0.3rem 0rem;
}
.policy a {
  color: #365577;
}
.policy table {
  margin: 1rem 0;
  border: 1px solid #ddd;
  vertical-align: top;
  border-collapse: collapse;
}
.policy table td {
  padding: 1rem;
  border: 1px solid #ddd;
  vertical-align: top;
}
.policy ul {
  margin: 0;
  list-style: none;
}
.policy ul li {
  padding: 0.3rem 1rem;
}

.feedback {
  padding: var(--padding);
  background: #fff;
  border-radius: var(--border-radius);
}
.feedback__row {
  margin: 0 0 0.5rem 0; 
}
.feedback__row:first-child {
  display: none;
}
.feedback__row label {
  font-family: 'rubik500';
}
.feedback__row.rules__container div {
  font-size: 1rem;
  font-family: 'rubik400';
}
.feedback__success {
  display: none;
}
.feedback__success h4 {
  margin-bottom: .5rem;
  font-family: 'rubik600';
  font-size: 1.5rem;
  line-height: 1.25;
}
.feedback.success .feedback__form {
  display: none;
}
.feedback.success .feedback__success {
  display: block;
}

.pbt  {
  padding: .5rem 0;
}

b {
  font-weight: normal;
  font-family: 'rubik500';
}

.block__404 {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.image__404 {
  width: 100%;
  margin: 1rem 0;
  max-width: 20rem;
  filter: opacity(0.3);
}


.menu__search {
  display: none;
  margin-bottom: 1rem;
}

.menu__search .search__container {
  padding: 0;
}

.chosen-select  {
  font-size: 1rem;
  padding: .5rem;
  border-radius: 5px;
  margin: .5rem 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  border: 1px solid #c3c3c3;
  color: #212121;
  outline: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23333" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 1rem;
  font-family: 'rubik400', Arial, sans-serif;
  padding-right: 2rem;
}
div::-webkit-scrollbar {
  width: 15px;
  height: 15px;
}
div::-webkit-scrollbar-track {
  background: #f7f7f7; 
  border-radius: 10px;
}
div::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 10px;
  border: 5px solid #f7f7f7;
  cursor: grab;
}

.bg__lb {
  background-color: #d4eef7;
}
.bg__lg {
  background-color: #f2f2f2;
}


.tippy-box {
  border-radius: var(--border-radius);
}
.tippy-content {
  position: relative;
  padding: .75rem 1rem;
  z-index: 1;
  font-size: .9rem;
}


@media (max-width: 1499px)	{
  .cards {
    grid-template-columns: repeat(4,minmax(220px,360px));
  }
  .card__image {
    height: 160px;
  }
  .test__user--date { 
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 1279px)	{
  html	{
    font-size: 14px;
  }
  .cards {
    grid-template-columns: repeat(3,minmax(220px,400px));
  }
  .card__image {
    
  }
  .card__content .test__stat {
    gap: 0.1rem;
  }
  .card__content .test__user img {
    width: 27px;
  }
  .card__content .test__user div {
    
  }
  .header__user img {
    width: 2.3rem;
  }
  .promo .container {
    background-size: 33%;
  }
}

@media (max-width: 1150px)	{
  .col__right {
    display: none;
  }
  .similar__hidden {
    display: block;
  }
  .col__center {
    max-width: none;
  }
  .comments__container {
    max-width: none;
  }
}

@media (max-width: 1023px)	{
  .header__menu {
    display: none;
  }
  .card__image {
    height: 140px;
  }
  .cards {
    grid-template-columns: repeat(3,minmax(220px,360px));
  }
  .category_list {
    grid-template-columns: repeat(2, minmax(15%, 50%));
  }
  .question__move {
    display: none;
  }
  .matches {
    margin-left: 0;
  }
  .stats {
    flex-direction: column;
  }
  .stats__control {
    flex-direction: row;
    width: auto;
  }
  .user__stat {
    gap: 1.5rem;
    flex-direction: column;
  }
  .user__blocks {
    justify-content: space-between;
  }
}

@media (max-width: 810px)	{
  .cards {
    grid-template-columns: repeat(2,minmax(220px,360px));
  }
  .header__categories ul {
    grid-template-columns: repeat(2, 50%);
  }
  .params {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-top: 1rem;
  }
  .pagination {
    margin-top: .5rem;
  }
  #select_category  {
    width: 100%;
  }
}


@media (max-width: 768px)	{
  .header__search {
    display: none;
  }
  .menu__search {
    display: block;
  }
  .promo .container {
    background: none;
  }
  .header__category {
    margin: 0;
  }
  .page__cols {
    flex-direction: column-reverse;
  }
  .left__menu {
    max-width: 100%;
  }
  .my__menu li a {
    font-size: .75rem;
  }
  #cookie__accept {
    width: 100%;
    max-width: none;
    margin: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    padding: 1rem;
    font-size: .9rem;
    margin-bottom: -1rem;
    z-index: 3;
    padding: 1.5rem 2rem;
  }
  #cookie__accept h2 {
    font-size: 1rem;
  }
  .test__cols {
    flex-direction: column;
    gap: 0;
  }
  .test__header {
    display: flex;
  }
  footer {
    padding-bottom: 5.5rem;
  }
  .test__params {
    position: fixed;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    flex-direction: row;
    width: auto;
    padding: 1.5rem 2rem;
    border-radius: 0;
    background: #ffffff;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08), 0 1px 4px rgba(0, 0, 0, .05);
    border-top: 1px solid #efefef;
    font-size: 1.15rem;
  }
  .stat__category {
    display: none;
  }
  .stat__row img {
    width: 1.7rem;
    height: 1.7rem;
  }
  .test__user {
    display: none;
  }
  .test__stat {
    flex-direction: row;
    gap: .5rem;
  }
  .test__stat .stat__row {
    padding: 0;
    background: none;
    gap: .1rem;
    line-height: 1;
  }
  .test__stat .stat__row > div:last-child > div:first-child {
    display: none;
  }
  .params__button {
    background-color: transparent;
    font-size: 0;
    padding: 0;
    width: 2rem;
    flex-shrink: 0;
    background-position: 50%;
    border-radius: 0;
    background-size: 1.5rem;
  }
  .test__rating {
    gap: .5rem;
  }
  .test__rating .params__button {
    font-size: 1.2rem;
    background-position: 0 50%;
    padding-left: 1.7rem;
    width: auto;
  }
  .test__actions {
    display: flex;
    flex-direction: row;
    gap: .5rem;
  }
  .share__modal dl {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}
@media (max-width: 600px)	{
  .cards {
    grid-template-columns: repeat(1,minmax(220px,600px));
  }
  .promo h1 {
    font-size: 2.75rem;
  }
  .header__category span  {
    display: none;
  }
  .header__categories ul {
    grid-template-columns: repeat(1, 100%);
  }
  .promo ul {
    margin: .5rem 0 1.5rem 0;
  }
  .promo {
    background-color: #6FA4CB;
    color: #FFFFFF;
    height: auto;
    padding: 2rem 0;    
  }
  .promo li {
    background: none;
    padding-left: 0;
    margin: 0.5rem 0;
    line-height: 1.1;
  }
  .header__categories {
    bottom: 0px;
    top: 4.5rem;
    left: 0px;
    right: 0px;
    position: fixed;
    margin: 0;
    border-radius: 0;
    overflow-y: scroll;
  }
  .card__image {
    height: auto;
  }
  .container {
    padding: 0 1rem;
  }
  .category_list {
    grid-template-columns: repeat(1, minmax(15%, 100%));
  }
  .my__menu {
    display: none;
  }
  .test__save_buttons {
    flex-direction: column;
  }
  .test__params {
    padding: 1.5rem 1rem;
  }
  #cookie__accept {
    padding: 1.5rem 1rem;
  }
  .image__block .image__preview {
    width: 270px;
    height: 135px;
  }
  .image__user_avatar .image__preview {
    width: 200px;
    height: 200px;
  }
  .user__blocks {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .profile__links {
    gap: 1rem;
    align-items: normal;
    flex-direction: column;
  }
  footer dl li  {
    margin: .3rem 0;
  }
  footer a  {
    font-size: .9rem;
  }
}
@media (max-width: 450px)	{
  .result__buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .header__user span  {
    max-width: 6rem;
  }
  .input__half input:nth-child(2) {
    width: 100%!important;
  }
}
@media (max-width: 425px)	{
  .step {
    padding: 1rem;
  }  
  .test__stat {
    font-size: 1rem;
    gap: .3rem;
  }
  .stat__row img {
    width: 1.5rem;
    height: 1.5rem;
  }
  .params__button {
    background-size: 1.3rem;
  }
  .test__rating .params__button  {
    font-size: 1rem;
  }
  .test__actions {
    gap: .1rem;
  }
}
@media (max-width: 375px)	{
  html	{
    font-size: 12px;
  }
}












::-webkit-input-placeholder { /* Chrome */
}
:-ms-input-placeholder { /* IE 10+ */
}
::-moz-placeholder { /* Firefox 19+ */
  opacity: 1;
}
:-moz-placeholder { /* Firefox 4 - 18 */
  opacity: 1;
}



