#content-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.content-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1024px;
    overflow: hidden;
    margin: auto;
}

.content-slider-wrapper #content-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.content-slider-wrapper #content-slider img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-slider-wrapper .content-slide {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 580px;
    position: relative;
    background: 
        linear-gradient(135deg, var(--gullys-main-orange) 0 80px, transparent 80px),
        linear-gradient(-45deg, var(--gullys-main-orange) 0 80px, transparent 80px);
}

.content-slider-wrapper .clear-content-slide {
    background: transparent !important;
}
 
 div#content-slider-selection {
     display: flex;
     justify-content: center;
     padding: 8px;
     width: 100%;
     gap: 16px;
     margin-top: 32px;
     cursor: pointer;
 }
 
 div#content-slider-selection span.content-slider-selection-element {
     display: inline-block;
     border: var(--gullys-gray-0) 1px solid;
     width: 32px;
     height: 32px;
     border-radius: 5px;
     transition: background-color 0.2s linear, color 0.2s linear;
 }

div.content-link-section {
    margin-top: 32px;
}

div.content-link-parent {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 60%;
}