﻿
#banner {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    background: none;
    z-index: 100000;
}

.banner-message {
    background: gold;
    opacity: 1;
    max-width: 820px;
    width: 100%;
    padding:10px 5px;
    border-radius: 0 0px 5px 5px;
    display: flex;
    flex-direction: column;
    font-weight: 300;
    align-items: center;
    font-size: 16px;
    height: auto;
    justify-content: space-around;
    box-shadow: 0 5px 5px #aaa;
}

.close-banner {
    padding: 4px 5px;
    background: white;
    border-radius: 3px;
    width: 85px;
    margin: 10px 0 0 20px;
    text-align: center;
    position: static;
    top: 135px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0px 1px 4px 0px #333;
}

    .close-banner:hover {
        cursor: pointer;
    }

@media (max-width:930px) {
    .banner-message {
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        padding:20px;
        font-size: 15px;
    }

    .close-banner {
        position: static;
        width: 100%;
        max-width: 500px;
        margin: 0;
    }
}
