#showBtn {
    width: 40px;
    height: 40px;
    position: relative;
}
#showBtn span {
    width: 100%;
    height: 0px;
    border: 2px solid #fff;
    border-radius: 10px;
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    transition: .15s ease-in-out;
}

#showBtn span:nth-child(1) {
    top: 25%;
}

#showBtn span:nth-child(2) {
    top: 50%;
}

#showBtn span:nth-child(3) {
    top: 50%;
}

#showBtn span:nth-child(4) {
    top: 75%;
}

.opacityN {
    opacity: 0;
}

.opacityB {
    opacity: 1;
}

#mobileList{
    position: fixed;
    width: 100%;
    background: #341f5d;
    top: -100%;
    left: 0;
    z-index: 4;
    transition: cubic-bezier(0.165, 0.84, 0.44, 1) 1s;
}

#mobileList .link {
    padding: 20px 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    justify-content: center;
}

#mobileList .link .icon {
    width: 23px;
    height: 23px;
}

#mobileList .link .textbox {
    font-size: 18px;
    color: #fff;
}

#mobileList .link .textbox div {
    font-size: 12px;
    color: rgb(197, 170, 81);
    line-height: 16px;
}
