@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

:root{
  --eearieBlack: #181818;
  --cultured: #f0f0f0;
  --silver: #c3c3c3;
  --contrastColor2: #9cc5b1;
  --contrastColor: #73cd45;
}

*{
  user-select: none;
}

html,body{
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: var(--cultured);
  color: var(--eearieBlack);
  font-family: 'Outfit', sans-serif;
}

.webapp{
  padding: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  overflow: hidden;
}

.ovh{
  overflow: hidden;
}

.step{
  width: 100%;
  height: 100%;
}

h1,h2,h3,h4,h5,h6{
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
}

button{
  padding: 0;
  margin: 0;
}

p,b,a,span{
  padding: 2px;
  margin: 2px;
  font-family: 'Outfit', sans-serif;
}


.neuCon{
  padding: 12px 18px;
  border: 1px solid var(--cultured);
  background: var(--cultured);
  box-shadow:  7px 7px 15px #acacac,
              -7px -7px 15px #ffffff;
  border-radius: 18px;
}
.neuCon:hover{
  cursor: pointer;
background: var(--cultured);
box-shadow: inset 7px 7px 15px #acacac,
            inset -7px -7px 15px #ffffff;
}

.neuCtaBtn{
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  color: var(--eearieBlack);
  padding: 8px 12px;
  border: 1px solid var(--contrastColor2);
  background: var(--cultured);
  box-shadow:  7px 7px 15px #acacac,
              -7px -7px 15px #ffffff;
  border-radius: 12px;
}
.neuCtaBtn:hover{
  cursor: pointer;
  border: 1px solid var(--contrastColor2);
background: #f2f2f2;
box-shadow: inset 7px 7px 15px #acacac,
            inset -7px -7px 15px #ffffff;
}

input[type=text],input[type=password],input[type=number],textarea{
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 8px 12px;
  border: 1px solid white;
  border-radius: 12px;
background: var(--cultured);
box-shadow:  7px 7px 15px #acacac,
             -7px -7px 15px #ffffff;
}

.slidecontainer {
  width: 100%;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 25px;
  border-radius: 24px;
  background: var(--cultured);
  

  background-image: linear-gradient(var(--contrastColor), var(--contrastColor2));
  background-size: 1% 100%;
  background-repeat: no-repeat;
  
  box-shadow: inset 3px 3px 5px #acacac,
            inset -3px -3px 5px #ffffff;
  

  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 28px;
  background: var(--cultured);
  box-shadow:  3px 3px 5px #acacac,
               -3px -3px 5px #ffffff;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb:active {
  border: 1px solid var(--silver);
}

input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border: 2px solid var(--contrastColor2);
  border-radius: 28px;
  background: var(--cultured);
  box-shadow:  3px 3px 5px #acacac,
               -3px -3px 5px #ffffff;
  cursor: pointer;
}

.line{
  width: 48px;
  height: 8px;
  background-color: var(--cultured);
  border: 1px solid var(--silver);
  border-radius: 16px;

}

.dot{
  width: 8px;
  height: 8px;
  background-color: var(--cultured);
  border: 1px solid var(--silver);
  border-radius: 16px;
  
}

dialog{
  padding: 12px;
  max-width: 390px;
  max-height: 852px;
  width: calc(100vw - 48px);
  height: calc(100vh - 48px);
  z-index: 10;
  color: var(--eearieBlack);
  background-color: var(--cultured);
  border: 1px solid var(--silver);
  border-radius: 24px;
}

.x{
  position: absolute;
  right: -8px;
  top: -8px;
  width: 32px;
  height: 32px;
  color: var(--cultured);
  background-color: var(--eearieBlack);
  border: 1px solid var(--eearieBlack);
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 600;
}
.x:hover{
  cursor: pointer;
  color: var(--eearieBlack);
  background-color: var(--cultured);
}

.greenT{
  color: green;
}

.redT{
  color: red;
}