.instafeed,
.instafeed * {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    border: 0;
    box-sizing: border-box;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}
.instafeed {
    font-size: var(--instafeed-font-size);
}
.instafeed__tile {
    list-style: none;
    padding: var(--instafeed-padding);
}
.instafeed__tile--hidden {
    display: none;
}
.instafeed__image-wrapper {
    display: block;
    font-size: 0;
    line-height: 0;
}
.instafeed__link {
    background-color: transparent;
    cursor: pointer;
    display: block;
    position: relative;
    text-decoration: none;
}
.instafeed__caption,
.instafeed__reactions {
    color: var(--instafeed-text-color);
    line-height: 1.5;
    overflow: hidden;
    padding: 0.1rem;
}
.instafeed__caption {
    display: var(--instafeed-caption);
}
.instafeed__reactions {
    display: none;
}
.instafeed__image {
    border: 0;
    height: auto;
    max-width: 100%;
    width: 100%;
}
.instafeed__posts {
    display: -webkit-flex;
    display: flex;
}
.instafeed__image-wrapper--carousel,
.instafeed__image-wrapper--video {
    position: relative;
}
.instafeed__image-wrapper--carousel:before,
.instafeed__image-wrapper--video:before {
    background: no-repeat 97% 3% / max(5%, 1rem) auto;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    opacity: 0.9;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.instafeed__image-wrapper--carousel:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' xml:space='preserve'%3E%3Cpath fill='%23fff' d='M2 15.1h31a2 2 0 0 1 2 2v31a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-31c0-1.1.9-2 2-2z'/%3E%3Cpath fill='%23fff' d='M50 32.9V2a2 2 0 0 0-2-2H17a2 2 0 0 0-2 2v.7c0 1.1.9 2 2 2h27.3c.5 0 1 .5 1 1V33c0 1.1.9 2 2 2h.7c1.1-.1 2-1 2-2.1z'/%3E%3Cpath fill='%23fff' d='M42.5 40.5v-31a2 2 0 0 0-2-2h-31a2 2 0 0 0-2 2v.8c0 1.1.9 2 2 2h27.3c.6 0 1 .4 1 1v27.3c0 1.1.9 2 2 2h.7c1.1-.1 2-1 2-2.1z'/%3E%3C/svg%3E");
}
.instafeed__image-wrapper--video:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' xml:space='preserve'%3E%3Cpath fill='%23fff' d='M116 512h280V0H116v512zm229-256-154 89V167l154 89zM492 0h-66v81h86V20c0-11-9-20-20-20zM0 20v61h86V0H20C9 0 0 9 0 20zm0 91h86v77H0v-77zm0 107h86v76H0v-76zm0 106h86v77H0v-77zm0 107v61c0 11 9 20 20 20h66v-81H0zm426-213h86v76h-86v-76zm0-107h86v77h-86v-77zm0 320v81h66c11 0 20-9 20-20v-61h-86zm0-107h86v77h-86v-77z'/%3E%3Cpath fill='%23fff' d='M221 219v74l64-37-64-37z'/%3E%3C/svg%3E");
}
.instafeed__focus {
    position: relative;
}
.instafeed__focus:focus {
    outline: none;
}
.instafeed__focus:after {
    box-shadow: inset 0 0 0 0.4vw var(--instafeed-focus-color);
    content: "";
    display: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.instafeed__focus:focus:after {
    display: block;
}
.instafeed__focus:focus:not(:focus-visible):after {
    display: none;
}
.instafeed__focus:focus-visible:after {
    display: block;
}
:root {
    --instafeed-font-size: 1rem;
    --instafeed-padding: 1px;
    --instafeed-caption: none;
    --instafeed-columns: 3;
    --instafeed-preloader-color: #000000;
    --instafeed-focus-color: #ffab00;
    --instafeed-text-color: #333333;
}
html {
    line-height: 1;
}
body {
    margin: 0;
}
.instafeed {
    font-family: -apple-system, system-ui, BlinkMacSystemFont, Arial, Helvetica, Verdana, sans-serif;
}
.instafeed__posts--grid {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.instafeed__posts--grid .instafeed__tile {
    -webkit-flex-basis: calc(100% / var(--instafeed-columns));
    flex-basis: calc(100% / var(--instafeed-columns));
    max-width: calc(100% / var(--instafeed-columns));
}
.instafeed__posts--hover-fade-out .instafeed__image-wrapper {
    opacity: 0.8;
    transition: opacity 0.2s ease-out;
}
.instafeed__posts--hover-fade-out .instafeed-hover .instafeed__image-wrapper,
.instafeed__posts--hover-fade-out .instafeed__link:hover .instafeed__image-wrapper {
    opacity: 1;
}
.instafeed__posts--image-format-square .instafeed__image-wrapper {
    aspect-ratio: 1;
    max-width: 100%;
}
.instafeed__posts--image-format-square .instafeed__image {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@supports not (aspect-ratio: auto) {
    .instafeed__posts--image-format-square .instafeed__image-wrapper {
        position: relative;
        width: 100%;
    }
    .instafeed__posts--image-format-square .instafeed__image-wrapper:after {
        content: "";
        display: block;
        padding-bottom: 100%;
    }
    .instafeed__posts--image-format-square .instafeed__image {
        position: absolute;
    }
}
.instafeed__load-more--loading,
.instafeed__preloader {
    position: relative;
}
.instafeed__load-more--loading:before,
.instafeed__preloader:after {
    -webkit-animation: instafeed-spin 1s linear infinite;
    animation: instafeed-spin 1s linear infinite;
    bottom: 0;
    content: "";
    display: inline-block;
    left: 0;
    margin: auto;
    -webkit-mask: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 97.5c-7.6 0-14.8-1.7-21.5-5.1l4.5-8.9c5.3 2.7 11 4.1 17 4.1 20.7 0 37.5-16.8 37.5-37.5S70.7 12.5 50 12.5h-.1v-10 5-5c26.3 0 47.6 21.3 47.6 47.5S76.2 97.5 50 97.5z'/%3E%3C/svg%3E")
        50% 50% no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}
@-webkit-keyframes instafeed-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
@keyframes instafeed-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn);
    }
}
.instafeed__preloader {
    overflow: hidden;
    width: 100%;
}
.instafeed__preloader:after {
    background-color: var(--instafeed-preloader-color);
    height: 80%;
    max-height: 2rem;
    max-width: 2rem;
    width: 80%;
}
.instafeed__preloader .instafeed__caption,
.instafeed__preloader img {
    visibility: hidden;
}