

/* Start:/local/templates/main/assets/css/styles.css?17509398782378*/
/* styles.css */
body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


@keyframes backgroundMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}


/* Контент */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0.1rem;
}



/* Подложка с эффектом матового стекла */
.content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 31, 30, 0.6); 
  backdrop-filter: blur(5px);
  z-index: -1; 
  border-radius: 10px; 
  padding: 30px; 
}

.content h1 {
  font-size: 2.5rem;
  margin: 0 0 20px;
  color: rgb(255, 255, 255);
}

.txt-rotate > .wrap {
  border-right: 0.08em solid white;
}

/* Секции */
.sections {
  padding: 10px;
  background-color: #001F1E;
  color: white;
  font-family: "IBM Plex Sans", serif;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 768px) {
  .sections {
    font-family: "IBM Plex Serif", serif;
    font-weight: 300;
    font-style: normal;
  }
}

.sections section {
  margin: 50px 0;
}

.sections h2 {
  color: rgb(221, 221, 221);
  font-size: 2.5rem;
  border-bottom: 2px solid #c2b575;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  cursor: pointer;
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.2rem;
}

.hidden {
  display: none;
}

.arrow {
  font-size: 1.5rem;
  margin-left: 10px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.arrow.open {
  transform: rotate(180deg);
}



/* КНОПКА */
.button {
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  margin: 0 auto;
  border: 2px solid white;
  border-radius: 5px;
  background-color: transparent;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.button:hover {
  background-color: white;
  color: #001F1E;
}

@keyframes fadeIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* End */


/* Start:/local/templates/main/components/bitrix/news.list/Quiz/style.css?17510052135303*/
.quiz-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 98%;
    margin: 0 auto;
    padding: 20px;
    background-color: #01433B;
    border-radius: 10px;
}

.quiz-form {
    width: 100%;
    position: relative;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #024C44;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.quiz-card {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
    color: white;
}

.active-card {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.inactive-card {
    opacity: 0;
    pointer-events: none;
}

.quiz-step-indicator {
    font-size: 30px;
    color: #E2CBA1;
    margin-bottom: 15px;
    text-align: center;
}

.quiz-questions {
    border: 2px dashed #E2CBA1;
    border-radius: 8px;
    width: 50%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 20px;
}

.quiz-image {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
}

.quiz-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.quiz-question h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.quiz-select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background: #FFF;
    font-size: 16px;
}

.quiz-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
}

.quiz-navigation button {
    padding: 10px 20px;
    border: 1px solid white;
    background: transparent;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.quiz-navigation button:hover {
    background: white;
    color: #024C44;
}

.quiz-feedback-card {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh;
}

.quiz-feedback {
    width: 100%;
    max-width: 600px;
    border: 2px dashed #E2CBA1;
    border-radius: 10px;
    color: white;
    box-sizing: border-box;
    padding: 20px;
}
.quiz-answers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.quiz-answer {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
    padding: 14px 18px;
    border: 2px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    background-color: #f9f9f9;
    text-align: center;
    transition: 0.2s ease;
    user-select: none;
    font-size: 16px;
    color: #000;
    box-sizing: border-box;
}

.quiz-answer:hover {
    border-color: #c2b575;
    background-color: #e6f0ff;
}

.quiz-answer.selected {
    border-color: #c2b575;
    background-color: #c2b575;
}

@media (max-width: 768px) {
    .quiz-answer {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


@media (max-width: 1024px) {
    .quiz-card {
        flex-direction: column;
        height: auto;
        
    }
    .quiz-questions, .quiz-image {
        width: 100%;
        margin-right: 0px;
    }
    .quiz-navigation {
        margin-top: 10px;
    }
    .quiz-step-indicator {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .quiz-navigation button {
        font-size: 14px;
        padding: 8px 16px;
    }
}

.quiz-answers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

/* Карточка ответа — кликабельная целиком */
.quiz-answer-wrapper {
    flex: 1 1 calc(25% - 20px);
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    background-color: #f9f9f9;
    border: 2px solid #ccc;
    transition: 0.3s;
    color: #000;
    font-size: 16px;
    word-wrap: break-word;
    overflow: hidden;
    min-height: 140px;
}

/* Наведение */
.quiz-answer-wrapper:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px #5c542a;
}

/* Выбранная */
.quiz-answer-wrapper.selected {
    background-color: #c2b575;
    border-color: #c2b575;
}

/* Иконка */
.quiz-answer-icon {
    margin-bottom: 10px;
}
.quiz-answer-icon img {
    width: 100%;
    max-width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Текст внутри карточки */
.quiz-answer-text {
    width: 100%;
    text-align: center;
    overflow-wrap: break-word;
    white-space: normal;
    padding: 5px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .quiz-answer-wrapper {
        flex: 1 1 calc(33.33% - 20px);
    }
}
@media (max-width: 768px) {
    .quiz-answer-wrapper {
        flex: 1 1 100%;
        max-width: 100%;
    }
}


/* End */


/* Start:/local/templates/main/components/mail/main.feedbackQuiz/ContactsQuiz/style.css?17510054503092*/
.mfeedbackform {
  background-color: #024C44;
  color: white;
  border-radius: 10px;
  max-width: 600px;
}

.mfeedbackform h2 {
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  letter-spacing: 0.2rem;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

.mfeedbackform .mf-text {
  font-size: 1.2rem;
  font-family: "IBM Plex Serif", serif;
  font-weight: 300;
  color: white;
  margin-bottom: 5px;
}

.mfeedbackform input[type="text"],
.mfeedbackform input[type="tel"], /* Добавлено для поля телефона */
.mfeedbackform textarea {
  width: 100%;
  padding: 10px;
  font-size: 1.1rem;
  border: 2px solid white;
  border-radius: 5px;
  background-color: transparent;
  color: white;
  margin-bottom: 15px;
  box-sizing: border-box; /* Добавлено для корректного расчета ширины */
}

.mfeedbackform textarea {
  resize: none;
}

.mfeedbackform input[type="submit"],
.mfeedbackform button {
  padding: 10px 20px;
  font-size: 1.1rem;
  border: 2px solid white;
  background-color: transparent;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mfeedbackform input[type="submit"]:hover,
.mfeedbackform button:hover {
  background-color: white;
  color: #001F1E;
}

.mfeedbackform .mf-ok-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #5c542a;
  margin-bottom: 20px;
  text-align: center;
}

.mfeedbackform .mf-captcha img {
  display: block;
  margin: 10px auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.mfeedbackform .mf-req {
  color: #5c542a;
  font-weight: bold;
}

.mfeedbackform p {
  font-size: 0.9rem;
  font-family: "IBM Plex Serif", serif;
  color: white;
  text-align: center;
}

.mfeedbackform p a {
  color: #5c542a;
  text-decoration: underline;
}

.mfeedbackform p a:hover {
  color: white;
}

/* КНОПКА */
.mfeedbackform .mf-submitform {
  text-align: center;
  margin-top: 20px;
}

.mfeedbackform .mf-submitform input[type="submit"] {
  padding: 10px 20px;
  margin: 0 auto;
  border: 2px solid white;
  border-radius: 5px;
  background-color: transparent;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mfeedbackform .mf-submitform input[type="submit"]:hover {
  background-color: white;
  color: #001F1E;
}

.mfeedbackform .mf-message {
  width: 100%;
}

.mfeedbackform .mf-name,
.mfeedbackform .mf-phone, /* Добавлено для поля телефона */
.mfeedbackform .mf-message,
.mfeedbackform .mf-captcha {
  width: 100%;
  box-sizing: border-box;
}

.mfeedbackform .mf-checkboxes {
  margin-top: 15px;
  margin-bottom: 15px;
  color: white;
  font-family: "IBM Plex Serif", serif;
  font-size: 1rem;
}

.mfeedbackform .mf-checkboxes label {
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
}

.mfeedbackform .mf-checkboxes input[type="checkbox"] {
  margin-right: 10px;
  vertical-align: middle;
}

.mfeedbackform .mf-submitform input[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* End */


/* Start:/local/templates/main/components/mail/main.feedback/SimpleForm/style.css?17499924752149*/
.simple-feedback {
  max-width: 320px;
  padding: 15px;
  background-color: rgba(47, 61, 60, 0.9);
  color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.simple-feedback-title {
  margin-bottom: 10px;
  font-size: 16px;
}

.simple-input-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.simple-input-group input {
  flex: 1;
  padding: 10px;
  border: 1px solid white;
  background: transparent;
  color: white;
  border-radius: 5px;
}

.simple-btn-submit {
  padding: 10px 15px;
  background: white;
  color: black;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.simple-captcha-group {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.simple-captcha-group img {
  height: 40px;
}

.simple-captcha-group input {
  width: 100px;
  padding: 10px;
  border: 1px solid white;
  background: transparent;
  color: white;
  border-radius: 5px;
  text-align: center;
}

.simple-error-message {
  color: red;
  margin-bottom: 10px;
}
.simple-checkbox-group {
  margin-top: 10px;
  text-align: left;
  font-size: 12px;
}

.simple-checkbox-group label {
  display: block;
  margin-bottom: 5px;
}

.simple-checkbox-group input[type="checkbox"] {
  margin-right: 5px;
}

.simple-feedback-form input[type="submit"]:disabled {
  background-color: gray;
  cursor: not-allowed;
  opacity: 0.6;
}
.simple-qr-links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: nowrap;
  flex-direction: row;
}

.simple-ct-info-block {
  flex: 1 1 auto;
  max-width: 120px;
}

.simple-ct-info-block img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.simple-ct-info-block img:hover {
  transform: scale(1.05);
}

/* Уточнённый адаптив */
@media (max-width: 480px) {
  .simple-qr-links {
    gap: 8px;
    justify-content: center;
  }

  .simple-ct-info-block {
    max-width: 40vw; /* каждая картинка будет до 40% ширины экрана */
  }
}

/* End */
/* /local/templates/main/assets/css/styles.css?17509398782378 */
/* /local/templates/main/components/bitrix/news.list/Quiz/style.css?17510052135303 */
/* /local/templates/main/components/mail/main.feedbackQuiz/ContactsQuiz/style.css?17510054503092 */
/* /local/templates/main/components/mail/main.feedback/SimpleForm/style.css?17499924752149 */
