﻿@import url(../css/open-sans-font.css);

.banner_show a {
    white-space: nowrap;
}

.banner_show {
    font-size: 15px;
    font-family: OpenSans-Regular;
    width: 100%;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    position: fixed;
    padding: 17px;
    bottom: 0;
    left: 0;
    z-index: 999999;
    transition: ease all .4s;
    /*box-shadow: 0px -2px 5px 0px rgba(0, 0, 0, 0.3);*/
    border-top: 1px solid rgb(211, 211, 211);
}

.banner_hide {
    font-size: 15px;
    width: 100%;
    background-color: rgb(255, 255, 255);
    opacity: 0;
    position: fixed;
    padding: 17px;
    bottom: 0;
    left: -1%;
    z-index: -999999;
    transition: ease all .4s;
    -webkit-filter: blur(1px);
}

    .banner_hide .banner_link {
        color: rgb(0, 0, 0);
        background-color: transparent;
        text-decoration: none;
    }

.banner_link {
    background-color: rgb(30, 30, 30);
    color: white;
    padding: 8px 25px;
    margin-left: 7px;
}

    .banner_link:hover {
        color: rgb(255, 255, 255);
        background-color: rgb(55, 200, 55);
        text-decoration: none;
    }

.close_banner_button {
    margin-right: 80px;
}

/*------------------- media queries --------------------------*/
@media(max-width: 1360px) {
    .banner_link {
        color: rgb(0, 0, 0);
        font-family: OpenSans-Bold;
        background-color: transparent;
        padding: 0;
    }

        .banner_link:hover {
            background-color: transparent;
            color: rgb(55, 200, 55);
            text-decoration: none;
        }
}

/*@media(max-width:500px) {
    .close_banner_button {
        display: none;
    }
}*/
/*----------------------------------------------*/
.banner_notification_icon {
    width: 40px;
    margin-top: 0px;
}

.banner_generic_link {
    font-family: OpenSans-SemiBold;
    text-decoration: none;
    color: rgb(0, 0, 0);
}

    .banner_generic_link:hover {
        color: rgb(55, 200, 55);
        text-decoration: none;
    }

.banner_bold_link {
    font-family: OpenSans-Bold;
    color: rgb(0, 0, 0);
    color: rgb(55, 200, 55);
}

.banner_generic_link_no_underline {
    font-family: OpenSans-SemiBold;
    color: rgb(0, 0, 0);
}

    .banner_generic_link_no_underline:hover {
        font-family: OpenSans-SemiBold;
        color: rgb(55, 200, 55);
        text-decoration: none;
    }


    .banner_generic_link_no_underline:active {
        font-family: OpenSans-SemiBold;
        color: rgb(0, 0, 0);
        text-decoration: none;
    }
