.bg-image-container {
    position: relative;
    text-align: center;
    color: white;
}

/* Bottom left text */
.bg-image-text-bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

/* Top left text */
.bg-image-text-top-left {
    position: absolute;
    top: 8px;
    left: 16px;
}

/* Top centered text */
.bg-image-text-top-centered {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Top right text */
.bg-image-text-top-right {
    position: absolute;
    top: 8px;
    right: 16px;
}

/* Bottom right text */
.bg-image-text-bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
}

/* Centered text */
.bg-image-text-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Steps */
.step {
    position: relative;
    min-height: 1em;
    color: gray;
}
.step + .step {
    margin-top: 1.5em;
}
.step > div:first-child {
    position: static;
    height: 0;
}
.step > div:not(:first-child) {
    margin-left: 1.5em;
    padding-left: 1em;
}
.step.step-active {
    color: #3ec035;
}
.step.step-active .circle {
    background-color: #3ec035;
}

/* Circle */
.circle {
    background: gray;
    position: relative;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    border-radius: 100%;
    color: #fff;
    text-align: center;
    box-shadow: 0 0 0 3px #fff;
}

/* Vertical Line */
.circle:after {
    content: " ";
    position: absolute;
    display: block;
    top: 1px;
    right: 50%;
    bottom: 1px;
    left: 50%;
    height: 100%;
    width: 1px;
    transform: scale(1, 2);
    transform-origin: 50% -100%;
    background-color: #3ec035;
    z-index: -1;
}
.step:last-child .circle:after {
    display: none;
}

/* Stepper Titles */
.title {
    line-height: 1.5em;
    font-weight: bold;
}
.caption {
    font-size: 0.8em;
}

.badge-OD {
    background-color: #fed713;
}

.badge-FP {
    background-color: #17a2b8;
}

.select2-container--default .select2-selection--single {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #ebedf2 !important;
    border-radius: 4px;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 100% !important;
}
