/* Стиль для кнопки */
.t-btn {
    background: linear-gradient(90deg, #1AA7FF 0%, #106499 100%);
    transition: background 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 6px;
    padding-left: 16px;
    padding-right: 16px;
}

/* Создаем псевдоэлемент для эффекта наведения */
.t-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1AA7FF;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

/* При наведении показываем сплошной цвет */
.t-btn:hover:before {
    opacity: 1;
}

.t-btn-orange {
    background: linear-gradient(90deg, #D7710B 0%, #FF8D1A 100%);
    transition: background 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 6px;
    padding-left: 16px;
    padding-right: 16px;
}

/* Создаем псевдоэлемент для эффекта наведения */
.t-btn-orange:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FF8D1A;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

/* При наведении показываем сплошной цвет */
.t-btn-orange:hover:before {
    opacity: 1;
}

.t1196__controls .t1196__control_left, .t1196__controls .t1196__control_right  {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.blue-gradient-text {
      background: linear-gradient(to right, #1AA7FF, #106499);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      display: inline-block;
}

.menu-triger{
    cursor: pointer;
}
.cursor-pointer { 
    cursor: pointer;
    
}
.z-index-1 {z-index:1;}
.menu-pk, .menu-mobile {cursor: pointer;}
.menu-pk {display:table;}
.menu-mobile {display: none;}
.uc-header {z-index:1001;}
.index-date {
    right: 80px;
    display: flex;
    left: auto !important;
    justify-content: flex-end;
}

.uc-slider {
    margin-top: -70px !important;
}

.uc-slider .t1196 .t1196__container_flex {
    z-index: 100;
    position: relative;
}

.uc-slider .t1196 .t-container .t1196__items .t1196__slider .t1196__item .t1196__content .t1196__content-inner .t-card__title {
    max-width: calc(100% - 24px);
    
}

.uc-slider .t1196 .t-container .t1196__items .t1196__slider .t1196__item .t1196__content .t1196__content-inner .t-card__title::after {
  content: '';
  position: absolute;
  right: 0; /* Прижимаем к правому краю */
  top: 50%; /* Центрируем по вертикали */
  transform: translateY(-50%); /* Корректировка для точного центрирования */
  width: 11px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='30' viewBox='0 0 11 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.20001 -2.273e-07L-3.93403e-07 0L2.60001 4.5L5.20001 9L7.80002 4.5L10.4 -4.546e-07L5.20001 -2.273e-07Z' fill='%231AA7FF'/%3E%3Cpath d='M5.20001 10.2998L-3.93402e-07 10.2998L2.60001 14.7998L5.20001 19.2998L7.80002 14.7998L10.4 10.2998L5.20001 10.2998Z' fill='%231AA7FF'/%3E%3Cpath d='M5.20001 20.5996L-3.93403e-07 20.5996L2.60001 25.0996L5.20001 29.5996L7.80002 25.0996L10.4 20.5996L5.20001 20.5996Z' fill='%231AA7FF'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.t-checkbox__indicator:after {
    border: solid #17ff00;
    border-width: 0 2px 2px 0;
    content: "";
    display: none;
    height: 8px;
    left: 6px;
    position: absolute;
    top: 2px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 3px;
}

.t-checkbox__indicator {
    border: 2px solid #ffffff;
}
  
@media screen and (max-width: 980px) {
    .menu-mobile {display: table;}
    .menu-pk {display:none;}
}