:root {
  --bs-table-bg: transparent;
}

.text-tiny {
  font-size: 0.7em;
}

.text-small {
  font-size: 0.8rem;
}

.text-big {
  font-size: 1.4em;
}

.text-huge {
  font-size: 1.8em;
}

.title-color-primary {
  color: #00ABE5;
}

@media (min-width: 768px) {
  .col-md-4-5 {
    flex: 0 0 auto;
    width: 37.33333333%;
  }
}
@media screen and (min-width: 1024px) {
  .mr-0 {
    margin-right: 0 !important;
  }
}

.btn {
  background-color: #00ABE5;
  max-width: 215px;
  width: 100%;
  padding: 8px 20px;
  border-radius: 4px;
  text-align: center;
  margin: auto auto 0;
}
.btn a {
  color: white;
  text-decoration: none;
}

.c-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}
.c-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.c-modal__dialog {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border-radius: 8px;
  max-width: 926px;
  width: calc(100% - 32px);
  max-height: 709px;
  overflow: auto;
  padding: 80px;
  box-sizing: border-box;
}
.c-modal__close {
  position: absolute;
  right: 0;
  top: 0;
  margin: 24px 48px;
  border: 0;
  background: transparent;
  padding: 0;
  line-height: 0;
  cursor: pointer;
}
.c-modal__body {
  display: flex;
  flex-direction: column;
}
.c-modal__subtitle {
  color: #8C8D91;
  font-size: 1.1875rem;
  font-weight: 600;
}
.c-modal__title {
  color: #00ABE5;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.c-modal__description {
  color: #505153;
  font-size: 1rem;
  font-weight: 400;
}
.c-modal.is-active {
  display: flex;
}