/* New SlideShow */

.slides {
    padding: 0;
    width: 600px;
    /* height: 480px; */
    display: inline-block;
    margin: 0 auto;
    /* position: relative; */
}
.slides-wrapper {
    position: relative;
    width: 600px;
    height: 480px;
}

.slides input {
    display: none;
}


.slide-container {
    display: block;
}

.slide {
    top: 0;
    opacity: 0;
    width: 600px;
    height: 480px;
    display: block;
    position: absolute;
    transform: scale(0);
    transition: all .7s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

input:checked+.slide-container .slide {
    opacity: 1;
    transform: scale(1);
    transition: opacity .7s ease-in-out;
}

input:checked+.slide-container .nav label {
    display: block;
}


.nav-dots {
    width: 100%;
    bottom: -30px;
    /* height: 12px; */
    display: block;
    position: absolute;
    text-align: center;
}

.nav-dots .nav-dot {
    top: -5px;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    position: relative;
    border-radius: 100%;
    display: inline-block;
    background-color: #00000086;
}


.nav-dots .nav-dot:hover {
    cursor: pointer;
    background-color: #ffc32d85;
}

input#img-1:checked ~ .nav-dots label#img-dot-1,
input#img-2:checked ~ .nav-dots label#img-dot-2,
input#img-3:checked ~ .nav-dots label#img-dot-3,
input#img-4:checked ~ .nav-dots label#img-dot-4,
input#img-5:checked ~ .nav-dots label#img-dot-5,
input#img-6:checked ~ .nav-dots label#img-dot-6,
input#img-7:checked ~ .nav-dots label#img-dot-7,
input#img-8:checked ~ .nav-dots label#img-dot-8,
input#img-9:checked ~ .nav-dots label#img-dot-9,
input#img-10:checked ~ .nav-dots label#img-dot-10,
input#img-11:checked ~ .nav-dots label#img-dot-11,
input#img-12:checked ~ .nav-dots label#img-dot-12 {
  background-color: #ffc22d;
}