﻿
.myLoader {
    background: rgba(0, 0, 0, 0.20);
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 5000;
}



.examples__item {
    display: flex;
    position: fixed;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    margin: 25px;
    top: calc(50% - 25px);
    left: calc(50% - 39px);
    background-color: whitesmoke;
    padding: 15px;
    border-radius: 9px;
}

.loader {
    display: flex;
    height: 30px;
    width: 30px;
}

/**********/
/* LOADER 7*/
/**********/
.example-7 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.loader-7 {
    height: 15px;
    width: 8px;
    background: rgb(32, 164, 245);
    opacity: .5;
    animation: example-7 1s cubic-bezier(.41,.25,.32,.83) infinite;
}

    .loader-7:nth-of-type(2) {
        animation: example-7 1s cubic-bezier(.41,.25,.32,.83) .25s infinite;
    }

    .loader-7:nth-of-type(3) {
        animation: example-7 1s cubic-bezier(.41,.25,.32,.83) .5s infinite;
    }


/**************/
/* ANIMATION  */
/**************/


@keyframes example-7 {
    0% {
        height: 5px;
        opacity: .5;
    }

    100% {
        height: 15px;
        opacity: 1;
    }
}


@media only screen and (max-width:768px) {
    .examples__item {
        display: flex;
        position: fixed;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        margin: 25px;
        top: calc(50% - 70px);
        left: calc(50% - 70px);
        background-color: whitesmoke;
        padding: 15px;
        border-radius: 9px;
    }
}
