@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/Nunito/Nunito-VariableFont_wght.ttf") format("truetype"),
  url("assets/fonts/Nunito/Nunito-Italic-VariableFont_wght.ttf") format("truetype"),

  url("assets/fonts/Nunito/static/Nunito-Black.ttf") format("truetype"),
  url("assets/fonts/Nunito/static/Nunito-BlackItalic.ttf") format("truetype"),
  url("assets/fonts/Nunito/static/Nunito-BoldItalic.ttf") format("truetype"),
  url("assets/fonts/Nunito/static/Nunito-Bold.ttf") format("truetype"),

  url("assets/fonts/Nunito/static/Nunito-ExtraBoldItalic.ttf") format("truetype"),
  url("assets/fonts/Nunito/static/Nunito-ExtraBold.ttf") format("truetype"),
  url("assets/fonts/Nunito/static/Nunito-ExtraLightItalic.ttf") format("truetype"),
  url("assets/fonts/Nunito/static/Nunito-ExtraLight.ttf") format("truetype"),

  url("assets/fonts/Nunito/static/Nunito-Italic.ttf") format("truetype"),
  url("assets/fonts/Nunito/static/Nunito-LightItalic.ttf") format("truetype"),
  url("assets/fonts/Nunito/static/Nunito-Light.ttf") format("truetype"),

  url("assets/fonts/Nunito/static/Nunito-MediumItalic.ttf") format("truetype"),
  url("assets/fonts/Nunito/static/Nunito-Medium.ttf") format("truetype"),
  url("assets/fonts/Nunito/static/Nunito-Regular.ttf") format("truetype"),
  url("assets/fonts/Nunito/static/Nunito-SemiBoldItalic.ttf") format("truetype"),
  url("assets/fonts/Nunito/static/Nunito-SemiBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}




:root {
  --brand-base: #292d3e;
  --color: var(--brand-base);

  --brand1: #0d98ba;
  --brand2: #0ca0b1;
  --brand3: #09ba96;
  --brand4: #ab9c59;


  --base-dark: #2e3440;
  --base1:#3b4252;
  --base2:#434c5e;
  --base3:#4c566a;

  --snow: #d8dee9;
  --base: var(--snow);
  --color-dark: var(--snow);

  --snow1:#e5e9f0;
  --snow2:#eceff4;

  --icon-color: var(--snow2);
  --chat-color: #0d98ba;
  --default-font-family: "Nunito",sans-serif;
}


/*COMPONENTS SECTION*/
.box {
  background-color: rgba(0,0,0,.2);
  border: .5px solid var(--color-dark);
  border-radius: 10px;
}

.light-box {
  padding: .5rem;
  background-color: white;
  color: var(--brand-base);
  border-radius: 5px;
  position: relative;
}


.list {
  margin-top: 5rem;
  padding: .2rem !important;
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  gap: .1rem;
}

/*list header*/
.list div:nth-child(1)  {
  padding: 0 !important;
  font-weight: bold;
  color: var(--snow);
}


.list div:nth-child(n+2) {
  font-weight: lighter;
  color: rgba(255, 255, 255, .3);
  cursor: pointer;
}

.block {
  position: absolute;
  background-color: var(--brand-base);
  top: -1.5em;
  right: 1em;
  transform: rotate(-200deg);
}


.section {
  border-bottom: .05rem solid rgba(255, 255, 255, .3);
}

.section.no-division {
  border-bottom: none;
}

.section div:nth-child(1) {
  padding: 2rem;
}



.input-cnt.lgt {
  /*border: 2px solid var(--brand-base);*/
  border: none;
  box-shadow: 0 0 0 .3rem rgba(0,0,0,.1);
}


.input-cnt.dark {
  border: none;
  box-shadow: 0 0 .1rem rgba(255,255,255,.3);
}

.input-cnt {
  border-radius: 2px;
  background-color: rgba(0,0,0,.1);
  margin: 1rem 0;
  padding: .5rem;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}


.input-cnt p {
  margin: 0;
  padding: 0;
}

.input-cnt input {
  outline: none;
  border: none;
  background-color: transparent;
  width: 99%;
  margin: 0;
  height: 80%;
}

.input-cnt textarea {
  outline: none;
  background-color: transparent;
  border: none;
  padding: 0;
  box-sizing: border-box;
  line-height: normal;
}

.input-cnt.dark input, textarea {
  color: var(--snow);
}


.page {
  position: relative;
  margin-top: 20vh;
  animation:  float-up .9s ease-in-out  forwards;
  width: 100vw;
  min-height: 100vh;
}






body {
  margin: 0;
  padding: 0;
  font-family: var(--default-font-family);
}


body.dark {
  background-color: var(--brand-base);
  color: var(--snow);
}


body.light {
  color: var(--brand-base);
  background-color: white;
}


button {
  border: none;
  padding: .2rem .8rem;
  border: none;
  outline: none;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}



button.lgt {
  color: var(--brand-base);
}

button.drk {
  background-color: var(--base-dark);
  border: .01rem solid white;
  color: var(--snow);
}



/*GENERAL SECTION */

[class*=flex-] {
  display: flex;
}


/*TODO: remove older version later as i settled in  a better design system*/
.flex {
  display: flex;
  flex-flow: row;
}


.flex.column {
  flex-flow: column;
}

.wrap {
  flex-wrap: wrap;
}


.display-none { display: none;}



.flex-column {
  flex-flow: column nowrap;
}

.flex-column-wrap {
  flex-flow: column wrap;
}

.flex-row {
  flex-flow: row nowrap;
}

.flex-row-wrap {
  flex-flow: row wrap;
}

.mob-flex-dir-cr {
  flex-direction: column-reverse;
}


/*BORDERS */


.border-r { border-right: 1px solid var(--snow);}


/*GAP */
.gap03rem { gap: .3rem;}
.gap05rem { gap: .5rem;}
.gap1rem  { gap: 1rem; }



.pointer {
  cursor: pointer;
}

.align-items-center {
  align-items: center;
}
.items-center {align-items: center;}



.color-snow {
  color: var(--snow);
}

.trans05 {opacity: .5;}


.blur10 {
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}



.border1px {
  border: 1px;
}



.bshadow-right {
  box-shadow: 0 .2rem .3rem rgba(0,0,0,.3);
}


/*POSITIONS*/

.absolute {position: absolute;}
.fixed {position: fixed;}
.top  { top: 0;}
.bottom  { bottom: 0;}

.left { left: 0;}
.left05rem { left: .5rem;}

.left90vw {left :90vw;}
.left-90vw {left: -90vw;}
.left-100vw {left: -100vw;}


.transition-all {transition: all ease-in-out .350s;}

/*END POSITIONS*/

/*MEASUREMENTS*/

.w1rem {width: 1rem;}
.w2rem {width: 2rem;}

.w15-p { width: 15%;}
.w15p { width: 15%;}
.w25-p { width: 25%;}
.w25p { width: 25%;}
.w45-p { width: 45%;}
.w45p { width: 45%;}
.w50-p { width: 50%;}
.w50p { width: 50%;}
.w75-p { width: 75%;}
.w75p { width: 75%;}
.w80p {width: 80%;}
.w100-p {  width: 100%;}
.w100p {  width: 100%;}

.w20p {width: 20%;}
.minw20p {min-width: 20%;}
.w40p {width: 40%;}
.w60p {width: 60%;}
.maxw20p {max-width: 20%;}
.maxw50p {max-width: 50%;}
.maxw40p {max-width: 40%;}

.w50v { width: 50vw;}
.w30v { width: 30vw;}
.w40v { width: 40vw;}
.w50v { width: 50vw;}
.w80v {width: 80vw;}
.w90v {width: 90vw;}
.w100v {  width: 100vw;}
.winherit {  width: inherit;}


@media screen and (min-width: 768px) {
  .md\:left {left: 0};
  .md\:left-90vw {left: -90vw;}

  .md\:w10p { width: 10%;}
  .md\:w20p { width: 20%;}
  .md\:w40p { width: 40%;}
  .md\:w50p { width: 50%;}
  .md\:w60p { width: 60%;}
  .md\:w70p { width: 70%;}
  .md\:w80p { width: 80%;}

  .md\:w30v { width: 30vw;}
  .md\:w50v { width: 50vw;}
  .md\:w70v { width: 70vw;}
  .md\:w100v { width: 100vw;}


  .md\:no-wrap { flex-wrap: nowrap;}


  .md\:display {display: initial;}
  .md\:display-none {display: none;}
}


/*HEIGTH*/
.h50-p { height: 50%;}
.h50p { height: 50%;}
.h100-p { height: 100%;}
.h100p { height: 100%;}

.h75-p {
  height: 75%;
}
.h50-v {
  height: 50vh;
}
.minh90-v {
  min-width: 90vh;
}
.h80-v {height: 80vh;}
.h80v {height: 80vh;}
.h90-v {height: 90vh;}
.h90v {height: 90vh;}
.h95-v {height: 95vh;}
.h95v {height: 95vh;}
.h99-v {height: 99vh;}
.h99v {height: 99vh;}
.h100-v { height: 100vh;}
.h100v { height: 100dvh;}


.no-pm {
  padding: 0;
  margin: 0;
}



.overflowh {overflow: hidden;}

/*PADDING*/
.pad0 {padding: 0;}
.padt0 {padding-top: 0;}
.padl0 {padding-left: 0;}
.padr0 {padding-right: 0;}
.padb0 {padding-bottom: 0;}

.pad05em { padding: .5em;}
.pad05rem {padding: .5rem;}
.pad02em { padding: .2em;}
.pad1rem {padding: 1rem;}
.pad02rem { padding: .2em;}

.padtop1rem {padding-top: 1rem;}
.padt1rem {padding-top: 1rem;}

.padtop2rem {padding-top: 2rem;}
.padt2rem {padding-top: 2rem;}

.padtop05rem {padding-top: .5rem;}
.padt05rem {padding-top: .5rem;}

.padtop02rem {padding-top: .2rem;}
.padt02rem {padding-top: .2rem;}

.padleft1rem {padding-left: 1rem;}
.padl1rem {padding-left: 1rem;}

.padr1rem {padding-right: 1rem;}

.padleft05rem {padding-left: .5rem;}
.padb05rem {padding-bottom: .5rem;}

 /*MARGIN*/
.mar0 {margin: 0;}
.mar02em { margin: .2em;}
.mar05em { margin: .5em;}

.martopauto {margin-top: auto;}
.martop1rem {margin-top: 1rem;}
.martop1\.5rem {margin-top: 1.5rem;}
.martop2rem {margin-top: 2rem;}
.martop2\.5rem {margin-top: 2.5rem;}

.marbottom05rem {margin-top: .5rem;}
.marbottom1rem {margin-bottom: 1rem;}
.marbottom1\.5rem {margin-bottom: 1rem;}

.marleftauto {margin-left: auto;}

.marauto {
  margin-right: auto;
  margin-left: auto;
}



/*TODO: need to decom*/
.margin-top-1rem {
  margin-top: 1rem
}

.martop-1rem {
  margin-top: 1rem
}

.margin-top-2rem {
  margin-top: 2rem
}
.martop-2rem {
  margin-top: 2rem
}
.martop-2_5rem {
  margin-top: 2.5rem
}.martop-3rem {
  margin-top: 3rem
}.martop-3_5rem {
  margin-top: 3.5rem
}



/*TEXT*/
.txt-red {color:red;}
.txt-uppercase {text-transform: uppercase;}
.txt-center {text-align: center;}
.txt-left {text-align: left;}

/*ALIGNMENT*/
.center-text { text-align: center;} /*REMOVE AT ALTER TIME*/
.text-center {text-align: center;}
.justify-center {justify-content: center;}
.justify-right {justify-content: right;}


/*TODO: deprecated remove when no more dependencies*/
.justify-c-center {justify-content: center;}
.justify-right {justify-content: right;}
 .justify-around {justify-content: space-around;}


[class*=btn]  {
  background-color: white;
  padding: .2rem 1rem;
  border-radius: 3px;
  font-weight: bold;
  cursor: pointer;
}


.btn.light {
  border: 2px solid var(--brand-base);
  transition:  all ease-in-out .250s;
}

.btn.light:hover {
  background-color: var(--brand-base);
  /*color: white;*/
}

.bw-image {
  filter: grayscale(100%);
}



/* FONTS */

.fonts-15px {
  font-size: 15px;
}
.fonts-25px {
  font-size: 25px;
}
.fonts-35px {
  font-size: 35px;
}
.fonts-40px {
  font-size: 40px;
}
.fonts-45px {
  font-size: 45px;
}
.fonts-55px {
  font-size: 55px;
}
.fonts-65px {
  font-size: 65px;
}
.fonts-75px {
  font-size: 75px;
}


/*FONTS*/
.font03em { font-size: .3em;}
.font06em { font-size: .6em;}
.font1em { font-size: 1em;}
.font2em { font-size: 2em;}
.font3em { font-size: 3em;}

.fs_3em { font-size: .3em;}
.fs_4em { font-size: .4em;}
.fs_2em { font-size: .2em;}
.fs_8em { font-size: .8em;}
.fs_5em { font-size: .5em;}
.fs_6em { font-size: .6em;}

.fs-1em { font-size: 1em;}
.fs-1_25em { font-size: 1.2em;}

.fs_25em { font-size: .25em; }
.fs-1_25rem { font-size: 1.2em;}


.fw-lgt { font-weight: lighter; }

/* --FONTS END */


.bold {font-weight: bold;}

.error {
  color: red;
  font-size: 10px;
}


.form {
  padding: 1rem;
  width: 90vw;
  box-shadow: none;
}

.form.lgt {
  background-color: white;
}


.form .header {

}


@keyframes float-up {
  0% {
    margin-top: 20vh;
  }
  25% {
    margin-top: 0vh;
  }
  50% {
    margin-top: 5vh;
  }
  100% {
    margin-top: 0vh;
  }
}



/*TABLETS AND MONITORS*/
@media screen and (min-width: 700px) {

.flex-dir-rrev-mob {
  flex-direction: row;
}

.desk-w50-p {
  width: 50%;
}
.desk-w45-p {
  width: 45%;
}
.desk-w75-p {
  width: 75%;
}
.desk-w100-p {
  width: 100%;
}
.desk-w100-v {
  width: 100vw;
}
.desk-w90-v {
  width: 90vw;
}

.mob-flex-dir-cr {
  flex-direction: column;
  flex-flow: initial;
}

  .form {
    box-shadow: 0 0 .1rem rgba(0,0,0,.3);
    width: 40vw;
    border-radius: 5px;
  }

}
