body {
  padding: 0;
  margin: 0;
  outline: none;
  font-family: 'Poppins', sans-serif !important;
}

#app-site {
  display: flex;
  width: 100%;
  height: 100vh;
}



.suspense-loader {
  position: relative;
  margin: 0 auto;
  height: 100vh;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  align-items: center;
}

.animation-wrap.d-none {
  display: none !important;
}
.animation-wrap {
  height: 150px;
  width: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-direction: row;
}
.animation-wrap img {
  height: 35px;
}

.custom-theme-animation-wrap {
  text-align: center;
  width: 100%;
}
.theme-logo {
  display: inline-block;
}
.theme-loader,
.theme-loader:after {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.initial-theme-loader{
  border-top: 5px solid var(--color-primary-5,#0000e933) !important ;
  border-right: 5px solid var(--color-primary-5,#0000e933) !important ;
  border-bottom: 5px solid var(--color-primary-5,#0000e933) !important ;
  border-left: 5px solid var(--color-primary,#0000e9) !important ;
}

.theme-loader.small,
.theme-loader.small:after {
  border-radius: 50%;
  width: 31px;
  height: 31px;
}
.theme-loader.small {
  margin: 16px auto;
}
.theme-loader {
  overflow: hidden;
  margin: 30px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


.container{
  width: 1140px;
  margin: 0 auto;
  max-width: 100%;
}


@media only screen and (min-width:1300px){
  .container{
    width: 1200px;
    margin: 0 auto;
  
  }
}
@media only screen and (min-width:1500px){
  .container{
    width: 1400px;
    margin: 0 auto;
  
  }
}


