﻿.valert {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    margin: 0;
    padding: 10px 15px;
    background: #f00;
    color: black;
    z-index: 99999999999;
    background: url(https://covid19.govt.nz/_resources/themes/app/dist/images/stripes.svg?f45b245…) white no-repeat center;
    background-size: cover;
    display: none;
}

    .valert p a {
        color: black;
        text-decoration: none !important;
    }

    .valert .close {
        display: flex;
        flex-direction: row-reverse;
    }

        .valert .close .vclose {
            align-self: center;
            font-size: 40px;
            padding: 0 15px 0 0;
            cursor: pointer;
            text-align: right;
        }

    .valert .valert-text {
        background-color: rgba(255,255,255,0.9);
        padding: 10px;
        padding: 10px 25px;
    }

        .valert .valert-text p {
            margin: 0;
        }

@media(max-width:991px) {
    .valert > div {
        text-align: center !important;
    }

    .valert .vclose {
        position: absolute;
        right: 0;
        padding: 0;
        text-align: center;
    }
}

@media(max-width: 768px) {
    .valert .valert-left {
        display: none;
    }

    .valert .valert-text {
        padding: 15px;
    }
}

@media(max-width:480px) {

    .valert {
        font-size: 12px;
        line-height: 1.2;
    }
}
