div.acceptance
{
    position: fixed;
    display: flex;
    padding: 1% 1.5% 1% 1.5%;
    height: 12vh;
    width: 80vw;
    bottom: 20px;
    left: 10%;
    border: 1px solid silver;
    border-radius: 8px;
    background-color: white;
    display: none;
    z-index: 9999;
}

div.acceptance-text
{
    max-width: 80%;
    width: 80%;
}

div.acceptance-button
{
    display: flex;
    height: 60%;
    width: 100%;
    background-color: #3595c9;
    border-radius: 8px;
    color: white;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

div.acceptance-button-block
{
    display: flex;
    align-items: center;
    max-width: 20%;
    width: 20%;
}

a.acceptance-more
{
    text-decoration: underline;
    color: blue;
}

@media (max-width: 1100px)
{
    div.acceptance
    {
        height: 18vh;
    }
}

@media (max-width: 805px)
{
    div.acceptance
    {
        height: 21vh;
    }

    div.acceptance-button
    {
        height: 30%;
    }
}

@media (max-width: 670px)
{
    div.acceptance
    {
        height: 25vh;
    }
}

@media (max-width: 600px)
{
    div.acceptance
    {
        height: 30vh;
    }
}