* {
    box-sizing: border-box
}

/* ss container */
.ss-container {
    width: 100%;
    position: relative;
    margin: auto;
    height: 85vh;
}
@media only screen and (max-width:575px) {
    .ss-container {
        height: 80vh;
    }
}
/* Hide the images by default */
.ssscrn {
    display: none;
}
@media only screen and (max-width:575px) {
    .ssscrn {
        width: 100%;
        margin-left: -10px;
    }
}
.db {
    display: block;
}
/* Next & previous buttons */
.prev {
    left: 0;
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white !important;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white !important;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}


/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    margin: 0 2px;
    display: inline-block;
    transition: background-color 0.6s ease;
    padding: 4px;
    color: white;
}
.dot_adoption {
    cursor: pointer;
    transition: background-color 0.6s ease;
    padding: 4px;
    border: solid 1px silver;
    border-radius: 4px;
    background-color: ghostwhite;
    text-align: center;
    font-size: small;
    margin-right: 12px;
    color: teal;
}

}

@media only screen and (max-width:575px) {
    .dot_adoption {
        display: block;
    }
}
@media only screen and (min-width:576px) {
    .dot_adoption {
        display: inline;
        height: 28px;
    }
}
.dot_adoption {
    cursor: pointer;
    transition: background-color 0.6s ease;
    padding: 4px;
    height: 28px;
    border: solid 1px silver;
    border-radius: 4px;
    background-color: ghostwhite;
    text-align: center;
    font-size: small;
    margin-right: 12px;
    color: teal;
}

    .active, .dot:hover, .dot_adoption:hover {
        background-color: gold;
        /*opacity: .45;*/
        border-radius: 4px;
        padding: 4px;
        color: black !important;
    }

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}
.scrpic {
    max-height: 70vh;
    max-width: 70vw;
}
@media only screen and (max-width:575px) {
    .scrpic {
        width: 100%;
        max-height: 100%;
    }
}