document.write("
<!-- Begin "Align 3 fields horizontally" || Help center -->
<!-- Add to Settings->HTML/CSS->Head -->
<!-- CS:20200120-15-3 -->
<style>
@media screen and (min-width: 768px) {
form {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
form div {
width: 100%;
}
/* replace "1" with the number of the first field that you want to align horizontally on 3 columns */
.form>*:nth-child(1),
/* replace "2" with the number of the second field that you want to align horizontally on 3 columns */
.form>*:nth-child(2),
/* replace "3" with the number of the third field that you want to align horizontally on 3 columns */
.form>*:nth-child(3){
width: 32%;
}
}
</style>
<!-- End "Align 3 fields horizontally" || Help center -->
align-3-fields-horizontally.css - Snippet hosted by \"Cacher\"
");