.cookie-law {
    position: fixed;
    bottom: 50px;
    width: 90vw;
    background: var(--primary-bg-color);
    border-shaddow: 1px solid var(--primary-bg-color);
    height: auto;
    text-align: center;
    left: 5vw;
    padding: 100px 40px;
    border-radius: 5px;
    z-index: 9999 !important;
}
.cookie-law-shaddow {
    content: "";
    position: fixed;
    background: rgba(0,0,0,0.24);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 100;
}
.cookie-law p {
    width: 60%;
    float: left;
    text-align: left;
    font-size: 14px;
    color: var(--primary-font-color);
    line-height: 23px;
    padding-right: 50px;
}
.cookie-law .button-container {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row-reverse;
}
@media (max-width: 768px) {
    .cookie-law p {
        width: 100%;
    }
    .cookie-law .button-container {
        display: inline-flex;
        flex-direction: column;
        width: 100%;
    }
}
.cookie-law button {
    width: 80%;
    float: right;
    border-radius: 4px;
    font-weight: bold;
    margin: 5px;
}
.cookie-law button.btn-secondary {
    background: none;
    color: var(--secondary-font-color);
}
@media (max-width: 768px) {
    .cookie-law p {
        width: 100%;
        float: left;
        text-align: left;
        font-size: 14px;
        color: var(--primary-font-color);
        line-height: 23px;
    }
    .cookie-law button {
        width: 100%;
        float: right;
        border-radius: 4px;
        font-weight: bold;
    }
}