.go-to-top-widget {
    position: fixed;
    top: 50%;
    right: calc(var(--spacing-small) * 8);
    z-index: 1000;
}

.go-to-top-widget #go-to-top-close {
    position: absolute;
    top: var(--spacing-small);
    right: var(--spacing-small);
    cursor: pointer;
}

.go-to-top-widget .go-to-top-float {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: var(--spacing-small);
    /*transform: translateY(40px);*/
    right: var(--spacing-small);
    background-color: var(--color-primary-text);
    color: var(--color-primary-bg);
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999, 0px 0px 2px #999 ;
    padding: calc(var(--spacing-small) / 2);
    cursor: pointer;
}

.go-to-top-widget .ph-caret-up {
    font-size: 24px;
}


