.jumbotron {
    background: url("../../images/riders.bbc05b99fdca.jpg") no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-x: 50%;
    background-position-y: 30%;
}

.rider-list {
}

.rider-item {
    border-top: 1px solid gray;
}

.info {
    padding: 0px 25px 0px 10px;
}

.parent {
    height: 90px;
    position: relative;
}

.child {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.child h3 {
    margin: 0;
}

.info h4 {
    color: gray;
}

.vertical-center {
    padding: 10px 0px 10px 0px;
}

.about {
    font-size: 1.2em;
    line-height: 1.6;
    text-align: center;
    color: #555;
    /*margin-bottom: 48px;*/
    font-weight: bold;
}

.sponsorship-thermometer {
    background-color: #e9ecef;
    border-radius: 4px;
    height: 12px;
    overflow: hidden;
    margin-top: 5px;
}

.sponsorship-thermometer .thermometer-bar {
    background-color: #5cb85c;
    height: 100%;
    border-radius: 4px;
    max-width: 100%;
    transition: width 0.3s ease;
}

.sponsorship-thermometer .thermometer-bar.has-value {
    min-width: 8px;
}

.thermometer-detail {
    color: #777;
    font-size: 12px;
    margin-top: 3px;
}

.rider-list-controls {
    margin-bottom: 20px;
}

.rider-list-controls .controls-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rider-list-controls .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.filter-dropdown .dropdown-menu {
    padding: 8px 12px;
    min-width: 120px;
}

.filter-dropdown .dropdown-menu li {
    list-style: none;
}

.filter-dropdown .checkbox-label {
    display: block;
    padding: 3px 0;
    font-weight: normal;
    cursor: pointer;
    white-space: nowrap;
}

.filter-dropdown .checkbox-label input[type=checkbox] {
    margin-right: 6px;
}

.control-label-inline {
    margin-right: 5px;
    font-weight: normal;
}

.rider-list-status {
    margin-top: 8px;
    color: #777;
    font-size: 13px;
    text-align: center;
}

.rider-list-status .clear-link {
    margin-left: 12px;
}

.no-results-message {
    text-align: center;
    color: #999;
    padding: 40px 0;
    font-size: 16px;
}

@media (max-width: 767px) {
    .rider-list-controls .controls-row {
        flex-direction: column;
        align-items: stretch;
    }

    .rider-list-controls .form-group {
        width: 100%;
    }

    .rider-list-controls .form-control,
    .rider-list-controls .btn {
        width: 100%;
    }

    .filter-dropdown {
        width: 100%;
    }

    .filter-dropdown .btn {
        text-align: left;
    }
}