<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stories {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    -webkit-user-select: none !important;
    user-select: none !important;
    width: 100vw;
    overflow: hidden;
    margin-top: -10px;
}



.stories_preview {
    width: 100%;
    max-width: 1180px;
    position: relative;
    padding: 0 15px;
}

@media screen and (max-width: 1200px) {
    .stories_preview {
        padding: 0;
    }
}

.stories_preview_shadow {
    height: 100%;
    width: 90px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    position: fixed;
    left: 0;
    z-index: 2;
}
.stories_preview_shadow.end {
    left: auto;
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.stories_preview_wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.stories_slider_nav {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.stories_slider_nav .nav_btn {
    width: 30px;
    height: 30px;
}

.stories_item {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(113, 197, 217, 1) 0%, rgba(50, 120, 145, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 200ms;
    flex-shrink: 0;
}
.stories_item:hover {
    opacity: 0.8;
}

.stories_item_content {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid #fff;
    overflow: hidden;
}

.stories_item.viewed {
    background: rgba(128, 128, 128, 0.654);
}

.stories_viewer {
    position: fixed;
    width: 100%;
    height: 100dvh;
    top: 0;
    left: 0;
    z-index: 22000;
    background: #1a1a1aec;
    display: none;
}

.stories_viewer_close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: all 200ms;
}
.stories_viewer_close:hover {
    opacity: 0.8;
}

.stories_viewer_content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.stories_viewer_slider {
    width: 100%;
}

.stories_viewer_slider_slides {
    display: flex;
}

.stories_viewer_slider_slide {
    width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.stories_viewer_slider_slide:before { 
    content: "";
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 40px;
    padding: 6px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--brand-600);
    --_m: 
      conic-gradient(#0000 10%,#000),
      linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
            mask: var(--_m);
    -webkit-mask-composite: source-out;
            mask-composite: subtract;
    animation: l3 1s infinite linear;
}

@keyframes l3 {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.stories_viewer_slider_slide video {
    pointer-events: none;
}

.stories_viewer_slider_slide_container {
    width: 310px;
    aspect-ratio: 9/16;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 300ms;
    transform: scale(0.8);
}
.stories_viewer_slider_slide.swiper-slide-active .stories_viewer_slider_slide_container {
    transform: scale(1);
}

.stories_viewer_slider_slide_nav {
    position: absolute;
    height: 100%;
    width: 50%;
    top: 0;
    left: 0;
}
.stories_viewer_slider_slide_nav.next {
    left: 50%;
}

.stories_view_arrow {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 200ms;
    position: absolute;
    top: 50%;
    z-index: 22;
}
.stories_view_arrow:hover {
    opacity: 0.8;
}

.stories_view_arrow.left {
    left: calc(50% - 205px);
}
.stories_view_arrow.right {
    left: calc(50% + 180px);
    transform: rotate(180deg);
}

.stories_view_arrow.swiper-button-disabled {
    display: none;
}

.stories_view_media_progress {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 10px;
    gap: 5px;
    position: absolute;
    top: 10px;
}

.stories_view_media_progress_item {
    height: 3px;
    border-radius: 4px;
    background: rgba(128, 128, 128, 0.418);
    width: 100%;
    overflow: hidden;
}

.stories_view_media_progress_item_fill {
    height: 100%;
    background: #fff;
    border-radius: 4px;
    transition: all 1s;
    transition-timing-function: linear;
}

.stories_view_media_contorls {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    padding: 0 10px;
    gap: 5px;
    position: absolute;
    top: 20px;
    display: none;
}
.swiper-slide-active .stories_view_media_contorls {
    display: flex;
}

.stories_view_media_contorls_pause,
.stories_view_media_contorls_close {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 200ms;
}
.stories_view_media_contorls_pause:hover,
.stories_view_media_contorls_close:hover {
    opacity: 0.8;
}

.stories_view_media_contorls_pause .play {
    display: none;
}

.stories_view_media_contorls_close {
    display: none;
}

.videos__empty {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 28px;
    color: var(--base-white);
    line-height: normal;
  
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 16px;
    width: 100%;
  }

@media screen and (max-width: 1270px) {
    .stories_preview_shadow {
        display: none;
    }
}

@media screen and (max-width: 1270px) {
    .stories_preview {
        width: 100%;
        max-width: calc(100% - 32px);
    }
}

@media screen and (max-width: 980px) {
    .about.block {
        /* padding-top: 20px; */
    }
}

@media screen and (max-width: 640px) {
    .about.block {
        padding-top: 20px;
    }
    .stories_slider_nav {
        display: none;
    }
    .stories_item {
        height: 76px;
        width: 76px;
    }
    .stories_item_content {
        width: 70px;
        height: 70px;
    }
}

@media screen and (max-width: 500px) {
    .stories_viewer {
        /* background: #000000f6; */
        -webkit-user-select: none !important;
        user-select: none !important;
    }
    .stories_viewer_slider_slide {
        width: 100vw;
        height: 100dvh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stories_viewer_slider_slide_container {
        width: 100vw;
        height: 100%;
        transform: none;
        border-radius: 0;
    }
    .stories_viewer_slider_slide.swiper-slide-active .stories_viewer_slider_slide_container {
        transform: none;
    }
    .stories_view_arrow {
        display: none;
    }

    .stories_view_media_contorls_close {
        display: flex;
    }

    .stories_viewer_close {
        display: none;
    }
}

.header__life {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    cursor: pointer;
    /* background: var(--brand-600); */
    border-radius: 6px;
    transition: all 200ms;
    padding: 8px 8px;
    padding-left: 15px;
  }
  .header__life:hover {
    opacity: 0.8;
  }
  
  .header__life_text {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    color: var(--colors-text-text-secondary-700);
    color: var(--brand-600);
    /* color: #fff; */
  }
  
  @media screen and (max-width: 640px) {
    .header__life_text {
      font-size: 14px;
    }
    header .select_main_text {
      display: none;
    }
  }
  
  .header__life_icon {
    position: relative;
    width: 10px;
    height: 10px;
    background-color: #ff0000; /* Красный цвет для эфира */
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-out;
  }
  
  .header__life_icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ff0000;
    opacity: 0;
    animation: ripple 1.5s infinite ease-out;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.9;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  @keyframes ripple {
    0% {
      transform: scale(0.5);
      opacity: 0.5;
    }
    100% {
      transform: scale(1.5);
      opacity: 0;
    }
  }

.header__nav_list .header__life {
    margin-left: 0;
}

.header__nav_list .header__life_text {
    font-size: 14.5px;
}</pre></body></html>