:root {
    --s1-gray-10: hsl(0, 0%, 10%);
    --s1-gray-70: hsl(0, 0%, 70%);
}

/* Style 1 */
.style-1 div[class*='form-'] {
    display: inline-block;
    width: calc(50% - 12px);
    margin-right: 20px;
    vertical-align: top;
    margin-bottom: 1rem;
    position: relative;
}
.style-1 label {
    display: block;
    color: var(--s1-gray-10);
    font-weight: 400;
    margin-bottom: .25rem;
}
.style-1 div[class*="form-"]:nth-child(even) {
    margin-right: 0;
}
.style-1 .form-comment {
    margin-right: 0 !important;
    width: 100% !important;
}
.style-1 .error-msg {
    color: red;
    font-size: .75rem;
    margin: 10px 0;
    display: block;
}
.style-1 select,
.style-1 textarea,
.style-1 input:not([type="submit"]) {
    border: 1px solid var(--s1-gray-70);
    padding: .75rem;
    border-radius: .5rem;
    width: 100%;
    position: relative;
}
.style-1 .form-date:after,
.style-1 .form-time:after {
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: .5rem;
    top: calc(100% / 2 + 2px);
    pointer-events: none;
}
.style-1 .form-date:after {
    content: "\f073";
}
.style-1 .form-time select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.style-1 .form-time:after {
    content: "\f017";
}
.style-1 .form-receive-events-mail {
    margin-right: 0 !important;
    width: 100% !important;
    display: block !important;
}
.style-1 .form-receive-events-mail input,
.style-1 .form-receive-events-mail label {
    display: inline-block;
    width: auto;
}

.style-1 input[type="checkbox"] {
    width: 1.15rem !important;
    height: 1.15rem !important;
    margin-top: 0;
    vertical-align: middle;
    border-radius: 0.25rem;
}

@media screen and (max-width: 767px) {
    .style-1 div[class*='form-'] {
        width: 100%;
    }
}