.slider {
    position: relative;
}

#component-slider img {
    display: block;
    width: 100%;
    height: auto;
}

#component-slider-controls {
    position: absolute;
    top: calc(50% - 1.5rem);
    left: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#previousSlick {
    display: inline-block;
    background-color: rgba(0.5,0.5,0.5,0.5);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-left: 0.25rem;
}

#previousSlick:hover {
    background-color: rgba(0.5,0.5,0.5,0.7);
}

#previousSlick > svg {
    stroke: white;
}

#nextSlick {
    display: inline-block;
    background-color: rgba(0.5,0.5,0.5,0.5);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-right: 0.25rem;
    stroke: white;
}

#nextSlick:hover {
    background-color: rgba(0.5,0.5,0.5,0.7);
}

#nextSlick > svg {
    stroke: white;
}
