/*
loading ****************************************************************************************************************
 */
.is-load-container {
    display: block;
    clear: both;
    background: #f0f1f4;
    height:100px;
}

.load {
    position: relative;
    margin-top: -10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    /*margin-top: 39px;*/
    /*margin-bottom: 10px;*/
    /*transform: scale(0.3);*/
}

.load hr {
    border: 0;
    margin: 0;
    width: 40%;
    height: 40%;
    position: absolute;
    border-radius: 50%;
    animation: spin 2s ease infinite
}

.load :first-child {
    background: #19A68C;
    animation-delay: -1.5s
}

.load :nth-child(2) {
    background: #F63D3A;
    animation-delay: -1s
}

.load :nth-child(3) {
    background: #FDA543;
    animation-delay: -0.5s
}

.load :last-child {
    background: #193B48
}

@keyframes spin {
    0%, 100% {
        transform: translate(0)
    }
    25% {
        transform: translate(160%)
    }
    50% {
        transform: translate(160%, 160%)
    }
    75% {
        transform: translate(0, 160%)
    }
}

/*
end of results *********************************************************************************************************
 */
.is-end-results {
    position: relative;
    text-align: center;
}

.is-end-results::before {
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    top: 42px;
    z-index: 1;
    content: '';
    background: #efefef;
}

.is-end-results span {
    position: relative;
    z-index: 2;
    display: inline-block;
    background-color: #FFF;
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: 500;
    color: #CECECE;
}
