/* ===========================
   Infomation
=========================== */

.notice-bar{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    min-height:52px;
    padding:12px 20px;
    background:#ffffff;
    color:#222;
    font-size:16px;
    font-weight:bold;
    text-decoration:none;
    transition:.2s;
}

.notice-bar:hover{
    background:#ffd200;
}

.notice-bar__pdf{
    display:inline-block;
    background:#d93a2f;
    color:#fff;
    border-radius:4px;
    padding:2px 6px;
    font-size:11px;
    line-height:1.4;
}

@media (max-width:767px){

.notice-bar{
    font-size:13px;
    padding:10px;
    min-height:46px;
}

.notice-bar__pdf{
    font-size:10px;
}

}