﻿/* loader ellips in separate pen CSS */
.loader-ellips {
    font-size: 20px; /* change size here */
    position: relative;
    width: 4em;
    height: 1em;
    margin: 10px auto;
}

.loader-ellips__dot {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
    background: #555; /* change color here */
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

    .loader-ellips__dot:nth-child(1),
    .loader-ellips__dot:nth-child(2) {
        left: 0;
    }

    .loader-ellips__dot:nth-child(3) {
        left: 1.5em;
    }

    .loader-ellips__dot:nth-child(4) {
        left: 3em;
    }

@keyframes reveal {
    from {
        transform: scale(0.001);
    }

    to {
        transform: scale(1);
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em)
    }
}

.loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
    animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}

.infinite-container .lazyContent:hover {
    z-index: 9999;
    transform: scale(1.1);
}

.infinite-container .card.lazyContent:hover {
    z-index: 9999;
    transform: scale(1.029);
}

.infinite-container .lazyContent {
    margin: 25px 0;
    transition: all .2s ease-in-out;
}

@media only screen and (min-width: 600px) {
    body {
        background-color: #E9EAED;
    }

    .section-header {
        background-color: #fff;
    }

    .infinite-container .card-footer.bg-secondary {
        background-color: #f9f9f9 !important;
    }

    .infinite-container .card-body {
        --bs-card-border-radius: 0.375rem;
        border-top-left-radius: var(--bs-card-border-radius);
        border-top-right-radius: var(--bs-card-border-radius);
    }

    .infinite-container .feature-text {
        height: 56px;
        overflow: hidden;
    }
}

