body{
  height:100%;
  margin: 0;
  background-image: url('./images/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  body {
    background-image: url('../images/bg-mobile-nologo.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: 100%;
  }
}


@font-face {
  font-family: 'MyCustomFont';
  src: url('../../../static/ArbFONTS-Al-Jazeera-Arabic-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  font-family: 'MyCustomFont', sans-serif;
}


.loader {
  display: block;
  --height-of-loader: 4px;
  --loader-color: #f75d5a;
  width: 130px;
  height: var(--height-of-loader);
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.loader::before {
  content: "";
  position: absolute;
  background: var(--loader-color);
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 30px;
  animation: moving 1s ease-in-out infinite;
  ;
}

@keyframes moving {
  50% {
    width: 100%;
  }

  100% {
    width: 0;
    right: 0;
    left: unset;
  }
}


.hidden {
  display: none;
}


.title {
  padding-bottom: 25px;
  width: 90%;
  margin: auto;
  border-bottom: 2px solid black;
  font-size: xx-large;
  text-align: center;
}


#msg-box {
  width: 70%;
  margin: auto;
  text-align: center;
}


/* Reset Btn */
.reset-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #191e6d;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253); */
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
  position: relative;
}

.svgIcon {
  width: 12px;
  transition-duration: 0.3s;
  transform: rotate(270deg);
}

.svgIcon path {
  fill: white;
}

.reset-button:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.3s;
  background-color: red;
  align-items: center;
}

.reset-button:hover .svgIcon {
  /* width: 20px; */
  transition-duration: 0.3s;
  transform: translateY(-200%);
}

.reset-button::before {
  position: absolute;
  bottom: -20px;
  content: "Back";
  color: white;
  /* transition-duration: .3s; */
  font-size: 0px;
}

.reset-button:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  /* transform: translateY(-30px); */
  transition-duration: 0.3s;
}
