/* GENERAL */
* {
  --pure-blue-color: #006dff;
  --grey: #595959;
  --file-red: #ea4142;
  --video-yellow: #f6c344;
  /* --green: #53a551; */
  --premium: #fdba0d;
  --orange: #fe6a28;
}

.rounded-4 {
  border-radius: 4px !important;
}

.rounded-10 {
  border-radius: 10px !important;
}

.rounded-15 {
  border-radius: 15px !important;
}

.rounded-16 {
  border-radius: 16px !important;
}

.rounded-16-0 {
  border-radius: 16px 16px 0 0 !important;
}

.rounded-0-16 {
  border-radius: 0 0 16px 16px !important;
}

.rounded-20 {
  border-radius: 20px !important;
}

.rounded-50 {
  border-radius: 50px;
}

.w-1px {
  width: 1px;
}

.w-20px {
  width: 20px;
}

.w-30px {
  width: 30px;
}

.w-50px {
  width: 50px;
}

.w-96px {
  width: 96px;
}

.w-150px {
  width: 150px;
}

.w-40 {
  width: 40% !important;
}

.w-60 {
  width: 60% !important;
}

.w-65 {
  width: 65% !important;
}

.w-fit {
  width: fit-content !important;
}

.w-max {
  width: max-content !important;
}

.h-1px {
  height: 1px;
}

.h-20px {
  height: 20px;
}

.h-30px {
  height: 30px;
}

.h-50px {
  height: 50px;
}

.h-60px {
  height: 60px;
}

.h-96px {
  height: 96px;
}

.h-fit {
  height: fit-content !important;
}

.h-max-100 {
  max-height: 100%;
}

.h-auto {
  height: auto !important;
}

.object-cover {
  object-fit: cover;
}

.object-center {
  object-position: center;
}

/* POSITION */

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

.top-4 {
  top: 16px !important;
}

.top--50 {
  top: -50% !important;
}

.start-0 {
  left: 0 !important;
}

.start-25 {
  left: 25% !important;
}

.start-50 {
  left: 50% !important;
}

.start-75 {
  left: 75% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-4 {
  right: 16px !important;
}

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

.bottom-4 {
  bottom: 16px !important;
}

.bottom-8 {
  bottom: 32px !important;
}

.bottom-50 {
  bottom: 50% !important;
}

/* END POSITION */

.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}

.gap-2-5 {
  gap: 12px;
}

.gap-3 {
  gap: 16px;
}

.gap-4 {
  gap: 24px;
}

.gap-5 {
  gap: 32px;
}

.opacity-20 {
  opacity: 20%;
}

.opacity-50 {
  opacity: 50%;
}

.transition300ms {
  transition: 300ms;
}

.none {
  display: none;
}

.grid-column-2 {
  grid-column: span 2;
}

.grid-column-3 {
  grid-column: span 3;
}

.border-none {
  border: none !important;
}

.bg-pure-blue {
  background-color: var(--pure-blue-color);
}

.bg-grey {
  background-color: var(--grey);
}

.hover-bg-dark-blue:hover {
  background-color: var(--pure-blue-color);
}

.pure-blue {
  color: var(--pure-blue-color) !important;
}

.border-pure-blue {
  border-color: var(--pure-blue-color) !important;
}

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

.border-grey {
  border-color: var(--grey) !important;
}

.border-f7f7f7 {
  border-color: #f7f7f7 !important;
}

.border-offer {
  border-color: rgb(var(--offer-color)) !important;
}

.border-startup {
  border-color: var(--orange) !important;
}

.border-partner {
  border-color: var(--green) !important;
}

.border-corpo {
  border-color: var(--pure-blue-color) !important;
}

.red {
  color: var(--file-red) !important;
}

.yellow {
  color: var(--video-yellow) !important;
}

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

.border-green {
  border-color: var(--green) !important;
}

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

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

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

.bg-orange {
  background-color: #ff7a00;
}

.bg-perfect-grey {
  background-color: #808080;
}

.justify-content-evenly {
  justify-content: space-evenly;
}

.font-12 {
  font-size: 12px !important;
}

.font-14 {
  font-size: 14px;
}

.font-16 {
  font-size: 16px;
}

.font-18 {
  font-size: 18px;
}

.font-20 {
  font-size: 20px !important;
}

.font-24 {
  font-size: 24px;
}

.font-28 {
  font-size: 28px;
}

.font-32 {
  font-size: 32px;
}

.font-40 {
  font-size: 40px;
}

.font-48 {
  font-size: 48px;
}

.font-64 {
  font-size: 64px;
}

.font-weight-semi {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

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

.text-decoration-none {
  text-decoration: none;
}

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

.pointer {
  cursor: pointer;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.text-initial {
  text-transform: initial;
}

.not-allowed {
  cursor: not-allowed;
}

.text-wrap {
  text-wrap: wrap;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll;
}

.overflowY-scroll {
  overflow-y: scroll;
}

.ellipsis-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.minw-370 {
  min-width: 370px !important;
}

.transformX-40 {
  transform: translateX(-40%);
}

.transformX-50 {
  transform: translateX(-50%);
}

.l-0 {
  left: 0 !important;
}

.cursor-default {
  cursor: default !important;
}

.letter-spacing-normal {
  letter-spacing: normal !important;
}

.break-all {
  word-break: break-all !important;
}

/* BUTTONS */

.btn-black {
  background: black;
  transition: 0.3s ease;
  color: white;
  border: 2px solid black;
}

.btn-black:hover {
  background: none;
  color: black;
}

/* FLASH */

.flash {
  opacity: 0;
  bottom: -100px;
  animation: flash 1s forwards ease-in-out;
}

/* VUES */

.vues > a.active {
  font-weight: bold;
  border-bottom: 3px solid black;
}

.vues > a.active > i {
  font-weight: bold;
}

.vues > a:hover {
  font-weight: bold;
  border-bottom: 3px solid black;
}

.vues > a:hover > i {
  font-weight: bold;
}

@keyframes flash {
  0% {
    opacity: 0;
    bottom: -100px;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    bottom: 50px;
  }
}

/* RESPONSIVE */

@media (max-width: 576px) {
  .-px-xs-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .-pb-xs-0 {
    padding-bottom: 0;
  }

  .-p-xs-2 {
    padding: 0.375rem !important;
  }

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

  .--translateY-xs-50 {
    transform: translateY(-50%);
  }

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

  .-pb-5-5 {
    padding-bottom: 3.5rem;
  }

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

  .-rounded-20-0 {
    border-radius: 20px 20px 0 0 !important;
  }

  .w-xs-100 {
    width: 100% !important;
  }

  .w-xs-fit {
    width: fit-content !important;
  }

  .font-xs-12 {
    font-size: 12px !important;
  }

  .font-xs-14 {
    font-size: 14px !important;
  }

  .font-xs-16 {
    font-size: 16px !important;
  }

  .font-xs-20 {
    font-size: 20px !important;
  }

  .font-xs-24 {
    font-size: 24px !important;
  }

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