@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Poppins:100,300,400,500,600,700,900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  outline: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; }

:root {
  --red: #FF5252;
  --yellow: #FFD500;
  --green: #5ebe7b;
  --green-dark: #1c562b;
  --white: #FFFFFF;
  --black: #231f20;
  --blue: #374ea1;
  --green-light: #C8E6C9;
  --red-light: #FFCDD2;
  --yellow-light: #FFF9C4;
  --gray-1: #F8F8F8;
  --gray-2: #F1EFF2;
  --gray-3: #E4E0E6;
  --gray-4: #C7BBC9;
  --gray-5: #A79CAC;
  --gray-6: #87798D;
  --gray-7: #38303B;
  --gray-8: #2D212F;
  --primary: #374ea1;
  --primary-light: #5b72c7;
  --primary-dark: #31458e;
  --secondary: #C7BBC9;
  --success: #5ebe7b;
  --danger: #FF5252;
  --light: #F8F8F8;
  --dark: #2D212F;
  --warning: #FFD500; }

body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem; }

input,
textarea,
button {
  font-family: 'Poppins', sans-serif; }

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #F1EFF2; }

.wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto; }
  .wrap main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    max-width: 100%; }

.container {
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px; }

.container-content {
  width: 80%;
  max-width: 1200px;
  margin: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.full-height {
  height: calc(100vh - 70px); }

.container-sm {
  width: 100%;
  padding-left: 40px;
  padding-right: 40px; }

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out; }

form {
  display: block;
  max-width: 100%; }

h1 {
  font-size: 2.5rem;
  font-weight: 300; }
  @media (max-width: 576px) {
    h1 {
      font-size: 1.5rem; } }

h2 {
  font-size: 1.875rem;
  font-weight: 300; }
  @media (max-width: 576px) {
    h2 {
      font-size: 1.125rem; } }

h3 {
  font-size: 1.25rem;
  font-weight: 300; }
  @media (max-width: 576px) {
    h3 {
      font-size: 0.75rem; } }

p {
  font-size: 1rem;
  margin-bottom: 0px; }
  @media (max-width: 576px) {
    p {
      font-size: 0.75rem; } }

label {
  margin-bottom: 0px;
  display: initial; }

b, strong {
  font-weight: bold; }

.container-content {
  max-width: 100%; }

.centralizar-completo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center; }

.bold {
  font-weight: bold; }

.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.shadow {
  -webkit-box-shadow: 0 20px 30px 0 rgba(45, 33, 47, 0.5);
  box-shadow: 0 20px 30px 0 rgba(45, 33, 47, 0.5); }

@media (max-width: 576px) {
  .hide-sm {
    display: none !important; } }

.hide-md {
  display: none !important; }
  @media (max-width: 576px) {
    .hide-md {
      display: block !important; } }

.navbar {
  padding: 0px; }

.mouse-hover {
  cursor: pointer; }

.bg-white {
  background: #FFFFFF !important; }

.bg-white-opacity {
  background-color: rgba(255, 255, 255, 0.9); }

.bg-light {
  background: #F8F8F8 !important; }

.bg-gray-1 {
  background: #F8F8F8 !important; }

.bg-gray-2 {
  background: #F1EFF2 !important; }

.bg-gray-3 {
  background: #E4E0E6 !important; }

.bg-gray-4 {
  background: #C7BBC9 !important; }

.bg-gray-5 {
  background: #A79CAC !important; }

.bg-gray-6 {
  background: #87798D !important; }

.bg-gray-7 {
  background: #38303B !important; }

.bg-gray-8 {
  background: #2D212F !important; }

.bg-danger {
  background: #FFCDD2 !important;
  color: #FF5252 !important;
  font-weight: bold !important; }

.bg-warning {
  background: #FFF9C4 !important;
  color: #FFD500 !important;
  font-weight: bold !important; }

.bg-success {
  background: #C8E6C9 !important;
  color: #5ebe7b !important;
  font-weight: bold !important; }

.bg-blue-dark {
  background: #23328F; }

.bg-green {
  background: #5ebe7b; }

.bg-green-opacity {
  background-color: rgba(94, 190, 123, 0.9); }

.bg-green-dark {
  background: #1c562b; }

.bg-green-dark-opacity {
  background-color: rgba(28, 86, 43, 0.9); }

td.bg-light:after {
  background: #F8F8F8 !important; }

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important; }

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important; }

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important; }

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important; }

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important; }

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important; }

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important; }

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important; }

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important; }

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important; }

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important; }

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important; }

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important; }

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important; }

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important; }

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important; }

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important; }

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important; }

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important; }

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important; }

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important; }

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important; }

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important; }

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important; }

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important; }

.m-0 {
  margin: 0 !important; }

.m-5 {
  margin: 5px !important; }

.m-10 {
  margin: 10px !important; }

.m-15 {
  margin: 15px !important; }

.ml-0 {
  margin-left: 0 !important; }

.ml-5 {
  margin-left: 5px !important; }

.ml-10 {
  margin-left: 10px !important; }

.ml-15 {
  margin-left: 15px !important; }

.mr-0 {
  margin-right: 0 !important; }

.mr-5 {
  margin-right: 5px !important; }

.mr-10 {
  margin-right: 10px !important; }

.mr-15 {
  margin-right: 15px !important; }

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0; }

.mx-5 {
  margin-left: 5px !important;
  margin-right: 5px; }

.mx-10 {
  margin-left: 10px !important;
  margin-right: 10px; }

.mx-15 {
  margin-left: 15px !important;
  margin-right: 15px; }

.mt-0 {
  margin-top: 0 !important; }

.mt-5 {
  margin-top: 5px !important; }

.mt-10 {
  margin-top: 10px !important; }

.mt-15 {
  margin-top: 15px !important; }

.mt-20 {
  margin-top: 20px !important; }

.mt-30 {
  margin-top: 30px !important; }

.mt-40 {
  margin-top: 40px !important; }

.mt-100 {
  margin-top: 100px !important; }

.mb-0 {
  margin-bottom: 0 !important; }

.mb-5 {
  margin-bottom: 5px !important; }

.mb-10 {
  margin-bottom: 10px !important; }

.mb-15 {
  margin-bottom: 15px !important; }

.mb-20 {
  margin-bottom: 20px !important; }

.mb-30 {
  margin-bottom: 30px !important; }

.mb-40 {
  margin-bottom: 40px !important; }

.mb-50 {
  margin-bottom: 50px !important; }

.mb-60 {
  margin-bottom: 60px !important; }

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0; }

.my-5 {
  margin-top: 5px !important;
  margin-bottom: 5px; }

.my-10 {
  margin-top: 10px !important;
  margin-bottom: 10px; }

.my-15 {
  margin-top: 15px !important;
  margin-bottom: 15px; }

.p-0 {
  padding: 0 !important; }

.p-5 {
  padding: 5px !important; }

.p-10 {
  padding: 10px !important; }

.p-15 {
  padding: 15px !important; }

.p-20 {
  padding: 20px !important; }

.pl-0 {
  padding-left: 0 !important; }

.pl-5 {
  padding-left: 5px !important; }

.pl-10 {
  padding-left: 10px !important; }

.pl-15 {
  padding-left: 15px !important; }

.pl-20 {
  padding-left: 20px !important; }

.pr-0 {
  padding-right: 0 !important; }

.pr-5 {
  padding-right: 5px !important; }

.pr-10 {
  padding-right: 10px !important; }

.pr-15 {
  padding-right: 15px !important; }

.pr-20 {
  padding-right: 20px !important; }

.px-0 {
  padding-left: 0 !important;
  padding-right: 0; }

.px-5 {
  padding-left: 5px !important;
  padding-right: 5px; }

.px-10 {
  padding-left: 10px !important;
  padding-right: 10px; }

.px-15 {
  padding-left: 15px !important;
  padding-right: 15px !important; }

.px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important; }

.pt-0 {
  padding-top: 0 !important; }

.pt-5 {
  padding-top: 5px !important; }

.pt-10 {
  padding-top: 10px !important; }

.pt-15 {
  padding-top: 15px !important; }

.pt-20 {
  padding-top: 20px !important; }

.pb-0 {
  padding-bottom: 0 !important; }

.pb-5 {
  padding-bottom: 5px !important; }

.pb-10 {
  padding-bottom: 10px !important; }

.pb-15 {
  padding-bottom: 15px !important; }

.pb-20 {
  padding-bottom: 20px !important; }

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.py-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important; }

.py-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important; }

.py-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important; }

.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important; }

.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

.text-center {
  text-align: center !important; }

.text-normal {
  font-weight: normal !important; }

.text-bold {
  font-weight: bold !important; }

.text-spaced {
  letter-spacing: 0.3em !important; }

.text-italic {
  font-style: italic; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-underline {
  text-decoration: underline !important; }

.text-primary {
  color: var(--primary) !important; }

.text-secondary {
  color: var(--secondary) !important; }

.text-success {
  color: #5ebe7b !important; }

.text-danger {
  color: #FF5252 !important; }

.text-warning {
  color: #FFD500 !important; }

.text-light {
  color: #F8F8F8 !important; }

.text-dark {
  color: #2D212F !important; }

.text-white {
  color: #FFFFFF !important; }

.text-green {
  color: #5ebe7b !important; }

.text-green-dark {
  color: #1c562b !important; }

.text-nowrap {
  white-space: nowrap !important; }

.text-sm {
  font-size: 0.75rem !important; }

.text-xs {
  font-size: 0.625rem !important; }

aside + main {
  width: calc(100% - 105px) !important; }

aside nav {
  width: 105px;
  min-height: 100%;
  background: #E4E0E6; }
  aside nav > ul > li {
    position: relative;
    height: 88px; }
    aside nav > ul > li span {
      position: relative;
      z-index: 3;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      font-size: 0.75rem;
      color: #38303B;
      background: #E4E0E6;
      -webkit-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
      aside nav > ul > li span svg {
        margin-bottom: 3px; }
        aside nav > ul > li span svg .fill {
          fill: #C7BBC9;
          -webkit-transition: all 0.2s ease-out;
          transition: all 0.2s ease-out; }
    aside nav > ul > li ul {
      position: absolute;
      top: 0;
      left: 100%;
      z-index: 2;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      height: 100%;
      background: #374ea1;
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
      -webkit-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
      aside nav > ul > li ul li {
        width: 100px;
        height: 100%;
        border-left: 1px solid #374ea1; }
        aside nav > ul > li ul li:first-child {
          border-left: 0; }
        aside nav > ul > li ul li a {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          width: 100%;
          height: 100%;
          font-size: 0.75rem;
          font-weight: bold;
          text-align: center;
          color: #38303B;
          background: #5b72c7; }
          aside nav > ul > li ul li a:hover {
            background: #5ebe7b; }
    aside nav > ul > li:hover span {
      background: #5ebe7b; }
      aside nav > ul > li:hover span svg .fill {
        fill: #2D212F; }
    aside nav > ul > li:hover ul {
      -webkit-transform: translateX(0%);
      transform: translateX(0%); }

.btn {
  width: 10.9375rem;
  height: 100%;
  border: 0;
  border-radius: 0px;
  background: #2D212F;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: bold; }
  .btn strong {
    font-weight: bold; }
  .btn + .btn {
    margin-left: 10px; }
  .btn-green {
    background: #5ebe7b;
    color: #FFFFFF; }
    .btn-green:hover {
      color: #E4E0E6; }
  .btn-green-dark {
    background: #1c562b;
    color: #FFFFFF; }
    .btn-green-dark:hover {
      color: #5ebe7b; }
  .btn-rounded {
    border-radius: 30px;
    height: 30px; }
  .btn-underlined {
    color: #2D212F;
    background: transparent;
    border: none;
    display: block;
    outline: none;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding: 10px; }
    .btn-underlined:before {
      content: '';
      border-bottom: 1px solid #2D212F;
      padding: 0 15px;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      width: 0;
      -webkit-transition: 0.3s;
      transition: 0.3s; }
    .btn-underlined:hover:before {
      width: 100%;
      padding: 0;
      border-bottom-color: var(--primary); }
  .btn-primary {
    color: #F8F8F8;
    background: #374ea1; }
    .btn-primary:hover {
      background: #2B38A8; }
  .btn-outline-primary {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: rgba(var(--primary), 0); }
    .btn-outline-primary:hover {
      color: #F8F8F8;
      background: var(--primary); }
  .btn-secondary {
    color: #FFFFFF;
    background: #C7BBC9; }
    .btn-secondary:hover {
      background: #bbadbe; }
  .btn-outline-secondary {
    border: 1px solid #C7BBC9;
    color: #C7BBC9;
    background: rgba(199, 187, 201, 0); }
    .btn-outline-secondary:hover {
      color: #FFFFFF;
      background: #c7bbc9; }
  .btn-dark {
    color: #F8F8F8;
    background: #2D212F; }
    .btn-dark:hover {
      background: #1f1620; }
  .btn-yellow {
    color: #F8F8F8;
    background: #FFD500; }
  .btn-gray {
    color: #F8F8F8;
    background: #C7BBC9; }
  .btn-brown {
    color: #F8F8F8;
    background: #c3a051; }
  .btn-outline-dark {
    border: 1px solid #2D212F;
    color: #2D212F;
    background: rgba(45, 33, 47, 0); }
    .btn-outline-dark:hover {
      color: #F8F8F8;
      background: #2d212f; }
  .btn-light {
    color: #2D212F;
    background: #F8F8F8; }
    .btn-light:hover {
      background: #ebebeb; }
  .btn-outline-light {
    border: 1px solid #F8F8F8;
    color: #F8F8F8;
    background: rgba(248, 248, 248, 0); }
    .btn-outline-light:hover {
      color: #2D212F;
      background: #f8f8f8; }
  .btn-clear-light {
    color: #F8F8F8; }
    .btn-clear-light:hover {
      color: #2D212F; }
  .btn-md {
    width: 7.25rem;
    height: 2.375rem;
    font-size: 0.75rem;
    font-weight: bold; }
  .btn-icon {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    height: auto; }
    .btn-icon:before {
      content: "";
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px; }
    .btn-icon-primary .fill {
      fill: var(--primary);
      -webkit-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
    .btn-icon-primary:hover .fill {
      fill: var(--primary-dark); }
    .btn-icon-secondary .fill {
      fill: #C7BBC9;
      -webkit-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
    .btn-icon-secondary:hover .fill {
      fill: #bbadbe; }
    .btn-icon-light .fill {
      fill: #F8F8F8;
      -webkit-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out; }
    .btn-icon-light:hover .fill {
      fill: #ebebeb; }

.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }
  .btn-group .btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }

.container-separator {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 16px;
  margin-bottom: 16px;
  border: 0;
  background: #E4E0E6; }

.content-dashboard__block {
  position: relative;
  height: 100%;
  padding: 24px 30px;
  background: #F8F8F8;
  -webkit-box-shadow: 0 3px 6px 0 rgba(199, 187, 201, 0.13);
  box-shadow: 0 3px 6px 0 rgba(199, 187, 201, 0.13); }
  .content-dashboard__block > * + h2 {
    margin-top: 15px; }
  .content-dashboard__block h2 {
    margin-bottom: 31px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #2D212F; }
    .content-dashboard__block h2 small {
      font-size: 0.75rem;
      font-weight: normal;
      color: #A79CAC; }
    .content-dashboard__block h2 a {
      text-decoration: underline; }
    .content-dashboard__block h2 + h3 {
      margin-top: -28px; }
    .content-dashboard__block h2 + hr {
      margin-top: -15px; }
    .content-dashboard__block h2 + h3 {
      margin-bottom: 12px;
      font-size: 0.75rem;
      font-weight: normal;
      color: #A79CAC; }
  .content-dashboard__block p {
    margin-bottom: 16px;
    font-size: 0.75rem;
    line-height: 1.33;
    color: #2D212F; }
    .content-dashboard__block p strong {
      font-weight: bold; }
  .content-dashboard__block hr {
    margin-top: 16px;
    margin-bottom: 16px;
    border: none;
    border-bottom: 1px solid #E4E0E6; }
  .content-dashboard__block table {
    width: 100%;
    border-spacing: 0; }
    .content-dashboard__block table thead {
      padding-bottom: 10px; }
      .content-dashboard__block table thead + tbody tr:first-child td {
        padding-top: 17px; }
    .content-dashboard__block table tr:first-child td {
      padding-top: 0; }
    .content-dashboard__block table th {
      padding-bottom: 9px;
      border-bottom: 1px solid #E4E0E6;
      font-size: 0.625rem;
      text-align: center;
      color: #C7BBC9; }
      .content-dashboard__block table th:first-child {
        text-align: left; }
    .content-dashboard__block table td {
      padding-top: 17px;
      font-size: 0.75rem;
      text-align: center; }
      .content-dashboard__block table td:first-child {
        text-align: left; }
  .content-dashboard__block[data-title] {
    margin-top: 28px;
    height: calc(100% - 28px); }
    .content-dashboard__block[data-title]:before {
      content: attr(data-title);
      position: absolute;
      top: -28px;
      left: 0;
      font-size: 0.75rem;
      font-weight: bold;
      color: #2D212F; }

.content-nav {
  padding-top: 33px;
  padding-bottom: 36px; }
  .content-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .content-nav ul li {
      margin-right: 31px;
      font-size: 0.875rem; }
      .content-nav ul li a {
        position: relative;
        display: block;
        line-height: 1;
        color: #A79CAC; }
        .content-nav ul li a:after {
          content: "";
          position: absolute;
          top: 100%;
          left: 0;
          display: block;
          width: 97px;
          height: 5px;
          border-radius: 10px;
          background: #374ea1;
          opacity: 0;
          -webkit-transition: all 0.2s ease-out;
          transition: all 0.2s ease-out; }
        .content-nav ul li a:hover {
          color: #2D212F; }
      .content-nav ul li.active {
        font-size: 1.875rem; }
        .content-nav ul li.active a {
          padding-bottom: 9px;
          color: #2D212F; }
          .content-nav ul li.active a:after {
            opacity: 1; }

.content-nav {
  padding-top: 33px;
  padding-bottom: 36px; }
  .content-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .content-nav ul li {
      margin-right: 31px;
      font-size: 0.875rem; }
      .content-nav ul li a {
        position: relative;
        display: block;
        line-height: 1;
        color: #A79CAC; }
        .content-nav ul li a:after {
          content: "";
          position: absolute;
          top: 100%;
          left: 0;
          display: block;
          width: 97px;
          height: 5px;
          border-radius: 10px;
          background: var(--primary);
          opacity: 0;
          -webkit-transition: all 0.2s ease-out;
          transition: all 0.2s ease-out; }
        .content-nav ul li a:hover {
          color: #2D212F; }
      .content-nav ul li.active {
        font-size: 1.875rem; }
        .content-nav ul li.active a {
          padding-bottom: 9px;
          color: #2D212F; }
          .content-nav ul li.active a:after {
            opacity: 1; }

.costumer-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 40px;
  padding-right: 0;
  background: #F8F8F8; }
  .costumer-search hr {
    display: block;
    border: none;
    border-left: 1px solid #F1EFF2;
    margin-top: -20px;
    margin-bottom: -40px; }
  .costumer-search__search {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    padding-top: 24px;
    padding-right: 40px; }
    .costumer-search__search input {
      background: #F1EFF2; }
  .costumer-search__costumers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-left: 38px;
    overflow: hidden; }
    .costumer-search__costumers p {
      margin-bottom: 8px;
      font-size: 0.75rem;
      color: #2D212F; }
    .costumer-search__costumers__list {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      position: relative;
      margin-left: 10px;
      overflow: hidden; }
      .costumer-search__costumers__list__nav {
        position: absolute;
        top: 24px;
        bottom: 0px;
        right: 26px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
      .costumer-search__costumers__list:before {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        display: block;
        width: 50%;
        height: 100%;
        background: -webkit-gradient(linear, left top, right top, from(rgba(248, 248, 248, 0.01)), color-stop(85%, #F8F8F8));
        background: linear-gradient(to right, rgba(248, 248, 248, 0.01) 0%, #F8F8F8 85%);
        pointer-events: none; }

.day-tasks {
  margin-top: 40px; }
  .day-tasks__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .day-tasks__header nav {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .day-tasks__header nav .title {
        margin-right: 10px; }
      .day-tasks__header nav span {
        margin-right: 32px;
        font-size: 0.875rem;
        color: #C7BBC9; }
  .day-tasks__content {
    margin-top: 43px; }
  .day-tasks__list {
    height: 70px;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 3px;
    background: #F8F8F8;
    -webkit-box-shadow: 0 3px 6px 0 rgba(199, 187, 201, 0.13);
    box-shadow: 0 3px 6px 0 rgba(199, 187, 201, 0.13); }
    .day-tasks__list.active {
      height: auto;
      overflow: visible;
      padding-bottom: 30px; }
    .day-tasks__list:first-child {
      margin-top: 0; }
    .day-tasks__list__header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      height: 70px;
      margin-bottom: 5px; }
      .day-tasks__list__header__title {
        font-size: 1rem;
        font-weight: bold;
        color: #2D212F; }
      .day-tasks__list__header__resume {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 0.625rem;
        font-weight: bold;
        letter-spacing: 0.5px;
        color: #C7BBC9; }
        .day-tasks__list__header__resume p {
          margin-left: 20px; }
          .day-tasks__list__header__resume p span {
            color: #87798D; }
        .day-tasks__list__header__resume button {
          margin-left: 20px; }
    .day-tasks__list__footer {
      margin-top: 30px; }
    .day-tasks__list__table {
      width: 100%;
      table-layout: auto;
      border-collapse: collapse; }
      .day-tasks__list__table th {
        padding: 0 16px 8px;
        text-align: left;
        font-size: 0.625rem;
        font-weight: bold;
        text-transform: uppercase;
        color: #C7BBC9; }
        .day-tasks__list__table th:first-child {
          padding-left: 20px; }
        .day-tasks__list__table th:last-child {
          padding-left: 35px;
          padding-right: 20px; }
      .day-tasks__list__table td {
        padding: 0 0 11px;
        font-size: 0.875rem; }
        .day-tasks__list__table td:first-child > div {
          padding-left: 20px; }
        .day-tasks__list__table td:last-child > div {
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          width: 205px;
          padding-left: 35px;
          padding-right: 20px; }
        .day-tasks__list__table td.fit {
          width: 1%;
          white-space: nowrap; }
        .day-tasks__list__table td strong {
          font-weight: bold; }
        .day-tasks__list__table td small {
          font-size: 0.75rem; }
        .day-tasks__list__table td > div {
          position: relative;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          min-height: 62px;
          padding: 0 16px;
          background: #F1EFF2;
          -webkit-box-shadow: 0 3px 6px 0px rgba(197, 191, 200, 0.13);
          box-shadow: 0 3px 6px 0px rgba(197, 191, 200, 0.13); }
          .day-tasks__list__table td > div:before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            z-index: 1;
            display: block;
            width: 6px;
            height: 100%;
            background: inherit;
            pointer-events: none; }
        .day-tasks__list__table td .input-checkbox span {
          max-width: 30px; }

.dropdown {
  position: relative; }
  .dropdown__content {
    position: absolute;
    top: 100%;
    z-index: 20;
    min-width: 190px;
    border-radius: 3px;
    background: #FFFFFF;
    -webkit-box-shadow: 0 15px 30px 0 rgba(199, 187, 201, 0.53);
    box-shadow: 0 15px 30px 0 rgba(199, 187, 201, 0.53);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
    .dropdown__content:before {
      content: "";
      position: absolute;
      bottom: 100%;
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 0 10.5px 6px 10.5px;
      border-color: transparent transparent #FFFFFF transparent; }
    .dropdown__content > ul > li:not(:first-child) {
      border-top: 1px solid #F1EFF2; }
    .dropdown__content > ul > li ul {
      padding: 20px 26px; }
      .dropdown__content > ul > li ul li:not(:first-child) {
        margin-top: 6px; }
      .dropdown__content > ul > li ul li a {
        color: #A79CAC; }
  .dropdown-right .dropdown__content {
    right: -20px; }
    .dropdown-right .dropdown__content:before {
      right: 11px; }
  .dropdown-left .dropdown__content {
    left: -20px; }
    .dropdown-left .dropdown__content:before {
      left: 11px; }
  .dropdown.active .dropdown__content,
  .dropdown__toggle:focus + .dropdown__content {
    top: calc(100% + 20px);
    opacity: 1;
    visibility: visible; }

.footer-curso {
  height: 8.24vh;
  background-color: #3F3C3C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  @media screen and (max-width: 576px) {
    .footer-curso {
      height: auto; } }
  .footer-curso p {
    color: #78909C; }

.main-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.75rem;
  color: #A79CAC;
  background: #2D212F;
  z-index: 3;
  padding-top: 100px; }
  .main-footer a:hover {
    color: #5ebe7b; }
  .main-footer img {
    display: block;
    margin-right: 20px; }
    @media (max-width: 576px) {
      .main-footer img {
        margin-right: 0px; } }
  .main-footer .container-content {
    width: 80%;
    max-width: 1200px;
    margin: auto;
    -webkit-box-align: initial;
    -ms-flex-align: initial;
    align-items: initial;
    display: initial;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
    -ms-flex-direction: initial;
    flex-direction: initial; }
  .main-footer i {
    color: #FFFFFF; }
  .main-footer .icons {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 576px) {
      .main-footer .icons {
        font-size: 1.25rem; } }
  .main-footer small {
    font-size: 0.5rem; }
  .main-footer .text-title {
    color: #FFFFFF;
    font-weight: bold;
    padding: 40px 0px;
    font-size: 0.875rem; }
  .main-footer .h-100 {
    height: 100%; }
  .main-footer .bottom {
    position: absolute;
    margin-top: auto;
    bottom: 0;
    height: 60px; }
  .main-footer .form-group {
    -webkit-box-shadow: none;
    box-shadow: none; }
    .main-footer .form-group .input {
      border: 2px solid #38303B;
      background: #2D212F;
      color: #FFFFFF;
      width: 100%; }
      .main-footer .form-group .input::-webkit-input-placeholder {
        color: #87798D; }
      .main-footer .form-group .input:-moz-placeholder {
        color: #87798D; }
      .main-footer .form-group .input::-moz-placeholder {
        color: #87798D; }
      .main-footer .form-group .input:-ms-input-placeholder {
        color: #87798D; }
    .main-footer .form-group .btn {
      background: #2D212F;
      border: 2px solid #38303B;
      border-left: none; }
      .main-footer .form-group .btn:hover {
        background: #F8F8F8; }
  .main-footer .links a {
    text-decoration: underline; }
  .main-footer .links .no-decoration {
    text-decoration: none; }

.lista-links {
  margin-left: -40px;
  margin-top: 50px; }
  .lista-links ul {
    padding-left: 10px !important; }
  .lista-links a {
    text-decoration: underline !important;
    margin-bottom: 5px; }
  .lista-links .text-underline {
    text-decoration: underline !important; }

.accordion .head {
  border-bottom: 0.3px solid #C7BBC9;
  height: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .accordion .head p {
    padding-left: 10px;
    width: 100%; }
  .accordion .head i {
    color: #C7BBC9;
    padding-right: 20px; }

.accordion a, .accordion p {
  padding-left: 20px; }

.accordion .group {
  background-color: #362A38; }
  .accordion .group div {
    height: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 0.02px solid #C7BBC9; }

form fieldset {
  border: none; }
  form fieldset legend {
    margin-bottom: 8px;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.3;
    color: #2D212F; }
  form fieldset + fieldset {
    margin-top: 35px; }

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 60px;
  max-width: 100%; }
  @media (max-width: 576px) {
    .form-group input {
      padding-left: 5px;
      font-size: 0.625rem; }
      .form-group input::-webkit-input-placeholder {
        font-size: 0.625rem;
        margin-left: 10px; }
      .form-group input::-moz-placeholder {
        font-size: 0.625rem;
        margin-left: 10px; }
      .form-group input:-ms-input-placeholder {
        font-size: 0.625rem;
        margin-left: 10px; }
      .form-group input::-ms-input-placeholder {
        font-size: 0.625rem;
        margin-left: 10px; }
      .form-group input::placeholder {
        font-size: 0.625rem;
        margin-left: 10px; } }

.header-curso {
  background-color: #171717;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 5.18vh;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 99; }
  .header-curso img {
    height: 4.72vh; }

.hello {
  background: #374ea1;
  padding: 0px 20px;
  color: #FFFFFF !important;
  min-height: 600px; }
  .hello .full-height {
    height: calc(100vh - 70px);
    min-height: 600px; }
  .hello .conteudo {
    position: absolute;
    top: 0;
    bottom: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 100%;
    text-align: center; }
  .hello h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 10px; }
    @media (max-width: 576px) {
      .hello h1 {
        font-size: 33px; } }
  .hello h3 {
    font-size: 0.875rem;
    font-weight: 300; }
  .hello .image {
    position: absolute;
    bottom: 0;
    margin-top: auto;
    margin-bottom: -7px; }
    @media (max-width: 576px) {
      .hello .image {
        margin-bottom: -1px; } }
    .hello .image .badge-1 {
      background-color: #5ebe7b;
      color: #2D212F;
      width: 200px;
      height: 200px;
      border-radius: 200px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      padding: 0px 30px;
      position: absolute;
      top: -46px;
      right: -25px; }
    .hello .image .badge-2 {
      background-color: #23328F;
      width: 180px;
      height: 180px;
      border-radius: 150px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      padding: 0px 25px;
      position: absolute;
      top: 90px;
      right: -108px; }
    .hello .image .b-title {
      font-weight: bold; }
    .hello .image .b-text {
      font-size: 0.625rem; }
    @media (max-width: 576px) {
      .hello .image img {
        max-width: 100vw; }
      .hello .image .badge-1 {
        top: -160px;
        right: 117px; }
      .hello .image .badge-2 {
        top: -39px;
        right: 6px; } }

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%; }
  .input-group + .input-group {
    margin-top: 10px; }
  .input-group .input {
    width: 100%;
    height: 42px;
    padding-right: 40px; }
  .input-group textarea {
    height: 84px !important;
    padding-top: 10px;
    padding-bottom: 10px; }
  .input-group label {
    min-width: 272px;
    width: 100%; }
    .input-group label > span {
      display: inline-block;
      margin-bottom: 7px;
      font-size: 0.75rem;
      line-height: 1.33;
      color: #2D212F; }
  .input-group .btn {
    position: absolute;
    right: 16px; }
  .input-group-lg .input {
    height: 80px; }
  .input-group-lg textarea {
    height: 160px !important;
    padding-top: 30px; }
  .input-group-sm label {
    min-width: 0; }
  .input-group-sm .input {
    height: 24px;
    min-width: 0;
    padding: 0 12px;
    font-size: 0.625rem; }
  .input-group-sm textarea {
    height: 48px !important;
    padding-top: 5px; }

.input-select {
  position: relative; }
  .input-select .input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #C7BBC9; }
    .input-select .input:valid {
      color: #2D212F; }
  .input-select__arrow {
    position: absolute;
    right: 16px;
    display: block;
    pointer-events: none; }
    .input-select__arrow img {
      display: block; }

.input {
  border: 0;
  font-size: 0.875rem;
  color: #2D212F;
  padding-left: 20px;
  background: transparent;
  resize: none;
  height: 100%;
  min-width: 300px; }
  @media (max-width: 576px) {
    .input {
      min-width: 150px; } }
  .input.white-placeholder::-webkit-input-placeholder {
    color: white; }
  .input.white-placeholder::-moz-placeholder {
    color: white; }
  .input.white-placeholder:-ms-input-placeholder {
    color: white; }
  .input.white-placeholder::-ms-input-placeholder {
    color: white; }
  .input.white-placeholder::placeholder {
    color: white; }
  .input-checkbox {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .input-checkbox + .input-checkbox {
      margin-left: 15px; }
    .input-checkbox input {
      position: relative;
      display: block;
      width: 16px;
      height: 16px;
      border: 1px solid #C7BBC9;
      border-radius: 3px;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none; }
      .input-checkbox input:after {
        content: "";
        position: absolute;
        left: 2px;
        top: -2px;
        display: block;
        width: 15px;
        height: 7px;
        border: 2px solid var(--primary);
        border-top: 0;
        border-right: 0;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out; }
      .input-checkbox input:checked:after {
        opacity: 1;
        visibility: visible; }
      .input-checkbox input:disabled {
        pointer-events: none; }
        .input-checkbox input:disabled + span {
          color: #C7BBC9;
          pointer-events: none; }
    .input-checkbox span {
      display: block !important;
      margin-left: 7px !important;
      margin-bottom: 0 !important;
      font-size: 0.625rem;
      line-height: 1 !important;
      white-space: normal !important;
      color: #2D212F;
      -webkit-user-select: none !important;
      -moz-user-select: none !important;
      -ms-user-select: none !important;
      user-select: none !important; }

.list-cards {
  margin-top: 40px; }
  .list-cards__card {
    height: 70px;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 3px;
    background: #F8F8F8;
    -webkit-box-shadow: 0 3px 6px 0 rgba(199, 187, 201, 0.13);
    box-shadow: 0 3px 6px 0 rgba(199, 187, 201, 0.13); }
    .list-cards__card.active {
      height: auto;
      overflow: visible;
      padding-bottom: 30px; }
    .list-cards__card:first-child {
      margin-top: 0; }
    .list-cards__card__header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      height: 70px;
      margin-bottom: 5px; }
      .list-cards__card__header__title {
        font-size: 1rem;
        font-weight: bold;
        line-height: 1;
        color: #2D212F; }
      .list-cards__card__header__resume {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 0.625rem;
        font-weight: bold;
        letter-spacing: 0.5px;
        color: #C7BBC9; }
        .list-cards__card__header__resume p {
          margin-left: 20px; }
          .list-cards__card__header__resume p span {
            color: #87798D; }
        .list-cards__card__header__resume button {
          margin-left: 20px; }
    .list-cards__card__footer {
      margin-top: 30px; }
    .list-cards__card__table {
      width: 100%;
      table-layout: auto;
      border-collapse: collapse; }
      .list-cards__card__table th {
        padding: 0 16px 8px;
        text-align: left;
        font-size: 0.625rem;
        font-weight: bold;
        text-transform: uppercase;
        color: #C7BBC9; }
        .list-cards__card__table th:first-child {
          padding-left: 20px; }
        .list-cards__card__table th:last-child {
          padding-left: 35px;
          padding-right: 20px; }
      .list-cards__card__table td {
        padding: 0 0 11px;
        font-size: 0.875rem; }
        .list-cards__card__table td:first-child > div {
          padding-left: 20px; }
        .list-cards__card__table td:last-child > div {
          -webkit-box-pack: justify;
          -ms-flex-pack: justify;
          justify-content: space-between;
          width: 205px;
          padding-left: 35px;
          padding-right: 20px; }
        .list-cards__card__table td.fit {
          width: 1%;
          white-space: nowrap; }
        .list-cards__card__table td strong {
          font-weight: bold; }
        .list-cards__card__table td small {
          font-size: 0.75rem; }
        .list-cards__card__table td > div {
          position: relative;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          min-height: 62px;
          padding: 0 16px;
          background: #F1EFF2;
          -webkit-box-shadow: 0 3px 6px 0px rgba(197, 191, 200, 0.13);
          box-shadow: 0 3px 6px 0px rgba(197, 191, 200, 0.13); }
          .list-cards__card__table td > div:before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            z-index: 1;
            display: block;
            width: 6px;
            height: 100%;
            background: inherit;
            pointer-events: none; }
        .list-cards__card__table td .input-checkbox span {
          max-width: 30px; }

.main-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #FFFFFF;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background: #5ebe7b;
  text-align: center;
  position: fixed;
  width: 100%;
  -webkit-box-shadow: 0 0px 15px 0 rgba(45, 33, 47, 0.5);
  box-shadow: 0 0px 15px 0 rgba(45, 33, 47, 0.5);
  z-index: 99; }
  .main-header .tag {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--green-dark);
    border-radius: 22px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 5px; }
  .main-header > .container {
    padding-right: 0; }
  .main-header .effect-text {
    margin-left: -20px;
    padding: 5px 0px;
    font-size: 0.625rem !important; }
    @media (max-width: 576px) {
      .main-header .effect-text {
        font-size: 0.5rem !important; } }
  .main-header .brand {
    margin-right: 18px; }
    .main-header .brand img {
      display: block; }
  .main-header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80%;
    max-width: 1200px;
    margin: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .main-header nav ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      margin-bottom: 0px; }
      @media (max-width: 576px) {
        .main-header nav ul {
          margin-left: 0px !important;
          -webkit-box-align: start;
          -ms-flex-align: start;
          align-items: flex-start; } }
      @media (max-width: 576px) {
        .main-header nav ul.mb-sm {
          margin-bottom: 20px; } }
      .main-header nav ul li {
        height: 70px;
        -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
        margin-left: 50px; }
        @media (max-width: 576px) {
          .main-header nav ul li {
            height: 50px;
            margin-left: 0px; } }
        .main-header nav ul li.hover:hover {
          background: #43a661;
          cursor: pointer; }
        .main-header nav ul li.space {
          -webkit-box-flex: 1;
          -ms-flex: 1 1 auto;
          flex: 1 1 auto; }
        .main-header nav ul li:after {
          content: "";
          position: absolute;
          left: 0;
          bottom: 0;
          right: 0;
          display: block;
          width: 0;
          height: 0;
          margin: 0 auto;
          border-style: solid;
          border-width: 0;
          border-color: transparent transparent #F1EFF2 transparent;
          -webkit-transition: all 0.2s ease-out;
          transition: all 0.2s ease-out; }
        .main-header nav ul li a {
          position: relative;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          height: 60px;
          padding: 0px 18px;
          font-size: 0.75rem;
          text-align: center;
          font-weight: bold;
          line-height: 3;
          text-decoration: none;
          width: 100%;
          height: 100%; }
          .main-header nav ul li a:hover {
            color: #F8F8F8; }
          .main-header nav ul li a.link {
            text-decoration: underline; }
          .main-header nav ul li a.btn {
            padding: 0px 18px !important; }
            @media (max-width: 576px) {
              .main-header nav ul li a.btn {
                width: 90vw;
                margin-bottom: 20px;
                margin-top: 10px; } }
      @media (max-width: 576px) {
        .main-header nav ul.sm-line {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -ms-flex-direction: row;
          flex-direction: row;
          -ms-flex-pack: distribute;
          justify-content: space-around;
          width: 100%; } }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  background-color: rgba(45, 33, 47, 0.11);
  -webkit-transform: translateZ(0);
  transform: translateZ(0); }
  .modal__box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    max-width: 706px;
    height: auto;
    max-height: 90vh;
    padding: 34px 30px 50px;
    border-radius: 3px;
    background: #F8F8F8;
    -webkit-box-shadow: 0 15px 30px 0 rgba(197, 191, 200, 0.53);
    box-shadow: 0 15px 30px 0 rgba(197, 191, 200, 0.53); }
  .modal__close {
    position: absolute;
    top: 25px;
    right: 25px; }
  .modal__header .content-header {
    padding-top: 0; }
  .modal__content {
    overflow: auto; }
  .modal-large .modal__box {
    max-width: calc(100% - 130px); }

.my-wallet__block {
  height: 100%;
  padding: 24px 30px;
  background: #F8F8F8;
  -webkit-box-shadow: 0 3px 6px 0 rgba(199, 187, 201, 0.13);
  box-shadow: 0 3px 6px 0 rgba(199, 187, 201, 0.13); }
  .my-wallet__block h2 {
    margin-bottom: 31px;
    font-size: 0.75rem;
    font-weight: bold;
    color: #2D212F; }
    .my-wallet__block h2 small {
      font-size: 0.75rem;
      font-weight: normal;
      color: #A79CAC; }
    .my-wallet__block h2 a {
      text-decoration: underline; }
    .my-wallet__block h2 + h3 {
      margin-top: -28px; }
    .my-wallet__block h2 + hr {
      margin-top: -15px; }
  .my-wallet__block h3 {
    margin-bottom: 12px;
    font-size: 0.75rem;
    font-weight: normal;
    color: #A79CAC; }
  .my-wallet__block p {
    margin-bottom: 16px;
    font-size: 0.75rem;
    line-height: 1.33;
    color: #2D212F; }
    .my-wallet__block p strong {
      font-weight: bold; }
  .my-wallet__block hr {
    margin-top: 16px;
    margin-bottom: 16px;
    border: none;
    border-bottom: 1px solid #E4E0E6; }
  .my-wallet__block table {
    width: 100%;
    border-spacing: 0; }
    .my-wallet__block table thead {
      padding-bottom: 10px; }
      .my-wallet__block table thead + tbody tr:first-child td {
        padding-top: 17px; }
    .my-wallet__block table tr:first-child td {
      padding-top: 0; }
    .my-wallet__block table th {
      padding-bottom: 9px;
      border-bottom: 1px solid #E4E0E6;
      font-size: 0.625rem;
      text-align: center;
      color: #C7BBC9; }
      .my-wallet__block table th:first-child {
        text-align: left; }
    .my-wallet__block table td {
      padding-top: 17px;
      font-size: 0.75rem;
      text-align: center; }
      .my-wallet__block table td:first-child {
        text-align: left; }

.notifications {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  pointer-events: none; }
  .notifications__content {
    position: absolute;
    top: 0;
    left: calc(100%);
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 300px;
    height: 100%;
    overflow: hidden;
    background: #2D212F;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
  .notifications__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
    padding: 0 40px 0 37px;
    color: #F8F8F8;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); }
    .notifications__header svg {
      display: block; }
      .notifications__header svg .fill {
        fill: #F8F8F8; }
  .notifications__list {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow: auto; }
    .notifications__list__item {
      padding: 21px 40px 25px 37px; }
      .notifications__list__item + .notifications__list__item {
        border-top: 1px solid #3f3941; }
      .notifications__list__item__header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 5px;
        font-size: 0.75rem;
        font-weight: bold;
        color: #374ea1; }
        .notifications__list__item__header svg .fill {
          fill: #F8F8F8; }
      .notifications__list__item__body {
        padding-right: 50px;
        font-size: 0.875rem;
        line-height: 1.29;
        color: #F8F8F8; }
  .notifications__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    background-color: rgba(45, 33, 47, 0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear; }
    .notifications__bg label {
      display: block;
      width: 100%;
      height: 100%; }

#notificationsToggle {
  display: none; }
  #notificationsToggle:checked + .notifications {
    pointer-events: all; }
    #notificationsToggle:checked + .notifications .notifications__content {
      left: calc(100% - 300px);
      -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
      box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); }
    #notificationsToggle:checked + .notifications .notifications__bg {
      background-color: rgba(45, 33, 47, 0.11);
      -webkit-backdrop-filter: blur(7px);
      backdrop-filter: blur(7px); }

.panel {
  height: 100%;
  padding: 15px 20px;
  background: #F1EFF2; }
  .panel + .panel {
    margin-top: 10px; }
  .panel-title {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.3; }
  .panel-closed {
    padding: 20px; }
    .panel-closed .panel-title {
      margin-bottom: 0; }

.table-clean {
  width: 100%;
  border-spacing: 0; }
  .table-clean thead {
    padding-bottom: 10px; }
    .table-clean thead + tbody tr:first-child td {
      padding-top: 17px; }
  .table-clean tr:first-child td {
    padding-top: 0; }
  .table-clean th {
    padding-bottom: 9px;
    border-bottom: 1px solid #E4E0E6;
    font-size: 0.625rem;
    text-align: center;
    color: #C7BBC9; }
    .table-clean th:first-child {
      text-align: left; }
  .table-clean td {
    padding-top: 17px;
    font-size: 0.75rem;
    text-align: center; }
    .table-clean td:first-child {
      text-align: left; }

.table-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .table-group__table {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }
    .table-group__table + .table-group__table {
      margin-left: 44px;
      padding-left: 44px;
      border-left: 1px solid #E4E0E6; }
    .table-group__table__title {
      margin-bottom: 14px;
      font-size: 0.75rem;
      font-weight: bold;
      color: #2D212F; }

.table-list {
  width: 100%;
  border-spacing: 0; }
  .table-list tr:not(:first-child) td {
    border-top: 1px solid #E4E0E6; }
  .table-list td {
    height: 50px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.75rem;
    text-align: center;
    vertical-align: middle; }
    .table-list td strong {
      font-size: 0.875rem; }

.title {
  position: relative;
  margin-bottom: 5px;
  font-size: 1.875rem;
  font-weight: 300;
  color: #2D212F; }
  .title:after {
    content: "";
    display: block;
    width: 6.0625rem;
    height: 0.3125rem;
    border-radius: 0.625rem;
    background: #374ea1; }

.user-menu {
  position: relative;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  min-width: 210px; }
  .user-menu__info {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    background: #38303B;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
  .user-menu__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 30px;
    padding-right: 40px;
    font-size: 0.8125rem;
    font-weight: 300;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .user-menu__toggle span {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
      flex: 1 1 auto; }
    .user-menu__toggle svg .fill {
      fill: #F8F8F8; }
    .user-menu__toggle svg:first-child {
      margin-right: 13px; }
    .user-menu__toggle svg:last-child {
      margin-left: 12px;
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg); }
  .user-menu__nav {
    position: absolute;
    top: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 30px 20px 35px 30px;
    background: #38303B;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
    .user-menu__nav ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: start !important;
      -ms-flex-align: start !important;
      align-items: flex-start !important; }
      .user-menu__nav ul + ul {
        margin-top: 35px; }
      .user-menu__nav ul li {
        height: auto !important;
        margin-right: 0 !important; }
        .user-menu__nav ul li + li {
          margin-top: 10px; }
        .user-menu__nav ul li a {
          text-align: left !important;
          font-size: 0.75rem !important; }
    .user-menu__nav svg {
      -ms-flex-item-align: end;
      align-self: flex-end;
      margin-top: 20px;
      opacity: 0.3; }
      .user-menu__nav svg .fill {
        fill: #87798D; }
  .user-menu #user-menu-toggle {
    display: none; }
    .user-menu #user-menu-toggle:checked + .user-menu__info {
      -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
      box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); }
      .user-menu #user-menu-toggle:checked + .user-menu__info svg:last-child {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg); }
      .user-menu #user-menu-toggle:checked + .user-menu__info + .user-menu__nav {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
        box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16); }

.vamos-conversar {
  background: #FFFFFF;
  color: #2D212F;
  height: 70vh; }
  @media (max-width: 576px) {
    .vamos-conversar {
      text-align: center !important; } }
  .vamos-conversar .full-height {
    height: 70vh;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 0px; }
  .vamos-conversar .text {
    color: #C7BBC9;
    text-align: center;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.28px;
    line-height: 35px; }
  .vamos-conversar .btn {
    height: 50px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 5px 30px;
    font-weight: normal; }

.well {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid var(--primary);
  border-radius: 3px; }
  .well strong {
    margin-right: 8px;
    font-size: 1.875rem;
    font-weight: bold;
    color: #2D212F; }

.white-circle {
  border-radius: 50px;
  width: 80px;
  height: 80px;
  background: #FFFFFF;
  color: #2D212F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
  -webkit-box-shadow: 0 5px 10px 0 rgba(45, 33, 47, 0.2);
  box-shadow: 0 5px 10px 0 rgba(45, 33, 47, 0.2); }

.lp-curso {
  background: #171717;
  background-image: url("../images/curso-partnership/ruido-1.png");
  z-index: 10;
  max-width: 100vw;
  overflow: hidden; }
  .lp-curso .opacity-5 {
    opacity: 0.5; }
  .lp-curso h1 {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-size: 3.33vw;
    line-height: 8.88vh;
    color: var(--white); }
    @media screen and (max-width: 576px) {
      .lp-curso h1 {
        font-size: 64px; } }
  .lp-curso h3 {
    font-style: normal;
    font-weight: bold;
    font-size: 2.5vw;
    line-height: 5.28vh;
    color: var(--white); }
    @media screen and (max-width: 576px) {
      .lp-curso h3 {
        font-size: 30px;
        line-height: 35px; } }
  .lp-curso h5 {
    font-family: Rubik;
    font-style: normal;
    font-weight: bold;
    font-size: 1.45vw;
    line-height: 3.05vh;
    color: var(--white); }
    @media screen and (max-width: 576px) {
      .lp-curso h5 {
        font-size: 28px;
        line-height: 33px; } }
  .lp-curso h6 {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-size: 1.25vw;
    line-height: 3.33vh;
    color: var(--white); }
    @media screen and (max-width: 576px) {
      .lp-curso h6 {
        font-size: 24px; } }
    .lp-curso h6.list-item {
      margin-left: 1.81vw; }
      .lp-curso h6.list-item:before {
        content: "";
        position: absolute;
        background-color: var(--primary);
        width: 1.31vw;
        height: 3px;
        margin-left: -1.81vw;
        margin-top: 9px; }
  .lp-curso p {
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 0.94vw;
    line-height: 2.87vh;
    color: var(--white); }
    @media screen and (max-width: 576px) {
      .lp-curso p {
        font-size: 18px;
        line-height: 20px; } }
    .lp-curso p.text-small {
      font-size: 0.73vw;
      line-height: 1.94vh; }
      @media screen and (max-width: 576px) {
        .lp-curso p.text-small {
          font-size: 12px;
          line-height: 20px; } }
    .lp-curso p.text-body {
      font-family: Rubik;
      font-style: normal;
      font-weight: 500;
      font-size: 0.94vw;
      line-height: 1.94vh; }
      @media screen and (max-width: 576px) {
        .lp-curso p.text-body {
          font-size: 18px;
          line-height: 20px; } }
  .lp-curso a.button-primary, .lp-curso button.button-primary {
    border: none;
    border-radius: 30px;
    background-color: #BF8A02;
    color: var(--white);
    padding: 10px 20px;
    font-size: 0.71vw;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase; }
    @media screen and (max-width: 576px) {
      .lp-curso a.button-primary, .lp-curso button.button-primary {
        font-size: 12px; } }
    .lp-curso a.button-primary.big-button, .lp-curso button.button-primary.big-button {
      height: 5.92vh;
      min-width: 13.48vw;
      font-size: 1.11vw;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      @media screen and (max-width: 576px) {
        .lp-curso a.button-primary.big-button, .lp-curso button.button-primary.big-button {
          height: 64px;
          width: 259px;
          font-size: 21px; } }
    .lp-curso a.button-primary:hover, .lp-curso button.button-primary:hover {
      background-color: var(--cream);
      cursor: pointer; }
  .lp-curso #home {
    height: 78vh;
    display: block;
    margin-top: -10px; }
    @media screen and (max-width: 576px) {
      .lp-curso #home {
        min-height: 100vh;
        height: auto; }
        .lp-curso #home h3 {
          font-size: 30px;
          line-height: 35px; } }
  .lp-curso .section {
    min-height: calc(100vh - 5.18vh);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 15%;
    padding-right: 15%; }
    @media screen and (max-width: 576px) {
      .lp-curso .section {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-left: 5%;
        padding-right: 5%; } }
  .lp-curso .quem-item {
    height: 192px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid white;
    color: blue !important;
    padding: 1rem;
    color: white;
    border-width: 1px;
    border-style: solid;
    -o-border-image: linear-gradient(to top, #626262, transparent) 1 100%;
    border-image: -webkit-gradient(linear, left bottom, left top, from(#626262), to(transparent)) 1 100%;
    border-image: linear-gradient(to top, #626262, transparent) 1 100%;
    border-right: none;
    position: relative;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out; }
    .lp-curso .quem-item::before {
      content: "";
      position: absolute;
      height: 10px;
      width: 10px;
      background-color: var(--primary);
      top: -5px;
      left: 0; }
    .lp-curso .quem-item:hover {
      -webkit-box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.5);
      box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.5); }
  .lp-curso .datas-item {
    height: 262px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    border-width: 1px;
    border-style: solid;
    -o-border-image: linear-gradient(to top, var(--primary), transparent) 1;
    border-image: -webkit-gradient(linear, left bottom, left top, from(var(--primary)), to(transparent)) 1;
    border-image: linear-gradient(to top, var(--primary), transparent) 1;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: var(--primary); }
    .lp-curso .datas-item.hover:hover {
      -webkit-box-shadow: 0 5px 10px 0 rgba(146, 248, 232, 0.5);
      box-shadow: 0 5px 10px 0 rgba(146, 248, 232, 0.5); }
    .lp-curso .datas-item.disabled {
      -o-border-image: linear-gradient(to top, rgba(199, 187, 201, 0.5), transparent) 1;
      border-image: -webkit-gradient(linear, left bottom, left top, from(rgba(199, 187, 201, 0.5)), to(transparent)) 1;
      border-image: linear-gradient(to top, rgba(199, 187, 201, 0.5), transparent) 1; }
    .lp-curso .datas-item p {
      font-style: normal;
      font-weight: normal;
      font-size: 1.01vw;
      line-height: 170.5%; }
      @media screen and (max-width: 576px) {
        .lp-curso .datas-item p {
          font-size: 20px;
          line-height: 24px; } }
  .lp-curso .comentarios {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .lp-curso .comentarios .comentario-item {
      height: 100%;
      color: var(--white);
      margin: 5px; }
      .lp-curso .comentarios .comentario-item .comentario-item-header {
        height: 51px;
        background-color: #394442;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 10px 20px; }
        .lp-curso .comentarios .comentario-item .comentario-item-header p {
          font-style: normal;
          font-weight: bold;
          font-size: 0.91vw;
          line-height: 170.5%; }
          @media screen and (max-width: 576px) {
            .lp-curso .comentarios .comentario-item .comentario-item-header p {
              font-size: 16px;
              line-height: 20px; } }
        .lp-curso .comentarios .comentario-item .comentario-item-header img {
          height: 80%;
          margin: 18px 0px; }
      .lp-curso .comentarios .comentario-item .comentario-item-body {
        background-color: #2F2F2F;
        height: 100%; }
        .lp-curso .comentarios .comentario-item .comentario-item-body > p {
          padding: 25px 17px; }
    .lp-curso .comentarios .fas {
      color: #BF8A02; }
      .lp-curso .comentarios .fas:hover {
        color: var(--cream); }
  .lp-curso #accordionModules .accordion-item, .lp-curso #accordionModules .accordion-button {
    background-color: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .lp-curso #accordionModules .accordion-button {
    padding-left: 0px;
    padding-right: 0px; }
    .lp-curso #accordionModules .accordion-button div {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      -webkit-box-pack: baseline;
      -ms-flex-pack: baseline;
      justify-content: baseline; }
      .lp-curso #accordionModules .accordion-button div .text-primary {
        margin-bottom: 5px;
        padding: 0px; }
      .lp-curso #accordionModules .accordion-button div .text-body {
        color: white !important;
        padding: 0px; }
  .lp-curso #accordionModules .accordion-button:not(.collapsed) {
    color: var(--primary); }
  .lp-curso #accordionModules .accordion-button:after {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    content: "\f0dd" !important;
    background-image: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgba(146, 248, 232, 0.8); }
  .lp-curso #accordionModules .accordion-button.collapsed {
    color: var(--primary) !important; }
  .lp-curso #accordionModules .accordion-button:not(.collapsed)::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }
  .lp-curso #accordionModules .accordion-body {
    color: white; }
    .lp-curso #accordionModules .accordion-body ul {
      padding: 0px; }
      .lp-curso #accordionModules .accordion-body ul p {
        padding: 0px; }
  .lp-curso #accordionModules .accordion-item {
    border-bottom: 1px solid var(--primary);
    border-radius: 0px; }
  .lp-curso .bonus-card {
    width: 40%;
    background: #FFFFFF;
    opacity: 0.9;
    -webkit-box-shadow: inset 0px 15px 30px rgba(0, 0, 0, 0.25);
    box-shadow: inset 0px 15px 30px rgba(0, 0, 0, 0.25);
    border-radius: 30px 0px 60px 30px;
    padding: 54px 8.8% 62px 3.5%; }
    @media screen and (max-width: 576px) {
      .lp-curso .bonus-card {
        width: 90%;
        padding: 34px 6px 35px 10px; } }
    .lp-curso .bonus-card h5 {
      font-weight: normal; }
    .lp-curso .bonus-card p, .lp-curso .bonus-card h5 {
      color: #171717 !important; }
  .lp-curso .text-in-border {
    padding: 10px 5.5%;
    width: 48%;
    border: 1px solid var(--primary);
    -webkit-box-shadow: 0 5px 10px 0 rgba(146, 248, 232, 0.1);
    box-shadow: 0 5px 10px 0 rgba(146, 248, 232, 0.1);
    color: white;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .lp-curso .text-in-border.disabled {
      -webkit-box-shadow: 0 5px 10px 0 rgba(199, 187, 201, 0.1);
      box-shadow: 0 5px 10px 0 rgba(199, 187, 201, 0.1);
      border-color: rgba(199, 187, 201, 0.5); }
    @media screen and (max-width: 576px) {
      .lp-curso .text-in-border {
        width: 100%;
        margin-bottom: 30px; } }
    .lp-curso .text-in-border legend {
      width: auto;
      float: initial;
      padding: 0px 15px;
      color: var(--primary);
      font-size: 0.94vw;
      letter-spacing: 0.1em; }
      @media screen and (max-width: 576px) {
        .lp-curso .text-in-border legend {
          font-size: 18px; } }
    .lp-curso .text-in-border .text-small {
      color: #BF8A02; }
  .lp-curso .text-in-center {
    padding: 0px 45px;
    border: 1px solid var(--primary);
    -webkit-box-shadow: 0 5px 10px 0 rgba(146, 248, 232, 0.1);
    box-shadow: 0 5px 10px 0 rgba(146, 248, 232, 0.1);
    text-align: center; }
    @media screen and (max-width: 576px) {
      .lp-curso .text-in-center {
        padding: 0px 20px; } }
    .lp-curso .text-in-center legend {
      width: auto;
      float: initial;
      padding: 0px 35px;
      color: transparent;
      font-size: 0.94vw;
      letter-spacing: 0.1em; }
      @media screen and (max-width: 576px) {
        .lp-curso .text-in-center legend {
          padding: 0px 40px; } }
  .lp-curso .box-primary {
    padding: 18px 46px;
    border: 1px solid var(--primary);
    -webkit-box-shadow: 0 5px 10px 0 rgba(146, 248, 232, 0.2);
    box-shadow: 0 5px 10px 0 rgba(146, 248, 232, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative; }
  .lp-curso .text-dark {
    color: #171717 !important; }
  .lp-curso #accordionFAQ .accordion-item, .lp-curso #accordionFAQ .accordion-button {
    background-color: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .lp-curso #accordionFAQ .accordion-button {
    padding-right: 10px;
    padding-left: 0px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transition: 0.3s;
    transition: 0.3s; }
    .lp-curso #accordionFAQ .accordion-button.collapsed {
      background-color: rgba(255, 255, 255, 0.1); }
    .lp-curso #accordionFAQ .accordion-button div {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      -webkit-box-pack: baseline;
      -ms-flex-pack: baseline;
      justify-content: baseline; }
      .lp-curso #accordionFAQ .accordion-button div .text-primary {
        margin-bottom: 5px;
        padding: 0px; }
      .lp-curso #accordionFAQ .accordion-button div .text-body {
        color: white !important;
        padding: 0px; }
  .lp-curso #accordionFAQ .accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--primary); }
  .lp-curso #accordionFAQ .accordion-button:after {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    content: "\f078" !important;
    background-image: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .lp-curso #accordionFAQ .accordion-button:after.collapsed {
      color: var(--primary); }
  .lp-curso #accordionFAQ .accordion-button:not(.collapsed)::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); }
  .lp-curso #accordionFAQ .accordion-body {
    color: white;
    background-color: rgba(255, 255, 255, 0.3); }
    .lp-curso #accordionFAQ .accordion-body ul {
      padding: 0px; }
      .lp-curso #accordionFAQ .accordion-body ul p {
        padding: 0px; }
  .lp-curso #accordionFAQ .accordion-item {
    border-radius: 0px;
    padding-right: 10px;
    margin-bottom: 2px; }
  .lp-curso .input-item {
    background-color: white;
    border-radius: 3px;
    padding-left: 6px;
    padding-top: 3px;
    margin-bottom: 10px; }
    .lp-curso .input-item p {
      font-size: 0.73vw !important;
      line-height: 0.73vw !important;
      color: var(--hitam);
      margin: 0;
      font-weight: 300; }
      @media screen and (max-width: 576px) {
        .lp-curso .input-item p {
          font-size: 14px !important;
          line-height: 14px !important; } }
    .lp-curso .input-item input {
      border: none;
      width: 100%;
      font-size: 0.9vw;
      line-height: 0.9vw;
      font-weight: 400; }
      @media screen and (max-width: 576px) {
        .lp-curso .input-item input {
          font-size: 16px;
          line-height: 16px; } }
    .lp-curso .input-item select {
      border: none;
      width: 100%;
      background-color: transparent;
      font-size: 1vw;
      line-height: 1vw; }
      @media screen and (max-width: 576px) {
        .lp-curso .input-item select {
          font-size: 18px;
          line-height: 18px; } }
  .lp-curso #mc_embed_signup {
    color: white; }
    .lp-curso #mc_embed_signup .mc-field-group {
      background-color: white;
      border-radius: 3px;
      padding-left: 6px;
      padding-top: 3px;
      margin-bottom: 10px;
      min-height: 35px;
      font-family: Poppins;
      padding-bottom: 0px; }
      .lp-curso #mc_embed_signup .mc-field-group label {
        font-size: 0.73vw !important;
        line-height: 0.73vw !important;
        color: var(--hitam);
        margin: 0;
        font-weight: 300; }
        @media screen and (max-width: 576px) {
          .lp-curso #mc_embed_signup .mc-field-group label {
            font-size: 14px !important;
            line-height: 14px !important; } }
      .lp-curso #mc_embed_signup .mc-field-group input {
        border: none;
        width: 100%;
        font-size: 0.9vw;
        line-height: 0.9vw;
        font-weight: 400;
        padding: 0px; }
        @media screen and (max-width: 576px) {
          .lp-curso #mc_embed_signup .mc-field-group input {
            font-size: 16px;
            line-height: 16px; } }
      .lp-curso #mc_embed_signup .mc-field-group select {
        border: none;
        width: 100%;
        background-color: transparent;
        font-size: 1vw;
        line-height: 1vw;
        margin-bottom: 0px;
        padding: 0px; }
        @media screen and (max-width: 576px) {
          .lp-curso #mc_embed_signup .mc-field-group select {
            font-size: 18px;
            line-height: 18px; } }
      .lp-curso #mc_embed_signup .mc-field-group .mce_inline_error {
        margin-bottom: 0px !important;
        font-size: 0.73vw !important;
        line-height: 0.73vw !important;
        font-weight: 300; }
        @media screen and (max-width: 576px) {
          .lp-curso #mc_embed_signup .mc-field-group .mce_inline_error {
            font-size: 14px !important;
            line-height: 14px !important; } }
    .lp-curso #mc_embed_signup div.response {
      width: 100%;
      font-size: 0.9vw !important;
      line-height: 0.95vw !important;
      font-weight: 300; }
      @media screen and (max-width: 576px) {
        .lp-curso #mc_embed_signup div.response {
          font-size: 14px !important;
          line-height: 14px !important; } }
  .lp-curso #recipeCarousel {
    width: 100%; }
    .lp-curso #recipeCarousel .carousel-inner {
      width: 90%;
      margin: auto; }
    .lp-curso #recipeCarousel .carousel-item.active {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .lp-curso #recipeCarousel .carousel-control-next, .lp-curso #recipeCarousel .carousel-control-prev {
      width: auto;
      color: #BF8A02; }

.row {
  max-width: 100vw; }

input.white-placeholder::-webkit-input-placeholder {
  color: white; }

input.white-placeholder::-moz-placeholder {
  color: white; }

input.white-placeholder:-ms-input-placeholder {
  color: white; }

input.white-placeholder::-ms-input-placeholder {
  color: white; }

input.white-placeholder::placeholder {
  color: white; }

.fundo-inicial {
  background-image: url("/assets/images/marketing/INICIAL.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

.fundo-mapa {
  background-image: url("/assets/images/marketing/mapa .png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

.fundo-estrategia {
  background-image: url("/assets/images/marketing/estratégia branco.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

.fundo-performance {
  background-image: url("/assets/images/marketing/valor do cliente branco.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

.home {
  background-image: url("/assets/images/holding/img-site-1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFFFFF; }
  .home .mapa-brasil {
    background-image: url("/assets/images/holding/mapa-brasil-01.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
    .home .mapa-brasil .text-big {
      font-size: 3.375rem; }
    .home .mapa-brasil b {
      font-weight: 900; }

.fundo-evento-home {
  background-image: url("/assets/images/semana-aai-2020/cadastro-FOOTER.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

.explain p.text-bigger {
  font-size: 1.25rem; }

.home-mobile {
  color: #FFFFFF;
  text-aling: center; }
  .home-mobile .text-big {
    font-size: 2.4rem; }

.depoimentos {
  color: #FFFFFF; }
  .depoimentos .dep-card {
    background: #1c562b;
    border-radius: 4px;
    min-height: calc(90vh - 70px);
    padding: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center; }
    .depoimentos .dep-card .dep-circle {
      height: 40px;
      width: 40px;
      border-radius: 30px; }

.depoimentos-mobile {
  color: #FFFFFF; }
  .depoimentos-mobile .dep-card {
    background: #1c562b;
    border-radius: 4px;
    padding: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center; }
    .depoimentos-mobile .dep-card .dep-circle {
      height: 20px;
      width: 20px;
      border-radius: 30px; }

.home-end {
  background-image: url("/assets/images/holding/img-site-2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

.mea-home {
  background-image: url("/assets/images/holding/img-site-6.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .mea-home .mea-border-bottom {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }
    .mea-home .mea-border-bottom img, .mea-home .mea-border-bottom h1 {
      z-index: 3;
      position: relative;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      padding-left: 20px;
      padding-right: 20px;
      font-size: 5.25rem; }
    .mea-home .mea-border-bottom div {
      border-bottom: 40px solid #1c562b;
      width: 100%;
      margin-bottom: -50px;
      position: relative;
      bottom: 45px; }

.mea-home-mobile {
  background-image: url("/assets/images/holding/img-site-6.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 35vh; }
  .mea-home-mobile .mea-border-bottom {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }
    .mea-home-mobile .mea-border-bottom img, .mea-home-mobile .mea-border-bottom h1 {
      z-index: 3;
      position: relative;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      font-size: 1.5rem; }
    .mea-home-mobile .mea-border-bottom div {
      border-bottom: 20px solid #1c562b;
      width: 100%;
      margin-bottom: -50px;
      position: relative;
      bottom: 25px; }

.mea-explain {
  max-width: 100vw; }
  .mea-explain .text-bold h3 {
    font-weight: 900; }
  .mea-explain .text-bigger {
    font-size: 1.25rem; }

.mea-processo {
  padding: 40px; }
  .mea-processo .mea-passo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 3px solid #5ebe7b;
    padding-bottom: 20px;
    padding-top: 20px; }
    .mea-processo .mea-passo-left {
      color: #5ebe7b; }
    .mea-processo .mea-passo-right {
      padding-left: 50px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }

.mea-processo-mobile .mea-passo {
  border-bottom: 3px solid #5ebe7b;
  padding-bottom: 20px;
  padding-top: 20px; }
  .mea-processo-mobile .mea-passo-left {
    color: #5ebe7b; }
  .mea-processo-mobile .mea-passo .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%; }
  .mea-processo-mobile .mea-passo-right p {
    padding: 0px !important; }

.pq-home {
  background-image: url("/assets/images/holding/img-site-3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .pq-home .pq-border-bottom {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }
    .pq-home .pq-border-bottom img, .pq-home .pq-border-bottom h1 {
      z-index: 3;
      position: relative;
      width: 400px;
      font-size: 5.25rem; }
    .pq-home .pq-border-bottom div {
      border-bottom: 40px solid #1c562b;
      width: 100%;
      margin-bottom: -50px;
      position: relative;
      bottom: 45px; }

.pq-home-mobile {
  background-image: url("/assets/images/holding/img-site-3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 35vh; }
  .pq-home-mobile .pq-border-bottom {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }
    .pq-home-mobile .pq-border-bottom img, .pq-home-mobile .pq-border-bottom h1 {
      z-index: 3;
      position: relative;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      font-size: 1.5rem; }
    .pq-home-mobile .pq-border-bottom div {
      border-bottom: 20px solid #1c562b;
      width: 100%;
      margin-bottom: -50px;
      position: relative;
      bottom: 20px; }

.pq-explain .text-bold h3 {
  font-weight: 900; }

.pq-explain .text-bigger {
  font-size: 1.25rem; }

.pq-subtitle p {
  font-size: 1.25rem; }

::-webkit-scrollbar {
  width: 7px; }

::-webkit-scrollbar-track {
  background: #fff;
  -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.1); }

::-webkit-scrollbar-thumb {
  background: #ccc;
  -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2); }

::-webkit-scrollbar-thumb:hover {
  background: #aaa; }

::-webkit-scrollbar-thumb:active {
  background: #888;
  -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3); }
