/* fc-event */
.fc-event-title.fc-sticky {
    font-size: 0;
}

/* submitting */
.submitting .submit-loading {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.submitting .submit-loading:before {
    content: "";
    position: absolute;
    border: 5px solid var(--color-secondary);
    border-top: 5px solid transparent;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* CF7 */
.wpcf7-not-valid-tip {
    font-style: italic;
    margin-top: 8px;
    text-transform: none;
    font-size: 14px;
}

.wpcf7 form .wpcf7-response-output {
    padding: 0;
    border: none;
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    color: #dc3232;
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #00A06C;
}

.wpcf7 .ajax-loader,
.wpcf7-spinner,
.wpcf7-acceptance {
    position: absolute;
    margin: 0;
}
