.search-container {
    background-color: #2F2D41;
}

.searchForm {
    margin-bottom: 1em;
    color: #fff;
}
    .searchForm-wrapper {
        position: relative;
    }
    .searchForm-input {
        width: 100%;
        height: 2.25em;
        border: none;
        outline: none;
        color: #4A4956;
        font-weight: 600;
    }
    .searchForm-btn {
        position: absolute;
        top:0; right:0; bottom:0;
        width: 2.38em;
        background-color: #FFCC00;
        display: flex;
        align-items: center;
        justify-content: center;
    }
        .searchForm-btn:hover, .searchForm-btn:focus {
            background-color: #ffe000;
        }

.searchResults {
    color: #fff;
    text-align: left;
    padding-bottom: 1.5rem;
    font-weight: 600;
}
    .searchResults-item {

    }
    .searchResults-message {
        margin-bottom: 1em;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: .1205em;
        font-size: .5238em;
    }
    .searchResults-message i {
        font-size: 1.5em;
        vertical-align: middle;
    }
    .searchResults-message .fa-check-circle {
        color: #A3D870;
    }
    .searchResults-message .fa-times-circle {
        color: #d84a41;
    }

