.logo{
    height: 30px;
}


.nav-title{
    color: black !important;
}

span.multiselect-native-select{
    width: 100%;
    display: block;
}

span.multiselect-native-select > div.btn-group{
    width: 100%;
}

img.certificate{
    max-width: 30px;
}

a{
    color: black !important;
}
.vh-75 {
    height: 75vh !important;
}

.badge-card {
    display: flex;
    flex-direction: column;
}
.badge-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.badge-card-title {
    flex: 1;
    align-items: center; /* Ensure the title is centered vertically if needed */
}
.badge-card-text {
    flex: 1;
}
.badge-container {
    margin-top: auto; /* Pushes badges to the bottom of the card body */
}

.branding{
    color: black !important;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 700;
    text-transform: uppercase;
}

.btn-white{
    background-color: white !important;
}

.btn-outline-black{
    border-color: black !important;
}

input:focus{
    outline: none !important;
    border:1px solid black !important;
    box-shadow: 0 0 10px #719ECE !important;
}

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

.outline-success{
    border:1px solid var(--bs-success) !important;
    color: var(--bs-success) !important;
}

.outline-danger{
    border:1px solid var(--bs-danger) !important;
    color: var(--bs-danger) !important;
}

.outline-primary{
    border:1px solid var(--bs-primary) !important;
    color: var(--bs-primary) !important;
}

.btn-outline-dark:hover {
    color: #fff !important;
}

.default-font{
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
  .marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
  }
  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }

  @keyframes blink-animation {
    0%   { box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.5); }
    50%  { box-shadow: 0 0 0 4px rgba(255, 193, 7, 1); }
    100% { box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.5); }
}

.blink {
    animation: blink-animation 1.5s ease-in-out infinite;
    border-color: #ffc107 !important;
}

.badge-left {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

.badge-right {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}