﻿/* Absolute Center Spinner */
.loading {
  position: fixed;
  display: none;
  z-index: 1031;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.loadingInner {
    
}

/* Transparent Overlay */
.loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.1);
}

/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}


.loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 1s linear infinite;  
    /*Safari*/ 
    animation: spin 1s linear infinite;
    -webkit-box-shadow: 0px 0px 49px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 49px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 49px 0px rgba(0,0,0,0.75);
}

.loadingInner:not(:required):after {
    box-shadow: inset 0px 0px 11px 0px black;
}
 
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-js #loader {
    display: none;
}

.js #loader {
    display: block;
    position: absolute;
    left: 100px;
    top: 0;
}

.loading-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    /* changed height: 100vh; */
    z-index: 10000;
    background-color: rgba(0,0,0,0.1);
    /* Zet icon */
    background: center no-repeat rgba(255, 255, 255, 0.59);
    background-image: url('../images/emblem-white-circular.png');
    background-size: 300px 300px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    display: none;
}
