.go-back-button {
    width: 60px;
    height: 45px;
    margin: 15px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 5px;
}

.go-back-button span {
    display: block;
    position: absolute;
    height: 9px;
    width: 50%;
    background: var(--blue);
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.go-back-button span:nth-child(even) {
    left: 50%;
    border-radius: 0 9px 9px 0;
}

.go-back-button span:nth-child(odd) {
    left: 0px;
    border-radius: 9px 0 0 9px;
}

.go-back-button span:nth-child(1),
.go-back-button span:nth-child(2) {
    top: 0px;
}

.go-back-button span:nth-child(3),
.go-back-button span:nth-child(4) {
    top: 36px;
}

.go-back-button.open span:nth-child(1),
.go-back-button.open span:nth-child(4) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.go-back-button.open span:nth-child(2),
.go-back-button.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.go-back-button.open span:nth-child(1) {
    left: 5px;
    top: 7px;
}

.go-back-button.open span:nth-child(2) {
    left: calc(50% - 5px);
    top: 7px;
}

.go-back-button.open span:nth-child(3) {
    left: 5px;
    top: 29px;
}

.go-back-button.open span:nth-child(4) {
    left: calc(50% - 5px);
    top: 29px;
}