@charset "utf-8";

/* LOADINGBAR */
.loading-container {	position: fixed; border-radius: 100%; top: 40%; left: 50%; background: #FFF; display: none; z-index: 999999;  }
.loading {	width: 100px; height: 100px; position: fixed; border-radius: 100%; top: 40%; left: 50%; }

.loading {	
    border: 2px solid transparent;
    border-color: transparent #475c6b transparent #475c6b;
    -moz-animation: rotate-loading 1.5s linear 0s infinite normal;
    -o-animation: rotate-loading 1.5s linear 0s infinite normal;
    -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
    -webkit-transform-origin: 50% 50%;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading {
    border-color: transparent #E45635 transparent #E45635;
}
.loading-container:hover .loading,
.loading-container .loading {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#loading-text {
    -moz-animation: loading-text-opacity 2s linear 0s infinite normal;
    -o-animation: loading-text-opacity 2s linear 0s infinite normal;
    -webkit-animation: loading-text-opacity 2s linear 0s infinite normal;
    animation: loading-text-opacity 2s linear 0s infinite normal;
    color: #475c6b;
    font-size: 12px;
    font-weight: bold;
    margin-top: 43px;
    opacity: 0;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 0;
    width: 100px;
}

@keyframes rotate-loading {
    0%  {transform: rotate(0deg);   }
    100% {transform: rotate(360deg);    }
}

@-moz-keyframes rotate-loading {
    0%  {transform: rotate(0deg);   }
    100% {transform: rotate(360deg);    }
}

@-webkit-keyframes rotate-loading {
    0%  {transform: rotate(0deg);   }
    100% {transform: rotate(360deg); }
}

@-o-keyframes rotate-loading {
    0%  {transform: rotate(0deg); }
    100% {transform: rotate(360deg);    }
}

@keyframes rotate-loading {
    0%  {transform: rotate(0deg);   }
    100% {transform: rotate(360deg);    }
}

@-moz-keyframes rotate-loading {
    0%  {transform: rotate(0deg);   }
    100% {transform: rotate(360deg);    }
}

@-webkit-keyframes rotate-loading {
    0%  {transform: rotate(0deg);   }
    100% {transform: rotate(360deg);    }
}

@-o-keyframes rotate-loading {
    0%  {transform: rotate(0deg);   }
    100% {transform: rotate(360deg);    }
}

@keyframes loading-text-opacity {
    0%  {opacity: 0}
    20% {opacity: 0}
    50% {opacity: 1}
    100%{opacity: 0}
}

@-moz-keyframes loading-text-opacity {
    0%  {opacity: 0}
    20% {opacity: 0}
    50% {opacity: 1}
    100%{opacity: 0}
}

@-webkit-keyframes loading-text-opacity {
    0%  {opacity: 0}
    20% {opacity: 0}
    50% {opacity: 1}
    100%{opacity: 0}
}

@-o-keyframes loading-text-opacity {
    0%  {opacity: 0}
    20% {opacity: 0}
    50% {opacity: 1}
    100%{opacity: 0}
}