body.admin-bar header {
    top: 32px;
}

.search-header-bg {
    background: url(../images/gray-bg.png) top left #e6e6e6;
    height: 250px;
}

.search-header-img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/big-assab.png) left center no-repeat;
    height: 250px;
}

.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #e6141e;
    border-bottom: 4px solid #e6141e;
    float: left;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

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