.goTopFixedButton {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 70%;
    right: 0;
    z-index: 4;
    transition: all 0.3s;
    perspective: 1;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 54px;
    height: 54px;
    text-align: center;
    color: #fff;
    transform: translate(130%, 0);
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .goTopFixedButton {
        display: flex;
    }
}

.goTopFixedButton:hover {
    color: #fff !important;
}

.goTopFixedButton i {
    font-size: 12px;
    transform: rotate(180deg);
}

.goTopFixedButton span {
    text-transform: uppercase;
}

.goTopFixedButton.isShown {
    transform: translate(0%, 0);
}

.goTopFixedButton {
    background-color: #ff8d00;
    color: #000 !important;
}
