/**
 * description: Styling sheet for the wb_search shortcode ent-v2 skin
 * author: WorkerBee.TV
 * date created: September 28, 2021
 * @package Enterprise
 */

input.form-control.wb-ent-shortcode-search-box::placeholder {
    color: #B4B4B4 !important;
}

input.form-control.wb-ent-shortcode-search-box::-webkit-input-placeholder {
    color: #B4B4B4 !important;
}

input.form-control.wb-ent-shortcode-search-box:-ms-input-placeholder {
    color: #B4B4B4 !important;
}

input.form-control.wb-ent-shortcode-search-box::-ms-input-placeholder {
    color: #B4B4B4 !important;
}

input.form-control.wb-ent-shortcode-search-box:-moz-placeholder {
    color: #B4B4B4 !important;
    opacity: 1 !important;
}

input.form-control.wb-ent-shortcode-search-box::-moz-placeholder {
    color: #B4B4B4 !important;
    opacity: 1 !important;
}

.wb-search-input-grp-ent-v2-skin input.wb-ent-shortcode-search-box,
.wb-search-cta-ent-v2-skin .wb-ent-shortcode-search-box-btn {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: normal;
    font-size: 10.5pt;
    height: 44px;
    line-height: 19px;
}

.wb-search-cta-ent-v2-skin .wb-ent-shortcode-search-box-btn {
    padding: 12.5px 24px;
}

.wb-search-autocomplete {
    border-radius: 2px;
    position: relative;
    max-height: 250px;
    list-style: none;
    display: block;
    padding: 0;
    margin: 0;
    overflow: auto;
}

.wb-search-autocomplete li.ui-menu-item {
    cursor: pointer;
    padding: 6px 6px;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}

.wb-search-autocomplete li.ui-menu-item .ui-menu-item-wrapper {
    font-weight: lighter;
    margin-bottom: 0;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% {  transform: rotate(359deg); }
}

#wb-search-suggestion-loading {
    animation: spin 2.5s linear infinite;

}