.button {
    cursor: pointer;
}

.digiplatvorm__add-to-favorites-button {
    position: relative;
    background-color: transparent;
    border: none;
    padding: 4px;
    margin-top: auto;
    width: 100%;
    cursor: pointer;
    color: var(--text-color);
}

.digiplatvorm__add-to-favorites-button:not(.button):hover {
    text-decoration: underline;
}

.loading-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
    margin-right: 5px;
}

.loading-icon.dark {
    border-color: #000;
    border-top-color: transparent;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

#digiplatvorm-woocommerce-favorites-price-request-form-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0;
}

#digiplatvorm-woocommerce-favorites-price-request-form-wrap .digiplatvorm-button {
    font-size: 18px;
    line-height: 22px;
    padding: 8px 12px;
}

#digiplatvorm-woocommerce-favorites-price-request-form-wrap .wpcf7-spinner {
    margin: 12px;
}

@media only screen and (max-width: 900px) {
    #digiplatvorm-woocommerce-favorites-price-request-form-wrap .wpcf7-spinner {
        display: none;
    }
}

@media only screen and (max-width: 400px) {
    #digiplatvorm-woocommerce-favorites-price-request-form-wrap .digiplatvorm-button {
        width: 100%;
    }
}