BODY {
  overflow-x: hidden;
  font-family: 'averta';

  user-select: none;

  margin: 0;
  padding: 0;

  background: white;

  scroll-behavior: smooth;
}

#loading-overlay {
  display: block;

  width: 100%;
  height: 100%;

  position: fixed;
  top: 0px;
  left: 0px;

  background: white;

  z-index: 100; /* FRONT */

  text-align: center;

  transition: 0.4s;
}
#loading-overlay #loader {
  width: 40px;

  display: block;

  position: absolute;
  top: calc(50% + 30px); /* it is -20 + 50 */
  left: calc(50% - 20px);

  animation: rotate 3s infinite linear;
}
#loading-overlay #logo {
  display: block;

  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, calc(-50% - 50px));

  width: 100px;
}

#main-container {
  position: absolute;
  top: 0px;
  left: 0px;
  overflow-x: hidden;
  overflow-y: scroll;

  display: block;

  width: 100%;
  height: 100%;
}
#main-container #bg-img {
  position: absolute;
  top: 0px;
  left: 0px;


  width: 100%;
  height: 100%;
  object-fit: cover;

  z-index: -10;

  transition: 0.5s;
}

#main-container #procinfo {
  position: fixed;
  top: 40px;
  left: 40px;

  height: 60px;
  width: 204px;
}
#main-container #app-logo {
  position: absolute;
  top: 0px;
  left: 0px;

  display: block;

  height: 60px;

  z-index: 60;
}
#main-container #app-name {
  position: absolute;

  top: 20px;
  left: 76px;

  display: block;
  z-index: 60;

  color: #25B99A;
  font-weight: 400;
  font-size: 16px;

  padding: 0;
  margin: 0;
}

#main-container .blogentry {
  margin-top: 10px; margin-bottom: 10px;

  width: calc(100% - 40px); max-width: 570px;

  display: block;
  margin-left: auto; margin-right: auto;

  border-radius: 10px;

  background: #F8F8F8;
}
#main-container .blogtext {
  padding-top: 20px; padding-bottom: 0px;
  padding-left: 20px; padding-right: 20px;

  color: #233642;

  text-align: left;

  font-size: 16px;

  line-height: 24px;

  font-weight: 400;

  display: block;
}
#main-container .dateadded {
  padding-top: 0px; padding-bottom: 20px;
  padding-left: 20px; padding-right: 20px;

  width: 100%;

  color: #233642;

  text-align: left;

  font-size: 16px;

  line-height: 24px;

  font-weight: 500;

  display: block;
}

#main-container .first {
  margin-top: 40px;
}


table-wrap h1 {
  font-size: 16px;
  font-weight: 400;
}
table-wrap-foot * {
  font-size: 12px !important;
  line-height: 18px !important;
}
a, a:hover, a:visited, a:link, a:active {
    text-decoration: none !important;
}

@media only screen and (max-height: 600px) {
  #main-container #procinfo {
    top: 20px;
    left: 20px;
  }


}

@media only screen and (max-width: 1100px) {
  ::-webkit-scrollbar {
    display: none;
  }


  #main-container #procinfo {
    position: absolute;
    top: 20px !important;
    left: 50% !important; transform: translateX(-50%) !important;
  }

  #main-container #procinfo {
    top: 20px;
    left: 20px;
  }

  #main-container .first {
    margin-top: 120px;
  }


}
@media only screen and (max-width: 400px) {
  #main-container .blogtext {
    font-size: 16px;
  }
  #main-container .reftxt {
    font-size: 12px;
  }
}


@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.moved-out {
  opacity: 0;
  pointer-events: none !important;
}

*:focus {
    outline: none;
}

::selection {
  background: #0086D1;
  color: white;
}

sup, sub {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
}
sub {
  top: 0.4em;
}

body * {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
::-webkit-scrollbar-thumb {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  background: #233642;
  background-image: linear-gradient(to top, #25B99A, #00BEBF);

  min-height: 60px;

}
::-webkit-scrollbar-thumb:hover {
  background: #25B99A;
}
::-webkit-scrollbar-thumb:window-inactive {
  background: #e9e9e9;
}

a {
  text-decoration: none;
  color: #25B99A;

  font-weight: 500;
}
