#search-results {
    position: absolute;
    width: 100%;
    z-index: 999;
    display: flex;
    background: #fff;
    padding: 50px 20px;
}

.autosuggest-item {
    max-width: 20%;
    padding: 15px;
}

.autosuggest-title,
.autosuggest-price {
    display: block;
    color:  #222;
    font-family: 'Poppins';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.autosuggest-category {
    color:#767676;
    font-family: 'Poppins';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px
}

.vibeit-colorswatches .variations {
    display: none;
}

.attribute-title {
    text-transform: uppercase;
    font-size: 14px;
}

.single_variation_wrap {
    margin-bottom: 20px;
}

.color-swatch-container {
    margin-bottom: 30px;
}

.color-swatch {
    margin-bottom: 10px;
}

.swatch-option {
    display: inline-flex;
    min-height: 30px;
    min-width: 30px;
    width: auto;
    border: 1px solid #CDCDCD;
    border-radius: 3px;
    margin: 4px;
    padding: 1px 3px;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    justify-content: center;
    align-items: center;
 }

.swatch-option:hover {
    opacity: 0.8;
}

.swatch-option.selected {
    border: 1px solid #222;
    outline: none;
}

.swatch-option[data-type="color"]:after {
    width: 20px;
    height: 20px;
    border: 1px solid #CDCDCD;
    content: '';
    position: absolute;
    border-radius: 50%;
}

.swatch-option[data-type="color"].selected {
    outline: 2px solid #222 !important;
}

.swatch-option[data-type="color"] {
    border-radius: 50% !important;
    border: 5px solid #fff !important;
    margin-left: -1px;
 }

@media only screen and (max-width : 768px) {

    #search-results {
        flex-wrap: wrap;
    }

    .autosuggest-item {
        flex-basis: 50%;
    }

}