.immopresenter-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.immopresenter-spinner-pulse {
    background-color: rgba(var(--accent-color, 51, 51, 51), 1);
    width: 16px;
    height: 16px;
    margin: 6px;
    border-radius: 100%;
    display: inline-block;
    animation-name: immopresenter-pulse-stretch-delay;
    animation-duration: 0.75s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(.2, .68, .18, 1.08);
    animation-fill-mode: both;
}

@-webkit-keyframes immopresenter-pulse-stretch-delay {
    0%,
    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-opacity: 1;
        opacity: 1;
    }
    45% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        -webkit-opacity: 0.7;
        opacity: 0.7;
    }
}

@keyframes immopresenter-pulse-stretch-delay {
    0%,
    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-opacity: 1;
        opacity: 1;
    }
    45% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        -webkit-opacity: 0.7;
        opacity: 0.7;
    }
}
