.sliderContainer{
    width: 100%;
    height: 100%;
}

.imgContainer{
    position: relative;

    width: 100%;
    height: calc(40vw*0.66);

    background-color: lightblue;
}

.prevBtn, .nextBtn{
    position: absolute;
    top: 50%;
    width: auto;

    cursor: pointer;

    margin-top: -22px;
    padding: 8px;

    z-index: 1;

    font-size: 18px;
    color: white;
    transition: background-color .2s ease-in-out;
}

.prevBtn:hover, .nextBtn:hover{
    background-color: rgba(0,0,0,0.5);
}

.prevBtn{
    left: 0;
    border-bottom-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;

    border-top-right-radius: 5px;
    -webkit-border-top-right-radius: 5px;
}

.nextBtn{
    right: 0;
    border-bottom-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;

    border-top-left-radius: 5px;
    -webkit-border-top-left-radius: 5px;
}

.sliderImg{
    display: none;
}

.sliderPosition{
    width: 100%;
    height: 22px;

    display: flex;

    justify-content: center;
}

.positionPoint{
    width: 12px;
    height: 12px;

    margin: 5px;

    border-radius: 50px;

    cursor: pointer;

    background-color: lightgray;

    transition: background-color .2s ease-in-out;
}

.positionPoint.selected{
    background-color: darkgrey;
}

.positionPoint:hover{
    background-color: darkgrey;
}

.sliderImg{
    position: absolute;

    display: none;

    width: 100%;
    height: 100%;
    z-index: 0;
}

.sliderImg.selected{
    display: block;
}