    .event_images_image {
        background-position: 50% 50%;
        background-size: cover;
        color: white;
        font-weight: bold;
    }

    .event_images_image_border_selected {
        background-color: darkslategray;
    }

    @media (max-width: 992px) {
        /*This is if it's small*/
        .event_images_featured_image {
            width: 100%;
            float: left;
            padding: 0;
        }
    }

    @media (min-width: 992px) {
        /*This is if it's big*/
        .event_images_featured_image {
            width: 33.33%;
            float: left;
            padding: 0;
        }
    }

    @media (max-width: 576px) {
        /* XS */

        #album_route_album_resize {
            display: none;
        }

        #event_images_featured_content > li {
            width: 50%;
        }
    }

    @media (min-width: 576px) {
        /* SM */

        #album_route_album_resize {
            display: none;
        }

        #event_images_featured_content > li {
            width: 100%;
        }
    }

    @media (min-width: 768px) {
        /* MD */

        #album_route_album_resize {
            display: block;
        }

        #event_images_featured_content > li {
            width: 33%;
        }
    }

    @media (min-width: 992px) {
        /* LG */

        #album_route_album_resize {
            display: block;
        }

        #event_images_featured_content > li {
            width: 33%;
        }
    }

    @media (min-width: 1200px) {
        /* XL */

        #album_route_album_resize {
            display: block;
        }

        #event_images_featured_content > li {
            width: 25%;
        }
    }

    @media (min-width: 1400px) {
        /* XXL */

        #album_route_album_resize {
            display: block;
        }

        #event_images_featured_content > li {
            width: 25%;
        }
    }
