﻿.sd-loading {
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #495E61;
    position: absolute;
    z-index: 9999999999;
    top: 0px;
    left: 0px;
}

.logged-in {
    background-color: rgba(0,0,0, 0.8);
}

@keyframes green-circle {
    from {
        opacity: 0;
        transform: scale(0, 0);
    }

    50% {
        opacity: 1;
        transform: scale(1.1, 1.1);
    }

    to {
        transform: scale(1, 1);
    }
}

.sd-loading .green-circle {
    margin: 9px;
    width: 27px !important;
    height: 27px !important;
    background-color: #17B497;
    border-radius: 50%;
    -webkit-animation: green-circle 1s ease-in-out;
    animation: green-circle 1s ease-in-out;
    position: absolute;
}

@keyframes loading-rolling {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading-rolling-fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.sd-loading .loading-rolling {
    width: 45px;
    height: 45px;
    border: 6px solid #FAB327;
    border-top-color: transparent;
    border-radius: 50%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    box-sizing: border-box;
}

.sd-loading .loading-rolling {
    -webkit-animation: loading-rolling 0.8s ease-in-out infinite, loading-rolling-fade-in 1.7s;
    animation: loading-rolling 0.8s ease-in-out infinite, loading-rolling-fade-in 1.7s;
}

.sd-loading .container-loading {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sd-loading .container {
    width: 100%;
    height: 100%;
    text-align: center;
}

.sd-loading .animation-container {
    height: 105px;
    width: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px 0px 20px 0px;
}

.sd-loading .show {
    display: block;
}

.sd-loading .hide {
    display: none;
}

.sd-loading .loadingInfoText {
    margin: 0 0;
    font-family: Nunito-Regular;
    font-size: 20px;
    color: white;
}

.sd-card-loading {
    width: 92%;
    min-height: 86px;
    text-align: center;
    position: absolute;
    top: 56px
}

    .sd-card-loading .icon {
        font-family: Soficons;
        font-style: initial;
        font-size: 24px;
        font-weight: bold;
    }

    .sd-card-loading .green-circle {
        margin: 9px;
        width: 18px !important;
        height: 18px !important;
        background-color: #17B497;
        border-radius: 50%;
        -webkit-animation: green-circle 1s ease-in-out;
        animation: green-circle 1s ease-in-out;
        position: absolute;
    }

    .sd-card-loading .loading-rolling {
        width: 36px;
        height: 36px;
        border: 5px solid #FAB327;
        border-top-color: transparent;
        border-radius: 50%;
        position: absolute;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .sd-card-loading .loading-rolling {
        -webkit-animation: loading-rolling 0.8s ease-in-out infinite, loading-rolling-fade-in 1.7s;
        animation: loading-rolling 0.8s ease-in-out infinite, loading-rolling-fade-in 1.7s;
    }

    .sd-card-loading .container-loading {
        position: relative;
        width: 38px;
        height: 38px;
        margin: auto auto;
        margin-top: 16px;
    }
