
/* Horizontal Line Between Text */
.hr-sect {
    display: flex;
    flex-basis: 100%;
    align-items: center;
    color: rgba(0, 0, 0, 0.35);
    margin: 8px 0px;
}

    .hr-sect::before,
    .hr-sect::after {
        content: "";
        flex-grow: 1;
        background: rgba(0, 0, 0, 0.35);
        height: 2px;
        font-size: 0px;
        line-height: 2px;
        margin: 0px 8px;
    }

/* Steps Wizard */
.wizard > .content > .body {
    width: 100% !important;
    padding: 2.5%;
}

.wizard > .content {
    background: #fafafa !important;
    border: solid 1px #e7eaec !important;
    border-radius: 0px !important;
}

/* Form Group Label */
.form-group > label {
    font-weight: 600;
}

/* Select 2 Styles */
.select2-selection__rendered {
    line-height: 35px !important;
    border-radius: 0px;
    color: #676a6c !important;
}

.select2-container .select2-selection--single {
    height: 35px !important;
    border-radius: 0px;
    color: #676a6c;
}

.select2-selection__arrow {
    height: 35px !important;
    border-radius: 0px;
    color: #676a6c !important;
}

/* Input Group Addon */
.input-daterange .input-group-addon {
    padding: 8px 10px 0px 10px !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 9pt;
}

.checkbox {
    padding-left: 0px;
}

/* Keplar Steps */
.stepper-wrapper {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.step-content {
    background: #fafafa !important;
    border: solid 1px #e7eaec !important;
    border-radius: 5px !important;
    padding: 15px;
}

.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.step-name {
    font-size: 12px;
    color: #118AB2;
}

.stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #C1EBF9;
    width: 100%;
    top: 15px;
    left: -50%;
    z-index: 2;
}

.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #C1EBF9;
    width: 100%;
    top: 15px;
    left: 50%;
    z-index: 2;
}

.stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #EAF8FD;
    border: solid 1px #C1EBF9;
    margin-bottom: 6px;
    color: #118AB2;
}

.stepper-item.active {
    font-size: 12px;
    color: #00AFB9;
    font-weight: bold;
}

    .stepper-item.active .step-counter {
        background-color: #118AB2;
        border: 15px solid #118AB2;
        border-radius: 50%;
        color: white;
    }

    .stepper-item.completed {
        font-size: 12px;
        color: #118AB2;
    }

        .stepper-item.completed .step-counter {
            background-color: #118AB2;
            color: white;
            border: 2px solid #FFF;
            border-radius: 50%;
            color: white;
        }

        .stepper-item.completed::after {
            position: absolute;
            content: "";
            border-bottom: 2px solid #118AB2;
            width: 100%;
            top: 15px;
            left: 50%;
            z-index: 3;
        }

    .stepper-item:first-child::before {
        content: none;
    }

    .stepper-item:last-child::after {
        content: none;
    }
