<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.uc-my-scroll-div {
    overflow: scroll;
    -ms-overflow-style: none;  /* Р”Р»СЏ Internet Explorer Рё Edge */
    scrollbar-width: none;  /* Р”Р»СЏ Firefox */
    scroll-behavior: smooth;
}

.uc-my-scroll-div::-webkit-scrollbar {
    display: none;  /* Р”Р»СЏ Chrome, Safari Рё Opera */
    width: 0;
}




    /* РЎС‚РёР»Рё РґР»СЏ СЃРєСЂС‹С‚РёСЏ РіРѕСЂРёР·РѕРЅС‚Р°Р»СЊРЅРѕРіРѕ СЃРєСЂРѕР»Р»Р° РґР»СЏ РІСЃРµС… Р±Р»РѕРєРѕРІ РЅР° СЃР°Р№С‚Рµ */
    .t396__artboard { 
        overflow-y: auto;
         scroll-behavior: smooth;
    }

   .t396__artboard::-webkit-scrollbar {
        width: 0; /* РЎРєСЂС‹РІР°РµС‚ СЃРєСЂРѕР»Р»Р±Р°СЂ */
    }


@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.anima {
  position: relative;
  overflow: hidden;
}

.anima::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  filter: blur(5px); /* Р­С„С„РµРєС‚ СЂР°Р·РјС‹С‚РёСЏ */
  transform: translateX(-100%);
  animation: shine 15s ease-in-out infinite;
}
  
        .callt, .calln {

            opacity: 0;
            transition: opacity 0.5s;
        }

        .callt {
            animation: calltAnim 25s infinite;
        }

        .calln {
            animation: callnAnim 25s infinite;
        }

        @keyframes calltAnim {
            0% {
                opacity: 1;
            }
            78% {
                opacity: 1;
            }
            80% {
                opacity: 0;
            }
            98% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }

        @keyframes callnAnim {
            0% {
                opacity: 0;
            }
            78% {
                opacity: 0;
            }
            80% {
                opacity: 1;
            }
            98% {
                opacity: 1;
            }
            100% {
                opacity: 0;
            }
        }
        
        
.uc-author .t545__text a {
    color: black !important;
    padding: 10px 20px;
    border: solid #ff0000;
    border-radius: 40px;
    background-color: #ff0000;
    transition: background-color 0.3s ease, color 0.3s ease; /* Р”РѕР±Р°РІР»СЏРµРј РїР»Р°РІРЅС‹Р№ РїРµСЂРµС…РѕРґ */
}

.uc-author .t545__text a:hover {
    color: #fff !important;
    background-color: black;
}</pre></body></html>