#loading, #massive_logs{
    z-index: 999999;
    text-align: center;
    width: 500px;
    position: absolute;
    top: 33%;
    right: 33%;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #ccc;
}


.card > img{
  width: 50px !important
}

.front-card > img{
    width: 50px !important
}

.loading-page{
  width: 100%;
  height: calc(100% + 10px);
  position: absolute;
  z-index: 999999;
  background-color: white;
  top: 0;
}

.loader-container{
  width: calc(100% - 50px);
  height: 100%;
  position: absolute;
  background-color: white;
  top: 0;
  z-index: 9;
  display: none;
}

.loader-container.fade-out{
  opacity: 0 !important;
}

.loader-container.show{
  opacity: 1;
  transition: opacity 0.5s ease, display 0.5s ease;
}

.loader {
  margin: auto;
  border: 10px solid #EAF0F6;
  border-radius: 50%;
  border-top: 10px solid #2465c7;
  width: 100px;
  height: 100px;
  animation: spinner 1s linear infinite;
  position: relative;
  top: 50%;
}

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