/* 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;
    color: #ff5c5c;
}

.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;
}

.form-default .form-checkbox {
    padding-left: 0;
}

.form-default .form-group > p > .form-group__label {
    margin-bottom: 0;
}

.wpcf7-checkbox .wpcf7-list-item-label {
    padding-left: 24px;
    position: relative;
}

.wpcf7-checkbox .wpcf7-list-item {
    margin-left: 0;
}

.wpcf7-checkbox .wpcf7-list-item-label::before {
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    border: 1px solid;
    border-radius: 50%;
    position: absolute;
    left: 0;
}

.wpcf7-checkbox input:checked + .wpcf7-list-item-label::after {
    opacity: 1;
    visibility: visible;
}

.wpcf7-checkbox .wpcf7-list-item-label::after {
    content: "";
    opacity: 0;
    visibility: hidden;
    width: 8px;
    height: 8px;
    display: block;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.wyswyg .wp-block-group .wp-block-column > * {
    margin-bottom: 40px;
}

.wyswyg .wp-block-columns .wp-block-image {
    border-radius: 0;
}

.home .s-header {
    position: static;
}

.home .s-header.is-scrolled {
    background: unset;
}

.home .s-header.is-scrolled .s-header__top {
    padding-top: 60px;
    padding-bottom: 60px;
}