.header {}

.header {
    z-index: 99;
    font-weight: bold;
    width: 100%;
}

/* .header ._hz {
    font-size: 12px;
    background: red;
    color: #fff;
    position: absolute;
    height: 15px;
    padding: 1px 3px;
    line-height: 15px;
    right: 430px;
    border-radius: 3px;
    top: 5px;
    z-index: 0;
    animation: hz_move 1s infinite;
    -webkit-animation: hz_move 1s infinite;
    -moz-animation: hz_move 1s infinite;
}

.header ._hz::after {
    border-top: 4px solid #f52f3e;
    border-left: 4px transparent solid;
    border-right: 4px transparent solid;
    display: block;
    content: "";
    position: absolute;
    bottom: -4px;
    right: 15px;
} */

.header .title {
    height: 36px;
    line-height: 36px;
    margin: 18px 10px;
    font-size: 22px;
    color: #fff;
}

.header .menu {
    height: 36px;
    line-height: 36px;
    margin: 18px 4px;
}

.header .menu .item {
    float: left;
    height: 36px;
    line-height: 36px;
}

.header .menu .item a {
    color: #fff;
    font-size: 14px;
    margin-left: 37px;
    height: 24px;
    line-height: 24px;
    margin-top: 6px;
}


/* .header .menu .item:not(:first-child) {
    margin-left: 37px;
}

.header menu .item:nth-last-child(-n+1) {
    margin-left: 5px;
}

.header .menu .item:nth-last-child(-n+3) {
    border: 1px solid #fff;
    border-radius: 30px;
    width: 65px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    margin-top: 6px;
} */

.header .menu .item:nth-last-child(-n+2) a {}

.header .menu .admin {
    display: none;
}

@media only screen and (min-width: 300px) and (max-width: 1200px) {
    .header .menu {
        background-color: #7e72b2;
        position: relative;
        margin: 0px;
        height: auto;
    }
    .header .menu .mobiel {
        margin: 18px 10px;
        height: 36px;
        line-height: 36px;
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
        align-items: flex-end;
    }
	.header .menu .item a {
		margin-left:0px;
	}
    .header .menu .mobiel span {
        width: 20px;
        height: 3px;
        background-color: #fff;
        border-radius: 15px;
        display: inline-block;
        margin-top: 5px;
    }
    .header .menu .item {
        float: none;
        width: 10rem;
        text-align: center;
    }
    .header .menu .item:not(:first-child) {
        margin-left: 0px;
    }
    .header .menu .item:nth-last-child(-n+2) {
        width: auto;
        height: auto;
        border: none;
    }
    .header .menu .menu_list {
        position: absolute;
        right: -11rem;
        transition: all .5s;
        padding: 10px 0px;
        display: none;
        z-index: 99;
        background-color: #7e72b2;
    }
    .header .menu .menu_list.active {
        display: block;
        right: 0;
    }
}