/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
/* STYLES GO HERE */
    .images-scroll {
        width: 350px;
        height: 410px;
    }
}

/* iPads (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {
/* STYLES GO HERE */
.images-scroll {
    width: 768px;
    height: 1024px;
}
}
 
/* Desktops and laptops ----------- */
@media only screen
and (min-width : 1224px) {
/* STYLES GO HERE */
.images-scroll {
    width: 1224px;
    height: 555px;
}
}
 
/* Large screens ----------- */
@media only screen
and (min-width : 1824px) {
/* STYLES GO HERE */
.images-scroll {
    width: 1824px;
    height: 555px;
}
}

.spinner-border {
    display: inline-block;
    /* width: 2rem; */
    /* height: 2rem; */
    vertical-align: text-bottom;
    /* border: 0.25em solid currentColor; */
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: spinner-border .75s linear infinite;
    animation: spinner-border .75s linear infinite;
}