@charset 'UTF-8';


/* Стиль для поля ввода даты */
.input-date {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .input-date:focus {
    border-color: #5c6bc0; /* Синий цвет для фокуса */
    box-shadow: 0 0 5px rgba(92, 107, 192, 0.6); /* Легкое свечение при фокусе */
    outline: none;
  }
  
  .input-date::placeholder {
    color: #888; /* Цвет плейсхолдера */
    font-style: italic;
  }
  
  .input-date:disabled {
    background-color: #f5f5f5; /* Светло-серый фон для отключенного поля */
    color: #bbb; /* Светлый текст */
  }
  
  .input-date::-webkit-calendar-picker-indicator {
    background: #88669c; /* Цвет стрелки календаря */
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
  }
  
  .input-date::-webkit-calendar-picker-indicator:hover {
    background-color: #6f4f81; /* Цвет при наведении на стрелку */
  }

  /* Основной стиль для кнопки */
  .button-life-number {
    padding: 10px 30px;
    font-size: 20px;
    font-weight: 330;
    margin-top: 15px;
    color: #fff;
    background: linear-gradient(45deg, #88669c, #6d5272);
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: inline-block;
    text-align: center;
  }
  
  /* Эффект при наведении */
  .button-life-number:hover {
    background: linear-gradient(45deg, #755786, #5e4663);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
  }
  
  /* Эффект при нажатии */
  .button-life-number:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Фокус */
  .button-life-number:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(155, 105, 205, 0.5);
  }
  
  /* Отключенная кнопка */
  .button-life-number:disabled {
    background: #d1c4e9;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
  }
  
  .result {
    display: none; /* Скрываем результат по умолчанию */
    position: absolute;
    margin-top: 22px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.7); /* Белая полупрозрачная подложка */
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 500px;
    text-align: center;
    color: #333;
    font-size: 18px;
    opacity: 0; /* Начальная непрозрачность */
    transition: opacity 0.5s ease; /* Плавное появление */
  }
  
  /* Когда результат отображается */
  .result.show {
    display: block; /* Показываем элемент */
    opacity: 1; /* Полная видимость */
  }
  
  
  .tm-testimonial-item img {
    pointer-events: none;
}
.btn-more {
  background-color: #976e94;
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

.btn-more:hover {
  background-color: #856282;
  transform: scale(1.05);
}

.btn-more:active {
  background-color: #6d526b;
  transform: scale(0.98);
}

.btn-more:focus {
  outline: none;
  box-shadow: 0 0 5px 2px #685066;
}



/*Попап*/
 /* Стили для попапа */
 .popup-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 80%;
  max-width: 900px;
  max-height: 80%;
  overflow-y: auto;
  z-index:2000;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #fff;
  border-bottom: 3px solid #f0f0f0;
  padding: 5px 15px;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 1000;
}

.popup-header h2 {
  margin: 0;
  font-size: 24px;
  color: #333;
}

.close-btn {
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: none;
  color: #333;
  transition: color 0.3s;
}

.close-btn:hover {
  color: #f00;
}

.popup-content {
  padding-top: 40px;
  max-height: calc(100% - 50px);
  overflow-y: auto;
}

.popup-block {
  margin-bottom: 15px;
}

.popup-block h3 {
  margin-top: 0;
  font-size: 20px;
  color: #333;
}

.popup-block ul {
  list-style-type: disc;
  padding-left: 20px;
}

.popup-container::-webkit-scrollbar {
  width: 8px;
}

.popup-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.popup-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.popup-content {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  max-width: 800px;
  margin: 20px auto;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.popup-content h2 {
  font-size: 32px;
  text-align: center;
  color: #4B0082;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}

.popup-content h3 {
  font-size: 24px;
  color: #333;
  margin-top: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  border-bottom: 2px solid #4B0082;
  padding-bottom: 5px;
}

.popup-content p {
  font-size: 16px;
  margin: 15px 0;
  color: #555;
  text-align: justify;
  line-height: 1.8;
}

.popup-content .popup-block {
  font-size: 18px;
  font-weight: bold;
  background-color: #4B0082;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  margin-top: 20px;
}

.popup-content ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}

.popup-content ul li {
  font-size: 16px;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.popup-content ul li:before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #4B0082;
  font-size: 20px;
}

.popup-content blockquote {
  font-style: italic;
  color: #444;
  border-left: 4px solid #4B0082;
  padding-left: 15px;
  margin: 20px 0;
  background-color: #f4f4f4;
  font-size: 1.1rem;
  line-height: 1.6;
}

.popup-content strong {
  font-weight: bold;
  color: #4B0082;
}

.popup-content .compatibility-list {
  margin-top: 15px;
  font-size: 16px;
}

.popup-content .compatibility-list p {
  margin-bottom: 12px;
}

.popup-content button {
  background-color: #4B0082;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
}


  /* Стили для фиолетовой цветовой схемы */
  .ya-share2_custom .ya-share2__item {
    background-color: #8a2be2; /* Фиолетовый цвет */
    border-color: #8a2be2;
}

.ya-share2_custom .ya-share2__item:hover {
    background-color: #6a1b9a; /* Более темный фиолетовый при наведении */
    border-color: #6a1b9a;
}

.ya-share2_custom .ya-share2__item:active {
    background-color: #4a148c; /* Еще более темный фиолетовый при нажатии */
    border-color: #4a148c;
}

.ya-share2_custom .ya-share2__item--selected {
    background-color: #9c27b0; /* Цвет выбранной иконки */
    border-color: #9c27b0;
}

/* Slider */
.yove_date-loading .yove_date-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'yove_date';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/yove_date.eot');
    src: url('./fonts/yove_date.eot?#iefix') format('embedded-opentype'), url('./fonts/yove_date.woff') format('woff'), url('./fonts/yove_date.ttf') format('truetype'), url('./fonts/yove_date.svg#yove_date') format('svg');
}
/* Arrows */
.yove_date-prev,
.yove_date-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.yove_date-prev:hover,
.yove_date-prev:focus,
.yove_date-next:hover,
.yove_date-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.yove_date-prev:hover:before,
.yove_date-prev:focus:before,
.yove_date-next:hover:before,
.yove_date-next:focus:before
{
    opacity: 1;
}
.yove_date-prev.yove_date-disabled:before,
.yove_date-next.yove_date-disabled:before
{
    opacity: .25;
}

.yove_date-prev:before,
.yove_date-next:before
{
    font-family: 'yove_date';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.yove_date-prev
{
    left: -25px;
}
[dir='rtl'] .yove_date-prev
{
    right: -25px;
    left: auto;
}
.yove_date-prev:before
{
    content: '←';
}
[dir='rtl'] .yove_date-prev:before
{
    content: '→';
}

.yove_date-next
{
    right: -25px;
}
[dir='rtl'] .yove_date-next
{
    right: auto;
    left: -25px;
}
.yove_date-next:before
{
    content: '→';
}
[dir='rtl'] .yove_date-next:before
{
    content: '←';
}

/* Dots */
.yove_date-dotted.yove_date-slider
{
    margin-bottom: 30px;
}

.yove_date-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.yove_date-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.yove_date-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.yove_date-dots li button:hover,
.yove_date-dots li button:focus
{
    outline: none;
}
.yove_date-dots li button:hover:before,
.yove_date-dots li button:focus:before
{
    opacity: 1;
}
.yove_date-dots li button:before
{
    font-family: 'yove_date';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.yove_date-dots li.yove_date-active button:before
{
    opacity: .75;
    color: black;
}
