/* Common Body Heading */
.body-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.body-head h4 {
    color: var(--text-primary);
    font-weight: var(--fw-xl);
    margin-bottom: 0px;
}

.body-head h4 span {
    color: var(--sub);
    font-weight: var(--fw-lg);
    text-transform: capitalize;
}

.body-head h5 {
    color: var(--sub);
    font-weight: var(--fw-lg);
    text-decoration: 1.5px underline solid var(--input-border);
    margin-bottom: 0px;
}

.body-head h6 {
    color: var(--text-secondary);
    font-weight: var(--fw-md);
    margin-bottom: 0px;
}

.fas,
.far,
.fa,
.fab {
    font-size: 14px !important;
    font-weight: var(--fw-md) !important;
}

@media screen and (min-width: 1140px) {

    .body-head h4 {
        font-size: 20px;
    }

    .body-head h4 span {
        font-size: 18px;
    }

    .body-head h5 {
        font-size: 16px;
    }

    .body-head h6 {
        font-size: 14px;
    }
}


@media screen and (min-width: 767px) and (max-width: 1140px) {

    .body-head h4 {
        font-size: 18px;
    }

    .body-head h4 span {
        font-size: 16px;
    }

    .body-head h5 {
        font-size: 14px;
    }

    .body-head h6 {
        font-size: 12px;
    }

}

@media screen and (max-width: 767px) {

    .body-head {
        gap: 10px;
    }

    .body-head h4 {
        font-size: 16px;
    }

    .body-head h5 {
        font-size: 14px;
    }

    .body-head h6 {
        font-size: 12px;
    }

}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #274c9c;
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.spinner-border {
    border: var(--bs-spinner-border-width) solid var(--main) !important;
    border-right-color: transparent !important;
}