.page .cookie
{
    width: 100vw;
    height: 18%;
    background-color: #3948a4;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    z-index: 200;
    flex-direction: column;
    font-size: 15px;
    justify-content: center;
    position: fixed;

}

.page .cookieNone
{
    display: none;
}

.page .cookie .text-container
{
    height: 60%;
    width: 850px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page .cookie .text-container .cookie-text
{
    color: white;
    width: 100%;
    word-wrap: break-word;
    text-align: center;
}

.page .cookie .btn
{
    border-color: white;
    color: white;
    border: 2px solid white;
    padding: 2px 10px;
    transition: all 0.2s ease-in-out;
}

.page .cookie .btn:hover
{

    border-color: #bbc5be;
    transition: all 0.2s ease-in-out;
    background-color: #3948a4;
    color: #bbc5be;
}

@media (max-width:1024px) 
{
    .page .cookie .text-container 
    {
        width: 93%;
    }
}

@media (max-width:600px)
{
    .page .cookie
    {
        height: 21%;
    }
}

@media (max-width:450px) 
{
    .page .cookie .text-container 
    {
        width: 93%;
    }

    .page .cookie .btn
    {
        height: 20px;
        width: 30%;
        font-size: 0.8em;
        padding-top: 4px;
        padding-bottom: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .page .cookie .text-container .cookie-text
    {
        font-size: 14px;
    }
}