:root {
    --font-size-modal-p: 10px;
    --font-size-modal-h3: 14px;
}
@media screen and (min-width: 400px) {
    :root {
        --font-size-modal-p: 12px;
        --font-size-modal-h3: 16px;
    }
}
@media screen and (min-width: 640px) {
    :root {
        --font-size-modal-p: 14px;
        --font-size-modal-h3: 18px;
    }
}
#cookiepolicy {
    background-color: rgba(11, 40, 86, 0.9);
    opacity: .8;
    padding: 5px 10px;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    width: 100%;
    z-index: 100;
    text-align: left;
}
#cookiepolicy > p {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
}
#cookiepolicy p a {
    outline: none !important;
    text-decoration: underline;
    color:#fff;
}
#cookiepolicy p button {
    font-size: 12px;
    padding: 5px;
    margin: 0;
    background-color: #fff;
    border: 1px solid #fff;
    color: black;
    border-radius: 0;
    font-weight: 600;
    transition: .5s;
}
#cookiepolicy p button:hover {
    border-color: #fff !important;
    color: #fff !important;
    background-color: green !important;
    cursor: pointer;
}

.modal-body > p, .modal-body > ul {
    text-align:justify;
    font-size: var(--font-size-modal-p);
}
.modal-body > h3 {
    font-size: var(--font-size-modal-h3);
}
.modal-title {
    line-height: 24px;
}
h4 {
    font-size: 16px;
}