body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  padding: 0;
}

body {
  background-color: black;
  color: white;
}


.mf_outdated {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 10000;
  background-color: rgb(20, 20, 20);
  padding: 30px;
}


.mf_loader {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  background-color: rgb(0, 0, 0);
}

.mf_loader .spinner {
  display: flex;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.mf_loader .spinner:after {
  display: flex;
  margin: auto;
  content: " ";
  width: 50%;
  height: 50%;
  border-radius: 50%;
  border: 4px solid #fff;
  border-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) rgba(94, 149, 237, 1);
  animation: full_rotation 1.5s linear infinite;
}

@keyframes full_rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.mf_loader .text {
  position: absolute;
  margin-top: 120px;
  font: caption;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  font-weight: 100;
  font-size: 14px;
}





.aniFadeout {
  animation-duration: 0.2s;
  animation-name: fadeOut;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

/* Misc
##################################################################################################
##################################################################################################
################################################################################################## */

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  min-height: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hide {
  display: none;
}

.wp-block-marvel-single-col {
  width: 100%;
}