﻿@import 'main.css';

#popup {
    visibility: hidden;
    min-width: 250px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    /*margin-left:-300px;*/
    /*background-color: #333;*/
    color: black;
    background-color: var(--main-vl-color);
    text-align: center;
    border-radius: var(--main-border-radius);
    padding: 16px;
    position: fixed;
    z-index: 1000;
    /*left: 50%;*/
    /*right: 50%;*/
    bottom: 30px;
    /*bottom:50%;*/
    font-size: 22px;
}

#popup.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 4s;
    animation: fadein 0.5s, fadeout 0.5s 4s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        /*bottom: 50%;*/
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        /*bottom: 50%;*/
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        /*bottom: 50%;*/
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        /*bottom: 50%;*/
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}
