.important-notice{
    background-color: #fbc02d;
    color: #0e123d;
    border-radius: 5px;
    font-family: "indivisible", sans-serif !important;
    font-size: 13px !important;    
    font-weight: 600;
    position: fixed;
    bottom: -3px;
    right: 100px;
    opacity: 0;
    padding: 0;
    transition: opacity 0.5s;
    z-index: 9999;
    margin: 0;
    text-align: center;
    max-width: 180px;

}
.important-notice.on {
    opacity: 1;
}
.important-notice a {
    display: inline-block;
    padding: 10px 15px;
    color:  #0d113f;
    text-decoration: none;
}
.important-notice:hover {
    background-color: #f9a825;
}


@media screen and (max-width: 778px) {
    .important-notice {
        right: 0;
        left: 0;
        margin: auto;
    }
    
}