.ems .linearChoiceBox label::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  outline: var(--emscol-border) 1px solid;
  border: transparent 3px solid;
  border-radius: 50%;
  margin: 0 auto;
}

.ems .linearChoiceBox input[type=radio]:checked + label::after, .ems-form--radio input[type=radio]:checked + label::before {
  border-color: var(--emscol-a);
  outline: var(--emscol-focus-opt) 1px solid;
}

:root {
  --emscol-border: #ccc;
  --emscol-focus: #eee;
  --emscol-focus-opt: #333;
  --emscol-focus-opt-ckecked: #fff;
  --emscol-form-bkg: none;
  --emscol-note: #cfcfcf;
  --emscol-error: var(--color-red-400);
  --emscol-arrow: #d4d4d4;
  --emscol-a: #ff0000;
  --emscol-font: #222;
}

.description {
  text-align: center;
  max-width: 900px;
  padding: 0 25px 10px;
  margin: 20px auto 5px !important;
  color: #e41da2;
}

.description__text {
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 20px;
}

.ems {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 25px 80px;
  color: var(--emscol-focus-opt-ckecked);
}
.ems-required {
  color: var(--emscol-error);
}
.ems__item {
  padding-bottom: 20px;
}
.ems__item__form {
  padding-top: 8px;
}
.ems__item__note {
  font-size: 15px;
  color: var(--emscol-note);
  padding-top: 5px;
}
.ems__item__error {
  font-size: 15px;
  color: var(--emscol-error);
  padding-top: 5px;
}
.ems input,
.ems select,
.ems textarea {
  outline: none;
  border: #6f6f6f 1px solid;
  border-radius: 4px;
  padding: 10px;
  font-size: 100%;
  color: var(--emscol-focus-opt-ckecked);
  width: 100%;
  background: var(--emscol-font);
  margin: 10px 0;
}
.ems input.error,
.ems select.error,
.ems textarea.error {
  border-color: var(--emscol-error);
}
.ems textarea {
  height: 100px;
}
.ems a {
  color: var(--emscol-a);
  text-decoration: underline;
}
.ems a:hover {
  text-decoration: none;
}
.ems-form--select {
  position: relative;
}
.ems-form--select .arrow {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.ems-form--select select:focus + .arrow {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.ems-form--radio input[type=radio] {
  display: none;
}
.ems-form--radio label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.ems-form--radio label::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  outline: var(--emscol-border) 1px solid;
  border: transparent 3px solid;
  border-radius: 50%;
  margin-right: 8px;
}
.ems-form--checkbox input[type=checkbox] {
  display: none;
}
.ems-form--checkbox input[type=checkbox]:checked + label::before {
  border-color: var(--emscol-focus-opt);
  background: var(--emscol-focus-opt);
}
.ems-form--checkbox input[type=checkbox]:checked + label::after {
  content: "\ea01";
  font-family: "msi-icons" !important;
  position: absolute;
  top: 3px;
  left: 1px;
  color: var(--emscol-focus-opt-ckecked);
  font-weight: bold;
  font-size: 16px;
}
.ems-form--checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  cursor: pointer;
}
.ems-form--checkbox label::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 14px;
  height: 14px;
  border: var(--emscol-border) 1px solid;
  background-color: none;
  border-radius: 3px;
  margin-right: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
  margin-top: 4px;
}
.ems .radioBox {
  padding-bottom: 5px;
}
@media (min-width: 996px) {
  .ems .radioBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .ems .radioBox li {
    margin-right: 35px;
    padding-bottom: 0;
  }
}
.ems .checkboxBox li {
  padding-bottom: 5px;
}
.ems .linearChoiceBox input[type=radio] {
  display: none;
}
.ems .linearChoiceBox label {
  display: block;
  text-align: center;
  cursor: pointer;
}
.ems .linearChoiceBox label span {
  display: block;
}
.ems .linearChoiceBox label::after {
  margin-top: 5px;
}
.ems .linearChoiceBox__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  clear: both;
  margin-top: 10px;
}
.ems .linearChoiceBox__title--left {
  float: left;
}
.ems .linearChoiceBox__title--right {
  float: right;
}
@media (min-width: 996px) {
  .ems .linearChoiceBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin: 15px auto;
  }
  .ems .linearChoiceBox__title--left {
    margin-right: 35px;
    float: none;
  }
  .ems .linearChoiceBox__title--right {
    margin-left: 35px;
    float: none;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.ems__tc li {
  margin-bottom: 20px;
}
.ems__tc a {
  display: block;
}
.ems__terms__text {
  font-size: 15px;
  color: var(--emscol-note);
  padding-top: 5px;
  padding-left: 25px;
}
.ems__send {
  text-align: center;
  padding: 30px 0 20px;
}
.ems__send button {
  background: #1b1b1b;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 10px;
  width: 200px;
}
.ems__send button:hover {
  background: -webkit-gradient(linear, left top, right top, from(#6e3b8f), color-stop(60%, #c7274c));
  background: linear-gradient(to right, #6e3b8f 0%, #c7274c 60%);
  color: #fff;
}

@media (min-width: 996px) {
  [data-layout=double-column] .ems__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  [data-layout=double-column] .ems__item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: calc(50% - 25px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  [data-layout=double-column] .ems__item:nth-child(even) {
    margin-left: 25px;
  }
}/*# sourceMappingURL=ems.css.map */