*, body, h1, h2, h3, h4, h5, h6, p, span, a, li {
  font-family: "Montserrat", "Lora", "Times New Roman";
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #fff;
}

body::-webkit-scrollbar, #comments_list::-webkit-scrollbar, .modal-block__content::-webkit-scrollbar {
  width: 0.75rem;
  background-color: #E5E5E5;
}

body::-webkit-scrollbar-thumb, #comments_list::-webkit-scrollbar-thumb, .modal-block__content::-webkit-scrollbar-thumb {
  background-color: limegreen;
  cursor: pointer;
}

body::-webkit-scrollbar-track, #comments_list::-webkit-scrollbar-track, .modal-block__content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #E5E5E5;
}

@media screen and (max-width: 1540px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 12px;
  }
}
@media screen and (max-width: 992px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 9px;
  }
}
@media screen and (max-width: 576px) {
  html {
    font-size: 8px;
  }
}
@media screen and (min-width: 1540px) {
  .container {
    max-width: 1400px;
  }
}
.onlyD {
  display: none !important;
}

.onlyM {
  display: flex !important;
}

@media screen and (min-width: 768px) {
  .onlyD {
    display: flex !important;
  }
  .onlyM {
    display: none !important;
  }
}
.btn-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.btn-wrapper a {
  color: inherit;
}
.btn-wrapper .icon-bell {
  color: rgb(247, 147, 29);
  transition: transform 0.1s ease;
}
@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(-8deg);
  }
  75% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.btn-wrapper .icon-bell:hover {
  animation: shake 0.4s ease infinite;
}

.button-container {
  display: flex;
  justify-content: flex-start;
  margin: 20px 0;
}

.live-btn {
  background: linear-gradient(135deg, #178CE1, #DA1DDA, #178CE1);
  background-size: 200% 100%;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: gradientFlow 3s ease infinite;
  text-decoration: none;
  display: inline-block;
}

.live-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.live-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media (max-width: 768px) {
  .live-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.btn-vt {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background-color: #ad41ff;
  padding: 12px 24px;
  border-radius: 30px;
  cursor: pointer;
  color: white;
  font-weight: 500;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

@media screen and (max-width: 500px) {
  .btn-vt {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    font-size: 16px;
    padding: 10px 12px;
  }
}
.btn-vt:hover {
  text-decoration: none;
  color: white;
  background-color: limegreen;
}

.name {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 0.5rem;
  text-align: center;
  color: #555;
}

.trans {
  position: relative;
  margin-bottom: 40px;
}

.video {
  max-width: 90vw;
  max-height: 51vw;
  width: 52.8rem;
  height: 30rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.video__error {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
  margin: 0;
  text-align: center;
  background: #F7F7F7;
  z-index: 0;
}

.send_msg_form textarea {
  min-height: 64px;
}

.send_msg_form input[type=button] {
  font-size: 1.25rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.send_msg_form input[type=button]:hover {
  border: 1px solid #f1f1f1;
  color: #f1f1f1;
  background: limegreen;
}

.qu-title {
  font-size: 1.25rem;
  font-weight: 700;
  padding-top: 0;
  line-height: 0.8;
}

#comments_list .deleteMessage a {
  color: limegreen;
  padding: 0.25rem;
  transition: all 0.2s ease;
  border-radius: 3px;
}

#comments_list .deleteMessage a:hover {
  color: #f1f1f1;
  background: limegreen;
  text-decoration: none;
}

.cmItem {
  border-bottom: 1px solid #d3d3d3;
}

.control {
  gap: 2rem;
  background: #F7F7F7;
  padding: 2rem;
  border-radius: 4px;
  box-shadow: -1px 4px 11px 0px rgba(50, 50, 50, 0.3);
}

.control__buttons {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.control h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #555;
  text-align: center;
  margin: 0;
}

.control h2 span {
  font-size: 1rem;
  font-weight: 500;
}

.control__btn {
  border: 3px solid #d8d8d8;
  color: #a7a7a7;
  background: #d8d8d8;
  border-radius: 100px;
  pointer-events: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.7rem;
  height: 4.7rem;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0;
}

.control__btn.active {
  border: 3px solid limegreen;
  color: #f1f1f1;
  background: limegreen;
  animation: pulsar 3s infinite;
  cursor: pointer;
  pointer-events: all;
}

.control__btn.active:hover {
  color: limegreen;
  background: #f1f1f1;
}

.control__btn.default .control__default {
  display: block;
}

.control__btn.default .control__checked {
  display: none;
}

.control__btn.default .control__failed {
  display: none;
}

.control__btn.checked {
  border: 3px solid #228B22;
  color: #f1f1f1;
  background: #228B22;
  animation: none;
  pointer-events: none;
}

.control__btn.checked .control__default {
  display: none;
}

.control__btn.checked .control__checked {
  display: block;
}

.control__btn.checked .control__failed {
  display: none;
}

.control__btn.failed {
  border: 3px solid #ffcccc;
  color: #ff9999;
  background: #ffcccc;
  animation: none;
  pointer-events: none;
}

.control__btn.failed .control__default {
  display: none;
}

.control__btn.failed .control__checked {
  display: none;
}

.control__btn.failed .control__failed {
  display: block;
}

.control__btn.hardchecked {
  border: 3px solid #228B22 !important;
  color: #f1f1f1 !important;
  background: #228B22 !important;
  animation: none;
  pointer-events: none;
}

.control__btn.hardchecked .control__default {
  display: none !important;
}

.control__btn.hardchecked .control__checked {
  display: block !important;
}

.control__btn.hardchecked .control__failed {
  display: none !important;
}

@keyframes pulsar {
  0% {
    box-shadow: 0 0 0 0 rgba(186, 21, 5, 0.4);
  }
  50% {
    box-shadow: 0 0 0 1.5rem rgba(186, 21, 5, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(186, 21, 5, 0);
  }
}
.content {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  padding-bottom: 3rem;
  padding-top: 2.5rem;
}

.content > div {
  width: 100%;
}

#comments_list {
  max-height: 385px;
}

.rooms {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.rooms div {
  display: flex;
  gap: 1rem;
}

.rooms div:last-of-type {
  justify-content: end;
}

.rooms div span {
  width: calc(50% - 1rem);
  text-align: center;
  margin-top: -1rem;
  font-size: 1rem;
  white-space: nowrap;
}

.rooms__link {
  font-size: 1.25rem;
  font-weight: 500;
  transition: all 0.2s ease;
  background: #f1f1f1;
  border: 1px solid #c4c4c4;
  border-radius: 3px;
  color: #555;
  cursor: pointer;
  padding: 0.5rem 2rem;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rooms__link:hover {
  border: 1px solid #f1f1f1;
  color: #f1f1f1;
  text-decoration: none;
}

.rooms__link:hover.rooms__blue {
  background: limegreen;
}

.rooms__link:hover.rooms__green {
  background: #3CAE9B;
}

.rooms__link:hover.rooms__red {
  background: #BA1505;
}

.rooms__current {
  border: 1px solid #f1f1f1;
  color: #f1f1f1 !important;
  background: limegreen;
  pointer-events: none;
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: 3px;
  cursor: pointer;
  padding: 0.5rem 2rem;
  text-decoration: none;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.header.active .header__content {
  border-radius: 0 0 4px 4px;
  border-top: none;
}

.header__logo {
  min-width: 2.875rem;
  height: 2.875rem;
  color: limegreen;
}

.header__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  font-style: normal;
  line-height: normal;
  margin: 0;
}

.header__name:hover {
  color: #fff;
}

.header__auth a {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.header__auth svg {
  fill: #fff;
  width: 1.5rem;
  height: 1.5rem;
}

.header__content {
  border-radius: 4px;
  border: 1px solid #485e79;
  background: #485e79;
  padding: 0.5rem 2rem;
  gap: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.header__content > div {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.header__content a:not(.header__name) {
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.header__content a:not(.header__name):hover {
  text-decoration: underline !important;
}

.header__button {
  cursor: pointer;
  background: #f1f1f1;
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  color: #555;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
  font-size: 1.25rem;
  font-weight: 500;
}
.header__button:hover {
  border: 1px solid #f1f1f1;
  color: #f1f1f1;
  background: limegreen;
}

.preheader {
  padding-top: 2rem;
}

.openModal {
  cursor: pointer;
}

.modal-overlay {
  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: 3rem;
  margin-bottom: 3rem;
  width: 100%;
  height: 100%;
  padding: 2rem 2rem 3rem;
  border-radius: 2.5rem;
  background: white;
  max-height: calc(100vh - 6rem);
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 40rem;
}
.modal-block.wide {
  max-width: 1200px;
}
.modal-block.video {
  max-width: unset;
}
.modal-block.video .modal-block__section {
  padding-right: 0;
}
.modal-block__pic {
  width: 100%;
}

.modal-block__head {
  padding-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-block__close {
  position: relative;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  overflow-y: hidden;
}

.modal-block__close::after, .modal-block__close::before {
  content: "";
  height: 0.2rem;
  width: 2rem;
  background-color: limegreen;
  position: absolute;
}

.modal-block__close::before {
  transform: rotate(45deg);
}

.modal-block__close::after {
  transform: rotate(-45deg);
}

.modal-block__content {
  overflow-y: auto;
  position: relative;
  max-height: calc(100vh - 11rem);
}

.modal-block__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 1rem;
}

.modal-block p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.js_reg_auth {
  display: none !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] {
  border-radius: 5rem;
  padding: 1rem 2rem 1rem;
  background: limegreen;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
  white-space: nowrap;
  border: 3px solid limegreen;
  transition: all 0.2s ease;
  cursor: pointer;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.auth-form input[type=submit]:hover {
  background: #fff;
  color: limegreen;
  text-decoration: none;
}

.auth-form input:focus-visible {
  outline: none;
  border-color: limegreen;
  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: 1rem;
}

.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: 1.5rem;
  font-weight: 400;
  line-height: 120%;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.auth-form .errortext {
  font-size: 1.5rem;
}

.auth-extras {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  margin-right: auto;
}

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

.my-registration:hover {
  color: #000;
}

.metka {
  font-size: 1rem;
  color: #555;
  margin-top: 3rem;
  margin-bottom: 5px;
  text-align: end;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}
.info-block__content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-block__content p {
  font-size: 18px;
  color: #01557a;
  margin-bottom: 0;
}
.info-block__content .inf-img {
  width: 50px;
  height: auto;
}

.info {
  max-width: 90vw;
  max-height: 51vw;
  width: 52.8rem;
  height: 30rem;
  margin-left: auto;
  margin-right: auto;
  background-image: url("./assets/yt_bg2.png");
  background-position: center;
  background-size: cover;
  border-radius: 1.5rem;
  display: flex;
  padding: 2.5rem;
  justify-content: center;
  align-items: center;
  position: relative;
}

.info__shad {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
}

.info p {
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: #000 1px 0 10px;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin: 0;
  text-align: center;
}

.info p span {
  text-decoration: underline;
}

.full {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
  border: 1px solid #d3d3d3;
  background: #F7F7F7;
  box-shadow: -1px 4px 11px 0px rgba(50, 50, 50, 0.33);
  margin-top: 1rem;
}

.full p {
  font-size: 1rem;
  margin: 0;
  color: #555;
  text-align: center;
}

.full-start {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
  border: 1px solid #d3d3d3;
  background: #F7F7F7;
  box-shadow: -1px 4px 11px 0px rgba(50, 50, 50, 0.33);
  margin-top: 1rem;
}

.full-start p {
  font-size: 1rem;
  margin: 0;
  color: #555;
  text-align: center;
}

.full-main {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
  border: 1px solid #d3d3d3;
  background: #F7F7F7;
  box-shadow: -1px 4px 11px 0px rgba(50, 50, 50, 0.33);
  margin-top: 1rem;
}

.full-main p {
  font-size: 1rem;
  margin: 0;
  color: #555;
  text-align: center;
}

.btn-full-link {
  min-width: 7rem;
  background: #01567A;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 6px 12px;
  transition: all 0.2s ease;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
}
.btn-full-link:hover {
  background: limegreen !important;
}

.main-btn {
  min-width: 7rem;
  background: #01567A;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 6px 12px;
  transition: all 0.2s ease;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
}
.main-btn:hover {
  background: limegreen !important;
}

.start-btn {
  min-width: 7rem;
  background: #01567A;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 6px 12px;
  transition: all 0.2s ease;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
}
.start-btn:hover {
  background: limegreen !important;
}

.end-btn {
  min-width: 7rem;
  background: #AFCB38;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 6px 12px;
  transition: all 0.2s ease;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
}
.end-btn:hover {
  background: limegreen !important;
}

.full a {
  background: #f1f1f1;
  border: 1px solid #c4c4c4;
  font-weight: 500;
  border-radius: 3px;
  color: #555;
  cursor: pointer;
  font-size: 1.25rem;
  padding: 0.5rem 2rem;
  transition: all 0.2s ease;
}

.full a:hover {
  border: 1px solid #f1f1f1;
  color: #f1f1f1;
  background: limegreen;
  text-decoration: none;
}

.voting-form-box {
  border: none;
}

.vote-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vote-form .vote-item-title span {
  font-size: 1.25rem !important;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.vote-form .starrequired {
  padding-left: 0.25rem;
  color: red !important;
}

.vote-form input[type=submit] {
  border-radius: 5rem;
  padding: 1rem 2rem 1rem;
  background: limegreen;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
  white-space: nowrap;
  border: 3px solid limegreen;
  transition: all 0.2s ease;
  cursor: pointer;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.vote-form input[type=submit]:hover {
  background: #fff;
  color: limegreen;
  text-decoration: none;
}

.vote-form input:focus-visible {
  outline: none;
  border-color: limegreen;
  border-style: solid;
}

.vote-form input[type=text] {
  height: 2.5rem;
  width: 100%;
  font-size: 1.25rem;
  font-weight: 400;
  color: #000;
}

.vote-form br {
  display: none;
}

.vote-form .vote-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vote-form .vote-item-vote {
  margin: 0;
}

.vote-form .vote-item-vote label {
  display: none;
}

.vote-form .vote-answer-item-radio {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.vote-form .vote-answer-item-radio label {
  display: unset;
  font-size: 1.25rem;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.vote-form .vote-answer-item-radio input {
  width: 20px;
  height: 20px;
}

.part-video {
  margin: 30px 0;
}
.part-video h1 {
  text-align: center;
  font-weight: 500;
  color: #146191;
}
.part-video .grid-container {
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.part-video .grid-container .video-block p {
  font-size: 18px;
  color: #146191;
  font-weight: 600;
}
.part-video .grid-container .video-block video {
  width: 100%;
}

@media (max-width: 1200px) {
  .part-video .grid-container {
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1540px) {
  .vote-form .vote-items-list {
    justify-content: center !important;
    gap: 15px !important;
  }
  .vote-form .vote-answer-item-radio label {
    font-weight: 600;
    color: white;
  }
}
@media (max-width: 992px) {
  .content {
    flex-direction: column;
  }
  .vote-answer-item-radio label {
    width: 50px !important;
    height: 50px !important;
    line-height: 50px !important;
  }
  .vote-form .vote-items-list {
    gap: 10px !important;
  }
  .vote-item-title {
    margin-bottom: 15px !important;
  }
}
@media (max-width: 768px) {
  .part-video .grid-container .video-block p {
    font-size: 16px;
  }
  .full {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
  }
  .full-start {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(1, 0.3fr);
  }
  .full-main {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(1, 0.3fr);
  }
  .btn-full-link {
    font-size: 1.2rem;
    padding: 6px 2px;
  }
  .control__buttons {
    gap: 1.5rem;
  }
  .send_msg_form textarea, .send_msg_form input[type=button], .cmItem {
    font-size: 1.5rem;
  }
  .control h2, .qu-title {
    font-size: 1.75rem;
  }
  .control h2 span {
    font-size: 1.25rem;
  }
  .rooms__current, .rooms__link {
    font-size: 1.75rem;
  }
  .header__auth {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }
  .header__content a {
    font-size: 1.5rem;
  }
  .header__username {
    display: none;
  }
  .auth-form input[type=submit] {
    font-size: 2rem;
  }
  .my-registration, td {
    font-size: 1.25rem;
  }
  .errortext {
    font-size: 1.25rem;
  }
  .modal-block p {
    font-size: 16px;
  }
}
.check {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}
.check .mc-checkbox {
  display: none;
}
.check input[type=checkbox] {
  appearance: none;
  background-color: #f1f1f1;
  font: inherit;
  color: limegreen;
  width: 4rem;
  height: 4rem;
  padding: 0.5rem;
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  visibility: unset !important;
  position: relative !important;
  cursor: pointer;
}
.check input[type=checkbox]:before {
  content: "";
  width: 90%;
  height: 90%;
  display: block;
  box-shadow: inset 1em 1em 1em 1em #c4c4c4;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  cursor: pointer;
}
.check input[type=checkbox]:checked {
  border: 1px solid #f1f1f1;
  color: #f1f1f1;
  background: limegreen;
}
.check input[type=checkbox]:checked:before {
  box-shadow: inset 1em 1em 1em 1em white;
}

.personal-data__click {
  pointer-events: all;
}
.personal-data__click.dis {
  pointer-events: none;
  color: #c4c4c4;
}

.rating {
  padding: 1rem;
  display: none;
}
.rating.show {
  display: block;
}
.rating__header {
  font-size: 1.5rem;
  font-weight: 500;
  color: #555;
  margin-bottom: 1rem;
  text-align: center;
}
.rating__buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.rating__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 50%;
  background: #E5E5E5;
  color: #a7a7a7;
  pointer-events: none;
  transition: all 0.2s ease;
  outline: none;
  border: none;
}
.rating.active .rating__btn {
  cursor: pointer;
  pointer-events: all;
  color: white;
  background: #BA1505;
}
.rating.active .rating__btn:nth-child(7), .rating.active .rating__btn:nth-child(8) {
  background: orange;
}
.rating.active .rating__btn:nth-child(9), .rating.active .rating__btn:nth-child(10) {
  background: limegreen;
}

.policy-wrapper {
  display: none;
}
.policy-wrapper.show {
  display: flex;
}

.vote-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.videos {
  padding-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
.videos button {
  background: none;
  outline: none;
  border: none;
}
.videos button span {
  color: #01567A;
  font-weight: 700;
}
.videos button img {
  width: 100%;
}

.overview img {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.overview h2 {
  margin-bottom: 20px;
}
.overview h3 {
  margin-bottom: 15px;
}
.overview h5, .overview p {
  margin-bottom: 10px;
}
.overview li {
  font-size: 16px;
}
.overview ul, .overview ol {
  padding-left: 30px;
}
.overview .l1, .overview p {
  margin-bottom: 20px;
}
.overview .l2 {
  margin-bottom: 15px;
}
.overview .l2 li {
  list-style-image: url(./assets/media/l2.svg);
}
.overview .l2 ol li {
  list-style-image: url("");
}
.overview .l2 {
  padding-left: 24px;
}
.overview .l3 {
  margin-bottom: 10px;
}
.overview .l3 li {
  list-style-image: url(./assets/media/l3.svg);
}
.overview .l3 ol li {
  list-style-image: url("");
}
.overview .lit li {
  font-size: 14px;
}

.header__name-2 {
  text-align: center;
  align-items: center;
  font-weight: 600;
}

.header__name-3 {
  text-align: center;
  align-items: center;
  font-weight: 600;
  margin: 20px;
}

.vote-form .vote-items-list {
  flex-direction: row;
  justify-content: start;
  flex-wrap: wrap;
  gap: 47px;
  align-items: center;
}

.vote-form .vote-answer-item-radio label {
  font-weight: 600;
  color: white;
}

.vote-form {
  gap: 1.5rem;
}

.vote-answer-item-radio {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vote-answer-item-radio input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.vote-answer-item-radio label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 16px;
  text-align: center;
  line-height: 80px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.vote-answer-item-radio input:checked + label {
  transform: scale(1.2);
  box-shadow: 0 0 0 2px black;
}

.vote-item-vote:nth-child(-n+7) label {
  background: red;
}

.vote-item-vote:nth-child(8) label,
.vote-item-vote:nth-child(9) label {
  background: orange;
}

.vote-item-vote:nth-child(10) label,
.vote-item-vote:nth-child(11) label {
  background: green;
}

.vote-item-title {
  font-size: 18px;
  text-align: start;
  margin-bottom: 30px;
}

.video-container {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.6s ease;
  margin-top: 20px;
}

.video-container.active {
  max-height: 2000px;
}

.video-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.video-wrapper .video-content span {
  font-size: 18px;
  font-weight: 600;
}

.video-wrapper video {
  width: 100%;
  border-radius: 8px;
  background: #000;
}

.theme {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
.theme h2 {
  font-size: 28px;
  font-weight: 600;
  color: #00a03b;
}
.theme h3 {
  font-size: 20px;
  color: #aa198d;
}
.theme h3 span {
  font-size: 17px;
}

.btn-container {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
.btn-container .video-toggle-btn {
  min-width: 7rem;
  background: #00a03b;
  border: none;
  border-radius: 4px;
  color: white;
  padding: 6px 12px;
  transition: all 0.2s ease;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 992px) {
  .info-block__content .inf-img {
    width: 30px;
    height: auto;
  }
  .video-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .video-wrapper .video-content span {
    font-size: 14px;
  }
  .theme h2 {
    font-size: 20px;
  }
  .theme h3 {
    font-size: 14px;
  }
  .theme h3 span {
    font-size: 12px;
  }
}


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