.popupcookies {
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}
.popupcookies__content {
    padding: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    overflow: hidden;
}


.popupcookies__text {
    /*text-align: center;*/
    margin-bottom: 30px;
}

.popupcookies__btn-container {
    text-align: center;
}

.btn-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 60%;
}


@media only screen and (max-width: 768px) {
    .popupcookies__content {
        width: 90vw;
        padding: 30px;
        word-break: keep-all;
    }

}
