section.scrollable-section,
section.horizontal-scroll {
    position: relative;
}
section.scrollable-section .scroll-arrow,
section.horizontal-scroll .scroll-arrow {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(calc(-50% - 47.5px)) !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 4px !important;
    background: var(--bs-light) !important;
    border: 0px solid var(--bs-light) !important;
    outline: none !important;
    z-index: 1000 !important;
}
section.scrollable-section .scroll-arrow.left-arrow,
section.horizontal-scroll .scroll-arrow.left-arrow {
    left: 0.625rem !important; 
}
section.scrollable-section .scroll-arrow.right-arrow,
section.horizontal-scroll .scroll-arrow.right-arrow {
    right: 0.625rem !important;
}
section.scrollable-section .scroll-arrow.hide,
section.scrollable-section .scroll-arrow.disabled,
section.horizontal-scroll .scroll-arrow.hide,
section.horizontal-scroll .scroll-arrow.disabled {
    display: none !important;
}
section.scrollable-section .scroll-arrow > i,
section.horizontal-scroll .scroll-arrow > i {
    color: var(--bs-dark) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    text-align: center !important;
    line-height: 1 !important;
}