/* body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Helvetica, 'sans-serif';
  background-color: #f2f3f8;
  color: #5E6278;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

.splash-screen span {
  color: #5E6278;
  transition: none !important;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

.splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
  height: 30px !important;
}

[data-theme="dark"] .splash-screen {
  background-color: #151521;
  color: #92929F;
}

[data-theme="dark"] .splash-screen span {
  color: #92929F;
}


#root {
  opacity: 1;
  transition: opacity 1s ease-in-out;
} */

/*================ preloader css ====================*/
#preloader {
  font-family: Inter, Helvetica, "sans-serif";
  background: #fff;
  height: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#preloader .loading {
  display: flex;
}

#preloader .ctn-preloader {
  padding-left: 15px;
  padding-right: 15px;
}

#preloader .spinner {
  animation: spinner 3s infinite linear;
  border-radius: 50%;
  border: 3px solid #f1f6f8;
  border-left-color: #F49917;
  border-top-color: #F49917;
  margin: 0 auto 0em auto;
  top: -40px;
  right: -40px;
  bottom: -40px;
  left: -40px;
  position: absolute;
 
}

#preloader .spinner:before {
  content: "";
  width: 15px;
  height: 15px;
  border: 9px solid #fff;
  box-shadow: 0 0 20px 0 rgba(4, 46, 56, 0.2);
  background: #F49917;
  top: 31px;
  right: 31px;
  position: absolute;
  border-radius: 50%;
  box-sizing: unset;
}

@media (max-width: 576px) {
  #preloader .spinner:before {
      top: 18px;
      right: 18px;
  }
}

#preloader .round_spinner {
  border-width: 1px;
  border-color: #eef3f4;
  border-style: solid;
  border-radius: 50%;
  background-color: #fdfdfd;
  box-shadow: 0 0 100px 0 rgba(4, 46, 56, 0.14);
  width: 248px;
  height: 248px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 40px auto 80px;
}

@media (max-width: 576px) {
  #preloader .round_spinner {
      width: 155px;
      height: 155px;
  }
}

#preloader .round_spinner h4 {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0;
}

#preloader .round_spinner h4 span {
  font-weight: 600;
}

#preloader .head {
  display: block;
  font-size: 26px;
  letter-spacing: 5.2px;
  text-transform: uppercase;
  text-align: center;
  margin: 5% 0 1% 0;
  padding: 0;
}

@keyframes spinner {
  to {
      transform: rotateZ(360deg);
  }
}

#ctn-preloader img.mx-auto {
  height: 30px;
  width: 30px;
}

.splash-loader-text {
  margin-top: 21px;
}

/* rounded loader start */
.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #f49917;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #f49917 transparent transparent transparent;
  }
  
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }