.notice a {
    text-decoration: none;
    /*color: #f2f2f2;*/
    text-transform: uppercase;
}

.notice a:hover {
    color: #D7122B;
}

.overlay-bg,
.overlay-bg2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    /* 	background: #000; */
     	background: rgba(0, 0, 0, 0.35); 
    z-index: 10000;
}

.overlay-content,
.overlay-content2 {
    background-color: #FFF;
    padding: 1%;
    width: 40%;
    height: 70%;
    position: fixed;
    top: 15%;
    left: 50%;
    margin: 0 0 0 -20%;
    /* add negative left margin for half the width to center the div */
    cursor: default;
    overflow-y: scroll;
    box-shadow: 0px 0px 2.125em rgba(0, 0, 0, 0.75);
    border-radius: 0px;
    text-align: left;
    margin: 0px 0px 0px -40%;
    width: 80%;
    z-index: 10002;
}

@media (min-width: 1281px) {
    .overlay-content,
    .overlay-content2 {
        left: 23%;
        right: 2%;
        height: 70%;
        width: 54%;
        margin: 0px 0px 0px 0%;
    }
}

.notice {
    color: #ffffff;
    padding-top: 0px;
    text-align: left;

}

.notice-header {
    margin-top=0px;
    font-family: SeatMetaNormal;
    font-weight: 600;
    /*text-transform: uppercase;*/
    font-size: 24px;
}

.overlay-close {
    display: none;
}


/* "CLOSE" BUTTON */

.close-btn {
    display: inherit;
    width: 40px;
    height: 40px;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    border: 0px;
    position: fixed;
    z-index: 10002;
    top: 14px;
    /* 	top: 1em; */
    right: 1em;
    -webkit-transition: color .3s ease;
    /* 	transition: color .3s ease; */
    transition: all .3s ease 0s;
}

.close-btn:hover,
.close-btn:focus {
    background-color: rgb(0, 0, 0);
    opacity: 1;
    outline: 0;
}

.close-btn:before,
.close-btn:after {
    width: 4px;
    background-color: #fff;
    content: '';
    position: absolute;
    top: 25%;
    bottom: 25%;
    left: 50%;
    margin-left: -2px;
}

.close-btn:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.close-btn:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
