*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Albert Sans';
}

input,
textarea{
cursor: pointer;
}

::-webkit-scrollbar {
display: none;
}

body{
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: auto;
  background-color: rgb(95, 95, 95);
  overflow: hidden;
}

.wrapper{
margin: 0;
position: absolute;
top: 25px; 
bottom: 40px;
left: 50px;
right: 50px;
overflow-y: auto;
overflow: -moz-scrollbars-none;
scrollbar-width: none;
box-shadow: 40px 20px 20px -10px #000000c7;
}

#mob{
display: none;
}

.loading-section{
  position: fixed;
  display: flex;
  top: 0;
  height: 100%; 
  width: 100%;
  box-sizing: content-box;
  z-index: 0;
  animation: loader 4.0s forwards linear;
}

.loader-embedding{
  width: calc( 100% - 100px );
  height: calc( 100% - 65px );
  transform: translateY(25px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 0% 40%, rgb(85, 85, 85), rgb(34, 34, 34) 100%);
}

.loader{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #363636;
  border-radius: 100%;
  width: 20vw;
  height: 20vw;
  filter: drop-shadow(10px 0px 5px #000000f3);
}

.loader-up{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10%;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 50%, rgb(55, 55, 55) 45%, rgb(24, 24, 24) 100%);
}

.loader-embedding svg{
  transform-origin: center;
  box-sizing: border-box;
  height: 100%;
  width: auto;
  stroke: #727272;
  fill: #727272;
  animation: svg-color 0.2s forwards linear 2.8s;
}

.progress-embedding{
  position: absolute;
  bottom: 15vh;
  height: auto;
  width: 208px;
  padding: 5px 30px;
  display: flex;
  border-radius: 20px;
  flex-direction: column;
  align-items: right;
  justify-content: center;
  background: radial-gradient(circle at 37.2% 50%, rgb(30, 30, 30) 60%, rgb(24, 24, 24) 100%);
}

#loading-progress {
 display: none;
 height: 0;
}

#loading-percent {
 font-family: 'Albert Sans';
 text-align: right;
 font-weight: 600;
 font-size: 12px;
 letter-spacing: 4px;
 color: #727272;
}
    /* --------------------------------------------------- */

/* Smartphone */
@media only screen and (max-width: 1080px) {
  body{
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: auto;
    background-color: rgb(34, 34, 34);
    overflow: hidden;
    background-image: none;
    background-size: 100%;
}

.wrapper{
  margin: 0;
  position: absolute;
  top: 0px; 
  bottom: 0px;
  left: 0px;
  right: 0px;
  overflow-y: auto;
  overflow-x: hidden;
  overflow: -moz-scrollbars-none;
  scrollbar-width: none;
  box-shadow: none;
}

  /* Loader */
  .loader{
    width: 60vw;
    height: 60vw;
  }

  .loading-section{
    position: fixed;
    display: flex;
    top: 0;
    height: 100%; 
    width: 100%;
    box-sizing: content-box;
    z-index: 0;
    animation: loader 4.0s forwards linear;
  }

  .loader-embedding{
    width: 100%;
    height: 100%;
    transform: translateY(0px);
    background-color: rgb(34, 34, 34);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

/* --------------------------------------------------- */

/* Smartphone */
@media only screen and (max-width: 1080px) {
  .loader{
    width: 220px;
    height: 220px;
  }

  .loading-section{
    position: fixed;
    display: flex;
    top: 0;
    height: 100%; 
    width: 100%;
    box-sizing: content-box;
    z-index: 0;
    animation: loader 4.0s forwards linear;
  }

  .loader-embedding{
    width: 100%;
    height: 100%;
    transform: translateY(0px);
    background-color: rgb(34, 34, 34);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 1080px) and (orientation: landscape){
  .loader{
    width: 220px;
    height: 220px;
  }

  .progress-embedding{
    position: absolute;
    bottom: 5vw;
    height: auto;
    width: 208px;
    padding: 5px 30px;
    display: flex;
    border-radius: 20px;
    flex-direction: column;
    align-items: right;
    justify-content: center;
    background: radial-gradient(circle at 37.2% 50%, rgb(30, 30, 30) 60%, rgb(24, 24, 24) 100%);
  }
}