@font-face {
  font-family: "e800";
  src: url("fontello/font/e800.eot");
  src:
    url("fontello/font/e800.eot") format("embedded-opentype"),
    url("fontello/font/e800.woff") format("woff"),
    url("fontello/font/e800.ttf") format("truetype"),
    url("fontello/font/e800.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
form.cf_form select,
form.cf_form input {
  display: block;
  width: 100%;
  max-width: 100%;
  height: var(--form-field-height, 42px);
  margin: 0;
  padding: var(--form-field-padding-top, 0) var(--form-field-padding-right, 12px) var(--form-field-padding-bottom, 0)
    var(--form-field-padding-left, 12px);
  border-width: var(--form-field-border-width, 1px);
  border-color: var(--form-field-border-color, #ccc);
  border-style: solid;
  border-radius: var(--form-field-border-radius, 2px);
  background-color: var(--form-field-background-color, white);
  color: var(--form-field-input-color, var(--color-text-primary));
  text-align: var(--form-field-text-align, left);
  font-family: inherit;
  font-size: var(--form-field-font-size, 16px);
  line-height: var(--form-field-line-height, 1.15);
  box-shadow: none;
  appearance: none;
  transition: border-color 250ms linear;
}

:is(form.cf_form select, form.cf_form input, form.cf_form textarea):focus {
  outline: none;
  border-color: var(--color-primary);
}

#all-form-settings {
  width: 66%;
}

#all-form-settings textarea,
#all-form-settings input[type="text"] {
  height: auto;
  width: 100%;
  padding: 5px 15px;

  /* for Ojen only */
  padding-left: 30px;

  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.4em;
  background-color: white;
  border: 1px solid #9f9f9f;
}

.petite form.cf_form select,
.petite form.cf_form input {
  height: 36px;
  line-height: 34px;
  padding: 0 10px;
}

form.cf_form input[type="radio"],
form.cf_form input[type="checkbox"] {
  height: auto;
  width: auto;
  background-color: initial;
  margin: 3px 0.5ex;
  padding: initial;
  border: initial;
  display: inline-block;
}

form.cf_form input.grey {
  background: #eeeeee;
}

form.cf_form .error input,
.donation-form .check-wrap input[type="radio"]:checked + label > input[type="text"].error,
.donation-form .check-wrap input[type="radio"].error + label > input[type="text"],
.donation-check.inline .check-wrap input[type="radio"].error + label,
select.error + .select2-container--default .select2-selection--single {
  border: 1px solid #e20521;
}

form.cf_form select {
  width: 100%;
}

.field-row {
  font-size: 0;
  margin: 0 -15px;
}

.custom_form_container .field-row.width-70 {
  width: 70%;
}
.custom_form_container .field-row.width-75 {
  width: 75%;
}
.custom_form_container .field-row.width-80 {
  width: 80%;
}

.field-row .field-wrap {
  vertical-align: bottom;
  display: inline-block;
  font-size: 16px;
  padding: 0 15px;
  width: 100%;
}

.field-row .field-wrap.width-70 {
  width: 70%;
}

.field-row .field-wrap.width-70.center-block {
  display: block;
  margin: 0 auto 20px;
}

.petite form.cf_form .field-row .field-wrap.label-inline > *,
.field-row .field-wrap.label-inline > * {
  display: inline-block;
  width: 80%;
}
.petite form.cf_form .field-row .field-wrap.label-inline label,
.field-row .field-wrap.label-inline label {
  width: 20%;
}
.petite form.cf_form .field-row .field-wrap.label-inline label.error,
.field-row .field-wrap.label-inline label.error {
  width: 100%;
}

.field-row .field-wrap .check-wrap label,
.four-in-row .check-wrap label,
.two-in-row .check-wrap label,
.three-in-row .check-wrap label {
  width: auto;
}

.field-row .field-wrap.label-inline label.error {
  width: 100%;
}

.field-row .field-wrap.small input {
  width: 33.333333%;
}

.petite.custom_form_container form.cf_form .field-row.two-in-row .field-wrap,
.field-row.two-in-row .field-wrap {
  width: 50%;
  margin-bottom: 26px;
}
.petite.custom_form_container form.cf_form {
  line-height: 24px;
}
.petite.custom_form_container form.cf_form .field-row.three-in-row .field-wrap,
.field-row.three-in-row .field-wrap {
  width: 33.33333%;
  vertical-align: top;
}
.petite.custom_form_container form.cf_form .field-row.four-in-row .field-wrap,
.field-row.four-in-row .field-wrap {
  width: 25%;
}

.field-row.two-in-row.biggest-small .field-wrap:nth-child(1) {
  width: 80%;
}
.field-row.two-in-row.biggest-small .field-wrap:nth-child(2) {
  width: 20%;
}

.field-row.two-in-row.small-biggest .field-wrap:nth-child(1) {
  width: 20%;
}
.field-row.two-in-row.small-biggest .field-wrap:nth-child(2) {
  width: 80%;
}

.field-row.two-in-row.big-small .field-wrap:nth-child(1) {
  width: 70%;
}
.field-row.two-in-row.big-small .field-wrap:nth-child(2) {
  width: 30%;
}

.field-row.two-in-row.small-big .field-wrap:nth-child(1) {
  width: 30%;
}
.field-row.two-in-row.small-big .field-wrap:nth-child(2) {
  width: 70%;
}

.field-row.three-in-row.big-small-medium .field-wrap:nth-child(1) {
  width: 51%;
}
.field-row.three-in-row.big-small-medium .field-wrap:nth-child(2) {
  width: 19%;
}
.field-row.three-in-row.big-small-medium .field-wrap:nth-child(3) {
  width: 30%;
}
.field-row.three-in-row.big-medium-small .field-wrap:nth-child(2) {
  width: 30%;
}
.field-row.three-in-row.big-medium-small .field-wrap:nth-child(1) {
  width: 51%;
}
.field-row.three-in-row.big-medium-small .field-wrap:nth-child(3) {
  width: 19%;
}
.field-row.three-in-row.medium-big-small .field-wrap:nth-child(2) {
  width: 51%;
}
.field-row.three-in-row.medium-big-small .field-wrap:nth-child(1) {
  width: 30%;
}
.field-row.three-in-row.medium-big-small .field-wrap:nth-child(3) {
  width: 19%;
}
.field-row.three-in-row.medium-small-big .field-wrap:nth-child(2) {
  width: 19%;
}
.field-row.three-in-row.medium-small-big .field-wrap:nth-child(1) {
  width: 30%;
}
.field-row.three-in-row.medium-small-big .field-wrap:nth-child(3) {
  width: 51%;
}
.field-row.three-in-row.small-medium-big .field-wrap:nth-child(2) {
  width: 30%;
}
.field-row.three-in-row.small-medium-big .field-wrap:nth-child(1) {
  width: 19%;
}
.field-row.three-in-row.small-medium-big .field-wrap:nth-child(3) {
  width: 51%;
}
.field-row.three-in-row.small-big-medium .field-wrap:nth-child(2) {
  width: 51%;
}
.field-row.three-in-row.small-big-medium .field-wrap:nth-child(1) {
  width: 19%;
}
.field-row.three-in-row.small-big-medium .field-wrap:nth-child(3) {
  width: 30%;
}

form.cf_form .field-row.two-in-row.big-small .field-wrap:nth-child(1) {
  width: 70%;
}
form.cf_form .field-row.two-in-row.big-small .field-wrap:nth-child(2) {
  width: 30%;
}
form.cf_form .field-row.two-in-row.small-big .field-wrap:nth-child(1) {
  width: 30%;
}
form.cf_form .field-row.two-in-row.small-big .field-wrap:nth-child(2) {
  width: 70%;
}

form.cf_form .field-row.three-in-row.big-small-medium .field-wrap:nth-child(1) {
  width: 51%;
}
form.cf_form .field-row.three-in-row.big-small-medium .field-wrap:nth-child(2) {
  width: 19%;
}
form.cf_form .field-row.three-in-row.big-small-medium .field-wrap:nth-child(3) {
  width: 30%;
}
form.cf_form .field-row.three-in-row.big-medium-small .field-wrap:nth-child(2) {
  width: 30%;
}
form.cf_form .field-row.three-in-row.big-medium-small .field-wrap:nth-child(1) {
  width: 51%;
}
form.cf_form .field-row.three-in-row.big-medium-small .field-wrap:nth-child(3) {
  width: 19%;
}
form.cf_form .field-row.three-in-row.medium-big-small .field-wrap:nth-child(2) {
  width: 51%;
}
form.cf_form .field-row.three-in-row.medium-big-small .field-wrap:nth-child(1) {
  width: 30%;
}
form.cf_form .field-row.three-in-row.medium-big-small .field-wrap:nth-child(3) {
  width: 19%;
}
form.cf_form .field-row.three-in-row.medium-small-big .field-wrap:nth-child(2) {
  width: 19%;
}
form.cf_form .field-row.three-in-row.medium-small-big .field-wrap:nth-child(1) {
  width: 30%;
}
form.cf_form .field-row.three-in-row.medium-small-big .field-wrap:nth-child(3) {
  width: 51%;
}
form.cf_form .field-row.three-in-row.small-medium-big .field-wrap:nth-child(2) {
  width: 30%;
}
form.cf_form .field-row.three-in-row.small-medium-big .field-wrap:nth-child(1) {
  width: 19%;
}
form.cf_form .field-row.three-in-row.small-medium-big .field-wrap:nth-child(3) {
  width: 51%;
}
form.cf_form .field-row.three-in-row.small-big-medium .field-wrap:nth-child(2) {
  width: 51%;
}
form.cf_form .field-row.three-in-row.small-big-medium .field-wrap:nth-child(1) {
  width: 19%;
}
form.cf_form .field-row.three-in-row.small-big-medium .field-wrap:nth-child(3) {
  width: 30%;
}

.petite form.cf_form .field-row.two-in-row.big-small .field-wrap:nth-child(1) {
  width: 70%;
}
.petite form.cf_form .field-row.two-in-row.big-small .field-wrap:nth-child(2) {
  width: 30%;
}
.petite form.cf_form .field-row.two-in-row.small-big .field-wrap:nth-child(1) {
  width: 30%;
}
.petite form.cf_form .field-row.two-in-row.small-big .field-wrap:nth-child(2) {
  width: 70%;
}

.petite form.cf_form .field-row.three-in-row.big-small-medium .field-wrap:nth-child(1) {
  width: 51%;
}
.petite form.cf_form .field-row.three-in-row.big-small-medium .field-wrap:nth-child(2) {
  width: 19%;
}
.petite form.cf_form .field-row.three-in-row.big-small-medium .field-wrap:nth-child(3) {
  width: 30%;
}
.petite form.cf_form .field-row.three-in-row.big-medium-small .field-wrap:nth-child(2) {
  width: 30%;
}
.petite form.cf_form .field-row.three-in-row.big-medium-small .field-wrap:nth-child(1) {
  width: 51%;
}
.petite form.cf_form .field-row.three-in-row.big-medium-small .field-wrap:nth-child(3) {
  width: 19%;
}
.petite form.cf_form .field-row.three-in-row.medium-big-small .field-wrap:nth-child(2) {
  width: 51%;
}
.petite form.cf_form .field-row.three-in-row.medium-big-small .field-wrap:nth-child(1) {
  width: 30%;
}
.petite form.cf_form .field-row.three-in-row.medium-big-small .field-wrap:nth-child(3) {
  width: 19%;
}
.petite form.cf_form .field-row.three-in-row.medium-small-big .field-wrap:nth-child(2) {
  width: 19%;
}
.petite form.cf_form .field-row.three-in-row.medium-small-big .field-wrap:nth-child(1) {
  width: 30%;
}
.petite form.cf_form .field-row.three-in-row.medium-small-big .field-wrap:nth-child(3) {
  width: 51%;
}
.petite form.cf_form .field-row.three-in-row.small-medium-big .field-wrap:nth-child(2) {
  width: 30%;
}
.petite form.cf_form .field-row.three-in-row.small-medium-big .field-wrap:nth-child(1) {
  width: 19%;
}
.petite form.cf_form .field-row.three-in-row.small-medium-big .field-wrap:nth-child(3) {
  width: 51%;
}
.petite form.cf_form .field-row.three-in-row.small-big-medium .field-wrap:nth-child(2) {
  width: 51%;
}
.petite form.cf_form .field-row.three-in-row.small-big-medium .field-wrap:nth-child(1) {
  width: 19%;
}
.petite form.cf_form .field-row.three-in-row.small-big-medium .field-wrap:nth-child(3) {
  width: 30%;
}

.field-row.three-in-row .field-wrap .box {
  position: relative;
}
/*
.field-row.three-in-row .field-wrap span.cf_date-icon {
	right: 13px;
}*/

.field-row.three-in-row .field-wrap.small {
  width: 24%;
}
.field-row.three-in-row .field-wrap.big {
  width: 47.5%;
}

.field-row.inline .check-wrap {
  display: inline-block;
  vertical-align: top;
  width: 20%;
}

.field-row.inline .auto .check-wrap:not(.check-wrap-other) {
  width: auto;
}

.field-row.inline .auto .check-wrap:not(.check-wrap-other) label {
  padding-right: 20px;
}

.field-row .check-wrap.inline {
  width: 50%;
  float: none;
  margin-top: 0;
}

.field-row .check-wrap.inline > * {
  display: inline-block;
  width: auto;
}

.field-row .check-wrap.inline label {
  margin-top: 12px;
}

.field-row .check-wrap.inline input[type="text"] {
  width: 70%;
  float: right;
  margin-left: 12px;
}

.two-in-row .error .err-message {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  max-width: 100%;
  box-shadow: none;
  padding: 5px 0;
  background: transparent;
}

.two-in-row .error .err-message p {
  color: #e20521;
}

.petite.custom_form_container form.cf_form .transpose-block.field-row,
form.cf_form .transpose-block.field-row {
  margin: 10px auto;
  border-radius: 4px;
  padding: 15px 12px 10px;
}
.petite.custom_form_container form.cf_form .transpose-block.field-row .field-wrap,
form.cf_form .transpose-block.field-row .field-wrap {
  width: 100%;
}

.petite.custom_form_container form.cf_form .transpose-block.field-row,
form.cf_form .transpose-block.field-row.width-75 {
  min-width: 340px;
}

form.cf_form .transpose-block.grey-bg {
  background-color: rgb(211, 213, 214);
  border: 1px solid #c3c5c6;
}

form.cf_form .rev-box {
  margin-bottom: 15px;
}

form.cf_form h6 {
  margin-bottom: 2px;
}

form.cf_form .field-row > p {
  margin-left: 15px;
}

form.cf_form p {
  color: black;
  line-height: 1.4em;
  margin-bottom: 7px;
}

form.cf_form p.small {
  margin-bottom: 0;
  line-height: 1.2em;
}

form.cf_form p.medium {
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.2em;
  padding-bottom: 25px;
}

form.cf_form p small {
  color: #2e2e2e;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  display: inline-block;
}

form.cf_form .field-wrap {
  margin-bottom: 20px;
  position: relative;
}

form.cf_form span.cf_date-icon {
  position: absolute;
  right: 28px;
  bottom: 15px;
  background: url("date-icon.png") no-repeat 0 0;
  width: 19px;
  cursor: pointer;
  height: 19px;
}

form.cf_form textarea {
  overflow: auto;
  display: inline-block;
  resize: none;
  width: 100%;
  height: 125px;
  max-width: 100%;
  margin: 0;
  padding: 12px;
  border-width: var(--form-field-border-width, 1px);
  border-color: var(--form-field-border-color, #ccc);
  border-style: solid;
  border-radius: var(--form-field-border-radius, 2px);
  background-color: var(--form-field-background-color, white);
  color: var(--form-field-input-color, var(--color-text-primary));
  text-align: var(--form-field-text-align, left);
  font-family: inherit;
  font-size: var(--form-field-font-size, 16px);
  line-height: var(--form-field-line-height, 1.15);
  box-shadow: none;
  appearance: none;
  transition: border-color 250ms linear;
}

form.cf_form .req {
  color: #e91919;
}
.petite form.cf_form .req {
  color: #2e2e2e;
}
form.cf_form div.check-field-label,
form.cf_form label {
  color: black;
  margin-bottom: 3px;
  display: inline-block;
  /* font-size: 1.5; */
}
form.cf_form .donation-check div.check-field-label {
  width: 100%;
}

form.cf_form label img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

form.cf_form .helper {
  width: 16px;
  display: inline-block;
  text-align: center;
  line-height: 16px;
  height: 16px;
  background-color: #5f5f5f;
  border-radius: 50%;
  color: #fff;
}

#custom_form_fields .widget-title h3,
#custom_form_fields .widget-title h4 {
  margin: 0;
  padding: 15px;
  font-size: 1em;
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

form.cf_form h1 {
  font-size: 1.75em;
  margin: 1.2em 0;
}
form.cf_form h2 {
  font-size: 1.5em;
  margin: 1.2em 0;
}

form.cf_form h3 {
  font-size: 1.3em;
  margin: 1em 0;
}
form.cf_form h4,
form.cf_form h5 {
  font-size: 1.2em;
  margin: 1em 0;
}

form.cf_form h1,
form.cf_form h2,
form.cf_form h3,
form.cf_form h4,
form.cf_form h5,
form.cf_form h6 {
  font-weight: 600;
}

form.cf_form h1.margin-no,
form.cf_form h2.margin-no,
form.cf_form h3.margin-no,
form.cf_form h4.margin-no,
form.cf_form h5.margin-no,
form.cf_form h6.margin-no {
  margin: 0;
}

form.cf_form h3.bigger {
  font-size: 1.75em;
  margin: 1.2em 0 10px;
}

form.cf_form h3.biggest {
  font-size: 2.1em;
  margin: 1.2em 0 10px;
}

form.cf_form h1 img,
form.cf_form h2 img {
  vertical-align: middle;
  max-height: 110px;
  margin-right: 10px;
}

summary {
  cursor: pointer;
  outline: 0;
  color: blue;
  font-weight: bolder;
}

dettails {
  padding: 10px;
  border: 1px solid #999;
}

.popup-custom-form-overlay {
  text-align: center;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
}
.popup-custom-form-overlay::before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.popup-custom-form {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: center;
  background: #fff;
  padding: 20px;
  z-index: 101;
}

.popup-custom-form h2 {
  margin-top: 20px;
}
.popup-custom-form p {
  margin-bottom: 20px;
}

div.custom_form_container {
  border: none;
  margin-top: 30px;
  padding: 20px;
  font-weight: 100;
  font-size: 14px;
  /*background: #fff;*/
}

.custom_form_container {
  max-width: 80%;
}
.custom_form_container.large {
  max-width: 99%;
}

.has-sidebar .custom_form_container {
  max-width: 100%;
}

.custom_form_container .two-in-row,
.custom_form_container .four-in-row,
.custom_form_container .three-in-row {
  max-width: none;
  width: auto;
}

.custom_form_container * {
  /*color: #2e2e2e;*/
}

.custom_form_container.light-blue-bg {
  background-color: #5dd8ff;
}
.custom_form_container.light-grey-bg {
  background-color: rgba(227, 226, 226, 0.78);
}

div.custom_form_container.petite {
  font-family: Arial;
  font-size: 11px;
  position: relative;
  max-width: 500px;
  margin: 30px auto 20px;
  padding: 21px 25px 12px;
  box-sizing: border-box;
}

.petite .field-row .field-wrap {
  font-size: 12px;
  padding: 0 3px;
}
.petite form.cf_form label {
  margin-bottom: 3px;
  font-size: 1.1em;
}
.petite input,
.petite textarea,
.petite select {
  border-radius: 4px;
}
.petite form.cf_form .field-row .field-wrap {
  margin-bottom: 8px;
}

.custom_form_container .error {
  color: #e20521;
  border: 1px solid #e20521;
}
form.cf_form label.error {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 5px;
  margin-left: 20px;
  border: none;
}

.custom_form_container p.error {
  color: #e20521;
  border: none;
}

.custom_form_container .success {
  color: green;
}

.center-block {
  margin-left: auto;
  margin-right: auto;
}

div.custom_form_container.center-block {
  margin: 30px auto 0;
}

div.custom_form_container_border {
  border: 2px solid #ccc;
  padding: 20px;
}

div.warning-tip {
  height: 64px;
  width: 100%;
  text-align: center;
  background: lightgoldenrodyellow;
  box-shadow: 4px 4px 0 #ccc;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  left: 100%;
  top: 55%;
  margin-top: -35px;
  margin-bottom: -35px;
  padding: 15px;
}

input.warning {
  border-color: red;
}

.wp-core-ui .btn-delete {
  background: rgb(217, 83, 79);
  color: #fff;
  font-weight: 200;
}

.wp-core-ui .btn-add {
  background: rgb(92, 184, 92);
  color: #fff;
  font-weight: 200;
}

.wp-core-ui .btn-delete:focus,
.wp-core-ui .btn-delete:hover {
  background: #fd7773;
  color: #fff;
}

.wp-core-ui .btn-add:focus,
.wp-core-ui .btn-add:hover {
  background: #80dc80;
  color: #fff;
}
.petite .g-recaptcha,
.gglcptch {
  margin: 0 auto 0;
}

a.remove-section-row {
  font-family: sans-serif;
  /*float:right;
	margin-top:25px;
	margin-right:-10px;*/
  cursor: pointer;
  color: #fff;
  border: 1px solid #aeaeae;
  border-radius: 30px;
  background: #605f61;
  font-size: 31px;
  font-weight: bold;
  display: inline-block;
  line-height: 0px;
  padding: 11px 3px;
  position: absolute;
  top: 10px;
  right: -10px;
}
a.remove-section-row:hover {
  background: #f00;
}

.remove-section-row:before {
  content: "×";
}
a.remove-section-row {
  display: none;
}
.cf_form .field-row {
  position: relative;
}
.add-section-row {
  margin-right: 20px;
  float: right;
}
.common-error-box {
  font-size: 18px;
  color: red;
}

.settings_page_custom-form-settings input[type="text"] {
  width: 25em;
}

.settings_page_custom-form-settings .nav-tab-wrapper:not(.wp-clearfix):after {
  display: block;
}
/*
label {
	font-weight:bold;
}
*/
textarea.lang,
a.lang,
a.lang:hover,
input.lang {
  background-color: #fff !important;
  background-image: url("en.png") !important;
  background-repeat: no-repeat !important;
  background-attachment: scroll;
  background-position: 3px 3px;
  padding-left: 30px;
}
/*
a.lang,a.lang:hover{
	width:auto;
}

textarea.lang{
	width:100%;
}
*/
textarea.lang_fr,
a.lang_fr,
a.lang_fr:hover,
input.lang_fr {
  background-image: url("fr.png") !important;
}

textarea.two-row {
  height: auto;
}

.custom-form-row {
  margin-bottom: 8px;
  padding: 8px;
  width: 95%;
  background-color: #d8d8d8;
  border: 1px solid #727272;
  position: relative;
}

.setting-row {
  float: left;
  margin: 8px;
  width: 100px;
}

.custom-form-col {
  float: left;
  margin: 8px;
  width: 82%;
  background: #fff;
  padding: 5px;
  height: 45px;
  border: 2px solid #727272;
}
.custom-form-col.empty {
  border: 2px dashed #727272;
  background: #f1f1f1;
}

.two-in-row .custom-form-col {
  width: 40%;
}

.three-in-row .custom-form-col {
  width: 26%;
}

.four-in-row .custom-form-col {
  width: 18.9%;
}

.widget.open .widget-top {
  background: #727272;
}

.widget.open .widget-top h3 {
  color: #fff;
}

.widget-inside {
  position: absolute;
  z-index: 20;
  box-sizing: border-box;
}

.wp-list-table.toplevel_page_custom-form-report a.icon-plus {
  font-family: "e800";
  font-style: normal;
  font-weight: normal;
  color: green;
  margin: 0;
  float: none;
  cursor: pointer;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  margin-left: 5px;
}
.wp-list-table.toplevel_page_custom-form-report a.icon-plus:before {
  content: "\e80f";
  font-size: 24px;
}

.setting-row .params,
.setting-row .handle {
  font-family: "e800";
  font-style: normal;
  font-weight: normal;
  cursor: move;
  float: left;
  line-height: 52px;
  margin-right: 10px;
}
.setting-row .handle:before {
  content: "\e80d";
  font-size: 32px;
}

.setting-row .params {
  margin: 0;
  float: none;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
}
.setting-row .params:before {
  content: "\e800";
  font-size: 16px;
}

.setting-row label {
  float: left;
}

p.headings_group {
  line-height: 1;
  margin: 1em 0;
  margin-top: -4px;
  font-weight: 700;
  color: #000;
}

p.headings_group a {
  position: absolute;
  margin-left: 10px;
  cursor: pointer;
  font-weight: normal;
}

.headings_group_edit {
  position: absolute;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  z-index: 100;
  max-width: 400px;
}

.field_type_title {
}

a.control-close {
  position: absolute;
  right: 5%;
  cursor: pointer;
}

.custom_form_container form p {
  font-size: 16px;
}

.custom_form_container form p.small {
  color: #2e2e2e;
  font-size: 0.95em;
  font-weight: 400;
  line-height: 18px;
  display: inline-block;
}

.custom_form_container form p.strong {
  color: #2e2e2e;
  font-weight: 600;
  line-height: 1.2em;
  padding-bottom: 25px;
}

.custom_form_container form h3 ~ p.strong {
  margin-top: -20px;
}

.custom-form-col .paragraph-type,
.custom-form-col .heading-type,
.custom-form-col .html-type {
  background-color: #ffff99;
}

.custom-form-col.subscribe2mailchimp-type .placeholder,

.custom-form-col.checkbox .placeholder,
.custom-form-col.checkbox_other-type .placeholder,
.custom-form-col.radio_other-type .placeholder,
.custom-form-col.radio-type .placeholder,
.custom-form-col.password-type .placeholder,
.custom-form-col.password_no_confirm-type .placeholder,

.custom-form-col.select-type .attributes,
.custom-form-col.checkbox .attributes,
.custom-form-col.checkbox_other-type .attributes,
.custom-form-col.radio_other-type .attributes,
.custom-form-col.radio-type .attributes,
.custom-form-col.password-type .attributes,
.custom-form-col.password_no_confirm-type .attributes,

.custom-form-col.subscribe2mailchimp-type .default_css_class,
.custom-form-col.hidden-type .default_css_class,
.custom-form-col.html-type .default_css_class,



.custom-form-col.subscribe2mailchimp-type .default_values,

.custom-form-col.paragraph-type .widget-content .txt_group_hide,
.custom-form-col.heading-type .widget-content .txt_group_hide,
.custom-form-col.html-type .widget-content .txt_group_hide,

.custom-form-col.html-type .cf_field_name p,
/*.custom-form-col.button-type .cf_field_name p,*/
/*.custom-form-col.submit-type .cf_field_name p,*/

.custom-form-col.button-type .addition_param,
.custom-form-col.hidden-type .addition_param,
.custom-form-col.recaptcha-type .addition_param,
.custom-form-col.submit-type .addition_param {
  display: none !important;
}

.custom-form-col table {
  width: 100%;
}
.custom-form-col table tr > *:nth-child(1) {
  max-width: 60%;
  min-width: 50%;
  width: 50%;
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

input.cf_btn,
a.cf_btn,
button.cf_btn,
input.btn,
a.btn,
button.btn {
  /* background-color: #99ab44;
	color: white;
	border: 1px solid #99ab44;
	font-size: l.1em;
	display: inline-block;
	text-decoration: none;
	padding: 0 16px;
	line-height: 47px;
	font-weight: 600;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	margin-left: 17px;
	margin-top: 20px;
	cursor: pointer; */

  width: fit-content;
  margin: 0;
  padding: 8.5px 32px;
  border: none;
  border-radius: 100px;
  background: var(--color-secondary);
    color: inherit;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font-family: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: inherit;
  appearance: button;
  /* stylelint-disable-next-line property-no-vendor-prefix */
  -webkit-appearance: button;
  cursor: pointer;
}

input.cf_btn:first-child,
a.cf_btn:first-child,
button.cf_btn:first-child,
input.btn:first-child,
a.btn:first-child,
button.btn:first-child {
  margin-left: 0;
}

input.cf_btn:hover,
a.cf_btn:hover,
button.cf_btn:hover,
input.btn:hover,
a.btn:hover,
button.btn:hover {
	background: var(--color-secondary-darker);
  text-decoration: none;
}

.donation-form input.cf_btn,
.donation-form a.cf_btn,
.donation-form button.cf_btn {
  max-width: 240px;
  min-width: 180px;
}

.petite input.cf_btn,
.petite a.cf_btn,
.petite button.cf_btn {
  font-size: 15px;
  display: inline-block;
  text-decoration: none;
  padding: 0;
  line-height: 36px;
  /*height: 36px;*/
  font-weight: 700;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  width: 185px;
  margin-bottom: 12px;
}

input.cf_btn.purple-negative,
a.cf_btn.purple-negative,
button.cf_btn.purple-negative {
  background-color: rgb(229, 25, 55);
  border: 2px solid rgb(229, 25, 55);
}

input.cf_btn.purple-negative:hover,
a.cf_btn.purple-negative:hover,
button.cf_btn.purple-negative:hover {
  color: rgb(229, 25, 55);
  background-color: transparent;
}

input.cf_btn.red,
a.cf_btn.red,
button.cf_btn.red {
  background-color: #ff503e;
  border: 1px solid #e55668;
}

input.btn.cf_red:hover,
a.cf_btn.red:hover,
button.cf_btn.red:hover {
  border: 1px solid #ff7264;
  background-color: #ff6151;
}

input.cf_btn.blue,
a.cf_btn.blue,
button.cf_btn.blue {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: white;
}

input.cf_btn.blue:hover,
a.cf_btn.blue:hover,
button.cf_btn.blue:hover {
  border: 1px solid var(--color-primary-darker);
  background-color: var(--color-primary-darker);
}

form.cf_form .red-text {
  color: red;
}

.params-row-popup {
  width: 300px;
  height: 300px;
  border-radius: 5px;
  border: 3px #000 solid;
  background: #fff;
  position: fixed;
  top: 45%;
  left: 50%;
  margin-top: -150px;
  margin-left: -150px;
  display: none;
  opacity: 0;
  z-index: 5;
  padding: 20px 10px;
}

.settings_page_custom-form-settings .params-row-popup input[type="text"] {
  width: 100%;
}

#overlay {
  z-index: 3;
  position: fixed;
  background-color: #000;
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}

form.cf_form .form-logo {
  background: url(law-logo-x2.png) no-repeat;
  background-position: 95% center;
  background-position-y: center;
  background-position-x: 95%;
  background-size: auto 39px;
}

form.cf_form textarea::-webkit-input-placeholder {
  font-size: smaller;
  opacity: 1;
  transition: opacity 0.3s ease;
}
form.cf_form textarea::-moz-placeholder {
  font-size: smaller;
  opacity: 1;
  transition: opacity 0.3s ease;
}
form.cf_form textarea:-moz-placeholder {
  font-size: smaller;
  opacity: 1;
  transition: opacity 0.3s ease;
}
form.cf_form textarea:-ms-input-placeholder {
  font-size: smaller;
  opacity: 1;
  transition: opacity 0.3s ease;
}
form.cf_form input::-webkit-input-placeholder {
  font-size: smaller;
  opacity: 1;
  transition: opacity 0.3s ease;
}
form.cf_form input::-moz-placeholder {
  font-size: smaller;
  opacity: 1;
  transition: opacity 0.3s ease;
}
form.cf_form input:-moz-placeholder {
  font-size: smaller;
  opacity: 1;
  transition: opacity 0.3s ease;
}
form.cf_form input:-ms-input-placeholder {
  font-size: smaller;
  opacity: 1;
  transition: opacity 0.3s ease;
}

form.cf_form textarea:focus::-webkit-input-placeholder {
  font-size: smaller;
  opacity: 0;
  transition: opacity 0.3s ease;
}
form.cf_form textarea:focus::-moz-placeholder {
  font-size: smaller;
  opacity: 0;
  transition: opacity 0.3s ease;
}
form.cf_form textarea:focus:-moz-placeholder {
  font-size: smaller;
  opacity: 0;
  transition: opacity 0.3s ease;
}
form.cf_form textarea:focus:-ms-input-placeholder {
  font-size: smaller;
  opacity: 0;
  transition: opacity 0.3s ease;
}
form.cf_form input:focus::-webkit-input-placeholder {
  font-size: smaller;
  opacity: 0;
  transition: opacity 0.3s ease;
}
form.cf_form input:focus::-moz-placeholder {
  font-size: smaller;
  opacity: 0;
  transition: opacity 0.3s ease;
}
form.cf_form input:focus:-moz-placeholder {
  font-size: smaller;
  opacity: 0;
  transition: opacity 0.3s ease;
}
form.cf_form input:focus:-ms-input-placeholder {
  font-size: smaller;
  opacity: 0;
  transition: opacity 0.3s ease;
}

form.cf_form .hidden {
  display: none;
}

form.cf_form .desk-hidden {
  display: none;
}

form.cf_form .desk-hidden-label label {
  display: none;
}

form.cf_form .margin-no {
  margin: 0;
}
form.cf_form .negative-margin-top-10 {
  margin-top: -10px;
}
form.cf_form .negative-margin-top-15 {
  margin-top: -15px;
}
form.cf_form .negative-margin-top-25 {
  margin-top: -25px;
}
form.cf_form .negative-margin-top-20 {
  margin-top: -20px;
}

form.cf_form .margin-top-10 {
  margin-top: 10px;
}
form.cf_form .margin-top-15 {
  margin-top: 15px;
}
form.cf_form .margin-top-20 {
  margin-top: 20px;
}
form.cf_form .margin-top-25 {
  margin-top: 25px;
}

.check-wrap {
  margin-bottom: 8px;
}

.check-wrap input[type="checkbox"] {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
}
.check-wrap input[type="checkbox"] + label {
  display: inline-block;
  padding-left: 35px;
  position: relative;
  cursor: pointer;
  line-height: 1.2em;
}
.check-wrap input[type="checkbox"] + label a:hover {
  text-decoration: underline;
}
.check-wrap input[type="checkbox"] + label a {
  color: rgb(229, 25, 55);
}
.check-wrap input[type="checkbox"] + label:before {
  width: 23px;
  height: 23px;
  background-color: white;
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  box-sizing: border-box;
  border: 1px solid rgba(204, 204, 204, 1);
}

.donation-form .check-wrap input[type="checkbox"] + label:before {
  top: 2px;
}

.check-wrap input[type="checkbox"].error + label:before {
  border: 1px solid #e20521;
}

.check-wrap input[type="checkbox"]:checked + label:before {
  border-color: var(--color-primary);
}

.check-wrap input[type="checkbox"]:checked + label:after {
  opacity: 1;
  background: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%229%22%20viewBox%3D%220%200%2012%209%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M11.128%200.956146C11.194%201.02194%2011.2463%201.10011%2011.2821%201.18617C11.3178%201.27222%2011.3361%201.36448%2011.3361%201.45765C11.3361%201.55082%2011.3178%201.64307%2011.2821%201.72913C11.2463%201.81518%2011.194%201.89335%2011.128%201.95915L4.75305%208.33415C4.68725%208.40011%204.60908%208.45245%204.52303%208.48815C4.43697%208.52386%204.34472%208.54225%204.25155%208.54225C4.15838%208.54225%204.06612%208.52386%203.98006%208.48815C3.89401%208.45245%203.81584%208.40011%203.75005%208.33415L0.916712%205.50081C0.783706%205.36781%200.708984%205.18741%200.708984%204.99931C0.708984%204.81121%200.783706%204.63082%200.916712%204.49781C1.04972%204.36481%201.23011%204.29008%201.41821%204.29008C1.60631%204.29008%201.78671%204.36481%201.91971%204.49781L4.25155%206.83106L10.125%200.956146C10.1908%200.890182%2010.269%200.837846%2010.3551%200.802137C10.4411%200.766428%2010.5334%200.748047%2010.6265%200.748047C10.7197%200.748047%2010.812%200.766428%2010.898%200.802137C10.9841%200.837846%2011.0622%200.890182%2011.128%200.956146Z%22%20fill%3D%22%233573b9%22%2F%3E%3C%2Fsvg%3E");
}
.check-wrap input[type="checkbox"] + label:after {
  content: "";
  width: 12px;
  height: 9px;
  position: absolute;
  left: 5px;
  top: 5px;
  opacity: 0;
  transition: all 0.2s;
  /* background: rgb(140, 155, 160); */

  background: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%229%22%20viewBox%3D%220%200%2012%209%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M11.128%200.956146C11.194%201.02194%2011.2463%201.10011%2011.2821%201.18617C11.3178%201.27222%2011.3361%201.36448%2011.3361%201.45765C11.3361%201.55082%2011.3178%201.64307%2011.2821%201.72913C11.2463%201.81518%2011.194%201.89335%2011.128%201.95915L4.75305%208.33415C4.68725%208.40011%204.60908%208.45245%204.52303%208.48815C4.43697%208.52386%204.34472%208.54225%204.25155%208.54225C4.15838%208.54225%204.06612%208.52386%203.98006%208.48815C3.89401%208.45245%203.81584%208.40011%203.75005%208.33415L0.916712%205.50081C0.783706%205.36781%200.708984%205.18741%200.708984%204.99931C0.708984%204.81121%200.783706%204.63082%200.916712%204.49781C1.04972%204.36481%201.23011%204.29008%201.41821%204.29008C1.60631%204.29008%201.78671%204.36481%201.91971%204.49781L4.25155%206.83106L10.125%200.956146C10.1908%200.890182%2010.269%200.837846%2010.3551%200.802137C10.4411%200.766428%2010.5334%200.748047%2010.6265%200.748047C10.7197%200.748047%2010.812%200.766428%2010.898%200.802137C10.9841%200.837846%2011.0622%200.890182%2011.128%200.956146Z%22%20fill%3D%22black%22%2F%3E%3C%2Fsvg%3E");
  
  
}

.donation-form .check-wrap input[type="checkbox"] + label:after {
  content: "";
  border-radius: 2px;
  width: 10px;
  height: 4px;
  position: absolute;
  left: 5px;
  top: 7px;
  opacity: 0;
  transition: all 0.2s;
  background: rgb(140, 155, 160);
}
.donation-form .check-wrap input[type="checkbox"]:checked + label:after {
  opacity: 1;
  background: transparent none repeat scroll 0 0;
}
.donation-form .check-wrap input[type="radio"]:checked + label > input[type="text"] {
  border: 2px solid var(--color-primary);
}

.donation-check.inline .check-wrap.inner-input input[type="radio"] + label {
  padding: 0;
  border: none;
}
.donation-check.inline .check-wrap.inner-input input[type="text"] {
}

.petite form.cf_form .check-wrap input[type="checkbox"] {
  width: 22px;
  height: 22px;
  clear: both;
  display: inline-block;
  position: absolute;
  margin-top: 1px;
  border: none;
  cursor: pointer;
  opacity: 1;
  background-color: transparent;
}
/*
@-moz-document url-prefix() {
	.petite form.cf_form .check-wrap input[type='checkbox']{
		-webkit-appearance: none;
		-moz-appearance:none;
		-o-appearance:none;
		appearance:none;
		background:url(checkboxes.png) no-repeat 0 0;
		border:none;
		border-radius:5px
	}
}*/
.petite form.cf_form .check-wrap input[type="subscribe2mailchimp"] + label,
.petite form.cf_form .check-wrap input[type="checkbox"] + label {
  display: inline-block;
  padding-left: 30px;
  position: relative;
  cursor: pointer;
  line-height: 1.2em;
}
.petite form.cf_form .check-wrap input[type="checkbox"] + label a:hover {
  text-decoration: underline;
}
.petite form.cf_form .check-wrap input[type="checkbox"] + label a {
  color: rgb(229, 25, 55);
}
.petite form.cf_form .check-wrap input[type="checkbox"] + label:before {
  content: none;
}
.petite form.cf_form .check-wrap input[type="checkbox"].error + label:before {
  content: none;
}
.petite form.cf_form .check-wrap input[type="checkbox"]:checked + label:after {
  content: none;
}
.petite form.cf_form .check-wrap input[type="checkbox"] + label:after {
  content: none;
}

.field-row.disperse-two .check-wrap.inline,
.disperse-two .check-wrap,
.disperse-three .check-wrap,
.disperse-four .check-wrap {
  float: left;
}
.field-row.disperse-two .check-wrap.inline,
.disperse-two .check-wrap {
  width: 50%;
}
.disperse-three .check-wrap {
  width: 33.333%;
}
.disperse-four .check-wrap {
  width: 25%;
}

.field-row.disperse-two .check-wrap.inline input[type="text"] {
  width: 65%;
  float: right;
  padding: 0 8px;
  margin-left: 8px;
  height: 22px;
}

.petite .check-wrap.inline label {
  margin-top: 5px;
}

.petite .g-recaptcha,
.petite .gglcptch {
  width: 100%;
  max-width: 304px;
}
.petite .width-300 {
  width: 100%;
  max-width: 304px;
}

.petite .width-300 .check-wrap {
  padding: 10px 15px;
}

.petite.custom_form_container div.error {
  margin: -20px -25px 30px;
  padding: 20px;
  min-width: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  background: #e20521;
  border: 1px solid #e20521;
  text-align: center;
}
.petite.custom_form_container div.success {
  margin: -20px -25px 30px;
  padding: 20px;
  min-width: 100%;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  background: #03ad3f;
  border: 1px solid #03ad3f;
  text-align: center;
}

.petite.custom_form_container a {
  text-decoration: none;
}

.petite.custom_form_container .transpose-block.field-row .field-wrap a {
  text-decoration: underline;
}
.petite.custom_form_container .transpose-block.field-row .field-wrap a:hover {
  text-decoration: none;
}

.petite.custom_form_container form.cf_form .transpose-block.field-row .field-wrap {
  margin-bottom: 10px;
}

.petite.custom_form_container form.cf_form .field-row.disperse-two .field-wrap p {
  margin-bottom: 12px;
}

@media (max-width: 1250px) {
  .field-row.inline .check-wrap {
    width: auto;
    margin-right: 65px;
  }

  .field-row.inline .check-wrap:last-child {
    margin-right: 0;
  }

  .field-row .check-wrap.inline {
    width: 100%;
    margin-top: 0;
    float: none;
  }

  .field-row .check-wrap.inline label {
    margin-top: 0;
  }

  .field-row .check-wrap.inline input[type="text"] {
    width: 100%;
    max-width: 300px;
    float: none;
  }
}

@media (max-width: 860px) {
  .row.four-in-row .row-item {
    width: 33.33333%;
  }

  .field-row.three-in-row .field-wrap {
    width: 50%;
    margin-bottom: 20px;
  }

  .field-row.three-in-row .field-wrap.small {
    width: 40%;
  }

  .field-row.three-in-row .field-wrap.big {
    width: 60%;
  }

  .caption-list.four-in-row .row-item {
    width: 50%;
  }

  .activity .row-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 540px) {
  form.cf_form .form-logo {
    background-position: top center;
    padding-top: 14px;
  }

  form.cf_form .desk-hidden-label label {
    display: inline-block;
  }

  form.cf_form .desk-hidden {
    display: block;
  }
  form.cf_form .mobile-hidden {
    display: none;
  }

  form.cf_form .title-hidden > p {
    display: none;
  }

  .row .row-item {
    margin-bottom: 10px;
  }

  .row.three-in-row .row-item {
    width: 100%;
  }

  .btn-box {
    text-align: center;
  }

  .btn-box .btn {
    display: table;
    margin: 0 auto 15px;
  }

  .btn-box .btn:last-child {
    margin-bottom: 0;
  }
  .petite input.btn,
  .petite a.btn,
  .petite button.btn,
  input.btn,
  a.btn,
  button.btn {
    margin-bottom: 0;
  }
  .field-row .field-wrap.width-70 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  form.cf_form .field-row.width-70 {
    width: 100%;
  }

  form.cf_form .field-row.two-in-row.big-small .field-wrap,
  form.cf_form .field-row.two-in-row.small-big .field-wrap,
  form.cf_form .field-row.three-in-row.big-small-medium .field-wrap,
  form.cf_form .field-row.three-in-row.big-medium-small .field-wrap,
  form.cf_form .field-row.three-in-row.medium-big-small .field-wrap,
  form.cf_form .field-row.three-in-row.medium-small-big .field-wrap,
  form.cf_form .field-row.three-in-row.small-medium-big .field-wrap,
  form.cf_form .field-row.three-in-row.small-big-medium .field-wrap,
  form.cf_form .field-row.four-in-row .field-wrap,
  form.cf_form .field-row.three-in-row .field-wrap,
  form.cf_form .field-row.two-in-row .field-wrap {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .field-row .field-wrap.width-70,
  .field-row .field-wrap.label-inline > *,
  .field-row .field-wrap.label-inline label {
    width: 100%;
  }

  .field-row.three-in-row .field-wrap.small {
    width: 100%;
  }

  .field-row.three-in-row .field-wrap.big {
    width: 100%;
  }

  .filter .field-row.inline .check-wrap {
    display: block;
    margin-bottom: 7px;
  }

  .filter-applied .filter-list.three-in-row div {
    max-width: 100%;
  }

  .filter-applied .filter-list.four-in-row div {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .petite form.cf_form select,
  .petite form.cf_form input {
    padding: 0 5px;
  }
  div.custom_form_container,
  div.custom_form_container.petite {
    margin: 30px -15px 20px;
  }
  .custom_form_container .field-row.width-70,
  .custom_form_container .field-row.width-75,
  .custom_form_container .field-row.width-80 {
    width: 100%;
  }

  form.cf_form .transpose-block.field-row {
    margin: 0 -15px;
    width: auto;
  }

  .row.five-in-row .row-item {
    width: 100%;
  }

  .row.four-in-row .row-item {
    width: 100%;
  }
  .field-row.disperse-two .check-wrap.inline,
  .field-row.inline .check-wrap {
    width: 100%;
  }

  .field-row .check-wrap.inline input[type="text"] {
    margin-left: 0;
  }
  .filter .field-row.inline .check-wrap {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .petite.custom_form_container form.cf_form .field-row .field-wrap.width-70,
  .petite.custom_form_container form.cf_form .field-row .field-wrap.label-inline > *,
  .petite.custom_form_container form.cf_form .field-row .field-wrap.label-inline label {
    width: 100%;
  }
  .petite.custom_form_container form.cf_form .field-row.width-70,
  .petite.custom_form_container form.cf_form .field-row.width-75,
  .petite.custom_form_container form.cf_form .field-row.width-80 {
    width: 100%;
  }

  .petite.custom_form_container form.cf_form .transpose-block.field-row {
    margin: 0 -10px;
    width: auto;
  }

  .petite.custom_form_container form.cf_form .transpose-block.field-row .field-wrap > div {
    margin: 0 auto;
    width: 75%;
  }

  .petite .g-recaptcha,
  .petite .gglcptch {
    transform: scale(0.75);
    transform-origin: 0 0;
  }

  .petite form.cf_form .field-row.disperse-two .check-wrap,
  .petite form.cf_form .field-row.disperse-two .check-wrap.inline,
  .petite form.cf_form .field-row.inline .check-wrap {
    width: 100%;
    margin-bottom: 12px;
  }

  .petite form.cf_form .field-row .check-wrap.inline input[type="text"] {
    margin-left: 0;
  }

  .petite form.cf_form .filter .field-row.inline .check-wrap {
    width: 100%;
  }

  .petite.custom_form_container form.cf_form .field-row.two-in-row.big-small .field-wrap,
  .petite.custom_form_container form.cf_form .field-row.two-in-row.small-big .field-wrap,
  .petite.custom_form_container form.cf_form .field-row.three-in-row.big-small-medium .field-wrap,
  .petite.custom_form_container form.cf_form .field-row.three-in-row.big-medium-small .field-wrap,
  .petite.custom_form_container form.cf_form .field-row.three-in-row.medium-big-small .field-wrap,
  .petite.custom_form_container form.cf_form .field-row.three-in-row.medium-small-big .field-wrap,
  .petite.custom_form_container form.cf_form .field-row.three-in-row.small-medium-big .field-wrap,
  .petite.custom_form_container form.cf_form .field-row.three-in-row.small-big-medium .field-wrap,
  .petite.custom_form_container form.cf_form .field-row.four-in-row .field-wrap,
  .petite.custom_form_container form.cf_form .field-row.three-in-row .field-wrap,
  .petite.custom_form_container form.cf_form .field-row.two-in-row .field-wrap {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }

  .petite.custom_form_container form.cf_form .transpose-block.field-row,
  form.cf_form .transpose-block.field-row.width-75 {
    min-width: 0;
  }
}

@media screen and (max-width: 782px) {
  input.lang {
    width: 100%;
  }
}

/* ******* LEGALLINE ******** */

/* do not to use french only english */
textarea.lang,
a.lang,
a.lang:hover,
input.lang {
  /*
	background-color: #fff !important;
	background-image: none !important;
	padding-left: 10px !important;
}

.cf-tab, a.lang, .lang_fr {
	display: none !important;
	*/
}

/* hide additional && crm integration */
#crm_integration,
#additional,
p.form_custom_params,
p.form_container_class,
p.separate_user_email,
#form_description,
label.form_title_show {
  /*	display: none !important;*/
}

#all-form-settings .dev_params {
  display: none !important;
}

.advertisers_sortable .item {
  padding: 8px;
  border: 1px solid #777;
  margin-bottom: 5px;
}
.sortable-placeholder {
  padding: 5px;
  margin-bottom: 2px;
}

/* special for this site */
.advertisers_sortable .item.item-new {
  background-color: #ddd;
  border-color: #777;
}

.advertisers_sortable .close {
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: red;
  cursor: pointer;
}

.add_advertiser_resource_loading,
.add_advertiser_input {
  display: none;
}

.add_advertiser_input {
  width: 250px;
  margin: 0;
}

.scrollable-dropdown .tt-menu {
  max-height: 150px;
  overflow-y: auto;
}
