.roar-alert-mask {
    position: fixed;
    z-index: 9998;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6)
}

.roar-alert-message-body {
    position: fixed;
    z-index: 9999;
    max-width: 720px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fafafc;
    text-align: center;
    -webkit-box-shadow: 0 0 48px rgba(0, 0, 0, .15);
    box-shadow: 0 0 48px rgba(0, 0, 0, .15);
    -webkit-animation: roar-show .1s;
    animation: roar-show .1s
}

@media screen and (max-width:554px) {
    .roar-alert-message-body {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        -webkit-transform: none;
                transform: none;
    }
}

@media screen and (max-width:960px) {
    .roar-alert-message-body {
        width: 100%;
    }
}

.roar-alert-message-tbf {
    padding: 0 20px;
    font-size: 16px
}

.roar-alert-message-title {
    font-weight: 400;
    font-size: 18px;
    padding: 8px 24px
}

.roar-alert-message-content {
    padding: 24px;
    text-align: center;
    height: 85%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.roar-alert-message-button {
    position: relative;
    padding: 24px;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center
}

.roar-alert-message-button a {
    display: block;
    margin: 0 24px;
    text-decoration: none;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: normal;
    -webkit-transition: .5s;
    transition: .5s;
    text-transform: uppercase;
}

a.roar-alert-message-button-cancel,
a.roar-alert-message-button-cancel:link {
    color: #FFF;
    background-color: #ff0013;
}

a.roar-alert-message-button-cancel:hover {
    color: #FFF;
    background-color: #7F8C8D;
    text-decoration: none
}

a.roar-alert-message-button-confirm,
a.roar-alert-message-button-confirm:link {
    color: #FFF;
    background-color: #151515;
}

a.roar-alert-message-button-confirm:hover {
    color: #FFF;
    background-color: #151515;
    text-decoration: none;
}

@-webkit-keyframes roar-show {
    0% {
        -webkit-filter: opacity(.2);
        filter: opacity(.2);
        margin-top: -16px
    }

    100% {
        -webkit-filter: opacity(1);
        filter: opacity(1);
        margin-top: 0
    }
}

@keyframes roar-show {
    0% {
        -webkit-filter: opacity(.2);
        filter: opacity(.2);
        margin-top: -16px
    }

    100% {
        -webkit-filter: opacity(1);
        filter: opacity(1);
        margin-top: 0
    }
}

.roar-open {
    overflow: hidden
}

.roar-gdpr-badge {
    padding-bottom: 25px;
}

.roar-gdpr-badge i {
    font-size: 68px;
    color: #686868;
}

.roar-gdpr-title {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ed2024;
}

.roar-gdpr-body {
    margin-bottom: 15px;
}