#loadingElm {
    background-color: rgba(255, 255, 255, 0.74);
    transition: opacity 600ms, visibility 600ms;
    visibility: visible;
    opacity: 1;
    transition: opacity 600ms, visibility 600ms;
}

#routingElm {
    background-color: rgba(255, 255, 255, 0.74);
    visibility: hidden;
    opacity: 0;
    transition: opacity 600ms, visibility 600ms;
}

.overlay-visible {
    visibility: visible !important;
    opacity: 1 !important;
}

.overlay-hidden {
    visibility: hidden !important;
    opacity: 0 !important;
}

/* #commit_ref,
.routing-content,
.overlay-content {
    font-family: "Tahoma", "Arial", serif;
} */

.overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
}

.routing-content {
    font-size: 18px;
    color: #848484;
    position: relative;
    top: 0;
    left: 8px;
    width: 100%;
}

.loading-content {
    font-size: 18px;
    color: #848484;
    position: relative;
    top: 35%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

/* #please-wait:after {
    content: " .";
    animation: dots 1s steps(5, end) infinite;
}

@keyframes dots {

    0%,
    20% {
        color: #00000000;
        text-shadow: 0.25em 0 0 #00000000, 0.5em 0 0 #00000000;
    }

    40% {
        color: #848484;
        text-shadow: 0.25em 0 0 #00000000, 0.5em 0 0 #00000000;
    }

    60% {
        text-shadow: 0.25em 0 0 #848484, 0.5em 0 0 #00000000;
    }

    80%,
    100% {
        text-shadow: 0.25em 0 0 #848484, 0.5em 0 0 #848484;
    }
}

#turn_device {
    background-color: #222222;
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 1100;
    top: 0;
    left: 0;
}

#turn_device .seg_img {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#turn_device .main_img {
    max-width: 100%;
    max-height: 100%;
}

#turn_device .close {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
}

#turn_device .close img {
    width: 100%;
    height: 100%;
} */

#loadingElm svg.spinner circle {
    fill: transparent;
    stroke: #4a774b;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 125.6;
    transform-origin: 20px 20px 0;
    animation: spinner 2s linear infinite, change-color 2s infinite alternate;
    animation-name: spinner, change-color;

}

@keyframes spinner {
    0% {
        transform: rotate(0deg);
        stroke-dashoffset: 26.4;
    }

    50% {
        transform: rotate(720deg);
        stroke-dashoffset: 125.6;
    }

    100% {
        transform: rotate(1080deg);
        stroke-dashoffset: 26.4;
    }
}

@keyframes change-color {
    0% {
        stroke: #4a774b;
    }

    45% {
        stroke: #4a774b;
    }

    50% {
        stroke: #4a774b;
    }

    100% {
        stroke: #4a774b;
    }
}