.overlay-content{
  width: 100%;
  height: 100%;
  background: #f7f9fb;
  position: fixed;
  z-index: 99999999999999999999999999999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.75s ,visibility 0.75s;
}

.overlay-content::after{
  content: "";
  width: 100px;
  height: 100px;
  border: solid 15px #cfcfcf;
  border-radius: 50%;
  border-top-color: #129d94;
  animation: spinner linear infinite .5s;
}

.hide-overlay-wrapper {
  opacity: 0;
  visibility: hidden;
}

@keyframes spinner {
  0%{
    transform: rotate(0);
  }
  100%{
    transform: rotate(1turn);
  }
}
#loading-overlay {
  height: 100%;
  padding: 15% 0;
  text-align: center;
  width: 100%;
  top: 0;
  position: absolute;
  vertical-align: middle;
  z-index: 9999999999999999999999;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.8;
  animation: fadeIn 0.8s ease-in!important;
  transition: opacity 0.75s ,visibility 0.75s;

  background-color: rgb(0 0 0 /60%);
}

.hide-loading-overlay {
  opacity: 0;
  visibility: hidden;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.75s;
}
.fade-in.show {
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

dialog {
  opacity: 0;
  scale: 0;
  display: block;
  transition: all .5s;
  width: 40%;
  z-index: 1;
}
dialog[open] {
  opacity: 1;
  scale: 2;
}

