:root {
  --color-bg: #F9F9FF;
  --color-primary: #00E7F7;
  --color-secondary: #6F707E;
  --color-error: #D72828;
}

body {
  min-height: 100vh;
  background: #F9F9FF;
  overflow-x: hidden;
}

body.no-screen {
  min-height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
body {
  font-family: "Roboto", sans-serif;
}

@media (max-width: 992px) {

  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    --bs-gutter-x: 2rem;
  }

  .emoji {
    display: none !important;
  }
}

.min-h-screen {
  min-height: 100vh;
}

header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
}

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

header .logo img {
  height: auto;
  width: auto;
}

@media (max-width: 992px) {
  header .logo img {
    width: auto;
    height: 4rem;
  }
}

header .content {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
  header .content {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 992px) {
  header .content .left {
    display: none;
  }
}

header .content .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media (max-width: 992px) {
  header .content .right {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 1rem 0;
  }
}

header .content .right .actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

header .content .right .actions .action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 6px;
  border-radius: 50%;
  border: none;
}

header .content .right .actions svg {
  height: 25px;
  width: 25px;
}

p {
  color: #6F707E;
  text-align: center;
}

.screen {
  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;
  max-width: 800px;
  margin: 0 auto;
  padding: 7rem 0 4rem;
  min-height: calc(100vh - 115px);
}

@media (max-width: 992px) {
  .screen {
    padding: 9rem 0 4rem;
  }
}

.screen.screen-login h3 {
  font-weight: 400;
  font-size: 32px;
  line-height: 47px;
  text-align: center;
  color: #000000;
}

@media (max-width: 992px) {
  .screen.screen-login h3 {
    font-size: 24px;
    line-height: 28px;
  }
}

.screen.screen-login h1 {
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 2rem;
  color: #0A39E4;
}

@media (max-width: 992px) {
  .screen.screen-login h1 {
    font-size: 2rem;
  }
}

.screen.screen-dashboard h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 47px;
  text-align: center;
  color: #0A39E4;
}

.screen.screen-dashboard .exams {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0 3rem;
}

@media (max-width: 992px) {
  .screen.screen-dashboard .exams {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2rem;
  }
}

.screen.screen-dashboard .exams input[type=radio] {
  display: none;
}

.screen.screen-dashboard .exams svg {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .screen.screen-dashboard .exams svg {
    width: 65px;
    height: 65px;
  }
}

.screen.screen-dashboard .exams span {
  color: #000000;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  padding: 0 0px;
}

.screen.screen-dashboard .exams span.name {
  padding: 0 12px;
}

@media (max-width: 992px) {
  .screen.screen-dashboard .exams span {
    font-size: 12px;
    line-height: 12px;
  }
}

.screen.screen-dashboard .exams .exam-item {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 51px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 51px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  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;
  width: 160px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 160px;
  flex: 0 0 160px;
  height: 160px;
  padding-bottom: 10px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

@media (max-width: 992px) {
  .screen.screen-dashboard .exams .exam-item {
    height: 132px;
  }
}

.screen.screen-dashboard .exams .exam-item .checker-deco {
  position: absolute;
  top: 8px;
  max-width: 15px;
  right: 8px;
  height: 15px;
  display: none;
}

.screen.screen-dashboard .exams .exam-item .checker-deco svg {
  width: 15px;
  height: 15px;
}

.screen.screen-dashboard .exams .exam-item.complete .svg {
  position: relative;
  margin-bottom: 10px;
}

.screen.screen-dashboard .exams .exam-item.complete .svg svg {
  margin: 0;
}

.screen.screen-dashboard .exams .exam-item.complete .note-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  color: var(--color-primary);
}

.screen.screen-dashboard .exams .exam-item.complete span.parraph {
  font-weight: 400;
  font-size: 13px;
  line-height: 0px;
  color: #6F707E;
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
}

.screen.screen-dashboard .exams input[type=radio]:checked+label {
  background-color: #47D6FF;
  color: #ffffff;
}

.screen.screen-dashboard .exams input[type=radio]:checked+label .checker-deco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.screen.screen-dashboard .exams input[type=radio]:checked+label span {
  color: white;
}

.screen.screen-dashboard .exams input[type=radio]:checked+label svg * {
  fill: white;
}

.screen.screen-dashboard .action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.screen.screen-dashboard .action button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #181A38;
  border-radius: 80px;
  height: 46px;
  border: none;
  color: white;
  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;
  gap: 15px;
  width: 17rem;
  position: relative;
}

.screen.screen-dashboard .action button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.screen.screen-dashboard .action button span {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: block;
  padding-left: 1rem;
}

.screen.screen-dashboard .action button .ico {
  aspect-ratio: 1;
  background: white;
  border-radius: 50%;
  width: 35px;
  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;
}

.screen.screen-dashboard .action button .ico svg {
  width: 15px;
  height: 15px;
}

.screen.screen-exam .content {
  width: 100%;
  position: relative;
}

@media (max-width: 992px) {
  .screen.screen-exam .content {
    padding: 0 2rem;
  }
}

.screen.screen-exam .content .progress-bar {
  color: var(--color-primary);
}

.screen.screen-exam .content .progress-bar .top {
  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: 10px;
}

@media (max-width: 992px) {
  .screen.screen-exam .content .progress-bar .top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.screen.screen-exam .content .progress-bar .top h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--color-primary);
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .screen.screen-exam .content .progress-bar .top h4 {
    font-size: 24px;
    line-height: 25px;
    white-space: normal;
  }
}

.screen.screen-exam .content .progress-bar .top .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-weight: 600;
}

.screen.screen-exam .content .progress-bar .top .step .current {
  font-size: 24px;
  line-height: 23px;
}

.screen.screen-exam .content .progress-bar .bottom progress {
  background-color: #00107B;
}

.screen.screen-exam .content .progress-bar .bottom progress::-webkit-progress-value {
  background-color: var(--color-primary);
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

.screen.screen-exam .content .question-title {
  font-weight: 700;
  font-size: 25px;
  line-height: 32px;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.screen.screen-exam .content .question-info {
  margin-bottom: 2rem;
  text-align: justify;
  max-height: 11rem;
  overflow-y: auto;
}

.screen.screen-exam .content .question-text {
  display: block;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
}

@media (max-width: 992px) {
  .screen.screen-exam .content .question-text {
    font-size: 19px;
    line-height: 21px;
  }
}

.screen.screen-exam .content .question-text:before {
  content: attr(number) ". ";
  color: var(--color-primary);
}

.screen.screen-exam .content .question .alternatives {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.screen.screen-exam .content .question .alternatives input[type=radio] {
  display: none;
  background: white;
}

.screen.screen-exam .content .question .alternatives input[type=radio]:checked+label {
  background: var(--color-primary);
  color: white;
}

@media (max-width: 992px) {
  .screen.screen-exam .content .question .alternatives {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.screen.screen-exam .content .question .alternatives .alternative-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 27%;
  flex: 0 0 27%;
}

.screen.screen-exam .content .question .alternatives .alternative-content.expand {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 46%;
  flex: 0 0 46%;
}

.screen.screen-exam .content .question .alternatives .alternative-content.expand .alternative-item {
  padding: 12px 1rem;
  height: auto;
  min-height: 48px;
  color: #071B9F !important;
}

.screen.screen-exam .content .question .alternative-item {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 51px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 51px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 27%;
  flex: 0 0 27%;
  height: 44px;
  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;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #071B9F !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.screen.screen-exam .content.finish .note-complete {
  background: #FFFFFF;
  border: 3px solid #05BD2D;
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
  border-radius: 100px;
  margin-top: 2rem;
  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;
  min-height: 51px;
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 700;
}

@media (max-width: 992px) {
  .screen.screen-exam .content.finish .note-complete {
    margin-bottom: 2rem;
  }
}

.screen.screen-exam .content.finish .note-complete.denied {
  border: 3px solid var(--color-error);
  color: var(--color-error);
}

@media (max-width: 992px) {
  .screen.screen-exam .content.finish .detail {
    text-align: center;
  }
}

.screen.screen-exam .content.finish .detail.denied h2 {
  color: var(--color-error);
}

.screen.screen-exam .content.finish .detail h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  color: var(--color-primary);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.screen.screen-exam .content.finish .detail p {
  text-align: left;
  font-size: 18px;
  margin-bottom: 2rem;
}

.screen.screen-exam .content.finish .detail .link {
  padding: 0 1rem;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.screen.screen-exam .content.finish .detail .link a.link-action {
  background: var(--color-primary);
  height: 48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: white;
  text-decoration: none;
  gap: 10px;
  padding: 0 25px;
  border-radius: 10px;
}

.screen.screen-exam .content.finish .detail .link a.link-action svg {
  height: 24px;
  width: 24px;
}

.screen.screen-exam .content.finish .detail .link a.link-return {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #181A38;
  border-radius: 80px;
  height: 46px;
  border: none;
  color: white;
  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;
  gap: 15px;
  width: 13rem;
  text-decoration: none;
  padding: 0 7px;
}

.screen.screen-exam .content.finish .detail .link a.link-return span {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: block;
  padding-left: 1rem;
  text-align: center;
}

.screen.screen-exam .content.finish .detail .link a.link-return .ico {
  aspect-ratio: 1;
  background: white;
  border-radius: 50%;
  width: 35px;
  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;
}

.screen.screen-exam .content.finish .detail .link a.link-return .ico svg {
  width: 15px;
  height: 15px;
}

.screen.screen-exam .action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.screen.screen-exam .action button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #181A38;
  border-radius: 80px;
  height: 46px;
  border: none;
  color: white;
  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;
  gap: 15px;
  width: 17rem;
}

@media (max-width: 992px) {
  .screen.screen-exam .action button {
    position: relative;
  }
}

.screen.screen-exam .action button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.screen.screen-exam .action button span {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: block;
  padding-left: 1rem;
}

.screen.screen-exam .action button .ico {
  aspect-ratio: 1;
  background: white;
  border-radius: 50%;
  width: 35px;
  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;
}

.screen.screen-exam .action button .ico svg {
  width: 15px;
  height: 15px;
}

.form-login .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #181A38;
  border-radius: 80px;
  padding: 7px 7px 7px 30px;
  overflow: hidden;
  max-width: 350px;
  margin: 0 auto;
  gap: 20px;
  height: 65px;
  position: relative;
}

@media (max-width: 992px) {
  .form-login .form-group {
    height: 54px;
  }
}

.form-login .form-group label.error {
  position: absolute;
  bottom: 0px;
  display: none !important;
}

.form-login .form-group input {
  border: none;
  border-bottom: 2px solid #FFFFFF;
  background: transparent;
  border-radius: 0;
  margin: 7px 0;
  color: white;
  font-weight: 900;
  font-size: 21px;
  line-height: 33px;
  text-align: center;
}

@media (max-width: 992px) {
  .form-login .form-group input {
    font-size: 18px;
    padding: 0;
  }
}

.form-login .form-group input.error {
  color: var(--color-error);
  border-color: var(--color-error);
}

/* .form-login button {
  background: #FFFFFF;
  border: none;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 8px;
  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;
} */
/* .form-login button.loading .normal {
  display: none;
}
.form-login button.loading .spinner {
  display: block !important;
  width: 25px;
  height: 25px;
} */

.footer {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-image img {
  pointer-events: none;
  height: 115px;
}

.circle-1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 150px;
  pointer-events: none;
}

.circle-2 {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 150px;
  pointer-events: none;
  rotate: 180deg;
}

.scroll {
  scrollbar-width: auto;
  scrollbar-color: #a7a7a7 #d9d9d9;
  padding-right: 6px;
}

.scroll::-webkit-scrollbar {
  width: 8px;
}

.scroll::-webkit-scrollbar-track {
  background: #d9d9d9;
}

.scroll::-webkit-scrollbar-thumb {
  background-color: #a7a7a7;
  border-radius: 12px;
  border: 0px solid #ffffff;
}

.pulse {
  -webkit-animation: pulse 1.5s infinite;
  animation: pulse 1.5s infinite;
}

.spinner {
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(10, 57, 228, 0.7);
    box-shadow: 0 0 0 0 rgba(10, 57, 228, 0.7);
  }

  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(10, 57, 228, 0);
    box-shadow: 0 0 0 10px rgba(10, 57, 228, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(10, 57, 228, 0);
    box-shadow: 0 0 0 0 rgba(10, 57, 228, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(10, 57, 228, 0.7);
    box-shadow: 0 0 0 0 rgba(10, 57, 228, 0.7);
  }

  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(10, 57, 228, 0);
    box-shadow: 0 0 0 10px rgba(10, 57, 228, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(10, 57, 228, 0);
    box-shadow: 0 0 0 0 rgba(10, 57, 228, 0);
  }
}

.modal-custom {
  max-width: 600px !important;
  background: #F6F6F6;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 46px;
  padding: 3rem;
}

@media (max-width: 992px) {
  .modal-custom {
    padding: 2rem;
  }
}

.modal-custom .content {
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .modal-custom .content {
    margin-top: 3rem;
  }
}

.modal-custom .ico {
  position: absolute;
  top: -2rem;
  left: 50%;
  translate: -50%;
  background: #EEEEEE;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  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;
}

.modal-custom .ico svg {
  width: 35px;
  height: 35px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35px;
  flex: 0 0 35px;
}

.modal-custom .ico img {
  max-width: 55px;
}

.modal-custom .uk-modal-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.modal-custom .text {
  max-height: 250px;
  overflow-y: auto;
  text-align: justify;
}

.modal-custom .text p {
  text-align: justify;
}

.modal-custom .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1rem;
  gap: 20px;
}

.modal-custom .action-logout,
.modal-custom .uk-modal-close-default {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-transform: uppercase;
  background: #0A39E4;
  border-radius: 44px;
  padding: 0 21px;
  height: 48px;
  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;
  color: white;
  border: none;
  font-weight: 600;
  top: 0;
  right: 0;
  z-index: 1;
}

.modal-custom.logout h2 {
  font-size: 28px;
  line-height: 36px;
  color: black;
}

.modal-custom.logout button {
  padding: 0 55px;
}

.modal-custom.logout button.uk-modal-close-default {
  background: #D9D9D9;
  color: black;
}

.modal-custom .external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem 0;
}

.modal-custom a.link-action {
  background: var(--color-primary);
  height: 48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: white;
  text-decoration: none;
  gap: 10px;
  padding: 0 25px;
  border-radius: 10px;
}

.modal-custom a.link-action svg {
  height: 24px;
  width: 24px;
}

@media (max-width: 992px) {
  .modal-custom a.link-action svg {
    height: 24px;
    width: 24px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 17px;
    flex: 0 0 17px;
  }
}

.text-black {
  color: #000 !important;
}

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

.bg-error {
  background: var(--color-error) !important;
}

.overlay {
  position: fixed;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.5607843137);
  inset: 0;
  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;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  trnasition: all 0.3s;
}

.overlay.show {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

@media (max-width: 992px) {
  .alert-custom {
    margin: 0 1rem 2rem;
  }
}

.alert-custom.uk-alert {
  background: var(--color-error);
  border-radius: 10px;
  padding: 5px 15px 5px 15px;
}

.alert-custom.uk-alert p {
  color: white;
}