@charset "UTF-8";
body {
  background-color: #bdd2d0;
}

.js_reg_auth {
  display: none !important;
}

.compass-img {
  position: absolute;
  width: 30%;
  z-index: -1;
  opacity: 0.5;
}

.header {
  background-color: white;
  border-radius: 0px 0px 30px 30px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__link {
  background: none;
  border: none;
  font-size: 18px;
  margin-bottom: 0;
}
.header .logo-img {
  width: 66px;
  height: 37px;
}
.header .points-container {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header a {
  text-decoration: none;
  color: black;
  position: relative;
}

.header a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #bdd2d0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.header a:hover::after {
  transform: scaleX(1);
}

.main {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}
.main .compass-content {
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  justify-content: space-between;
}
.main .compass-content h1 {
  font-weight: bold;
  font-size: 45px;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
}
.main .compass-content p {
  font-size: 20px;
}
.main .compass-content .more-content {
  display: flex;
  flex-direction: column;
}
.main .compass-content .more-content .info {
  display: flex;
  gap: 10px;
  margin-top: 5px;
  align-items: center;
  margin-bottom: 30px;
}
.main .compass-content .more-content .info h5 {
  font-size: 18px;
}
.main .compass-content .more-content .info .img-info {
  width: 50px;
}
.main .compass-content .more-content .more {
  cursor: pointer;
  display: flex;
  gap: 10px;
  font-size: 20px;
  width: 70%;
  padding: 20px;
  border: 1px solid #0A01BC;
  justify-content: center;
  margin-bottom: 40px;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.main .compass-content .more-content .more span {
  color: #0A01BC;
  transition: all 0.3s ease-in-out;
}
.main .compass-content .more-content .more .quotes-img {
  width: 40px;
  height: 30px;
}
.main .compass-content .more-content .more:hover {
  background-color: rgb(237, 231, 222);
  border: 1px solid rgb(237, 231, 222);
}
.main .compass-content .more-content .more:hover span {
  color: black;
}
.main .compass-content .popup-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
.main .compass-content .popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 60%;
  padding: 30px;
  background: rgb(237, 231, 222);
  transform: translate(-50%, -50%);
  z-index: 100;
  border-radius: 20px;
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.main .compass-content .popup span {
  color: rgb(111, 156, 161);
  font-weight: 600;
}
.main .compass-content .popup ul {
  list-style: none;
}
.main .compass-content .popup ul li {
  position: relative;
  padding-left: 30px;
  line-height: 2;
}
.main .compass-content .popup ul li::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  transform: translateY(-10%);
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.main .compass-content .popup ul li:nth-child(1)::before {
  background-image: url("assets/list-heart.png");
}
.main .compass-content .popup ul li:nth-child(2)::before {
  background-image: url("assets/list-heart.png");
}
.main .compass-content .popup ul li:nth-child(3)::before {
  background-image: url("assets/list-point.png");
}
.main .compass-content .popup ul li:not(:last-child) {
  margin-bottom: 15px;
}
.main .compass-content .popup-close {
  position: absolute;
  top: -10px;
  right: 5px;
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
}
.main .heart-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.main .heart-content {
  position: relative;
  width: 100%;
}
.main .heart-img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 50px;
  margin-bottom: -10px;
}
.main {
  /* Стили маркеров */
}
.main .marker {
  position: absolute;
  width: 20%; /* Размер маркера относительно сердца */
  height: auto;
  aspect-ratio: 1/1; /* Сохраняем квадратную форму */
  transform: translate(-50%, -50%); /* Центрируем маркер */
}
.main .marker-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main .marker[data-marker-id="1"] {
  top: 38.4%;
  left: 17.8%;
}
.main .marker[data-marker-id="1"].active img {
  content: url("assets/check-b-n.png");
}
.main .marker[data-marker-id="2"] {
  top: 18.8%;
  left: 43.9%;
}
.main .marker[data-marker-id="2"].active img {
  content: url("assets/check-g.png");
}
.main .marker[data-marker-id="3"] {
  top: 13%;
  left: 77.5%;
}
.main .marker[data-marker-id="3"].active img {
  content: url("assets/check-r.png");
}
.main .marker[data-marker-id="4"] {
  top: 77.5%;
  left: 79.3%;
}
.main .marker[data-marker-id="4"].active img {
  content: url("assets/check-clin-2.png");
}
.main .marker[data-marker-id="5"] {
  top: 76.5%;
  left: 27.7%;
}
.main .marker[data-marker-id="5"].active img {
  content: url("assets/check-y-n.png");
}

.videoTweets {
  background-color: rgb(246, 243, 238);
  padding-top: 50px;
  padding-bottom: 50px;
}
.videoTweets h1 {
  font-size: 35px;
}
.videoTweets .swiper-container {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}
.videoTweets .swiper-container .swiper-wrapper {
  box-sizing: border-box;
}
.videoTweets .swiper-container .swiper-slide {
  background: rgb(237, 231, 222);
  border-radius: 10px;
  padding: 20px;
  width: 500px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  min-height: 500px;
}
.videoTweets .swiper-container .swiper-slide .img-wrapper {
  position: relative;
}
.videoTweets .swiper-container .swiper-slide .img-wrapper .new-mark {
  width: 50px;
  height: auto;
  position: absolute;
  top: 7px;
  left: 7px;
}
.videoTweets .swiper-container .swiper-slide img {
  width: 100%;
  border-radius: 8px;
}
.videoTweets .swiper-container .swiper-slide h3 {
  font-weight: bold;
  margin: 15px 0 5px;
  font-size: 20px;
}
.videoTweets .swiper-container .swiper-slide p {
  font-size: 16px;
  flex-grow: 1;
}
.videoTweets .swiper-container .swiper-slide .card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.videoTweets .swiper-container .swiper-slide .card-bottom .points {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.videoTweets .swiper-container .swiper-slide .card-bottom .points img {
  width: 50px;
  height: 50px;
}
.videoTweets .swiper-container .swiper-slide .card-bottom .points.active img {
  content: url("assets/check-icon.png");
}
.videoTweets .swiper-container .swiper-slide .card-bottom .btn-container {
  display: flex;
  gap: 10px;
  border: 1px solid rgb(182, 0, 52);
  background: none;
  padding: 10px 20px;
  color: rgb(182, 0, 52);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}
.videoTweets .swiper-container .swiper-slide .card-bottom .btn-container a {
  text-decoration: none;
  color: rgb(182, 0, 52);
}
.videoTweets .swiper-container .custom-prev,
.videoTweets .swiper-container .custom-next {
  background: rgb(182, 0, 52);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 100%;
  transform: translateY(-50%);
  z-index: 10;
}
.videoTweets .swiper-container .custom-prev {
  left: 80%;
}
.videoTweets .swiper-container .custom-next {
  right: 12%;
}
.videoTweets .swiper-container .custom-prev::after,
.videoTweets .swiper-container .custom-next::after {
  font-size: 16px;
}
.videoTweets .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: rgb(182, 0, 52);
}
.videoTweets .swiper-pagination-progressbar {
  background: rgba(182, 0, 52, 0.24);
}
.videoTweets .swiper-horizontal > .swiper-pagination-progressbar, .videoTweets .swiper-pagination-progressbar.swiper-pagination-horizontal, .videoTweets .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .videoTweets .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  top: 606px;
  width: 78%;
}
.clinCase {
  background-color: rgb(246, 243, 238);
  padding-bottom: 30px;
}
.clinCase .clin-container {
  display: flex;
  justify-content: space-between;
}
.clinCase .clin-container .img-container {
  display: flex;
}
.clinCase .clin-container .img-container .clin-img {
  width: 70%;
}
.clinCase .clin-container .clin-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.clinCase .clin-container .clin-main h1 {
  font-weight: bold;
  font-size: 45px;
}
.clinCase .clin-container .clin-main p {
  font-size: 20px;
}
.clinCase .clin-container .clin-main .card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.clinCase .clin-container .clin-main .card-bottom .points {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.clinCase .clin-container .clin-main .card-bottom .points img {
  width: 50px;
  height: 50px;
}
.clinCase .clin-container .clin-main .card-bottom .points.active img {
  content: url("assets/check-icon.png");
}
.clinCase .clin-container .clin-main .card-bottom .btn-container {
  display: flex;
  gap: 10px;
  border: 1px solid rgb(182, 0, 52);
  background: none;
  padding: 10px 20px;
  color: rgb(182, 0, 52);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}
.clinCase .clin-container .clin-main .card-bottom .btn-container a {
  text-decoration: none;
  color: rgb(182, 0, 52);
}
@media screen and (min-width: 1540px) {
  .container {
    max-width: 1400px;
  }
}
@media screen and (max-width: 1200px) {
  .header .logo-img {
    width: 52px;
    height: 30px;
  }
  .main .compass-content {
    margin-top: 30px;
  }
  .main .compass-content .more-content {
    gap: 20px;
    margin-top: 20px;
  }
  .main {
    grid-template-columns: 1fr;
  }
  .main .heart-img {
    margin-top: 10px;
    margin-bottom: 0;
  }
  .videoTweets .swiper-container .custom-next {
    right: 7%;
  }
}
@media (max-width: 992px) {
  .main .compass-content .popup {
    font-size: 14px;
    width: 90%;
  }
  .main .compass-content .popup ul li {
    padding-left: 25px;
  }
  .main .compass-content .popup ul li::before {
    width: 50px;
    height: 50px;
  }
  .main .compass-content .popup ul li:not(:last-child) {
    margin-bottom: 5px;
  }
  .clinCase .clin-container {
    flex-direction: column;
  }
  .clinCase .clin-container .img-container {
    justify-content: center;
  }
  .clinCase .clin-container .img-container .clin-img {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .header {
    font-size: 14px;
    padding: 15px 20px;
  }
  .header__link {
    font-size: 14px;
  }
  .compass-img {
    width: 65%;
  }
  .main .compass-content p {
    font-size: 16px;
  }
  .main .compass-content h1 {
    font-size: 24px;
  }
  .main .compass-content .more-content .more {
    padding: 12px;
    font-size: 18px;
  }
  .main .compass-content .more-content .more .quotes-img {
    width: 30px;
    height: 20px;
  }
  .videoTweets .swiper-container .custom-prev,
  .videoTweets .swiper-container .custom-next {
    width: 30px;
    height: 30px;
  }
  .videoTweets .swiper-container .custom-next {
    right: 4%;
  }
  .videoTweets .swiper-container .custom-prev::after,
  .videoTweets .swiper-container .custom-next::after {
    font-size: 14px;
  }
}
@media (max-width: 573px) {
  .header {
    font-size: 14px;
    padding: 15px 20px;
  }
  .header__link {
    font-size: 12px;
  }
  .header .points-container {
    gap: 10px;
  }
  .info {
    margin-top: 0;
  }
  .info h5 {
    font-size: 14px;
  }
  .videoTweets .swiper-horizontal > .swiper-pagination-progressbar, .videoTweets .swiper-pagination-progressbar.swiper-pagination-horizontal, .videoTweets .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .videoTweets .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    top: 88%;
    width: 74%;
  }
  .videoTweets .swiper-container .swiper-slide {
    min-height: 450px;
  }
  .videoTweets .swiper-container .custom-prev,
  .videoTweets .swiper-container .custom-next {
    width: 30px;
    height: 30px;
    top: 92%;
  }
  .videoTweets .swiper-container .custom-next {
    right: 1%;
  }
  .videoTweets .swiper-container .custom-prev::after,
  .videoTweets .swiper-container .custom-next::after {
    font-size: 14px;
  }
}
.openModal {
  cursor: pointer;
}

.modal-overlay-custom {
  backdrop-filter: blur(10px);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}

.modal-block {
  margin-top: 16px;
  margin-bottom: 16px;
  width: 100%;
  height: 100%;
  padding: 25px 25px 30px;
  border-radius: 16px;
  background: #fff;
  max-height: calc(100vh - 32px);
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 30rem;
}
.modal-block.video {
  max-width: unset;
}
.modal-block.video .modal-block__section {
  padding-right: 0;
}
.modal-block.video .modal-block__section video {
  max-height: 80vh;
}
.modal-block__head {
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-block__head h3 {
  font-size: 24px;
  font-weight: 600;
  color: rgb(111, 156, 161);
  margin: 0;
  line-height: 1;
}
.modal-block__content {
  overflow-y: auto;
  position: relative;
  max-height: calc(100vh - 64px);
  min-height: 250px;
}
.modal-block__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-block p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.cross {
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  overflow-y: hidden;
}
.cross::after, .cross::before {
  content: "";
  height: 3px;
  border-radius: 2px;
  width: 24px;
  background-color: rgb(111, 156, 161);
  position: absolute;
}
.cross::before {
  transform: rotate(45deg);
}
.cross::after {
  transform: rotate(-45deg);
}

.js_reg_auth {
  display: none !important;
}

.vote-answer-item input[type=checkbox] {
  visibility: visible !important;
  position: relative !important;
}

.auth-form {
  display: flex;
  justify-content: center;
}
.auth-form .bx-system-auth-form {
  width: 100%;
}
.auth-form label, .auth-form noindex, .auth-form .bx-auth-lbl, .auth-form .bx-auth-serv-icons {
  display: none;
}
.auth-form table {
  width: 100%;
}
.auth-form input[type=submit] {
  background-color: rgb(133, 210, 219);
  border: none;
  border-radius: 20px;
  padding: 10px;
}
.auth-form input:focus-visible {
  outline: none;
  border-color: blue;
  border-style: solid;
}
.auth-form input[type=text], .auth-form input[type=password] {
  height: 2.5rem;
}
.auth-form tbody {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth-form tr:nth-child(5), .auth-form tr:nth-child(6), .auth-form tr:nth-child(7) {
  display: none;
}
.auth-form td {
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.auth-form .errortext {
  font-size: 1.5rem;
}

.auth-extras {
  display: flex;
  gap: 16px;
  margin-left: auto;
  margin-right: auto;
}

.my-registration {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  color: #000;
}
.my-registration:hover {
  color: #000;
}

/*# sourceMappingURL=style.css.map */
