@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Work Sans", sans-serif;
}

body {
  color: var(--text-color);
  line-height: 1.5;
}

:root {
  --primary-blue-color: #2a92fb;
  --primary-green-color: #004c3f;
  --primary-green-light-color: #90e665;
  --secondary-link-color: #686868;
  --secondary-gray-color: #ededed;
  --secondary-gray-dark-color: #d9d9d9;
  --secondary-gray-light-color: #eef0ef;
  --text-color: #2d3748;
  --primary-red-color: #ff0000;
}

body {
  align-content: flex-start;
  align-items: flex-start;
  background-color: var(--secondary-gray-color);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
body.body-login {
  background: #fff;
}

/* LAYOUT */
.header {
  display: flex;
  justify-content: center;
  width: 100%;
}

.header--content {
  flex-direction: row;
  justify-content: space-between;
  padding: 0px;
}

.header--content--main {
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.header--content .title {
  color: var(--primary-green-color);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4rem;
  width: 100%;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 15px;
  width: 100%;
  box-sizing: border-box;
}

.main-content {
  display: flex;
  gap: 47px;
  max-width: 1630px;
  width: 100%;
}

.main-content.full {
  flex: 1;
  max-width: 100%;
}

.main-content--controls {
  align-items: center;
  display: flex;
  gap: 12px;
}

.main-content--group {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}

.page-termo-uso .main-content--group.full {
  width: 100%;
}

.main-content--data {
  background: #fff;
  border-radius: 8px;
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.main-content--data::-webkit-scrollbar {
  height: 14px;
  width: 0;
  transition: all 0.3s ease-in-out;
}

.scroll-top::-webkit-scrollbar {
  height: 14px;
  width: 0;
  display: block !important;
}

.scroll-top {
  height: 14px;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  background: var(--secondary-gray-dark-color);
  display: block;
}

.scroll-content {
  height: 10px;
  min-width: 300%;
  background-color: transparent;
}

.main-content--data::-webkit-scrollbar-track,
.scroll-top::-webkit-scrollbar-track {
  background: var(--secondary-gray-dark-color);
  border-radius: 6px;
}

.main-content--data::-webkit-scrollbar-thumb,
.scroll-top::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
  height: 16px;
}

.main-content--data::-webkit-scrollbar-thumb:hover,
.scroll-top::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue-color);
}

.main-content--data table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.main-content--data thead {
  position: sticky;
  top: 0;
  background: white;
  z-index: 2;
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.1);
}

.main-content--data thead th {
  position: sticky;
  top: 0;
  background: #e2e2e2;
  padding: 12px;
  white-space: nowrap;
}

.main-content--data tbody td {
  padding: 12px;
}

.terms-page {
  padding-right: 35px;
}

.terms-page p {
  font-size: 14px;
  padding: 12px 0px;
}

.terms-page h1 {
  padding-bottom: 20px;
}

.terms-page h2 {
  font-size: 24px;
  padding-bottom: 20px;
}

.terms-page h3 {
  font-size: 18px;
}

.page-termo-uso .main-content--group.full > .main-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.page-termo-uso .terms-page {
  max-width: 986px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.footer {
  align-items: center;
  color: var(--primary-blue-color);
  display: flex;
  font-size: 12px;
  font-weight: 500;
  justify-content: center;
  padding: 40px 0px;
  width: 100%;
  z-index: 2;
}
.footer--container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0px 10px;
  width: 100%;
}
.footer--copy {
  color: var(--primary-green-color);
  font-weight: 400;
}
.footer--menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.footer--menu--item,
.terms-page a {
  color: var(--primary-blue-color);
  text-decoration: none;
}

/* COMPONENTS */
.breadcrumb {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.breadcrumb,
.breadcrumb--item {
  height: fit-content;
  margin: 0;
  list-style: none;
  padding: 0;
}

.breadcrumb--item {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  padding: 0px 0px 0px 14px;
  font-size: 12px;
  font-weight: 400;
  position: relative;
  color: var(--primary-blue-color);
}

.breadcrumb--item:first-child::before {
  display: none;
}

.breadcrumb--item:last-child {
  color: var(--primary-green-color);
}

.breadcrumb--item::after {
  content: "›";
  left: 0px;
  position: absolute;
  top: 50%;
  transform: translate3d(0px, -50%, 0px);
  color: var(--primary-green-color);
}

.breadcrumb--item:first-child::after {
  display: none;
}

.breadcrumb--link {
  font-weight: 600;
  color: var(--secondary-green-color);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.breadcrumb--link:hover {
  opacity: 1;
}

.breadcrumb--item:last-child .breadcrumb--link:hover {
  opacity: 0.5;
  cursor: default;
}

.breadcrumb--item:first-child {
  padding-left: 0px;
}

.admin-access {
  align-items: center;
  display: flex;
  flex-direction: row;
  margin-left: auto;
}

.admin-access--link {
  color: var(--primary-red-color);
  font-size: 12px;
  font-weight: 400;
  text-decoration: none;
}

.distributor {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
  margin-left: auto;
  padding: 20px 0px;
}

.distributor--user {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.distributor--user--icon {
  color: var(--primary-green-color);
  font-size: 18px;
}

.distributor--user--text {
  color: var(--primary-green-color);
  font-size: 14px;
  font-weight: 700;
}

.help {
  background: var(--primary-green-light-color);
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  height: fit-content;
  overflow: hidden;
  padding: 16px;
  width: 100%;
}

.help--icon {
  align-items: center;
  background: var(--primary-blue-color);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  height: 34px;
  overflow: hidden;
  width: 34px;
}

.help--icon .icon {
  color: #fff;
  font-size: 17px;
  line-height: 0rem;
}

.help--content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.help--content > p {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  gap: 6px;
  line-height: 1rem;
}

.help--content > p > * {
  line-height: 0.9rem;
}

.help--content > p > span {
  font-size: 12px;
  font-weight: 400;
}

.help--content a.btn--primary {
  max-width: 100%;
}

.logo {
  align-items: center;
  display: flex;
  position: relative;
  width: calc(274px - 47px);
}

.logo::after {
  border: none;
  background: linear-gradient(
    90deg,
    rgba(224, 225, 226, 0) 0%,
    #e0e1e2 49.52%,
    rgba(224, 225, 226, 0.15625) 99.04%
  );
  bottom: 0px;
  content: "";
  left: 0px;
  height: 1px;
  position: absolute;
  width: 100%;
}

.logo .icon {
  color: var(--primary-green-color);
  font-size: 45px;
}

.menu {
  align-content: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
}

.menu--selected.btn--primary {
  align-items: center;
  box-shadow: 0px 3.5px 5.5px 0px #00000005;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  font-size: 12px;
  font-weight: 700;
  height: fit-content;
  padding: 12px !important;
}

.menu--selected > .icon {
  align-items: center;
  background: var(--primary-blue-color);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  color: #fff;
  display: flex;
  height: 30px;
  font-size: 12px;
  width: 30px;
}

.menu--selected > .text {
  color: var(--text-color);
  text-transform: capitalize;
}

.reports-menu {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}

.reports-menu:first-child {
  margin-top: 30px;
}

.reports-menu > h2 {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.reports-menu--list,
.reports-menu--list--item {
  margin: 0;
  list-style: none;
  padding: 0;
}

.reports-menu--list {
  display: flex;
  gap: 12px;
  flex-direction: row;
  flex-wrap: wrap;
}

.reports-menu--list li.reports-menu--item {
  height: fit-content;
  display: flex;
  align-items: center;
}

.reports-menu--item--link {
  color: var(--primary-green-color);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-direction: row;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}
.reports-menu--item--link .graph {
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  height: 30px;
  width: 30px;
}
.reports-menu--item--link .icon {
  color: var(--primary-blue-color);
  font-size: 14px;
}
.reports-menu--item--link {
  color: var(--primary-green-color);
  display: flex;
  gap: 12px;
  flex-direction: row;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  padding: 6px 0 0 0;
  width: 227px;
}

/* TABLE */
.table {
  background: #fff;
  border: none;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto;
  width: 100%;
}

.table > thead th {
  border-right: 1px solid #ccc;
  color: var(--primary-green-color);
  font-size: 1rem;
  font-weight: 600;
  height: 70px;
  padding: 10px 16px;
  text-align: left;
  white-space: nowrap;
}

.table > thead th:first-child {
  border-top-left-radius: 15px;
}

.table > thead th:last-child {
  border-right: none;
  border-top-right-radius: 15px;
}

.table > tbody > tr > td {
  border-right: 1px solid var(--secondary-gray-color);
  border-top: 1px solid var(--secondary-gray-color);
  color: var(--primary-green-color);
  font-size: 14px;
  font-weight: 500;
  height: 70px;
  overflow: hidden;
  padding: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 420px;
}

.table > tbody > tr > td:last-child {
  border-right: none;
  width: fit-content;
}

.table > tbody > tr:last-child > td:first-child {
  border-bottom-left-radius: 8px;
}

.table > tbody > tr:last-child > td:last-child {
  border-bottom-right-radius: 8px;
}

/* FORM */
.form {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  height: fit-content;
  max-width: 530px;
  margin: 70px 0px;
  padding: 20px 12px;
  position: relative;
  z-index: 2;
}
.form::before {
  background: rgba(255, 255, 255, 0.8);
  content: "";
  height: 100dvh;
  left: 0px;
  position: absolute;
  top: 50%;
  transform: translate3d(0px, -50%, 0px);
  width: 100%;
  z-index: -1;
}
.form--background {
  border-radius: 0px 0px 0px 25px;
  display: flex;
  right: 0px;
  height: 870px;
  max-width: 45dvw;
  max-height: calc(100dvh - 100px);
  overflow: hidden;
  position: absolute;
  top: 0px;
}
.form--background > img {
  max-width: 800px;
  display: inline;
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.form--background::before {
  background: rgba(0, 0, 0, 0.2);
  content: "";
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 100%;
}
.form--code {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin: 6px 0px 0px;
  width: 100%;
}
.form--code input {
  border-radius: 15px;
  border: 1px solid var(--secondary-gray-dark-color);
  height: 50px;
  width: 50px;
}
.form--code.error input {
  border-color: #ff0000;
}
.form--code.error + div > p {
  color: #ff0000;
}
.form--content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 38px;
  width: 350px;
}
.form--content .form--info {
  margin-bottom: 0px;
}
.form--logo {
  background: transparent;
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  left: 0px;
  position: absolute;
  top: 50%;
  transform: translate3d(0px, -50%, 0px);
}
.form--logo--text {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 24px;
  font-weight: 400;
  line-height: 2.4rem;
  padding: 0px 46px;
}
.form--logo--text h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 3.5rem;
}
.form--logo > img {
  margin-left: 90px;
  width: 84px;
}
.form--info {
  color: var(--primary-green-color);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0px 0px 36px;
}
.form--info h1 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0px;
  width: 100%;
}
.form--info p {
  font-size: 14px;
  font-weight: 500;
}
.form--info p.normal {
  font-weight: 400;
}
.form--error {
  color: var(--primary-green-color);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0px 0px 36px;
}
.form--error p {
  color: #ff0000;
  font-size: 14px;
  font-weight: 500;
}
.form--wrapper-inputs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.form--input {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
}
.form--input.error input {
  border-color: #ff0000;
  color: #ff0000;
}
.form--input.error p.error {
  color: #ff0000;
  font-size: 14px;
  font-weight: 500;
}
.form--input label {
  color: var(--primary-green-color);
  font-size: 14px;
  font-weight: 500;
}
.form--content .btn--primary {
  align-items: center;
  background-color: var(--primary-blue-color);
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  max-width: 100%;
  height: 40px;
  justify-content: center;
  padding: 17px 0px;
}
.form--restore {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: -34px;
  width: 100%;
}
.form--restore p,
.form--restore a {
  color: var(--secondary-link-color);
  font-size: 14px;
  font-weight: 400;
}
.form--restore a {
  color: var(--primary-blue-color);
  text-decoration: none;
}
.form--wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: calc(100dvh - 100px);
}
.form--password--rules ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 20px;
  width: 100%;
}
.form--password--rules ul > li {
  padding: 2px 0px;
  position: relative;
}
.form--password--rules ul > li:before {
  background: var(--primary-green-color);
  border-radius: 100%;
  content: "";
  height: 4px;
  left: -12px;
  position: absolute;
  top: 8px;
  width: 4px;
}
.form--password--rules ul p {
  color: var(--primary-green-color);
  font-size: 10px;
}

/* Login Code page */
.form--login-code .form--content {
  gap: 20px;
}
.form--login-code .form--content label {
  display: none;
}
.form--login-code .form--content .form--hint {
  font-size: 14px;
  font-weight: 500;
}

input[type="text"],
input[type="password"],
input[type="email"] {
  appearance: none;
  border-radius: 15px;
  border: 1px solid var(--secondary-gray-color);
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
  padding: 15px 20px;
  width: 100%;
}

.btn {
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  margin: 0;
  outline: none;
  text-decoration: none;
  max-width: fit-content;
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.btn--primary {
  background: #fff;
  border-radius: 12px;
  color: var(--primary-blue-color);
  height: 35px;
  line-height: 35px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}

.btn--secondary {
  align-items: center;
  border: 2px solid #e5e6ea;
  border-radius: 16px;
  color: var(--primary-green-color);
  display: flex;
  flex-direction: row;
  height: 40px;
  justify-content: center;
  padding: 16px 24px;
  display: flex;
  max-width: 180px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.btn--secondary .icon {
  color: var(--primary-blue-color);
  font-size: 14px;
}

.btn--secondary .icon-arrow {
  font-size: 14px;
}

.btn--secondary .text {
  display: inline;
  font-size: 14px;
  font-weight: 500;
  line-height: 0rem;
}

a.btn--secondary {
  text-decoration: none;
}

.btn--tertiary {
  border: 1px solid var(--primary-blue-color);
  border-radius: 12px;
  color: var(--primary-blue-color);
  font-size: 10px;
  font-weight: 700;
  line-height: 0rem;
  padding: 12px 24px;
  text-transform: uppercase;
}

.scroll {
  overflow-x: scroll;
  width: 100%;
}
.scroll::-webkit-scrollbar {
  height: 27px;
}
.scroll::-webkit-scrollbar-track {
  background: var(--secondary-gray-dark-color);
  border-radius: 5px;
}
.scroll::-webkit-scrollbar-thumb {
  background: var(--primary-blue-color);
  border: 6px solid var(--secondary-gray-dark-color);
  border-radius: 10px;
  height: 16px;
}
.scroll::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue-color);
}
.scroll--container,
.scroll-container-top {
  height: 1px;
  width: 100%;
}

.scroll-container-top {
  margin-bottom: 10px;
  overflow: hidden;
}

.scroll {
  overflow-x: scroll;
  width: 100%;
}
.scroll::-webkit-scrollbar {
  height: 27px;
}
.scroll::-webkit-scrollbar-track {
  background: var(--secondary-gray-dark-color);
  border-radius: 5px;
}
.scroll::-webkit-scrollbar-thumb {
  background: var(--primary-blue-color);
  border: 6px solid var(--secondary-gray-dark-color);
  border-radius: 10px;
  height: 16px;
}
.scroll::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue-color);
}
.scroll--container {
  height: 1px;
  width: 100%;
}

/* Cards genéricos */
.card-grid--section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  width: 100%;
}

.card {
  border-radius: 15px;
  background: #fff;
  box-shadow: 0px 3.5px 5.5px 0px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease;
  width: calc((100% - 3 * 18px) / 4);
}

.card:hover {
  transform: translateY(-5px);
}

.card .line {
  width: 100%;
  height: 1px;
  margin: 10px 0 25px 0;
  background: url(../images/line-divider.png) no-repeat center;
  background-size: cover;
}

.card--icon {
  background: var(--primary-green-light-color);
  border-radius: 12px;
  box-shadow: 0px 3.5px 5.5px 0px rgba(0, 0, 0, 0.02);
  width: 81px;
  height: 87px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 30px;
}

.card--icon .icon {
  background-image: url(../images/icon-wallet.png);
  background-size: cover;
  width: 33px;
  height: 35px;
}

.card--content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  gap: 10px;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 30px;
}

.card--title {
  color: var(--primary-green-color);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  padding: 0 0 10px 0;
}

.card--description {
  color: var(--text-color);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
}

.card--content .btn--primary {
  display: flex;
  max-width: 100%;
  padding: 0 8px;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--primary-blue-color);
  text-decoration: none;
  margin: 0 auto;
}

/* Termo de Aceite */
.termo-aceite-wrapper {
  max-width: 1270px;
  margin: 0 auto;
  background-color: white;
  border-radius: 32px;
  padding: 30px;
}

.termo-aceite-wrapper .form {
  max-width: 1270px;
  margin: 0 auto;
}

.termo-aceite-wrapper .form--content label {
  display: none;
}

.termo-aceite-wrapper ol {
  padding-left: 30px;
  margin-bottom: 20px;
}

.termo-aceite-wrapper li.topico {
  margin-bottom: 15px;
  font-weight: 500;
}

.termo-aceite-wrapper ul {
  padding-left: 25px;
  margin-top: 8px;
}

.termo-aceite-wrapper ul li {
  margin-bottom: 8px;
  line-height: 1.4;
}

.termo-aceite-wrapper .concordo-texto {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  display: inline-flex;
  align-items: center;
}

.termo-aceite-wrapper h1 {
  margin-bottom: 20px;
}

.termo-aceite-wrapper p {
  margin-bottom: 20px;
}

.termo-aceite-wrapper .btn {
  margin-top: 15px;
}

.termo-aceite-wrapper .checkbox-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}

.termo-aceite-wrapper .custom-checkbox {
  position: relative;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.termo-aceite-wrapper .checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.termo-aceite-wrapper .checkbox-label input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}

.termo-aceite-wrapper .checkmark {
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #007bff;
  border-radius: 4px;
  display: inline-block;
  position: relative;
}

.termo-aceite-wrapper .checkbox-label input[type="checkbox"]:checked ~ .checkmark:after {
  content: "";
  position: absolute;
  display: block;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #007bff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.termo-aceite-wrapper .checkbox-label input[type="checkbox"]:focus ~ .checkmark {
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.termo-aceite-wrapper .errorlist {
  color: #dc3545;
  list-style: none;
  padding: 0;
  margin: 5px 0;
  font-size: 14px;
}

.termo-aceite-wrapper .button-container {
  margin-top: 15px;
  display: block;
  width: 100%;
  clear: both;
}

.termo-aceite-wrapper .btn--primary {
  align-items: center;
  background-color: var(--primary-blue-color);
  color: #fff;
  display: flex;
  font-size: 19px;
  font-weight: 700;
  height: auto;
  justify-content: center;
  padding: 17px;
  width: auto;
}

/* Utilities */
.rounded-full {
  border-radius: 9999px;
}

.card-grid--title {
  color: var(--primary-green-color);
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 10px;
}

@media (max-width: 1400px) {
  .card {
    width: calc((100% - 2 * 18px) / 3);
  }
}

@media (max-width: 1100px) {
  .card {
    width: calc((100% - 18px) / 2);
  }
}

@media (max-width: 768px) {
  .card {
    width: 100%;
  }
}
