body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #92cfff;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  background1: linear-gradient(45deg, var(--stroke), var(--white));
  background0: url('../images/tmp/loading.jpg') no-repeat center center;
  background-size: cover;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#loader-wrapper0::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(91, 90, 90, 0.89)), to(rgba(0, 0, 0, 0.41)));
  background: linear-gradient(90deg, rgb(91 90 90 / 89%) 0%, rgb(0 0 0 / 41%) 100%);
  z-index: 2;
}

#loader-wrapper .progress-bar {
  width: 300px;
  height: 20px;
  background_TODEL: #ddd;
  border: 1px solid var(--color);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

#loader-wrapper .progress {
  width: 0%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(45deg, var(--color_light), var(--color));
  transition: width 0.3s ease;
  z-index: 3;
}

#loader-wrapper .percentage {
  margin-top: 10px;
  font-size: 18px;
  color: var(--color);
  color0: var(--white);
  z-index: 3;
}

#loader-wrapper .title {
  font-size: 30px;
  font-weight: 500;
  color: var(--text);
  color0: var(--white);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

#loader-wrapper .title span {
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  color0: var(--white);
  margin-bottom: 0px;
  display:block;
  z-index: 3;
}

#loader-wrapper .start-button {
  padding: 15px 40px;
  font-size: 18px;
  background: var(--color);
  color: var(--white);
  border: 2px solid var(--color);
  border-radius: 50px;
  cursor: pointer;
  display: none;
  transition: background 0.3s ease;
  z-index: 3;
}

#loader-wrapper .start-button:hover {
  background: var(--white);
  color: var(--color);
  border: 2px solid var(--color);
  z-index: 3;
}
#loader-wrapper .skip_loading_intro {
  padding: 15px 20px;
  margin-top: 20px;
  font-size: 18px;
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--stroke);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 3;
}


#video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 999;
}
#background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.madeby{
  position:fixed;
  right:10px;
  bottom:10px;
  /*background-color: var(--window);
  backdrop-filter: blur(5px);
  padding: 4px 10px 5px;
  border-radius: 10px;*/
  z-index: 3;

}
.ui .madeby{
  position:fixed;
  right:0px;
  bottom:0px;
  background-color: var(--window);
  backdrop-filter: blur(5px);
  padding: 2px 5px 3px;
  border-radius: 10px 0 0 0;

}
.madeby,
.madeby a{
  font-size: 14px;
  color: var(--color);
}
