/** Plugin | Contact Form 7 **/
.cf7-custom {
  width: 100%;
  margin: 0 auto;
}

.cf7-custom .row {
  width: 100%;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  align-content: center;
  gap: 20px;
}

.cf7-custom .row:last-child {
  margin-bottom: 0;
}

.cf7-custom .row [class*="col-"] {
  position: relative;
  width: 100%;
  grid-column: span 12;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Generale */
.cf7-custom
  .row
  [class*="col-"]
  > *:not(input[type="checkbox"]):not(.wpcf7-submit):not(.wpcf7-spinner) {
  width: 100%;
}

.cf7-custom .row [class*="col-"] p {
  margin: 0;
}

/* Radio */
.cf7-custom .row [class*="col-"] .wpcf7-radio,
.cf7-custom .row [class*="col-"] .wpcf7-radio * {
  width: auto !important;
}

.cf7-custom .submit .wpcf7-submit {
  width: 50%;
}

/* Clearfix */
.cf7-custom .clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* Label */
.cf7-custom .wpcf7-not-valid-tip {
  font-size: 75%;
}

/* Newsletter */
.cf7-custom.newsletter [class*="col-"] {
  padding: 0px;
  margin-bottom: 10px;
}

/** Computer **/
@media only screen and (min-width: 768px) {
  .cf7-custom .row .col-1 {
    grid-column: span 1;
  }
  .cf7-custom .row .col-2 {
    grid-column: span 2;
  }
  .cf7-custom .row .col-3 {
    grid-column: span 3;
  }
  .cf7-custom .row .col-4 {
    grid-column: span 4;
  }
  .cf7-custom .row .col-5 {
    grid-column: span 5;
  }
  .cf7-custom .row .col-6 {
    grid-column: span 6;
  }
  .cf7-custom .row .col-7 {
    grid-column: span 7;
  }
  .cf7-custom .row .col-8 {
    grid-column: span 8;
  }
  .cf7-custom .row .col-9 {
    grid-column: span 9;
  }
  .cf7-custom .row .col-10 {
    grid-column: span 10;
  }
  .cf7-custom .row .col-11 {
    grid-column: span 11;
  }
  .cf7-custom .row .col-12 {
    grid-column: span 12;
  }
}
