  .TiPreloaderContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: #004679;
    z-index: 2147483647;
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
  }

  .TiCodeLoader {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .TiCodeText {
    margin-top: 15px;
    font-family: 'Arial', Arial, sans-serif;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .TCSpinner {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 8px solid #4e9ad5;
    border-top: 8px solid #FF6F00;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* Анимация вращения */
  }

  .TiCodePercentage {
    margin-top: 15px;
    font-family: 'Arial', Arial, sans-serif;
    color: #ffffff;
    font-size: 32px;
    text-align: center;
  }

  .TiPreloaderContainer.hidden {
    transform: translateY(-100%);
    opacity: 0;
  }



@media (max-width: 768px) {
    .t_datepicker__inner {
        position: fixed; /* Фиксированное позиционирование для удобства */
        bottom: 10%; /* Расположить ближе к низу экрана */
        left: 5%; /* Отступ слева */
        width: 90%; /* Ширина 90% экрана */
        max-height: 50vh; /* Ограничение высоты */
        overflow-y: auto; /* Скролл, если содержимое превышает высоту */
        z-index: 9999999; /* Убедитесь, что элемент сверху */
    }
}
