html.html-modal {
    overflow: hidden;
}

html .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

html .modal__dialog {
    background: #fff;
    border-radius: 5px;
    text-align: center;
    min-width: 90%;
    max-width: min(600px, 90%);
}

html .modal__dialog * {
    color: #3a3a3a;
}

html .modal__header {
    padding: 20px 20px;
}

html .modal__header-logo {
    height: 60px;
    width: auto;
    display: block;
    margin: 10px auto 0;
}

html .modal__header h5 {
    margin: 20px 0 0;
    text-align: center;
    font-size: 18px;
}

html .modal__content {
    padding: 0 20px 30px;
}

html .modal__content p {
    margin: 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.5;
}

html .modal__content p + p {
    margin-top: 15px;
}

html .modal__footer {
    background-color: #fbfbfc;
    padding: 25px 0;
}

html .modal__footer button {
    margin: 5px;
}

html .badge--entry-confirmation {
    position: fixed;
    line-height: 0;
    cursor: pointer;
    z-index: 9998;
    font-size: 0;
    color: #999;
    display: flex;
    flex-direction: row;
    opacity: 1;
    border-radius: 25px;
    padding: 3px;
    transition-duration: 500ms;
    box-shadow: 1px 2px 8px 0 rgba(0, 0, 0, 0.2);
    background: #FFFFFF;
    overflow-y: hidden;
    bottom: 10px;
    left: 10px;
}

html .badge--entry-confirmation.badge--with-cookie-script {
    left: 66px;
}

html .badge--entry-confirmation .badge__image {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    width: 36px;
    height: 36px;
    text-align: center;
    border: 2px solid #3a3a3a;
    border-radius: 100%;
    box-sizing: content-box;
}

html .badge--entry-confirmation .badge__text {
    font-size: 16px;
    line-height: 40px;
    max-width: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Open Sans', Arial, 'Trebuchet MS', 'Segoe UI', 'Helvetica', sans-serif;
    overflow: hidden;
    transition-duration: 500ms;
    white-space: nowrap;
    padding-right: 0;
    color: #2d2d2d;
}

html .badge--entry-confirmation:hover .badge__text {
    max-width: 300px;
    padding-right: 15px;
    padding-left: 12px;
}

@media (min-width: 768px) {
    html .modal__dialog {
        min-width: 600px;
    }

    html .badge--entry-confirmation {
        left: 10px;
    }

    html .badge--entry-confirmation.badge--with-cookie-script {
        left: 10px;
        bottom: 66px;
    }
}
