/*=============================
.btn-trigger
=============================*/
.btn-trigger {
    position: relative;
    width: 30px;
    height: 44px;
    margin-left: 30px;
    cursor: default;
    opacity: 0;
    z-index: 2000;
}

.btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000000;
    /* border-radius: 4px; */
}

.btn-trigger,
.btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
    top: 16px;
}

.btn-trigger span:nth-of-type(2) {
    bottom: 16px;
}

/*=============================
#btn05
=============================*/
#btn05.active span:nth-of-type(1) {
    -webkit-transform: translateY(5px) rotate(-30deg);
    transform: translateY(5px) rotate(-30deg);
}

@-webkit-keyframes active-btn05-bar02 {
    100% {
        height: 0;
    }
}

@keyframes active-btn05-bar02 {
    100% {
        height: 0;
    }
}

#btn05.active span:nth-of-type(2) {
    -webkit-transform: translateY(-5px) rotate(30deg);
    transform: translateY(-5px) rotate(30deg);
}


@media screen and (max-width:799px) {
    .btn-trigger {
        opacity: 1;
        cursor: pointer;
    }
}