/* zaklad plus desktop verze */
.search-spinner {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
}
.spinner {
    width: 25px;
    height: 25px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #c92318;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.wrapper-form {
    position: relative;
}

/* responzivni popup verze */
.fr-search-popup .search-spinner {
    right: 70px;
}
.fr-search-popup .spinner {
    border-width: 2px;
    width: 20px;
    height: 20px;
}