@charset "ISO-8859-1";
div.newsSearchOverlay {
    background-color: rgba(0,0, 0, 0.65);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    margin-top: -2em;
    z-index:10000;
    padding-top:25%;
    color:black;
    overflow:auto;
}
a#close {
    background-color: rgb(204,204,204);
    border-radius: 50%;
    color: rgb(255,255,255);
    display: block;
    font-family: 'Varela Round', sans-serif;
    font-size: .8em;
    padding: .2em .5em;
    position: absolute;
    top: 10%;
    transition: all 400ms ease;
    right: 4em;
    z-index:11000;
}
@media screen and (min-width: 48em)
{
  a#close {
    position: absolute;
    top: 10%;
    right: 5%;
    z-index:11000;
  }
}
a#close:hover {
        background-color: #1bc5b3;
        cursor: pointer;
}