.unread-noti{
  background-color: red;
  color: white;
  border-radius: 50%;
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  margin-right: 5px;
}

#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 > .notification{
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  box-shadow: initial !important;
  background-color: red;
  font-size: 14px;
  margin: 0 !important;
  padding: 0 15px;
  color: white;
  border-bottom-left-radius: 10px;
  font-weight: 600;
}
.card-relative{
  position: relative !important;
}

#mobile_header{
  text-align: center !important;
}

#mobile_header > a > img{
  padding: 5px;
}

.modal-sm > .content{
  width: 30% !important;
}

.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%;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: normal;
}

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