.top-scroll-btn-component {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 32px;
    height: 32px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.top-scroll-btn-component.displayed {
    opacity: 1;
    visibility: visible;
}
.top-scroll-btn-component.absolute-mode {
    position: absolute;
    bottom: auto;
    top: auto;
}
.top-scroll-btn-component .get-scroll-btn {
    border: 1px solid #029E5A;
    box-shadow: 0 2px 2px 0 rgba(1, 101, 58, 0.25);
    color: #000;
    font-weight: 600;
    background: #ffffff;
    text-align: center;
    border-radius: 6px;
    padding: 3px 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0px;
    width: 32px;
    height: 32px;
}
.top-scroll-btn-component .get-scroll-btn .svg-top-icon {
    color: #029E5A;
    height: 10px;
    width: 16px;
    margin: 6px 4px;
}
.top-scroll-btn-component .get-scroll-btn .text-top {
    display: none;
}
/* Add :hover only on desktop */
@media screen and (min-width: 1025px) {
    .top-scroll-btn-component .get-scroll-btn:hover {
        background-color: #027E48;
        text-decoration: none;
    }
    .top-scroll-btn-component .get-scroll-btn:hover .svg-top-icon {
        color: white;
        height: 10px;
        width: 16px;
        margin: 0px 4px;
    }
    .top-scroll-btn-component .get-scroll-btn:hover .text-top {
        display: block;
        color: #ffffff;
        text-align: center;
        font-size: 12px;
        font-style: normal;
        font-weight: 600;
        line-height: 10px; /* 83.333% */
    }
}
@media screen and (max-width: 1350px) {
    .top-scroll-btn-component {
        right: 20px;
    }
}
/* MOBILE AND TABLET STYLING */
@media screen and (max-width: 1024px) {
    .top-scroll-btn-component {
        right: 8px;
        bottom: 24px;
        width: 24px;
        height: 24px;
    }
    .top-scroll-btn-component .get-scroll-btn {
        width: 24px;
        height: 24px;
    }
    .top-scroll-btn-component .get-scroll-btn .svg-top-icon {
        margin: 3px 0px;
    }
}
/* Use :active on mobile + tablet */
@media screen and (max-width: 1024px) {
    .top-scroll-btn-component .get-scroll-btn:active {
        background-color: #027E48;
        text-decoration: none;
    }
    .top-scroll-btn-component .get-scroll-btn:active .svg-top-icon {
        color: white;
        margin: 3px 0px;
        margin-top: -1px;
    }
    .top-scroll-btn-component .get-scroll-btn:active .text-top {
        display: block;
        color: #ffffff;
        text-align: center;
        font-size: 10px;
        line-height: 4px;
        font-style: normal;
        font-weight: 600;
    }
}