/* Styling for the whole cookie modal */
.cookie-modal:not(.modal-backdrop) {
    width: 90%;
    max-width: 450px;
    margin-left: -225px;
    position: absolute;
    left: 50%;
    font-weight: normal;
}

@media screen and (max-width: 500px) {
    .cookie-modal:not(.modal-backdrop) {
        margin-left: 0;
        left: 5%;
    }

    .cookie-modal-body {
        max-height: 300px;
    }
}

/* Styling for the cookie modal header */
.cookie-modal-header {
    background-color: #e4e4e4;
    height: 20%;
    border-radius: 15% 15% 0 0;
}

/* Styling for the cookie modal header title */
.cookie-modal-title {
    line-height: 100%;
    color: #777777;
    font-size: 1.4em;
    font-family: var(--font-family), sans-serif;

}

/* Styling for the cookie modal footer */
.cookie-modal-footer {
    background-color: #ffffff;
    border-top: none;
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

/* Styling for the cookie modal accept button text */
.cookie-modal-accept-btn-text,
.cookie-modal-decline-btn-text {
    position: relative;
    font-family: var(--font-family), sans-serif;
    font-size: 1em;
    vertical-align: middle;
}
