@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");

/* Back to Top Button */
#back-to-top {
    box-sizing: border-box;
    margin: 0;
    padding: 4px 10px 0;
    position: fixed;            /* Stays in place when scrolling */
    bottom: 20px;               /* Distance from bottom */
    right: 20px;                /* Distance from right */
    border: none;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0;                 /* Hidden initially */
    pointer-events: none;       /* Prevent clicks when hidden */
    transition: opacity 0.3s ease;
    z-index: 101;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background-color: white;

    /* text styles */
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5em;
    color: rgba(11, 64, 8, 1);
}
  
/* Show when active */
#back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}
  
#back-to-top > i {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 30px;
}

@media (max-width: 1128px) {
    #back-to-top {
        bottom: 50px;
        right: 15px;

        /* text style */
        font-size: 10px;
    }
}