.afeb-gotop {
    bottom: 0;
    display: none;
    justify-content: left;
    left: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    width: 100%;
    z-index: -99
}

.afeb-gotop-btn:active,
.afeb-gotop-btn:focus {
    border: none;
    box-shadow: none;
    outline: 0
}

.afeb-gotop-btn {
    align-items: center;
    background-color: #92003b;
    border: none;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .1);
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 25px;
    justify-content: center;
    height: 50px;
    margin: 20px;
    opacity: 0;
    padding: 10px;
    pointer-events: visible;
    transition: .2s;
    width: 50px
}

.afeb-gotop-btn:hover {
    background-color: #6b002b
}

.afeb-gotop-btn.show-title {
    border-radius: 8px;
    width: fit-content
}

.afeb-gotop-btn .afeb-gotop-ic {
    display: inline-block;
    margin: 0 5px;
    padding-top: 2px
}

.afeb-gotop-btn .afeb-gotop-ic>svg {
    height: auto;
    width: 20px
}

.afeb-gotop-btn.show-title>.afeb-gotop-title {
    font-size: 18px
}

.afeb-gotop-spin-anim {
    animation-name: afeb-spin-anim;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

@keyframes afeb-spin-anim {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}