.loadingSpinner {
    background-image: url('../img/loader.svg');
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;

}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

#dynamicSearch {
    position: relative;
}
#dynamicSearch .woocommerceSearchResults {
    position: absolute;
    width: 600%;
    right: 0;
    z-index: 1000;
    background-color: #FFFFFF;
    padding: 20px;
}
#dynamicSearch .woocommerceSearchResults li.product {
    list-style-type: none;
}
#dynamicSearch .woocommerceSearchResults input[type="submit"] {
    display: inline-block;
    text-align: center;
    font-family: fs-elliot, sans-serif;
    font-size: 14px;
    line-height: 22px;
    font-weight: bold;
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;
    background: #222321;
    border-radius: 3px;
    padding: 7px 23px;
    text-decoration: none !important;
    margin: 0;
    cursor: pointer;
    position: relative;
    overflow: visible;
    left: auto;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-shadow: none;

    -webkit-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
#dynamicSearch .woocommerceSearchResults input[type="submit"]:hover {
    background-color: #dfdcde;
    background-image: none;
    color: #515151;
}


/* xl */
@media(min-width:1200px) {

}

/* lg */
@media(min-width:992px) and (max-width:1199px) {
    #dynamicSearch .woocommerceSearchResults {
        width: 400%;
    }
}

/* md */
@media(min-width:768px) and (max-width:991px) {
    #dynamicSearch .woocommerceSearchResults {
        width: 200%;
    }
}

/* sm */
@media(min-width:576px) and (max-width:767px) {
    #dynamicSearch .woocommerceSearchResults {

    }
}

/* xs */
@media(max-width:575px) {
    #dynamicSearch .woocommerceSearchResults {

    }
}

/* xs and sm */
@media(max-width:767px) {
    #dynamicSearch .woocommerceSearchResults {
        width: 100%;
        top: 84px;
        padding-left: 0;
        padding-right: 0;
    }
    #dynamicSearch .woocommerceSearchResults .suggestions {
        padding-left: 20px;
        padding-right: 20px;
    }
    #dynamicSearch .woocommerceSearchResults .full-width-in-modal {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

input.woocommerce-product-and-category-search-input {
    color: #000000 !important;
}

input.woocommerce-product-and-category-search-input::-webkit-input-placeholder,
input.woocommerce-product-and-category-search-input::-moz-placeholder,
input.woocommerce-product-and-category-search-input:-ms-input-placeholder,
input.woocommerce-product-and-category-search-input:-moz-placeholder {
    color: #9D9D9D !important;
}

@media(min-width:1200px) and (max-width:1499px) {
    .top-header .col-12.col-xl-6.d-flex.justify-content-between.justify-content-xl-end.align-items-center.flex-wrap-mobile,
    #dynamicSearch {
        position: static;
    }

    #dynamicSearch .woocommerceSearchResults {
        width: 96%;
        margin-right: 2%;
    }
}