.search-inputbox {
    position: relative;
}

.search-inputbox .loader {
    position: absolute;
    right: 19px;
    top: 13px;
    width: 30px;
    height: 30px;
    border: 2px solid #E2E2E2;
    border-bottom-color: #ff0000;
    border-radius: 50%;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
    z-index: 3;
}

.loader_mobile {
    position: absolute;
    right: calc(50% - 25px);
    top: 100px;
    width: 50px;
    height: 50px;
    border: 2px solid #E2E2E2;
    border-bottom-color: #ff0000;
    border-radius: 50%;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
    z-index: 101;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}