/**********************************/
/**********************************/
/**** Cookie container styling ****/
/**********************************/
/**********************************/
.cookie_container {
    width: 400px;
    height: max-content;
    background-color: white;
    border-radius: 8px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 110;
    padding: 15px;
    flex-direction: column;
    display: none;
}
.cookie_container.show {
    display: flex;
}

.cookie_container p {
    margin: 0;
    font-size: 12px;
}
.cookie_container button {
    margin: 20px 0 0 0;
    width: 100%;
}

@media screen and (max-width: 870px) {
    .cookie_container {
        width: calc(100% - 50px);
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
}