.gutenberg-form .wpcf7 form input,
.gutenberg-form .wpcf7 form textarea,
.gutenberg-form .wpcf7 form select {
    font-weight: 400;
    letter-spacing: .009375em;
    width: 100%;
    height: 60px;
    padding-bottom: 5px;
    border-radius: 2px;
    border-width: 1px !important;
    border-style: solid;
    border-left-color: #ddd !important;
    border-right-color: #ddd !important;
    border-top-color: #ddd !important;
    border-bottom-color: var(--pocket--input--border--color) !important;
    transition: border-color .6s, border-width .6s, padding-bottom .6s;
}
.gutenberg-form .wpcf7 form input:active,
.gutenberg-form .wpcf7 form textarea:active,
.gutenberg-form .wpcf7 form select:active,
.gutenberg-form .wpcf7 form input:focus,
.gutenberg-form .wpcf7 form textarea:focus,
.gutenberg-form .wpcf7 form select:focus {
    border-bottom-width: 6px !important;
    border-left-color: #ddd !important;
    border-right-color: #ddd !important;
    border-top-color: #ddd !important;
    border-bottom-color: var(--pocket--input--border--color__hover) !important;
    padding-bottom: 0;
}
.gutenberg-form .wpcf7 form .wpcf7-radio label,
.gutenberg-form .wpcf7 form .wpcf7-checkbox label {
    display: flex;
    white-space: pre-line;
    align-items: start;
	line-height: 25px;
}
.gutenberg-form .wpcf7 form .wpcf7-radio label input,
.gutenberg-form .wpcf7 form .wpcf7-checkbox label input {
    margin: 0;
    margin-right: 10px;
    height: 25px;
    width: 25px;
    min-height: 25px;
    min-width: 25px;
}
.gutenberg-form .wpcf7 form .row > div > label {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .2px;
    margin-top: 25px;
}
@media(min-width: 768px) {
    .gutenberg-form .wpcf7 form label {
        margin-top: 30px;
    }
}
.gutenberg-form .wpcf7 form label input, 
.gutenberg-form .wpcf7 form label select, 
.gutenberg-form .wpcf7 form label textarea {
    margin-top: 5px;
}
.gutenberg-form .wpcf7 form .autogrow .wpcf7-form-control-wrap textarea, 
.gutenberg-form .wpcf7 form .autogrow .wpcf7-form-control-wrap::after {
    font-weight: 400;
    padding-top: 18px;
}
.gutenberg-form .wpcf7 form input.wpcf7-not-valid,
.gutenberg-form .wpcf7 form select.wpcf7-not-valid{
    border-color: red !important;
}
.gutenberg-form .wpcf7 .row:has(.loader) {
	margin: 0;
    height: 100%;
	width: 100%;
    z-index: 1;
	transition: opacity .3s, height .3s;
}
.gutenberg-form .wpcf7 .row:has(.loader) .loader > span {
	background-image: url(/wp-content/uploads/2023/03/lerncenter_icon_var_e.svg);
    background-size: contain;
    width: 32px;
    height: 32px;
    display: block;
	animation: course_loading 2s linear infinite;
}
.gutenberg-form .wpcf7 .row:has(.loader).reload .loader {
	opacity: 1;
}
@keyframes course_loading { 
    100% { 
        -webkit-transform: rotate(360deg); 
        transform:rotate(360deg); 
    } 
}