/*Убрать полосу прокрутки для всей страницы*/::-webkit-scrollbar {  width: 0;}

/*Ховер на текст*/

    .dvregion:hover a,
    .dvregion:hover div {
        color: #03BCDF !important;
        transition: color .2s ease-in-out, border .2s ease-in-out;
    }

/*Ховер на текст с подчеркиванием линии*/

:root {
--AccentuationColor: #03BCDF; /*цвет заливки по наведению*/
--AccentuationHeight: 1px; /*размер подчеркивания*/
--AccentuationPadding: 2px; /*отступ от текста*/
}
/*Минимальная ширина экрана 480px*/
@media only screen and (min-width: 480px) {
.hover-accentuation-text,
.hover-accentuation-text:before {
opacity: 0;
transform: translateX(-100%);
transition: opacity 0.3s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
transition-delay: 0.7s;
}
.link-accentuation .tn-atom:hover .hover-accentuation-text,
.link-accentuation .tn-atom:hover .hover-accentuation-text:before {
opacity: 1;
transform: translateX(0);
transition-delay: 0s; 
}
@keyframes anim-in-text-accentuation {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(0);
}
}
@keyframes anim-in-accentuation {
0% {
transform: translateX(-100%);
}
100% {
transform: translateX(0);
}
}
@keyframes anim-out-accentuation {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-100%);
}
}
@keyframes anim-out-text-accentuation {
0% {
transform: translateX(0);
}
100% {
transform: translateX(100%);
}
}
.hover-accentuation-text {
position: absolute;
top: 0;
left: 0;
transform: translateX(-100%);
display: inline-table;
width: 100%;
height: 100%;
padding-top: var(--AccentuationPadding);
overflow: hidden;
pointer-events: none;
-webkit-animation: anim-out-text-accentuation 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
animation: anim-out-text-accentuation 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.hover-accentuation-text:before {
content: "";
background: var(--AccentuationColor);
width: 100%;
height: var(--AccentuationHeight);
position: absolute;
bottom: 0;
transform: translateX(100%);
display: inline-table;
width: 100%;
-webkit-animation: anim-out-accentuation 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
animation: anim-out-accentuation 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.link-accentuation .tn-atom:hover .hover-accentuation-text {
transform: translateX(0);
-webkit-animation: anim-in-accentuation 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
animation: anim-in-accentuation 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.link-accentuation .tn-atom:hover .hover-accentuation-text:before {
-webkit-animation: anim-in-text-accentuation 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
animation: anim-in-text-accentuation 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
}












/* Стили для иконок кейсов */
[class^="icons"],[class*=" icons"]{transform:rotate(0deg);transition:transform .26s ease;will-change:transform;cursor:pointer}[class^="icons"].is-open,[class*=" icons"].is-open{transform:rotate(180deg)}</style>






/* Анимация в меню*/
.dv-tlogo{
  /* Плавность исчезновения/появления */
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  /* На всякий случай: держим в потоке, но управляем видимостью */
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  /* Лёгкая “стабилизация”, чтобы не было микродёрганий при перерисовке */
  transform: translateZ(0);
}

/* Когда активен режим скрытия — принудительно прячем */
.dv-tlogo.dv-tlogo--hidden{
  opacity: 0 !important;            /* ключевое: не даём “мигнуть” */
  visibility: hidden !important;    /* чтобы не ловила курсор */
  pointer-events: none !important;  /* чтобы не мешала ховеру по меню */
  transform: translateZ(0) scale(.98) !important; /* микро-эффект, можно убрать */
}

/* Дополнительно: если хотим “сверху” управлять через body-класс */
body.dv-tlogo-forcehide .dv-tlogo{
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Адаптивные брейкпоинты под Tilda (на будущее/если нужно докрутить) */
@media (max-width: 960px){
  /* пример: ничего не меняем, оставлено как место под настройки */
}
@media (max-width: 640px){
}
@media (max-width: 480px){
}
@media (max-width: 320px){
}
