:root {
    --gradient-tertiary: #0F051D;
    --gradient-white: #FFF;

    --gradient-first-rgba: rgba(32, 0, 237, 0.5);
    --gradient-second-rgba: rgba(227, 72, 255, 0.5);
    --gradient-tertiary-rgba: rgba(15, 5, 29, 0.5);
    --gradient-white-rgba: rgba(255, 255, 255, 0.5);
}

/* * WIDTH * */
.uk-width-full {
    --grid-count: 12;
    --grid-total: 12;
    width: 100%
}

/* * LINKS * */
.uni-header-navbar .uk-navbar-nav > li > span.link:hover {
    color: var(--header-nav-color-text-hover)
}
.uk-dark a:link,
.uk-dark span.link {
  color: var(--color-gray-10)
}
.uk-dark a:link:hover,
.uk-dark span.link:hover {
  color: var(--color-gray-30)
}

/* * CALLOUTS * */
.uk-border-left-default {
    border-left-color: var(--color-default) !important
}
.uk-border-left-primary {
    border-left-color: var(--color-primary) !important
}
.uk-border-left-secondary {
    border-left-color: var(--color-secondary) !important
}
.uk-border-left-tertiary {
    border-left-color: var(--color-tertiary) !important
}
.uk-border-left-quaternary {
    border-left-color: var(--color-quaternary) !important
}
.uk-border-left-info {
    border-left-color: var(--color-info) !important
}
.uk-border-left-success {
    border-left-color: var(--color-success) !important
}
.uk-border-left-warning {
    border-left-color: var(--color-warning) !important
}
.uk-border-left-danger {
    border-left-color: var(--color-danger) !important
}
.uk-border-left-muted {
    border-left-color: var(--color-muted) !important
}
.uk-border-left-darkgrey {
    border-left-color: var(--color-darkgrey) !important
}

/* * BUTTON * */
.uk-button-text-line:hover {
    color: inherit;
    /* font-weight: inherit; */
}
.uk-button-text-line::after {
    bottom: -2px;
}

.uk-background-transparent {
    background-color: transparent !important;
}

.uk-dark.dark\:uk-initial,
.uk-dark .dark\:uk-initial {
  display: initial !important
}

.uk-justify-content {
    justify-content: center !important;
}
.uk-justify-content-between {
    justify-content: space-between !important;
}

@media (min-width: 640px) {
  .uk-hidden\@s {
    display: none !important;
  }
}
@media (min-width: 960px) {
  .uk-hidden\@m {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .uk-hidden\@l {
    display: none !important;
  }
}
@media (min-width: 1600px) {
  .uk-hidden\@xl {
    display: none !important;
  }
}
@media (max-width: 639px) {
    .uk-visible\@s {
      display: none !important;
    }
  }
  @media (max-width: 959px) {
    .uk-visible\@m {
      display: none !important;
    }
  }
  @media (max-width: 1199px) {
    .uk-visible\@l {
      display: none !important;
    }
  }
  @media (max-width: 1599px) {
    .uk-visible\@xl {
      display: none !important;
    }
  }

.uni-community-members > * div {
    box-shadow: 0 0 0 3px var(--color-gray-10)
}

.uk-image-project {
    height: 350px !important;
    object-fit: cover;
}
