/* [ BASE HTML STYLE ] */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
  margin: 0;
  padding: 0;
  min-height: 100vh;

  background-color: white;

  font-family: 'Inter', sans-serif;
  color: var(--text);
}

hr {
  width: 100%;
  border-color: #999999;
  border-style: solid;
}

/* [ LIST ] */
ul {
  padding-left: 1rem;
  margin: 0;
}
ul li::marker {
  color: var(--preto-light);
}
.list-none {
  list-style: none;
}

/* [ BACKGROUND ] */
.bg-primary {
  background: var(--primary);
}
.bg-secondary {
  background: var(--preto-light);
}
.bg-grey,
.bg-cinza {
  background: var(--cinza-light);
}
.bg-pattern-light {
  background: var(--bg-pattern-light);
}
.bg-pattern-dark {
  background: var(--bg-pattern-dark);
}
.bg-gradient {
  background: var(--gradient-1);
}

/* [ BORDERS ] */
.border-none {
  border: none !important;
}
.border-cinza {
  border: solid 2px var(--cinza-light);
}
.border-primario {
  border: solid 2px var(--primary);
}

/* [ RADIUS ] */
.rounded-1 {
  border-radius: var(--radius-1);
  overflow: hidden;
}
.rounded-2 {
  border-radius: var(--radius-2);
  overflow: hidden;
}
.rounded-3 {
  border-radius: var(--radius-3);
  overflow: hidden;
}

.cursor-pointer {
  cursor: pointer;
}

/* [ HIDE ELEMENT DEPENDING ON SCREEN SIZE ] */
.full-disp {
  display: block;
}
.mobile-disp {
  display: none;
}
@media screen and (max-width: 768px) {
  .full-disp {
    display: none;
  }
  .mobile-disp {
    display: block;
  }
}

/* [ SHADOW ] */
.shadow {
  box-shadow: var(--shadow);
}

/* [ PAPER ] */
.paper,
.std-block {
  border-radius: var(--radius-3);
  background-color: #fff;
  box-shadow: var(--shadow);
  padding: 1.5rem 1rem;
  width: 100%;
}
