.globalsearch--drop {
    height: 235px !important;
}

@media (max-width: 767px) {
    .globalsearch--drop {
        height: 205px !important;
    }
}

.empty_result {
    font-size: 12px;
}

.load__moresearch {
    padding: 2px 0;
    text-align: center;
}

.load__moresearch button {
    background-color: #c0083e;
    color: #fff;
    padding: 2px;
    font-size: 11px;
    min-width: 56px;
    height: 22px;
    border-radius: 2px;
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading__dot {
    animation: dot ease-in-out 1s infinite;
    background-color: grey;
    display: inline-block;
    height: 3px;
    margin: 3px;
    width: 3px;
}

.loading__dot:nth-of-type(2) {
    animation-delay: 0.2s;
}

.loading__dot:nth-of-type(3) {
    animation-delay: 0.3s;
}

@keyframes dot {
    0% {
        background-color: #fff;
        transform: scale(1);
    }
    50% {
        background-color: #fff;
        transform: scale(1.3);
    }
    100% {
        background-color: #fff;
        transform: scale(1);
    }
}