.blm-consent-modal__wrapper {
    font-family: "Roboto";
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    display: flex;
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    height: calc(100%);
    width: calc(100%);
    padding: 16px;
    left: 0;
    top: 0;
    overflow: auto;
    font-size: 16px;
    z-index: 999999;
}

/* ================================================== */
/* wrapper */

.blm-consent-modal__wrapper p {
    line-height: 1.6;
    margin: 0;
}

.blm-consent-modal__wrapper a {
    color: #06a;
}

.blm-consent-modal__wrapper h2 {
    margin: 0;
    font-size: 26px;
}

/* ================================================== */
/* box */

.blm-consent-modal__box {
    max-width: 680px;
}

.blm-consent-modal__header, .blm-consent-modal__text, .blm-consent-modal__footer {
    padding: 26px;
} 

.blm-consent-modal__header, .blm-consent-modal__footer {
    background-color: #06a;
    color: white;
    display: flex;
}

/* ================================================== */
/* header */

.blm-consent-modal__header {
    justify-content: space-between;
    align-items: center;
}

/* ================================================== */
/* text */

.blm-consent-modal__text {
    background-color: white;
}

.blm-consent-modal__text p {
    margin-bottom: 24px;   
}

.blm-consent-modal__text p:last-child {
    margin-bottom: 0px;   
}

/* ================================================== */
/* footer */

.blm-consent-modal__footer {
    justify-content: space-between;
    display: flex;
}

.blm-consent-modal__footer a {
    color: white;
}

.blm-consent-modal__footer__left {
    align-items: center;
    display: flex;
}

.blm-consent-modal__footer__right {
    align-items: center;
    display: flex;
}

/* ================================================== */
/* button */

.blm-consent-modal__button, .blm-consent-modal_x-button {
    border: 1px solid white;
    color: white;    
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    transition: 0.2s;
    user-select: none;
    background: transparent;
    z-index: 999999;
    font-size: 16px;
    border-radius: 0;
}

.blm-consent-modal__button:hover, .blm-consent-modal_x-button:hover {
    background: white;
    color: black;
}

.blm-consent-modal__button {
    height: 42px;
    min-width: 180px;
    margin-right: 24px;
}

.blm-consent-modal_x-button {
    margin-left: 24px;
    height: 42px;
    width: 42px;
}

/* ================================================== */
/* lang switch */

.blm-consent-modal__lang-switch a {
    align-items: center;
    user-select: none;
    display: flex;
    text-decoration: none;
}

.blm-consent-modal__lang-switch span:first-child {
    margin-right: 5px;
}

/* ================================================== */
/* mobile styles */

@media only screen and (max-width: 650px) {

    .blm-consent-modal__wrapper {
        align-items: flex-start;
    }

    .blm-consent-modal__footer {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .blm-consent-modal__footer__left {
        flex-wrap: wrap;
    }

    .blm-consent-modal__footer__right {
        justify-content: space-between;
        margin-bottom: 24px;
    }

    .blm-consent-modal__footer__left, .blm-consent-modal__footer__right {
        width: 100%;
    }  

    .blm-consent-modal__button {
        margin-bottom: 24px;
        margin-right: 0;
        width: 100%;
    }

    .blm-consent-modal__button:last-child {
        margin-bottom: 0px;
    }
}