::selection {
background: #E6F4F1;
color: #2F7D6B;
}
html {
  scroll-behavior: smooth;
}
.creator {
display: none;
}
input.btn.btn-primary {
    color: #fff;
    line-height: 55px;
    border: 1px solid #e7e7e7;
    font-size: 14px;
    cursor: pointer;
    /* width: 100%; */
    padding: 0px 70px;
}
div#ns-cookiesaccept {
    bottom: 76px;
    right: 18px;
}
.hometext {
    background: #fff;
    padding: 30px;
}
.list-item2 {
	diplay: table;
	margin-bottom: 15px;
}
.tc2 {
	display: table-cell;
	vertical-align: middle;
	padding: 0 15px;
}
.tc text-wrap2 {
	display: table-cell;
	padding: 5px;
}
.navidiv > font > a {
    color: #72e28a;
}
.navidiv > font > noindex > a {
    color: #72e28a;
}
input[type="date"]{
    background-color: #F4F8F9;
    padding: 15px;
    font-family: "Roboto Mono",monospace;
    color: #A0AEB5;
    font-size: 14px;
    border: none;
    outline: none;
    border-radius: 5px;
}
.no-select {  
    -webkit-user-select: none; /* Chrome/Safari */  
    -moz-user-select: none; /* Firefox */  
    -ms-user-select: none; /* IE/Edge */  
    user-select: none; /* Стандартный синтаксис */  
}
.no-select p {
    text-align: justify;
}
/*.success-wrap {
    margin: 18px 0;
    padding: 28px 22px 18px;
    font-size: 14px;
    line-height: 24px;
    -color: #24a305;
    border: 1px solid #30ba0e;
}
.h2.ff-medium-green {
    color: #30ba0e;
}*/




/* Стиль для обертки success-wrap */
.success-wrap {
    background-color: #eaf7e4; /* Светлый зеленый фон */
    border: 2px solid #24a305; /* Зеленая граница */
    padding: 20px;
    border-radius: 8px; /* Закругленные углы */
    max-width: 600px; /* Максимальная ширина блока */
    margin: 20px auto; /* Центрируем блок */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Легкая тень для глубины */
    text-align: center;
}

/* Заголовок внутри блока */
.success-wrap .h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #24a305; /* Зеленый цвет для заголовка */
    margin-bottom: 10px; /* Отступ снизу */
}

/* Параграф внутри блока */
.success-wrap p {
    font-size: 1rem;
    color: #333; /* Темно-серый цвет текста */
    line-height: 1.5;
    margin-top: 0;
}

/* Мобильная адаптация для экранов менее 512px */
@media (max-width: 512px) {
    .success-wrap {
        padding: 15px;
        max-width: 100%; /* Ширина блока на мобильных устройствах будет 100% */
    }

    .success-wrap .h2 {
        font-size: 1.5rem;
    }

    .success-wrap p {
        font-size: 0.9rem;
    }
}





.column-one {
    width: 33%;
    float: left;
    display: table-cell;
    line-height: 21px;
    margin-bottom: 10px;
}
.column-three{
   display: table;
   width: 100%;
}
.input-div input[type=password], .input-div input[type=text], .input-div select {
    ansition: all .2s ease-in-out;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: roboto_ltregular;
    border: 1px solid #e7e7e7;
    padding-left: 12px;
    line-height: 55px;
    max-width: 100%;
    font-size: 14px;
    color: #555;
    outline: 0;
    height: 55px;
    width: 80%;
}
.column-one .webFormItemLabel {
   line-height: 21px;
}

.owner-block select, .owner-block input[type=number], .owner-block input[type=text] {
    ansition: all .2s ease-in-out;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: roboto_ltregular;
    border: 1px solid #e7e7e7;
    padding-left: 12px;
    line-height: 40px;
    max-width: 100%;
    font-size: 14px;
    color: #555;
    outline: 0;
    height: 40px;
    -width: 30%;
}
.remove-owner {
    color: #24a305;
    border-color: #24a305;
    min-width: 114px;
    padding: 6px 8px 4px;
    display: inline-block;
    font-family: roboto_ltregular;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    background: #fff;
    border: 1px solid #24a305;
}
.form-row {
    display: flex;
    gap: 20px; /* Расстояние между колонками */
    flex-wrap: wrap; /* Перенос колонок на новую строку при малой ширине */
}

.form-column {
    flex: 1; /* Колонки равной ширины */
    min-width: 200px; /* Минимальная ширина колонки */
    display: flex;
    flex-direction: column;
    gap: 10px; /* Расстояние между полями внутри колонки */
}
@media (max-width: 600px) {
    .form-row {
      flex-direction: column;
    }
}

.fade-in {
  animation: fadeSlide 0.4s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.webFormTools {
  bottom: 0;
  background: #fff;
  padding: 15px;
  border-top: 1px solid #eee;
  margin-top: 30px;
  z-index: 10;
}

.sendWebFormDw {
  width: 100%;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(48,186,14,0.3);
}
.consultation-wrap {
    background: #E6F4F1;
}
#footer {
    margin-bottom: 0px !important;
}










#quiz-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.7);
}

.quiz-box {
  background: #FFFFFF;
  max-width: 420px;
  margin: 6% auto;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease;
  font-family: "Inter", sans-serif;
}

.quiz-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.quiz-step-label {
  color: #334155;
  font-weight: 500;
}

.quiz-step {
  display: none;
  text-align: center;
}

.quiz-step.active {
  display: block;
  animation: slide 0.3s ease;
}

.quiz-btn {
  display: block;
  width: 95%;
  margin: 10px 0;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #5A50C8;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

.quiz-btn:hover { background: #4B42AA; }

#quiz-form input {
  width: 95%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-size: 16px;
  color: #334155;
}

#quiz-form input:focus { border-color: #5A50C8; outline: none; }

#quiz-form button {
  width: 95%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #2F7D6B;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

#quiz-form button:hover { background: #276B5C; }

.quiz-close { cursor: pointer; font-size: 22px; color: #334155; }

@keyframes fadeIn { from {opacity:0} to {opacity:1} }
@keyframes slide { from {transform:translateX(20px);opacity:0} to {transform:translateX(0);opacity:1} }

a.prr-link {
    color: #4B42AA;
    text-decoration: none;
    padding-bottom: 1px;
}













