
.cookie-policy {
    position: fixed;
    max-width: 24rem;
    width: 100%;
    left: 1rem;
    bottom: 1rem;
    z-index: 99999;
    color: #2d4156;
    border-radius: 5px;
    background-color: #FFF;
    box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
    -webkit-box-shadow: 0 0 20px 0 rgb(62 28 131 / 10%);
}

.cookie-policy .cp-content {
    padding: 1.2rem 1.8rem;
    font-size: .875rem;
}
.cookie-policy .cp-content p {
    font-size: .8rem;
}
.cookie-policy .cp-button {
    display: flex;
    justify-content: space-between;
}
.cookie-policy .cp-button a {
    display: block;
    background-color: #d8e0e6;
    line-height: 2.4rem;
    text-align: center;
    width: 100%;
    border-radius: 5px;
}
.cookie-policy .cp-button a:last-child {
    background-color: #1074bc;
    color: #FFF;
    margin-left: 1rem;
}

@media (max-width: 575px) {

    .cookie-policy {
        position: fixed;
        max-width: 24rem;
        width: 95%;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
    }

}

