.container.search-result-container {
    width: 57%;
    margin-top: 0px;
    border: 1px solid #e4e7e9;
    /*padding: 0 15px 15px 15px;*/
    position: absolute;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 100;
    overflow: auto;
    overflow-x: hidden;
}

.search-loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #05396B;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    display: inline-block;
}

.load-product-container {
    text-align: center !important;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 767px) {
    .container.search-result-container {
        /*height: 712px;*/
        left: 0;
        width: 95%;
        margin-top: 0px;
    }
}

.help-block {
    color: #cc0033 !important;
}
.error-content {
    color: #cc0033!important;
}

.error {
    color: #cc0033;
}