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

body {
    background-size: cover;
    background-repeat: repeat-x;
    background-position: center;
    background-attachment: fixed;
}

.info-card {
    width: 60%;
    height: auto;
    -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
    overflow-x: auto;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 5;
    border-radius: 8px;
    font-size: 22px;
}

.info-card:hover {
    -webkit-box-shadow: 0 40px 77px rgba(0, 0, 0, 0.22), 0 27px 24px rgba(0, 0, 0, 0.2);
    box-shadow: 0 40px 77px rgba(0, 0, 0, 0.22), 0 27px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(-0.25rem);
}

.glow-on-hover {
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 200%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.contact {
    opacity: .6;
}

.contact:hover {
    opacity: 1;
}

.fa-telegram {
    font-size: 56px;
}

.close {
    color: gray;
    opacity: .4
}

.close:focus,
.close:hover {
    cursor: pointer;
    opacity: 1
}

#fullscreen-preview {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    text-align: center;
}

.loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 10000;
    margin: 10px;
    border-radius: 20px;
    width: 100%;
    height: 100%;
}

.progressBarContainer {
    width: 80%;
    background-color: transparent;
    border-radius: 10px;
    padding: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    transform: translate(-50%, 50%);
}

#progressLabel {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

[id*="progressBar"] {
    width: 0%;
    height: 30px;
    background-color: #387f4d;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 8px;
    text-align: center;
    line-height: 30px;
    color: white;
}

[class*="percentIndicator"] {
    padding-right: 10px;
}

.spinner {
    border: 2px solid #999999;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
}

.gallery-button {
    width: auto;
    top: 98%;
    left: 99%;
    transform: translate(-99%, -98%);
    background: #fff;
    position: fixed;
    border-radius: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

@media (max-width: 868px) {
    .info-card {
        width: 85%;
        font-size: 14px;
    }

    .gallery-button {
        top: 96%;
        left: 97%;
        transform: translate(-97%, -96%);
    }
}

@media (max-width: 668px) {
    .info-card {
        width: 95%;
        font-size: 14px;
    }

    /* .gallery {
        position: absolute;
        top: 90%;
        left: 50%;
        transform: translate(-50%, -90%);
    } */

    .glow-on-hover {
        height: 35px;
        font-size: 12px;
    }

    .gallery-button {
        top: 95%;
        left: 50%;
        transform: translate(-50%, -95%);
        position: absolute;
    }
}
</pre></body></html>