.container {
    position: fixed;
    top: 0;
    /* background: #16418f; */
    /* background: var(--gradient); */
    /* background: var(--celebrityschool-pink); */
    background: linear-gradient(
        90deg,
        var(--celebrityschool-purple),
        rgb(235, 88, 124),
        var(--celebrityschool-purple)
    );
    background-size: 200%;
    height: 0px;
    width: 100vw;
    overflow: hidden;
    z-index: -10;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: toggle-off 0.75s ease-in;
}
.container.active {
    /* animation: toggle 1s ease-in forwards 1s; */
    animation: toggle 0.7s ease-out forwards 1s,
        loadskeleton 1.25s ease infinite;
    /* -webkit-animation: loadskeleton 1.25s ease infinite;
    animation: loadskeleton 1.25s ease infinite; */
}
.message {
    font-size: 14px;
    font-weight: 300;
    width: 80%;
    text-align: center;
    color: #fff !important;
    /* font-weight: 500; */
}
.message a {
    text-decoration: none !important;
    color: #fff !important;
}
.cancel_container {
    position: absolute;
    height: 20px;
    width: 20px;
    z-index: 50;
    cursor: pointer !important;
    right: 4%;
    color: #fff !important;
}

@keyframes toggle {
    0% {
        /* transform-origin: top;
        transform: scaleY(1); */
        height: 0px;
        z-index: -10;
    }
    100% {
        /* transform-origin: top;
        transform: scaleY(0); */
        height: 40px;
        z-index: 50;
    }
}
@keyframes toggle-off {
    0% {
        /* transform-origin: top;
        transform: scaleY(0); */
        height: 40px;
        z-index: 50;
    }
    100% {
        /* transform-origin: top;
        transform: scaleY(1); */
        height: 0px;
        z-index: -10;
    }
}

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

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

@media screen and (max-width: 615px) {
    .message {
        font-size: 12px;
    }
}

@media screen and (max-width: 430px) {
    .container {
        position: fixed;
        top: 0;
        /* background: #16418f; */
        /* background: var(--gradient); */
        /* background: var(--celebrityschool-pink); */
        background: linear-gradient(
            90deg,
            var(--celebrityschool-purple),
            rgb(235, 88, 124),
            var(--celebrityschool-purple)
        );
        background-size: 200%;
        height: 0px;
        width: 100vw;
        overflow: hidden;
        z-index: -10;
        display: flex;
        justify-content: center;
        align-items: center;
        animation: toggle-off 0.75s ease-in;
    }
    .container.active {
        /* animation: toggle 1s ease-in forwards 1s; */
        animation: toggle 0.7s ease-out forwards 1s,
            loadskeleton 1.25s ease infinite;
        /* -webkit-animation: loadskeleton 1.25s ease infinite;
        animation: loadskeleton 1.25s ease infinite; */
    }
    .message {
        font-weight: 300;
        width: 80%;
        text-align: center;
        /* font-weight: 500; */
    }
    .cancel_container {
        position: absolute;
        height: 20px;
        width: 20px;
        z-index: 50;
        cursor: pointer !important;
        right: 4%;
    }

    @keyframes toggle {
        0% {
            /* transform-origin: top;
            transform: scaleY(1); */
            height: 0px;
            z-index: -10;
        }
        100% {
            /* transform-origin: top;
            transform: scaleY(0); */
            height: 60px;
            z-index: 50;
        }
    }
    @keyframes toggle-off {
        0% {
            /* transform-origin: top;
            transform: scaleY(0); */
            height: 60px;
            z-index: 50;
        }
        100% {
            /* transform-origin: top;
            transform: scaleY(1); */
            height: 0px;
            z-index: -10;
        }
    }
}
