.circle-ripple {
    background-color: #113b6d;
    border-radius: 75%;
    animation: ripple 1s linear infinite;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(17, 59, 109, 0.7),
            0 0 0 0.2em rgba(17, 59, 109, 0.7);
    }

    50% {
        box-shadow: 0 0 0 0.1em rgba(17, 59, 109, 0.7),
            0 0 0 0.5em rgba(17, 59, 109, 0.5);
    }

    100% {
        box-shadow: 0 0 0 0.2em rgba(17, 59, 109, 0.7),
            0 0 0 0.7em rgba(17, 59, 109, 0);
    }
}

.timeline {
    position: relative
}

.timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 1rem;
    height: 100%;
    border-right: 2px solid #dee2e6
}

.timeline-block {
    position: relative
}

.timeline-block:after {
    content: "";
    display: table;
    clear: both
}

.timeline-block:first-child {
    margin-top: 0
}

.timeline-block:last-child {
    margin-bottom: 0
}

.timeline-step {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    left: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    text-align: center;
    transform: translateX(-50%);
    font-size: 1rem;
    font-weight: 600;
    z-index: 1
}

.timeline-step i,
.timeline-step svg {
    line-height: 1.4
}

.timeline-content {
    margin-left: 45px;
    padding-top: .35rem;
    position: relative;
    top: -6px
}

.timeline-content:after {
    content: "";
    display: table;
    clear: both
}

@media (min-width:992px) {
    .timeline:before {
        left: 50%;
        margin-left: -1px
    }

    .timeline-step {
        left: 50%
    }

    .timeline-content {
        width: 38%
    }

    .timeline-block:nth-child(2n) .timeline-content {
        float: right
    }
}

.timeline-one-side .timeline-step,
.timeline-one-side:before {
    left: 1rem
}

.timeline-one-side .timeline-content {
    width: auto
}

@media (min-width:992px) {
    .timeline-one-side .timeline-content {
        max-width: 30rem
    }
}

.timeline-one-side .timeline-block:nth-child(2n) .timeline-content {
    float: none
}

.search-list {
    position: absolute;
    z-index: 1056;
    left: 0;
    right: 0;
    max-height: 240px;
    overflow: auto;
    background: #fff;
    border: 1px solid #d1d3e2;
    border-radius: .35rem;
    display: none;
}

.search-item {
    padding: .55rem .75rem;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
}

.search-item:hover {
    background: #eef5ff;
}

.search-item small {
    display: block;
    color: #6c757d;
}

.search-wrap {
    position: relative;
}

.search-input-wrapper {
    position: relative;
}

.search-clear-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    line-height: 1;
}

.search-clear-btn:hover {
    color: #c82333;
}