.header-img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.name {
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 8px;
  text-align: center;
  color: white;
}

.trans {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.video {
  width: 820px;
  padding-bottom: 56.25%;
  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: 20px;
  color: #000;
  margin: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.send_msg_form {
  margin-bottom: 20px;
  border-radius: 12px;
}
.send_msg_form textarea {
  min-height: 64px;
}
.send_msg_form input[type=button] {
  font-size: 20px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.send_msg_form input[type=button]:hover {
  border: 1px solid #f1f1f1;
  color: #f1f1f1;
  background: #15499B;
}

.qu-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  color: white;
  margin-bottom: 12px;
}

#comments_list .deleteMessage a {
  color: #15499B;
  padding: 4px;
  transition: all 0.2s ease;
  border-radius: 3px;
}
#comments_list .deleteMessage a:hover {
  color: #f1f1f1;
  background: #15499B;
  text-decoration: none;
}

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

.control {
  gap: 20px;
  background: #F7F7F7;
  padding: 16px;
  border-radius: 12px;
  box-shadow: -1px 4px 11px 0px rgba(50, 50, 50, 0.3);
}
.control__buttons {
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
}
.control__buttons div {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}
.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 #15499B;
  color: #f1f1f1;
  background: #15499B;
  animation: pulsar 3s infinite;
  cursor: pointer;
  pointer-events: all;
}
.control__btn.active:hover {
  color: #15499B;
  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 20px rgba(186, 21, 5, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(186, 21, 5, 0);
  }
}
.content {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-bottom: 60px;
  position: relative;
  z-index: 5;
}
.content > div {
  width: 100%;
}

.sound-selector {
  display: flex;
  gap: 8px;
  justify-content: end;
  align-items: center;
}
.sound-selector.active .sound-selector__on {
  display: block;
}
.sound-selector.active .sound-selector__off {
  display: none;
}
.sound-selector.active button {
  background: #15499B;
}
.sound-selector__on {
  display: none;
}
.sound-selector__off {
  display: block;
}
.sound-selector p {
  font-weight: 400;
  font-size: 12px;
  margin: 0;
}
.sound-selector img {
  width: 20px;
}
.sound-selector button {
  border-radius: 20px;
  padding: 4px 12px;
  background: #cccccc;
  border: none;
  outline: none;
  cursor: pointer;
}

#comments_list {
  max-height: 385px;
  border: 1px solid #d3d3d3;
  background: #F7F7F7;
  padding: 8px;
  border-radius: 12px;
}

.metka {
  margin-left: auto;
  display: block;
  width: 100%;
  text-align: right;
}

.info {
  max-width: 90vw;
  max-height: 51vw;
  width: 880px;
  height: 495px;
  margin-left: auto;
  margin-right: auto;
  background-position: center;
  background-size: cover;
  border-radius: 24px;
  display: flex;
  padding: 40px;
  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: 34px;
}
.info p {
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: #000 1px 0 10px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin: 0;
  text-align: center;
}
.info p span {
  text-decoration: underline;
}

.action-buttons {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
}

.chat {
  height: 18em;
  margin-top: 2em;
}

.body_box {
  height: 154%;
}

#comments_soobwa {
  font-family: "Ruda";
  font-size: 1.125em;
  margin-bottom: 0;
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
  justify-content: space-between;
}

.chat .comments_item_text {
  padding-bottom: 1em !important;
}

#comments_soobwa .comments_main_box {
  border: none;
  padding: 0;
  margin: 0;
  height: 65%;
  overflow-y: scroll;
  margin-bottom: 1em;
}

#comments_soobwa .comments_main_box::-webkit-scrollbar {
  width: 0.75em;
  background: #575656;
  border-radius: 999px;
}

#comments_soobwa .comments_item {
  text-align: start;
}

#comments_soobwa .comments_body_text {
  font-size: 16px;
}

#comments_soobwa .comments_title {
  display: none;
}

#comments_soobwa .comments_main_box::-webkit-scrollbar-thumb {
  background: #D9D9D9;
  border-radius: 999px;
}

#comments_soobwa .comments_thanks_wrapper {
  color: #fff;
}

#comments_soobwa .comments_main_form .form_buttons {
  /*float: none;*/
  /*max-width: max-content;*/
  /*margin-left: auto;*/
  float: none;
  max-width: max-content;
  margin-left: auto;
  position: absolute;
  bottom: 15px;
  right: 0;
}

#comments_soobwa .comments_main_form .form_buttons button {
  color: black;
  background: #D9D9D9;
  border-radius: 10px;
  font-weight: 400;
}

#comments_soobwa .field_wrap textarea {
  background: #D9D9D9;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
}

@media (max-width: 1540px) {
  .video {
    width: 670px;
  }
}
@media (max-width: 1200px) {
  .content {
    flex-direction: column;
  }
  .video {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .send_msg_form textarea, .send_msg_form input[type=button], .cmItem {
    font-size: 16px;
  }
  .qu-title {
    font-size: 20px;
  }
  .control {
    padding: 12px;
    gap: 16px;
  }
  .control__buttons {
    gap: 16px;
  }
  .control__btn {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
  .control h2 {
    font-size: 16px;
  }
  .control h2 span {
    font-size: 14px;
  }
  .full a {
    font-size: 16px;
    text-align: center;
    padding: 8px;
  }
  .name {
    font-size: 20px;
  }
  .action-buttons {
    flex-direction: column;
  }
}
.main-text {
  font-size: 18px;
}
.main-text .span-text {
  color: #1489CF;
}

@media screen and (min-width: 1540px) {
  .container {
    max-width: 1400px;
  }
}
@media screen and (max-width: 992px) {
  .main-text {
    font-size: 14px;
  }
}
.button-container {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  margin: 20px 0;
}

.nmo-btn {
  background: linear-gradient(135deg, #ff416c, #ff4b2b, #ff416c);
  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;
}

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

.nmo-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%;
  }
}
.modal-1 {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
  animation: slideIn 0.3s ease;
}

.close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
  z-index: 10;
}

.close:hover {
  color: #000;
}

.modal-text {
  overflow-y: auto;
  padding: 20px 16px 16px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.modal-text p, .modal-text ol {
  margin: 10px 0;
}

.modal-text ol li {
  margin-bottom: 10px;
}

.register-btn {
  display: inline-block;
  background: #ff4b2b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.2s ease;
}

.register-btn:hover {
  background: #f53d1c;
  text-decoration: none;
  color: black;
}

@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    max-height: 70vh;
    margin: 0 10px;
  }
  .modal-text {
    font-size: 14px;
    padding: 36px 12px 12px;
  }
  .close {
    font-size: 24px;
    top: 8px;
    right: 12px;
  }
  .register-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
  .button-container {
    gap: 12px;
  }
  .nmo-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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