.sc5::-webkit-scrollbar {
    width: 8px;
    height: 15px;
}

.sc5::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
}

.sc5::-webkit-scrollbar-thumb {
    background-image: linear-gradient(45deg, #00aeff, #a68eff);
    border-radius: 8px;
    -webkit-box-shadow: rgba(0, 0, 0, .12) 0 3px 13px 1px;
}

.blink_me {
    animation: blinker 0.5s linear infinite alternate;
}

@keyframes blinker {
    from {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px purple,
            0 0 70px purple, 0 0 80px purple, 0 0 100px purple, 0 0 150px purple;
    }

    to {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px purple,
            0 0 35px purple, 0 0 40px purple, 0 0 50px purple, 0 0 75px purple;
    }
}

.loader {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    background:rgba(0, 0, 0, 0.75);
}

.hidden {
    animation: fadeOut 1s;
    animation-fill-mode: forwards;
}

@keyframes fadeOut {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}