/**
 * rt_cookie_banner: styles
 */

.rt-cookie-banner {
    position: relative;
    z-index: 1000000;
}

.rt-shadowbox {
    top: 0; bottom:0; left: 0; right: 0;
    position: fixed;
    background: rgba(0,0,0,0.5);
    z-index: 999999;
    display: none;
}

.rt-cookie-banner-notification {
    position: fixed;
    bottom:0; left: 0; right: 0;
    display: flex;
    background: #002c61;
    padding: 0.5rem;
    color: #FFF;
    z-index:5000;
    font-family: Play;
    border-top:solid 1px #FFF;
    
}

.rt-cookie-banner p {
    flex-grow: 1;
    padding: 0 0.5rem;
}

.rt-cookie-banner button {
    border-style: none;
    background: #efefef;
    cursor: pointer;
}
.rt-cookie-banner a {
    color: #FFF;
}

@media(max-width:960px) {
    .rt-cookie-banner-notification {
        top: 0; bottom:0; left: 0; right: 0;
        max-height: 250px;
        width: 300px;
        margin: auto;
        flex-direction: column;
        border:solid 1px #FFF;
    }
    .rt-cookie-banner button {
        padding: 1em;
    }
    .rt-shadowbox {
        display: block;
    }
}
