/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.placeholder {
    display: block;
    position: relative;
    backface-visibility: hidden;
}

.progressive-media {
    width: 100%;
    height: 100%;
    position: absolute;
}

.fade-slow {
    opacity: 0;
    transition: opacity 500ms cubic-bezier(0.645, 0.045, 0.355, 1) 300ms;
}

.small-image {
    width: 100%;
    height: auto;
    display: none !important;
    visibility: hidden;
    position: relative;
}

.blurred-cover-image {
    width: 100% !important;
    height: 100% !important;
    z-index: 2;
    position: absolute;
    display: block;
    object-position: center;

    object-fit: cover;
    font-family: "object-fit: cover";
}

.blurred-image {
    width: 100% !important;
    height: 100% !important;
    z-index: 2;
    position: absolute;
    display: block;
}

.final-cover-image {
    width: 100% !important;
    height: 100% !important;
    object-position: center;

    object-fit: cover;
    font-family: "object-fit: cover";

}

.final-image {
    width: 100% !important;
    height: auto;
}

.lazy {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: auto;
    z-index: 1;
    position: relative;
    padding: inherit;
    top: 0;
    left: 0;
    -webkit-transition: visibility 0s linear .2s,opacity .2s .2s;
    transition: visibility 0s linear .2s,opacity .2s .2s;
}

.lazy.lazyloaded {
    opacity: 1;
    visibility: visible;
}

img[data-sizes="auto"] {
    display: block;
    width: 100%;
}