@keyframes custom_spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
}

.gpg_searchForm {
    display: flex;
}

.gpg_searchForm__search {
    border-radius: 32px 0 0 32px !important;
    border: 1px solid #cbcbcb !important;
}

.gpg_searchForm button {
    border-radius: 0 32px 32px 0 !important;
    display: flex;
    flex-direction: row;
    padding: 16px !important;
    border: none !important;
}

.gpg_searchForm button svg {
    height: 22px !important;
    fill: #fff !important;
}

/* Filter */
.gpg_filterForm__row {
    display: flex;
    padding: 5px 0;
    gap: 20px;
}

@media only screen and (max-width: 640px) {
    .gpg_filterForm__row {
        flex-direction: column;
    } 
}

.gpg_filterForm__column {
    width: 100%;
}

.gpg_filterForm__columnTitle {
    font-weight: bold;
}

.gpg_filterForm__fieldsContainer {
    max-height: 280px;
    overflow: auto;
}

.gpg_filterForm__field {
    padding: 8px 0;
    display: flex;
    gap: 8px;
}

.gpg_filterForm__field label {
    line-height: 1.5;
}

.gpg_filterForm__field input[type="checkbox"] {
    width: 20px;
}

.gpg_filterForm__search {
    border: 1px solid #cbcbcb !important;
    border-radius: 6px !important;
    margin: 12px 0 !important;
}

.gpg_filterForm__submitButton {
    width: 100% !important;
    font-weight: bold !important;
    line-height: 2 !important;
    border: none !important;
    margin-top: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gpg_filterForm__submitButton svg {
    display: none;
    fill: #fff;
    width: 18px;
    animation: custom_spin 1s linear infinite;
}

#gpg_filterForm.sending .gpg_filterForm__submitButton svg {
    display: block;
}

.gpg_filterNoResults {
    color: #fff !important;
    text-align: center !important;
    margin-bottom: 30px !important;
}