.hint-tooltip {
    position: relative;
    display: inline-block;
}

.hint-tooltip .tooltiptext {
    visibility: hidden;
    width: 100px;
    background-color: #888;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -50px;
    opacity: 0;
    transition: opacity 0.3s;
}

.hint-tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.hint-tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.form-selector {
    position: relative;
    border: 1px solid #e9ecef;
    background-color: #e9ecef;
    cursor: pointer;
    min-width: 35px;
    border-radius: 0.5rem;
    padding: 5px;
    overflow: hidden;
    margin-bottom: 0.25rem;
    margin-left: 0.25rem;
}

.border-radius-30 {
    border-radius: 30px;
}

.quick-link-item a {
    margin: 5px;
    background-color: #F2F2F2;
    border-radius: 15px;
    overflow: hidden;
    color: #3F4254;
}

.quick-link-item a:hover {
    background-color: var(--bs-primary);
    color: white;
}

.quick-link-item a.active {
    background-color: var(--bs-primary);
    color: #fff !important;
}

.inputGroup {
    background-color: transparent;
    display: block;
    margin: 10px 0;
    position: relative;
}

.inputGroup label {
    padding: 12px 10px;
    width: 100%;
    display: block;
    text-align: left;
    color: #B7B7B7;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 200ms ease-in;
    overflow: hidden;
    text-align: center;
    border: 1px solid;
    font-size: 10px;
}

.inputGroup label:before {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    content: '';
    background-color: var(--bs-primary);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale3d(1, 1, 1);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    z-index: -1;
}



.inputGroup input:checked ~ label {
    color: #fff;
}

.inputGroup input:checked ~ label:before {
    transform: translate(-50%, -50%) scale3d(56, 56, 1);
    opacity: 1;
}

.inputGroup input:checked ~ label:after {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.inputGroup input {
    width: 32px;
    height: 32px;
    order: 1;
    z-index: 2;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0;
    width: 0;
    height: 0;
}

.fixed-header thead {
    background: white;
    position: sticky;
    top: 0; /* Don't forget this, required for the stickiness */
    box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.4);
}
.nav-pills-custom .nav-link {
    background: none;
    border: 0;
    border-radius: 0.475rem;
    padding: 5px;
}

.nav-pills-custom .nav-link.active,
.nav-pills-custom .show > .nav-link {
    color: var(--bs-primary) !important;
    font-weight: 700;
    border: 0;
    border-right: 3px solid var(--bs-primary);
    border-radius: 0;
    padding-right: 10px;
}

.nav-pills-custom .nav-item {
    margin-left: 0.5rem;
}

.nav-pills-custom .nav-item:last-child {
    margin-left: 0;
}

.form-check-input.custom-checkbox:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 11' width='13' height='11' fill='none'%3e%3cpath d='M11.0426 1.02893C11.3258 0.695792 11.8254 0.655283 12.1585 0.938451C12.4917 1.22162 12.5322 1.72124 12.249 2.05437L5.51985 9.97104C5.23224 10.3094 4.72261 10.3451 4.3907 10.05L0.828197 6.88335C0.50141 6.59288 0.471975 6.09249 0.762452 5.7657C1.05293 5.43891 1.55332 5.40948 1.88011 5.69995L4.83765 8.32889L11.0426 1.02893Z' fill='%23f7b500'/%3e%3c/svg%3e");
}
.form-check-input.custom-checkbox:checked {
    background-color: transparent;
    border-color: #B7B7B7;
}