.burger-container {
    position: relative;
    width: 40px;
    height: 30px;
    user-select: none;
}
.the-btn-burger {
    cursor: pointer;
    display: block;
    height: 30px;
    left: 50%;
    perspective: 1000px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: left .5s ease-in;
    width: 40px
}
.the-btn-burger:before {
    content: "";
    display: block;
    height: 100%;
    left: 50%;
    padding: 20px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    box-sizing: border-box;
}

.the-btn-burger.act:hover span {
    background-color: #a2a2a2
}

.the-btn-burger.act span:first-child {
    transform: rotate(-45deg) translateZ(0)
}
.the-btn-burger.act span:nth-child(2) {
    opacity: 0
}

.the-btn-burger.act:not(.vbr) span:nth-child(3) {
    transform: rotate(45deg) translateZ(0)
}

.the-btn-burger:hover span:nth-child(2):after,
.the-btn-burger:hover span:nth-child(2):before {
    transform: translateY(0) translateZ(0)
}
.the-btn-burger span,
.the-btn-burger span:nth-child(2):after,
.the-btn-burger span:nth-child(2):before {
    background-color: #fff;
    border-radius: 1px;
    height: 2px;
    position: absolute;
    transform: translateZ(0);
    transition: transform .3s ease,background-color .75s ease;
    width: 100%
}
.the-btn-burger span {
    margin-top: -1px;
    top: 50%
}
.the-btn-burger span:first-child {
    transform: translateY(-14px)
}
.the-btn-burger span:nth-child(2) {
    height: 0
}
.the-btn-burger span:nth-child(2):after,
.the-btn-burger span:nth-child(2):before {
    content: ""
}
.the-btn-burger span:nth-child(2):before {
    transform: translateY(-14px)
}
.the-btn-burger span:nth-child(2):after,
.the-btn-burger span:nth-child(3) {
    transform: translateY(14px)
}
@media (max-width: 1280px) {
    .burger-container {
        zoom: 0.5;
    }
}
