@charset "UTF-8";
/* CSS Document */


ul#appear_header {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: -100px;
    display: flex!important;
    /* justify-content: center; */
    justify-content: flex-end;
    /* padding: 30px; */
    transition: all 0.2s ease-in-out 0s;
    right:30px;
}

ul#appear_header li a {
    color: #fff;
    padding: 0 15px;
    font-weight: 600;
    text-shadow: 0 0 5px #000;
    font-size: 1.5rem;
}

.is-show {
    /* top: 0!important; */
    top: 80px!important;
}


@media screen and (max-width: 1000px) {

ul#appear_header {
	display: none!important;
}

}