﻿/* Gif loading */
#my-spinner-container {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 50000;
    background-color: #adb5bd4a;
}

.my-spinner {
    border: 12px solid silver;
    border-top: 12px solid #337AB7;
    border-radius: 50%;
    width: 6rem;
    height: 6rem;
    animation: spin 700ms linear infinite;
    margin: 20vh auto 1rem auto;
    left: 48%;
    position: absolute;
}

#app {
    overflow-x: hidden !important;
}

    #app img.gif-loading {
        width: 200px !important;
        display: flex;
        margin: 0 auto !important;
        margin-top: 300px !important;
    }

img.gif-loading {
    width: 200px !important;
    display: flex;
    margin: 0 auto !important;
    margin-top: 300px !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}
