﻿.scroll-up-btn {
    position: fixed;
    bottom: 25px;
    right: 35px;
    width: 48px;
    height: 48px;
    background-color: #00529b;
    text-align: center;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .scroll-up-btn::before {
        content: '';
        display: block;
        margin-top: 5px;
        width: 15px;
        height: 15px;
        border-left: 4px solid white;
        border-bottom: 4px solid white;
        transform: rotate(135deg);
    }

    .scroll-up-btn.visible {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .scroll-up-btn.hidden {
        transform: translateY(50px);
    }

    .scroll-up-btn:hover {
        background-color: #003f7f;
    }

.umbraco-forms-form .multiplechoice .checkboxlist label {
    float: none;
}

@media (max-width: 768px) {
    .scroll-up-btn {
        width: 40px;
        height: 40px;
        right: 20px;
    }

        .scroll-up-btn::before {
            width: 12px;
            height: 12px;
            border-left: 2px solid white;
            border-bottom: 2px solid white;
        }
}

@media (max-width: 480px) {
    .scroll-up-btn {
        width: 35px;
        height: 35px;
        right: 20px;
    }

        .scroll-up-btn::before {
            width: 10px;
            height: 10px;
            border-left: 2px solid white;
            border-bottom: 2px solid white;
        }
}
