@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Regular.ttf");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto";
  src: url("./fonts/Roboto-Light.ttf");
  font-weight: 300;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-block;
  transition: 0.2s;
  font-weight: 400;
  text-align: center;
}
.btns {
  display: inline-block;
  transition: 0.2s;
  font-weight: 400;
  text-align: left;
}

html {
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 300;
  overflow-x: hidden;
  background-color: #f6f3f3;
  color: #161616;
}

.container {
  max-width: 1200px;
  border: 0px solid #c30030;
  padding: 0 20px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;

  font-size: 15px;
  margin-bottom: 30px;
  margin-top: 20px;
}

.breadcrumb li:first-child::before {
  content: "";
}

.breadcrumb li::before {
  content: "/";
}

.breadcrumb__current-item {
  color: #a8a8a8;
}

.section {
  padding: 80px 0;
}

.primary-btn {
  background-color: #c30030;
  border-radius: 100px;
  padding: 11px 20px;
  font-size: 20px;
  color: #f0f0f0;
  border: 2px solid #c30030;
}

.primary-btn:hover {
  background-color: #f0f0f0;
  color: #c30030;
}

.primary-btn:active {
  transform: scale(0.95);
}

.secondary-btn {
  background-color: #f6f3f3;
  border-radius: 100px;
  padding: 11px 20px;
  font-size: 20px;
  color: #c30030;
  border: 2px solid #f6f3f3;
}

.secondary-btn:hover {
  background-color: #f0f0f0;
  border: 2px solid #c30030;
  color: #c30030;
}

.secondary-btn:active {
  transform: scale(0.95);
}

h1,
h2 {
  font-size: 35px;
  color: #444;
  font-weight: 400;
  text-transform: uppercase;
}

h2 {
  font-size: 35px;
  color: #444;
  font-weight: 400;
  text-align: center;
}

/* header */
.header {
  position: absolute;
  padding-top: 64px;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 5;
}

.header_vtoro {
  position: absolute;
  padding-top: 19px;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 5;
  border-bottom: 0.03px solid #c30030;
  padding-bottom: 25px;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 2;
  max-width: 822px;
}

.nav__links {
  font-size: 20px;
  text-wrap: nowrap;
  transition: 0.2s;
}

.nav__links:hover {
  opacity: 0.8;
}

.logo-img__wrapper {
  width: 179px;
  height: 36px;
  display: block;
}

.logo-img__wrapper img {
  object-fit: contain;
}

/* hero */
.section_hero {
  min-height: 810px;
  padding-top: 244px;
  position: relative;
  overflow: hidden;
}

.hero_background {
  background: #f2eaea;
  position: absolute;
  left: -100%;
  right: 38%;
  top: -200%;
  bottom: -100%;
  transform: rotate(10deg);
}

.hero_photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;

  pointer-events: none;
}

.hero_photo img {
  object-position: 0% 0%;
}

.hero__content {
  position: relative;
  max-width: 55%;
}

.red-text {
  color: #c30030;
}

.hero__info {
  max-width: 602px;
  width: 100%;
  margin: 90px 0 130px;
  font-size: 24px;
  line-height: 36px;
}

.hero__btn-wrapper {
  max-width: 605px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero-btn__info {
  color: #c30030;
  font-weight: 300;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 0px solid #445;
  text-wrap: nowrap;
}

.hero-btn__info::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url("./img/users-2.svg") 50% / contain no-repeat;
}

@media (max-width: 1170px) {
  .hero__btn-wrapper {
    flex-direction: column;
  }

  .hero_photo {
    width: 60%;
  }
}

@media (max-width: 1000px) {
  br {
    display: none;
  }

  .hero__content {
    position: relative;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f6f3f3ee;
    text-align: center;
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }

  .hero_background {
    display: none;
  }

  .hero_photo {
    width: 100%;
  }

  .hero__info {
    max-width: 512px;
    width: 100%;
    margin: 30px 0 40px;
    font-size: 24px;
    line-height: 36px;
    min-height: 206px;
  }

  .section_hero {
    padding-top: 90px;
  }

  h1,
  h2 {
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
  }
}

@media (max-width: 600px) {
  .hero__content {
    padding: 20px;
  }
}

/* section possibility */
.possibility-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
  margin-top: 50px;
}

.possibility-item {
  padding: 16px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: 0.3s;
  min-height: 246px;
}

.possibility-item__title {
  font-size: 24px;
  font-weight: 400;
}

.possibility-item__info {
  font-size: 15px;
}

@media (max-width: 900px) {
  .possibility-items {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

@media (max-width: 700px) {
  .possibility-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .possibility-items {
    grid-template-columns: 1fr;
  }
}

/* section_whom */
.section_whom {
  background: #ffffff;
}

/* .whom-items {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 20px;
   margin-top: 60px;
}

.whom-item__img-wrapper {
   width: 80px;
   height: 80px;
}

.whom-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   min-height: 178px;
}

.whom-item__img {
   object-fit: contain;
}

.whom-item__title {
   margin-top: 20px;
   font-size: 24px;
   font-weight: 400;
} */

.whom-items {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  width: 100%;
}

.whom-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.whom-item-link:hover .whom-item {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(195, 0, 48, 0.15);
}

.whom-item {
  /* aspect-ratio: unset; */
  /* height: 100%; */
  height: auto;
  display: flex;
  flex-direction: column;

  aspect-ratio: 3 / 4.26;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  border: 0.6px solid #e8e8e8;
}

.whom-item__img {
  border-radius: 12px 12px 0 0;
  opacity: 0.68;
  overflow: hidden;
  width: 100%;
  height: 75%;

  flex-shrink: 0;
}

.whom-item__status {
  position: absolute;
  right: 8px;
  bottom: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  z-index: 4;
 
}

.whom-item__status.online {
  background-color: #5DEE50; border: 0.6px solid #999;
}

.whom-item__status.offline {
  background-color: #fff;border: 0.6px solid #ccc;
}
.whom-item__status.davno {
  background-color: #999;
}

.whom-item__name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  font-weight: 300;
  background: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  color: #c30030;
  backdrop-filter: blur(25px);
  z-index: 2;
  text-align: left;
  height: 27%;

}

.whom-item__age {
  color: #000;
  font-weight: 200;
  font-size: 14px;
}

.whom-items__search {
  margin-top: 23px;
  grid-template-columns: repeat(5, 1fr);
  /* grid-auto-rows: 1fr; */
    grid-auto-rows: min-content;
  align-items: start;
}

/* Мобильная адаптация для личного кабинета */
@media (max-width: 768px) {
    .right_menu {
        display: none;
    }
    
    .desktop-12 > ol > div[style*="display: flex"] {
        flex-direction: column;
        gap: 0;
    }
    
    .whom-items__search {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto;
    }
	
	.whom-item__name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  font-weight: 300;
  background: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  color: #c30030;
  backdrop-filter: blur(25px);
  z-index: 2;
  text-align: left;
  height: 36%;

}


}

/* Для очень маленьких экранов */
@media (max-width: 380px) {
    .whom-items__search {
        grid-template-columns: 1fr;
    }
}

/* @media (max-width: 1000px) {
  .right_menu{
    display: none;
  }
}

@media (max-width: 700px) {
  .whom-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .whom-item__title {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 400;
  }
} */

/* reg */
.section_reg {
  background: #f2eaea;
}

.section_reg-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  justify-content: center;
}

.reg__text {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  line-height: 25px;
}

/* swiper */

.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.reviews-container {
  display: flex;
  align-items: center;
  /* transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); */
  gap: 45px;
  padding: 20px 0;
  will-change: transform;
  cursor: grab;
  user-select: none;
  touch-action: pan-y pinch-zoom;
}

.review,
.review-clone {
  flex: 0 0 328px;
  background: white;
  border-radius: 12px;
  padding: 16px;
  opacity: 0.7;
  transform: scale(0.9);
  will-change: transform, opacity;
}

.review.active,
.review-clone.active {
  flex: 0 0 414px;
  opacity: 1;
  transform: scale(1);
}

.review:not(.active) .review-content p,
.review-clone:not(.active) .review-content p {
  display: -webkit-box;
  /* -webkit-line-clamp: 4; */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.avatar {
  min-width: 50px;
  max-width: 50px;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  overflow: hidden;
}

.review-content {
  margin-bottom: 16px;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  display: flex;
  align-items: center;
  gap: 10px;
}

.star {
  width: 18px;
  height: 18px;
  background: url("./img/star.svg") 50% / contain no-repeat;
}

.star_null {
  width: 18px;
  height: 18px;
  background: url("./img/star_null.svg") 50% / contain no-repeat;
}

.rating {
  font-size: 13px;
  color: #a8a8a8;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.nav-button {
  background: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background: #f0f0f0;
  transform: scale(1.1);
}

.nav-button:active {
  transform: scale(0.95);
}

.nav-button svg {
  width: 24px;
  height: 24px;
  color: #333;
}

.review-item {
  max-width: 414px;
  margin: 0 auto;
  width: 100%;
  max-height: 245px;
  background: #ffffff;
  padding: 16px 16px 24px 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.user-feed__img-wrapper {
  min-width: 50px;
  height: 50px;
  border-radius: 100px;
  overflow: hidden;
}

.user-feed__desc {
  font-size: 13px;
  color: #a8a8a8;
}

@media (max-width: 600px) {
  .review.active,
  .review-clone.active {
    flex: 0 0 100%;
  }
}

/* footer */
.footer {
  background: #404040;
  padding-top: 68px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 50px;
}

.footer-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.footer-link:hover .footer-link__title {
  color: #c30030;
}

.footer-link:nth-child(2n) {
  border-left: 1px solid #353535;
  border-right: 1px solid #353535;
}

.footer-link__title {
  font-size: 20px;
  color: #f6f3f3;
}

.footer-link__icon {
  background: #353535;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyrigth {
  text-align: center;
  color: #787878;
  padding: 30px;
  border-top: 1px solid #353535;
}

@media (max-width: 700px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-link:nth-child(2n) {
    border-left: none;
    border-right: none;
  }
}

/* burger */
.burger-checkbox {
  position: fixed;
  visibility: hidden;
}

.burger {
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: block;
  border: none;
  background: transparent;
  width: 40px;
  height: 26px;
}

.burger::before,
.burger::after {
  content: "";
  left: 0;
  position: absolute;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 10px;
  background: #000000;
}

.burger::before {
  top: 0;
  box-shadow: 0 11px 0 #000000;
  transition: box-shadow 0.3s 0.15s, top 0.3s 0.15s, transform 0.3s;
}

.burger::after {
  bottom: 0;
  transition: bottom 0.3s 0.15s, transform 0.3s;
}

.burger-checkbox:checked + .burger::before {
  top: 11px;
  transform: rotate(45deg);
  box-shadow: 0 6px 0 rgba(255, 255, 255, 0);
  transition: box-shadow 0.15s, top 0.3s, transform 0.3s 0.15s;
}

.burger-checkbox:checked + .burger::after {
  bottom: 11px;
  transform: rotate(-45deg);
  transition: bottom 0.3s, transform 0.3s 0.15s;
}

.menu-list {
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 42px 10px;
  margin: 0;
  background: #000;
  list-style-type: none;
  transform: translateX(-100%);  color: #fff;
  
  width: 70%;
  height: 800vh;
  text-align: left;
  z-index: 20;
}

.menu-item {
  display: block;
  padding: 8px;
  color: #fff;
  font-size: 18px;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.burger-checkbox:checked ~ .menu-list {
  transform: translateX(0);
}

.desktop-hidden {
  display: none;
}

@media (max-width: 830px) {
  .mobile-hidden {
    display: none;
  }

  .header {
    position: fixed;
    padding: 10px 0;
    background: #f2eaea;
    border-bottom: 0px solid #c30030;
  }

  .header_vtoro {
    position: fixed;
    padding: 10px 0;
    background: #f2eaea;
    border-bottom: 0px solid #c30030;
  }

  .desktop-hidden {
    display: block;
  }
}

@media (max-width: 600px) {
  h1,
  h2 {
    font-size: 30px;
  }

  .hero__info {
    font-size: 20px;
  }

  .btn {
    width: 100%;
  }

  .hero-btn__info {
    font-size: 16px;
  }
}

/* auth */
.section_auth {
  overflow: hidden;
  position: relative;
  padding-top: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section_auth__content {
  position: relative;
  width: 100%;
  padding: 0 20px;
  margin-top: 80px;
  margin-bottom: 200px;
}

.form {
  padding: 48px 24px;
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border-radius: 12px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 1rem;
}

.form-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.logo-mini__wrapper {
  width: 38px;
  height: 38px;
}

.logo-mini__wrapper img {
  object-fit: contain;
}

.form-header__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: #323232;
  max-width: 250px;
}

.input-group {
  position: relative;
    line-height: 31px;
}

.icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.toggle-password {
  left: auto;
  right: 1rem;
  cursor: pointer;
  transition: fill 0.3s ease;
}

.toggle-password:hover {
  fill: #323232;
}

.eye-closed {
  display: none;
}

.show-password .eye-open {
  display: none;
}

.show-password .eye-closed {
  display: block;
}

input {
  width: 100%;
  padding: 1rem 3rem;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus {
  outline: none;
  border-color: #c30030;
}

button {
  width: 100%;
  cursor: pointer;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

.error {
  animation: shake 0.3s ease-in-out;
  border-color: #ff4747 !important;
}

.form__btn-group {
  display: flex;
  gap: 12px;
}

.form-link {
  text-align: center;
  color: #c30030;
  font-weight: 400;
}

@media (max-width: 500px) {
  .form__btn-group {
    flex-direction: column;
    gap: 24px;
  }

  .form {
    padding: 38px 15px;
  }

  .section_auth__content {
    margin-top: 20px;
  }
}

.message-group {
  font-size: 18px;
  font-weight: 400;
}

.message_ok {
  color: green;
}

.message_no {
  color: #c30030;
}

.form__btn-group .btn {
  width: 100%;
}

.terms-group {
  margin-bottom: 1.5rem;
}

.terms-label {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #666;
  user-select: none;
}

.terms-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.terms-label:hover input ~ .checkmark {
  border-color: #c30030;
}

.terms-label input:checked ~ .checkmark {
  background-color: #c30030;
  border-color: #c30030;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.terms-label input:checked ~ .checkmark:after {
  display: block;
}

.terms-text {
  line-height: 1.4;
}

.terms-text a {
  color: #c30030;
  text-decoration: none;
}

.terms-text a:hover {
  text-decoration: underline;
}

.third-btn {
  border-radius: 100px;
  padding: 11px 20px;
  font-size: 20px;
  background-color: #f3f3f3;
  border: 2px solid #c30030;
  color: #c30030;
}

.third-btn:hover {
  background-color: #c30030;
  color: #fff;
}

.third-btn:active {
  transform: scale(0.95);
}

/* appointment */
.section_appointment {
  overflow: hidden;
  position: relative;
  padding-top: 110px;
}

.section_appointment__content {
  position: relative;
  width: 100%;
  /* margin-top: 80px; */
  /* margin-bottom: 200px; */
}

.master__img-wrapper {
  max-width: 275px;
  width: 100%;
  height: 275px;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.master__img {
  object-fit: cover;
}

.master__name {
  font-weight: 400;
  font-size: 35px;
  text-transform: none;
  margin-bottom: 10px;
}

.master__desc {
  color: #323232;
  font-size: 16px;
}

.master__main {
  display: grid;
  gap: 26px;
  grid-template-columns: auto 275px;
}

.master__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.appointment__header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-style: 15px;
  margin-bottom: 20px;
}

.appointment__items {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.appointment__item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #c30030;
  color: #c30030;
  font-weight: 600;
  border-radius: 7px;
  cursor: pointer;
  transition: 0.2s;
  font-size: 18px;
  font-weight: 400;
}

.appointment__item:hover {
  border: 1px solid #c30030;
  color: #ffffff;
  background: #c30030;
}

.appointment__item_data {
  width: 80px;
  height: 60px;
}

.data-appointment {
  max-width: 750px;
}

.disabled-appointment__item {
  pointer-events: none;
  border: 1px solid #ccc;
  color: #ccc;
  background-color: #00000005;
}

.selected-appointment__item {
  background: #c30030;
  color: #ffffff;
  border: 1px solid #c30030;
}

.selected-appointment__item:hover {
  color: #ffffff;
}

.appointment__item_time {
  width: 75px;
  height: 45px;
  font-size: 15px;
}

.two_hours {
  width: 190px;
}

.three_hours {
  width: 300px;
}

.more-data-link {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #c30030;
}

@media (max-width: 870px) {
  .master__main {
    display: grid;
    gap: 26px;
    grid-template-columns: auto;
  }

  .master__img-wrapper {
    grid-row: 1;
    margin: 0 auto;
  }

  .master__info {
    text-align: center;
  }

  .appointment__items {
    gap: 10px;
  }

  .two_hours {
    width: 170px;
  }

  .three_hours {
    width: 260px;
  }

  h2 {
    font-size: 35px;
    text-align: center;
    margin-top: -56px;
  }

  .desktop-12 ol {
    font-size: 20px;
    line-height: 1.8;
  }

  .poloska {
    display: none;
  }
}

.desktop-12 {
  margin-top: 26px;
  position: relative;
}

.desktop-12 li {
  font-size: 16px;
  margin: 6px;
  padding: 6px;
}

.desktop-12 a {
  font-size: 16px;
  color: #c30030;
  font-weight: 400;
}

.section_possibility {
  /* margin-top:76px; */
  padding-top: 166px;
  position: relative;
  overflow: hidden;
}

.section_possibility__content {
  position: relative;
}

.desktop-12 ol,
.desktop-12 .wrapper {
  font-size: 16px;
  line-height: 1.8;
}

.probel {
  margin: 26px;
}

.plashka {
  background: rgba(242, 234, 234, 0.45);
  padding: 4px 13px;
  border-radius: 43px;
  color: #444;
  border: 0px solid #fff;
}

.poloska {
  border-top: 1px solid #c30030;
  padding-top: 7px;
}

.h_menu {
  border: 0px solid #c30030;
  padding-top: 7px;
  margin-bottom: 26px;
  margin-top: -148px;
}

.h_menu > a {
  border: 1px solid #c30030;
  padding: 5px 15px;
  margin: 4px;
  font-size: 14px;
  border-radius: 7px;
  line-height: 41px;
  background: #fff;
}

.h_menu > a:hover {
  background: #c30030;
  color: #fff;
}

.h_menus {
  border: 0px solid #c30030;
  padding-top: 7px;
  margin-bottom: 26px;
  margin-top: -8px;
}

.h_menus a {
    display: inline-block;
    border: 1px solid #444;
    padding: 8px 12px 6px 12px;
    margin: 4px;
    font-size: 14px;
    border-radius: 3px;
    line-height: 1;
    background: #fff;
    color: #444;
}

.h_menus a:hover {
  background: #444;
  color: #fff;
}

.activesss a {
  background: #c30030;
  color: #fff;
}

.h_menuhh {
  margin-top: -14px;
}

.h_menuhh a {
  border-top: 1px solid #888;
  border-right: 1px solid #888;
  padding: 5px 15px;
  margin: 1px;
  font-size: 14px;
  line-height: 41px;
  color: #888;
}

.password-form {
  max-width: 470px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.password-form__message {
  color: green;
  background: #fff;
  padding: 11px 23px;
}

.password-form__message_red {
  color: #c30030;
}

@media (max-width: 1000px) {
  .password-form {
    margin: 0 auto;
  }
}

.appointment-form {
  margin-top: 30px;
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.appointment-form .primary-btn {
  width: fit-content;
  margin-left: auto;
}

.radio-input {
  position: relative;
  color: #c30030;
  background-color: #fff;
  border-radius: 100px;
  width: 100%;
  text-align: center;
}

.radio-input input {
  position: absolute;
  z-index: -2;
  width: 1px;
  height: 1px;
  opacity: 0.1;
}

.radio-input input + span {
  display: block;

  padding: 10px;
  border-radius: 100px;
  border: 1px solid #c30030;
  cursor: pointer;
}

.radio-input input:checked + span {
  background-color: #c30030;
  color: #ffffff;
}

.input-group_depth {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.input-group-time {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.radio-input_time {
  display: flex;
  align-items: center;
  gap: 6px;
}

.input-group-time input {
  width: fit-content;
  padding: 10px 10px;
  color: #c30030;
}

.input-group-time_radio {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-input_time input {
  width: fit-content;
  accent-color: #c30030;
  width: 20px;
  height: 20px;
}
.input-titile {
  margin-bottom: 13px;
  margin-top: 13px;
  font-weight: 400;
  /* max-width: 350px; */
}

@media (max-width: 1000px) {
  .appointment-form {
    margin: 0 auto;
    margin-top: 30px;
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 400px) {
  .input-group_depth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 8px;
  }

  .appointment-form .primary-btn {
    width: 100%;
    margin-left: auto;
  }
}

/* NEW */
.tab-content {
  display: none;
}
.active-content {
  display: block;
}
.active-tab {
  color: #c30030 !important;
}

.right_menu {
  min-width: 213px;
  padding: 14px;
  border-left: 1px solid #444;

  float: right;

  margin-right: 0px;
  margin-left: 30px;
  min-height: 420px;
}

.serc {
  font-size: 14px;
  
  line-height: 13.3px;
  height: 35%;
  background-color: #fff;
}

.serc_long {
  font-size: 14px;
  
  line-height: 13.3px;
  min-height: 35%;
  background-color: #fff;
}

.sercc {
  font-size: 11.7px; line-height: 19.3px;
}

  .kol {
      margin-top: 23px;
	   gap: 10px;
      grid-template-columns: repeat(6, 1fr);
      
  }
  
  .messag {
	  	  font-size:12px;line-height: 19.3px;
	  border: 0px solid #444;  border-radius: 4px;padding:2px 194px 0 0;margin-bottom:7px;
	  width: 620px;color:#888; min-height: 30px;  text-align: left;word-wrap:break-word;
  }
  
    .messag_moy {
	  	  font-size:13px;line-height: 19.3px;
	  border-top: 1px solid #ccc;  padding:12px 0 0 174px;margin-bottom:7px;
	  width: 100%;color:#D30909; min-height: 30px;  text-align: right;word-wrap:break-word;
  }
  
  .dates {
	  font-size:10px;color:#444;
  }
  
    .chelmess {
        font-size:12px;
        line-height: 13.3px;
        float:right;
        border: 1px solid #ccc;  
        border-radius: 4px;
        padding: 8px 15px;
        margin-bottom:7px;
        width: 450px;
        color:#444; 
        min-height: 110px;
    }

/*-------- CUSTOM --------*/

input.btn {
    cursor: pointer;
}

/*-- PROFILE --*/

.profile_left {
    width: calc(100% - 240px);
}
.profile_right {
    width: 240px;
}
.profile_form_field {
    max-width: 470px;
    margin-bottom: 20px;
}
.profile_form_cities {
  position: relative;
}
.profile_form_cities > .cities_list {
  position: absolute;
  pointer-events: none;
  opacity:0;
  transition: 0.3s;
  max-height:150px;
  width:100%;
  top:100px;
  border:1px solid #e6e6e6;
  border-radius:6px;
  box-shadow:0 1px 1px rgba(0,0,0, 0.2);
  background:#FFF;
  overflow:auto;
  &::-webkit-scrollbar {
    width:0px;
    height:0px;
  }
}
.profile_form_cities > .cities_list.active {
  opacity:1;
  pointer-events: auto;
  transition: 0.3s;
}
.profile_form_cities > .cities_list > .item {
  box-sizing:border-box;
  padding:0.5rem 1rem;
  transition: 0.3s;
  display:block;
  cursor:pointer;
  &:hover {
    background:#F5F3F1;
    transition: 0.3s;
  }
  &:first-child {
    border-top-left-radius:6px;
    border-top-right-radius:6px;
  }
  &:last-child {
    border-bottom-left-radius:6px;
    border-bottom-right-radius:6px;
  }
}
.profile_form_cities > .cities_list > .item.hide {
  display:none;
}
.profile_form_field:last-child {
    margin-bottom: 0;
}
.profile_form_field__submit {
    max-width: 100%;
}
.profile_form_label {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 10px;
}
.profile_form_field .input-titile {
    line-height: 1.25;
    font-size: 14px;
}
.profile_form_input input {
    padding: 1rem;
}
.profile_select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2rem;
    padding: 8px 32px 8px 12px;
    background-color: #fff;
    font-size: 16px;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='12' width='12' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 12,0 6,6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 12px;
    padding: 1rem;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    font-size: 1rem;
    width: 100%;
}
.profile_select:focus {
    border-color: #2684ff;
    outline: none;
}
.profile_form_input textarea {
    width: 100%;
    padding: 1rem 3rem;
    border: 1px solid #e6e6e6;color:#666;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    padding: 1rem;
    height: 175px;
}
.profile_form_submit {
    max-width: 470px;
}

/*-- CHAT --*/

.chat_left {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 12px;
    min-height: 520px;
    background-color: #fff;
    width: 210px;
}
.chat_user {
    margin-bottom: 7px;
}
.chat_user__admin {
    margin-bottom: 23px;
}
.chat_user:last-child {
    margin-bottom: 0;
}
a.chat_user_link {
    color: #444;
    display: block;
    font-size: 12.6px;
    font-weight: 300;
    line-height: 19.3px;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 8px 15px;
    text-decoration: none;
    width: 100%;
    transition: 0.25s;
	position: relative;
}
a.chat_user_link:hover {
    background: #444;
    border-color: #444;
    color: #fff;
}
.chat_center {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 12px;
    margin-left: 10px;
    background-color: #fff;
    width: calc(100% - 220px);

    /* фиксированная высота окна чата */
    height: 790px;

    /* чтобы содержимое раскладывалось колонкой:
       сообщения сверху, форма отправки снизу */
    display: flex;
    flex-direction: column;
}

.chelss {
    font-size:12px;
    line-height: 13.3px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding:8px 15px;
    margin-bottom:7px;
    width: 100%;
    color:#444; 
    min-height: 400px;
}
.chat_message_form__textarea {
    margin: 7px 0 0 auto;
    max-width: 450px;
}
.chat_message_form__textarea textarea {
    display: block;
    font-family: inherit;
    line-height: 17.3px;  font-size: 14px;
    border: 1px solid #ccc;  
    border-radius: 4px;
    padding: 15px;
    color:#444; 
    min-height: 160px;
    width: 100%;
}
.chat_message_form__submit {
    max-width: 200px;
    margin: 7px 0 0 auto;
}
.chat_message_form__submit .btn {
    font-size: 14px;
}

/*-- FAVORITES --*/

.profile_favorites {
    max-width: 812px;
}
.profile_favorite {
    border: 1px solid #444;
    background-color: #fff;
    padding: 10px 37px 10px 25px;
    margin: 0 0 7px;
    font-size: 14px;
    position: relative;
    width: 100%;
}
.profile_favorite.online:after {
    background: #4D9B08;
    content: '';
    border-radius: 50%;
    position: absolute;
    top: 19px;
    right: 15px;
    height: 11px;
    width: 11px;
}
.profile_favorite_image {
    margin-right: 15px;
    height: 30px;
    width: 30px;
}
.profile_favorite_image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.profile_favorite_image + .profile_favorite_title {
    padding-top: 3px;
    width: calc(100% - 45px);
}

/*-- FAVORITES TOP PEOPLES --*/

.favorite_peoples {
    position: relative;
    margin-bottom: 40px;
}
.favorite_peoples_link a {
    background: #c30030;
    border-radius: 5px;
    color: #fff;
    clip-path: polygon(0 0,calc(100% - 20px) 0,100% 50%,calc(100% - 20px) 100%,0 100%);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 13px;
    text-transform: uppercase;
  
    text-decoration-skip-ink: none;
    height: 100%;
    width: 120px;
    z-index: 2;
    transition: 0.25s;
}
.favorite_peoples_link a:hover {
    text-decoration: none;
    opacity: 0.8;
}
.favorite_peoples_items {
    padding-left: 100px;
    gap: 0 5px;
}
.favorite_peoples_item {
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.favorite_peoples_item:after {
    content: '';
    display: block;
    padding-top: 100%;
}
.favorite_peoples_item a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    transition: 0.25s;
}
.favorite_peoples_item a:hover {
    opacity: 0.9;
}
.favorite_peoples_item img {
    transition: 0.25s;
	 opacity: 0.68;
}
.favorite_peoples_item a:hover img {
    transform: scale(1.05);
}

/*-- USER PAGE --*/

.user_main_title {
    color: #c30030;
    font-size: 35px;
    font-weight: 400;
    line-height: 1.15;
}
.user_main_title span {
    display: inline-block;
    position: relative;
    vertical-align: top;
}
.user_main_top.online .user_main_title span {
    padding-right: 20px;
}
.user_main_top.online .user_main_title span:after {
    background: #4D9B08;
    content: '';
    border-radius: 50%;
    position: absolute;
    top: 16px;
    right: 0;
    height: 11px;
    width: 11px;
}
.user_main_subtitle {
    font-size: 16px;
    line-height: 1.15;
    margin-top: 10px;
}
.user_main_general {
    margin-top: 20px;
}
.user_main_left {
    width: 320px;
}
.user_main_right {
    padding-left: 40px;
    width: calc(100% - 320px);
}
.user_main_avatar {
    background: #fff;border-radius:14px;
    font-size: 0;
    position: relative;
    font-size: 0;
}
.user_main_avatar:after {
    content: '';
    display: block;
    padding-top: 100%;
}
.user_main_avatar img {
    object-fit: cover;
    position: absolute;
    left: 20px;
    top: 20px;
    height: calc(100% - 40px);
    width: calc(100% - 40px);
}
.user_main_actions {
    margin-top: 20px;
}
.user_main_btn .btn {
    color: #f0f0f0;
    width: 100%;
}
.user_main_btn .btn:hover {
    color: #c30030;
}
.user_main_tabs_wrapper {
    background: #fff;
    border-radius: 5px;
}
.user_main_tabs ul li {
    border-color: #ccc;
    border-style: solid;
    border-width: 1px 1px 1px 0;
    cursor: pointer;
    margin: 0;
    padding: 5px;
    text-align: center;
    font-size: 14px;
    flex: 100%;
    transition: 0.25s;
}
.user_main_tabs ul li:first-child {
    border-left-width: 1px;
    border-radius: 5px 0 0 0;
}
.user_main_tabs ul li:last-child {
    border-radius: 0 5px 0 0;
}
.user_main_tabs ul li.active,
.user_main_tabs ul li:hover {
    background: #c30030;
    border-color: #c30030;
    color: #fff;
}
.user_main_tabs_items {
    border-color: #ccc;
    border-style: solid;
    border-width: 0 1px 1px 1px;
    border-radius: 0 0 5px 5px;
    min-height: 352px;
}
.user_main_tabs_item {
    padding: 10px 15px;
}
.user_main_info_basic table {
    width: 100%;
}
.user_main_info_basic table tr td:first-child {
    color: #c30030;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.15;
    width: 170px;
}
.user_main_info_basic table tr td:last-child {
    font-size: 16px;
    line-height: 1.15;
}
.user_main_info_other {
    margin-top: 20px;
}
.user_main_other_item {
    margin-bottom: 20px;
}
.user_main_other_item:last-child {
    margin-bottom: 0;
}
.user_main_other_title {
    color: #c30030;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.15;
}
.user_main_other_value {
    margin-top: 10px; font-size: 14px;color:#444;
    line-height: 1.35;
}
.user_main_return {
    margin-bottom: 20px;
}
.user_main_return a {
    background: rgb(195, 0, 48, 10%);
    display: inline-block;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    font-size: 14px;
    padding: 5px 15px;
    vertical-align: top;
    transition: 0.25s;
}
.user_main_return a:hover {
    text-decoration: none;
    opacity: 0.7;
}

.d_flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.f_wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.f_wrap_reverse {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.f_no_wrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.f_row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.f_direction_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.j_content_start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.j_content_end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.j_content_center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.j_content_between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.a_items_start {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.a_items_end {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.a_items_center {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

/*-- RESPONSIVE --*/

.profile_header {
    padding-top: 7px;
    margin-bottom: 26px;
    margin-top: -148px;
}
.profile_header .h_menu {
    padding-top: 0;
    margin-bottom: 0;
    margin-top: 0;
}
.profile_header_top .menu {
    display: none;
}
.profile_header_top .menu-list {
    position: fixed;
}
.burger_overlay {
    background: rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 19;
    opacity: 0;
    visibility: hidden;
}
.burger-checkbox:checked ~ .burger_overlay {
    opacity: 1;
    visibility: visible;
}
.profile_header_top .burger {
    z-index: 25;
}
.profile_header_top .menu-item {
    color: #fff;
}
.chat_btn,
.chat_btn_close {
    display: none !important;
}
.chat_btn_close {
    background: #101010;
    position: absolute;
    left: 100%;
    top: 0;
    height: 50px;
    width: 50px;
    z-index: 20;
}
.chat_btn_close:before,
.chat_btn_close:after {
    background: #fff;
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    height: 3px;
    width: calc(100% - 10px);
}
.chat_btn_close:before {
    transform: translateY(-50%) rotate(45deg);
}
.chat_btn_close:after {
    transform: translateY(-50%) rotate(-45deg);
}
.chat_btn {
    display: block;
    border-radius: 0;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
    .chat_btn,
    .chat_btn_close {
        display: block !important;
    }
    .chat_left {
        background: #000;
        border: none;
        border-radius: 0;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 19;
        height: 100vh;
        max-width: 360px;
        transform: translateX(-150%);
        width: 100%;
        transition: 0.25s;
    }
    .chat_left.active {
        transform: translateX(0);
    }
    .chat_left_inside {
        overflow: auto;
        height: 100%;
        max-width: 280px;
    }
    a.chat_user_link,
    span.chat_user_link {
        color: #fff !important;
        border-color: #fff;
    }
    .chat_center {
        width: 100%;
        margin-left: 0;
    }
    .chat_message_form__textarea {
        max-width: 100%;
    }
    .chat_message_form__submit {
        max-width: 100%;
    }
    .whom-items {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 860px) {
    .whom-items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .profile_header_top {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .profile_header_top .menu {
        display: block;
    }
    .profile_left {
        width: 100%;
    }
    .profile_form_field {
        margin-left: auto;
        margin-right: auto;
    }
    .profile_form_submit {
        margin: 0 auto;
    }
    .favorite_peoples_items {
        border-radius: 5px;
        overflow: scroll;
    }
    .favorite_peoples_item {
        flex: 100px 0 0;
    }
    .user_main_left {
        max-width: 240px;
        margin: 0 auto;
        width: 100%;
    }
    .user_main_right {
        padding-left: 0;
        margin-top: 30px;
        width: 100%;
    }
    .user_main_avatar img {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
    }
    .user_main_info_basic table tr td:first-child {
        width: inherit;
    }
    .user_main_info_basic table tr td:last-child {
        padding-left: 8px;
    }
}

@media screen and (max-width: 640px) {
    .whom-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 420px) {
    .chat_left {
        max-width: calc(100% - 50px);
    }
}

@media screen and (max-width: 375px) {
    .whom-items {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Блок сообщений прокручиваемый */
.chelss {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 5px;
}

/* кнопка «к новым сообщениям» */
#scroll_to_bottom_btn {
    position: absolute;
    top: -45px; /* кнопка НАД сообщениями */
    left: 50%;
    transform: translateX(-50%);
    background: #ff5e5e; /* цвет как у .btn.primary-btn  */
    color: #fff;
    padding: 6px 16px;
    border-radius: 18px;
    font-size: 14px;
    cursor: pointer;
    display: none;
    white-space: nowrap;
    z-index: 20;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: opacity 0.2s;
}


#scroll_to_bottom_btn:hover {
    background: #357ABD;
}

.chat_center {
    position: relative;
}

.messag,
.messag_moy {
    padding: 10px 14px;
    margin: 8px 0;font-size: 14px;
    max-width: 75%;
border-radius: 0 0 14px 0;
    line-height: 1.6;
    position: relative;
    backdrop-filter: blur(3px);
}

.messag {
    background: rgba(26, 238, 36, 0.09);
    color: #000;
    border-bottom-left-radius: 4px;
}

.messag_moy {
    background: rgba(26, 206, 238, 0.08);
    margin-left: auto;  color: #000;
    border-bottom-right-radius: 4px;
}

.messag .dates,
.messag_moy .dates {
    display: block;
    margin-top: 6px;
    font-size: 9px;
    opacity: 0.75;
}

.messag_moy {
    text-align: left;
}

.support_btn {
    margin-bottom: 8px;
}

/* Активный диалог выглядит как при наведении */
.chat_user__active .chat_user_link {
    background: #444 !important;
    border-color: #444 !important;
    color: #fff !important;
}

/* чтобы внутренние span тоже стали белыми */
.chat_user__active .chat_user_link span {
    color: #fff !important;
}

.malaya
{
	margin-top: 8px;padding: 5px 11px;
  font-size: 10px; width: 60%;
  color: #f0f0f0;
}

/* Левая колонка со списком диалогов */
.chat_left {
    /* чтобы колонка растягивалась по высоте экрана */
    max-height: 70vh;
}

/* Внутренний контейнер, который скроллится */
.chat_left_inside {
    max-height: 60vh;        /* подгони под свой дизайн, можно 100% или 80vh */
    overflow-y: auto;
    padding-right: 4px;      /* чтобы скролл не налезал на текст */
    -webkit-overflow-scrolling: touch; /* приятный скролл на iOS */
}

.dlina {
	
	height: 40%;
}

.malaya_krasn {
	background: #c30030;
	 position: absolute;
	height: 11px;
	 width: 11px;
	 right:6px;
	 bottom:6px;
	 border-radius:50%;
	 border: 1px solid #fff;
	 
}