<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.split-layout section.section.profile-slider-section {
    padding-left: unset;
    padding-right: unset;
}

.profile-slider-section--center h2,
.profile-slider-section--center .profile-slider-section__body,
.profile-slider-section--center .profile-slider-section__slider {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.profile-slider-section__slider {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1000px;
}

.profile-slider-section__slider button {
    opacity: 1;
    pointer-events: all;
    background-color: #a61774;
    border: 2px solid #a61774;
    padding: 0.5rem;
    height: 40px;
    width: 40px;
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 58px;
}

.profile-slider-section__slider.hide-controls button {
    opacity: 0;
    pointer-events: none;
    width: 0;
    padding: 0;
    border: unset;
}

.profile-slider-section__slider button[disabled] {
    opacity: 0.5;
    pointer-events: none;
}

.profile-slider-section__slider button.reduce {
    width: 25px;
    height: 25px;
    padding: 0.1rem;
}

.profile-slider-section__slider button svg {
    fill: white;
    height: 20px;
    width: 20px;
}

.profile-slider-section__slider button.reduce svg {
    height: 15px;
    width: 15px;
}

.profile-slider-section__slider button:hover,
.profile-slider-section__slider button:focus {
    background-color: transparent;
}

.profile-slider-section__slider button:hover svg,
.profile-slider-section__slider button:focus svg {
    fill: #a61774;
}

.profile-slider-section__overflow-container {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

.profile-slider-section__overflow-container::before,
.profile-slider-section__overflow-container::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 0.5rem;
    background-color: white;
    z-index: 1;
}

.profile-slider-section__slider.hide-controls .profile-slider-section__overflow-container::before,
.profile-slider-section__slider.hide-controls .profile-slider-section__overflow-container::after {
    width: 0;
}

.profile-slider-section__overflow-container::before {
    left: 0;
}

.profile-slider-section__overflow-container::after {
    right: 0;
}

.profile-slider-section__slide-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: scroll;
    transition: all 0.3s ease-in-out;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    touch-action: none; /* Disable touch-based scrolling */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.profile-slider-section__slide-container::-webkit-scrollbar {
    display: none;
}

.profile-slider-section--center .profile-slider-section__slider.hide-controls .profile-slider-section__slide-container {
    justify-content: center;
}

.profile-slider-section__slider.hide-controls .profile-slider-section__slide-container {
    margin-left: -0.5rem;
}

.profile-slider-section__slide-container .item-slider__slide {
    width: 150px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.combined #course-2 .profile-slider-section__slide-container .item-slider__slide {
    width: 150px !important;
}

.profile-slider-section__slide-container .item-slider__slide {
    padding: 0 0.5rem;
}

.profile-slider-section__slide-container .item-slider__slide img {
    margin-bottom: 0.5rem;
}

.profile-slider-section__slide-container .item-slider__slide p {
    text-align: left;
    color: #3C3C3C;
}</pre></body></html>