a {
    text-decoration: none;
}

h3 {
    font-size: 20px !important;
    font-weight: bold;
}

h4 {
    font-size: 16px !important;
}

.w-inherit {
    width: inherit;
}

.w-fit-content {
    width: fit-content;
}

.h-fit-content {
    height: fit-content;
}

.top-4 {
    top: 2rem;
}

.end-3 {
    right: 1rem;
}

.mt-n4 {
    margin-top: -2rem;
}

.btn-primary {
    text-transform: none !important;
    background: var(--primary-color) !important;
    border: 0 !important;
    color: white !important;
    box-shadow: none !important;
}

    .btn-primary:hover {
        opacity: 0.8;
    }

.btn-outline-primary {
    text-transform: none !important;
    background: white !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: none !important;
}

    .btn-outline-primary:hover {
        background: rgba(19, 136, 186, 0.8) !important;
        color: white !important;
    }

.btn-secondary {
    text-transform: none !important;
    background: var(--secondary-color) !important;
    border: 0 !important;
    color: white !important;
    box-shadow: none !important;
}

    .btn-secondary:hover {
        opacity: 0.8;
    }

.btn-outline-secondary {
    text-transform: none !important;
    background: transparent;
    border: 1px solid black !important;
    color: black !important;
    box-shadow: none !important;
}

    .btn-outline-secondary:hover {
        background: rgba(0, 0, 0, 0.05) !important;
    }

.btn-rounded {
    border-radius: 4px !important;
}

.no-border {
    border: none !important;
}

.btn-no-bg:hover {
    opacity: 0.5;
}

.border-primary {
    border: 1px solid #1388ba !important;
}

.border-secondary {
    border: 1px solid #cdcdcd !important;
}

.border-bottom-primary {
    border-bottom: 1px solid #1388ba !important;
}

.border-bottom-secondary {
    border-bottom: 1px solid #cdcdcd !important;
}

.text-blue {
    color: #1388ba !important;
}

.text-grey {
    color: rgba(0, 0, 0, 0.5);
}

.text-black {
    color: black !important;
}

.font-75 {
    font-size: 75%;
}

.bg-grey {
    background-color: #ededed;
}

.bg-darkgrey {
    background-color: #c7c7c7;
}

.c-pointer {
    cursor: pointer;
}

.translate-y-1 {
    transform: translateY(1px)
}

.dropdown-visible {
    border-bottom: none !important;
    z-index: 1;
    border-radius: 4px 4px 0 0 !important;
}