/*Nexus 10*/
.gfb-form {
  margin: 0 auto;
  font-size: 1em; }
  .gfb-form fieldset {
    border: 0;
    margin: 0;
    padding: 0;
    width: 100%; }
  .gfb-form [type="text"], .gfb-form select, .gfb-form textarea {
    padding: 0.5em; }
  .gfb-form [data-formtype="number"] {
    padding: 0; }
  .gfb-form .mandatory:after {
    content: "*";
    display: inline; }
  @media (max-width: 30em) {
    .gfb-form .form-continue .btn {
      width: 50%; } }

[data-formtype="dropdown"], [data-formtype="text"], [data-formtype="textarea"], [data-formtype="date"] {
  width: 100%;
  padding: 0.2em;
  border: 2px solid #000; }

.field-input-number {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid #000;
  width: 130px; }

.field-input-number input {
  width: 25%;
  text-align: center;
  margin: 0;
  height: 43px;
  width: 43px;
  border: none; }

.field-btn-plus, .field-btn-minus {
  background-color: #949599;
  width: 43px;
  height: 43px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: center; }

.field-btn-plus.disabled, .field-btn-minus.disabled, .field-btn-plus.disabled:hover, .field-btn-minus.disabled:hover {
  background-color: #e6e6e6; }

.field-btn-plus:hover, .field-btn-minus:hover {
  background-color: #38a6d7; }

.field-btn-minus {
  background-image: url(../../images/form/minus.svg); }

.field-btn-plus {
  background-image: url(../../images/form/plus.svg); }

.field-group {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: stretch;
      -ms-flex-line-pack: stretch;
          align-content: stretch;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0; }
  @media only screen and (min-width: 41.25em) {
    .field-group {
      margin: 1em 0; } }

.field-item-column, .field-item-row {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 1em; }
  .field-item-column label, .field-item-row label {
    font-size: 0.9em;
    margin-bottom: 0.5em; }
  @media only screen and (min-width: 41.25em) {
    .field-item-column, .field-item-row {
      width: calc(50% - 3%); } }

.field-item-column {
  margin-top: 1em; }
  .field-item-column .field-item-column, .field-item-column .field-item-row {
    margin-bottom: 0; }
  @media only screen and (min-width: 41.25em) {
    .field-item-column {
      margin-top: 0; } }

.field-item-row {
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

.field-item--double {
  width: 100%;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center; }

.field-item-row .field-item-column {
  width: calc(50% - 3%); }

.field-item-row.field-item--double .field-item-column {
  width: auto;
  margin-right: 2em; }

.field-item-column .field-item-row {
  width: 100%;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }

#childAges {
  margin-left: auto;
  width: 100%;
  padding: 1em 0; }
  #childAges label {
    margin-right: 1em;
    font-size: 0.9em; }
  #childAges .field-input-number {
    margin-bottom: 1em; }
  @media only screen and (min-width: 41.25em) {
    #childAges {
      width: calc(50% - 3%); } }

.field-item--checkbox {
  margin: 1em 0; }
  .field-item--checkbox label {
    font-size: 1.1em;
    margin: 0; }

.field-checkbox {
  border: 2px solid #000;
  margin: 0.3em 0.5em 0 0;
  width: 1.1em;
  height: 1.1em;
  position: relative;
  -webkit-align-self: baseline;
      -ms-flex-item-align: baseline;
          align-self: baseline;
  display: block; }
  .field-checkbox input {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 0; }

.field-checkbox--checked {
  position: absolute;
  top: -1px;
  left: -1px;
  height: 1.1em;
  width: 1.1em;
  text-align: center;
  background-image: url(../../images/form/checked.svg);
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center;
  display: none; }

[type="checkbox"]:checked + .field-checkbox--checked {
  display: block; }

.field-checkbox--fancy .field-checkbox {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center; }

.field-checkbox--fancy label {
  font-size: 1.5em; }

.field-item--radio {
  position: relative;
  margin-bottom: 1em; }
  .field-item--radio label {
    font-size: 1.1em;
    margin: 0 1em 0 1.3em;
    padding: 0 0 0 0.4em;
    text-indent: 1.5em;
    line-height: 1.1em; }
  .field-item--radio .check {
    display: block;
    position: absolute;
    content: '';
    border-radius: 100%;
    height: 14px;
    width: 14px;
    top: 0;
    left: 0;
    margin: auto;
    transition: background 0.25s linear;
    border: 2px solid #000; }
  .field-item--radio input[type=radio] {
    position: absolute;
    visibility: hidden;
    left: 5px;
    top: 4px; }
  .field-item--radio input[type=radio]:checked + .check {
    background: #FFF; }
    .field-item--radio input[type=radio]:checked + .check:after {
      content: "";
      display: block;
      width: 10px;
      height: 10px;
      position: absolute;
      top: 2px;
      left: 2px;
      background-color: #000;
      border-radius: 50%; }

.errorMessage--local {
  background-color: maroon;
  background-color: rgba(255, 0, 0, 0.5);
  padding: 0.3em;
  font-size: 1em;
  color: #FFF;
  text-align: left;
  display: none; }

.showError .select select, .showError input, .showError textarea, .showError .field-checkbox {
  border-color: maroon;
  border-color: rgba(255, 0, 0, 0.5); }

.select {
  position: relative;
  display: inline-block;
  width: 100%; }

.select select {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 8px 15px;
  outline: none;
  border: 2px solid #000;
  border-radius: 0;
  color: #000;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none; }

.select select::-ms-expand {
  display: none; }

.select select:disabled {
  opacity: 0.5;
  pointer-events: none; }
  .select select:disabled + .select__arrow {
    opacity: 0.5; }

.select__arrow {
  position: absolute;
  top: 5px;
  right: 10px;
  width: 32px;
  height: 32px;
  pointer-events: none;
  background-image: url(../../images/form/dropdown.svg);
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat; }

.loading .submit-sending {
  display: block; }

.loading .hide-on-submit {
  display: none; }

.submit-sending {
  position: relative;
  height: 60px;
  display: none; }

.submit-sending--wrp {
  height: 50px;
  width: 40px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto; }

.submit-sending-box {
  position: relative;
  height: 50px;
  width: 40px;
  -webkit-animation: box 5s infinite linear;
          animation: box 5s infinite linear; }
  .submit-sending-box .border {
    background: #949599;
    position: absolute; }
  .submit-sending-box .border.one {
    height: 4px;
    top: 0;
    left: 0;
    -webkit-animation: border-one 5s infinite linear;
            animation: border-one 5s infinite linear; }
  .submit-sending-box .border.two {
    top: 0;
    right: 0;
    height: 100%;
    width: 4px;
    -webkit-animation: border-two 5s infinite linear;
            animation: border-two 5s infinite linear; }
  .submit-sending-box .border.three {
    bottom: 0;
    right: 0;
    height: 4px;
    width: 100%;
    -webkit-animation: border-three 5s infinite linear;
            animation: border-three 5s infinite linear; }
  .submit-sending-box .border.four {
    bottom: 0;
    left: 0;
    height: 100%;
    width: 4px;
    -webkit-animation: border-four 5s infinite linear;
            animation: border-four 5s infinite linear; }
  .submit-sending-box .line {
    height: 4px;
    background: #949599;
    position: absolute;
    width: 0%;
    left: 25%; }
  .submit-sending-box .line.one {
    top: 25%;
    width: 0%;
    -webkit-animation: line-one 5s infinite linear;
            animation: line-one 5s infinite linear; }
  .submit-sending-box .line.two {
    top: 45%;
    -webkit-animation: line-two 5s infinite linear;
            animation: line-two 5s infinite linear; }
  .submit-sending-box .line.three {
    top: 65%;
    -webkit-animation: line-three 5s infinite linear;
            animation: line-three 5s infinite linear; }

@-webkit-keyframes border-one {
  0% {
    width: 0; }
  10% {
    width: 100%; }
  100% {
    width: 100%; } }

@keyframes border-one {
  0% {
    width: 0; }
  10% {
    width: 100%; }
  100% {
    width: 100%; } }

@-webkit-keyframes border-two {
  0% {
    height: 0; }
  10% {
    height: 0%; }
  20% {
    height: 100%; }
  100% {
    height: 100%; } }

@keyframes border-two {
  0% {
    height: 0; }
  10% {
    height: 0%; }
  20% {
    height: 100%; }
  100% {
    height: 100%; } }

@-webkit-keyframes border-three {
  0% {
    width: 0; }
  20% {
    width: 0%; }
  30% {
    width: 100%; }
  100% {
    width: 100%; } }

@keyframes border-three {
  0% {
    width: 0; }
  20% {
    width: 0%; }
  30% {
    width: 100%; }
  100% {
    width: 100%; } }

@-webkit-keyframes border-four {
  0% {
    height: 0; }
  30% {
    height: 0%; }
  40% {
    height: 100%; }
  100% {
    height: 100%; } }

@keyframes border-four {
  0% {
    height: 0; }
  30% {
    height: 0%; }
  40% {
    height: 100%; }
  100% {
    height: 100%; } }

@-webkit-keyframes line-one {
  0% {
    left: 25%;
    width: 0; }
  40% {
    left: 25%;
    width: 0%; }
  43% {
    left: 25%;
    width: 50%; }
  52% {
    left: 25%;
    width: 50%; }
  54% {
    left: 25%;
    width: 0%; }
  55% {
    right: 25%;
    left: auto; }
  63% {
    width: 10%;
    right: 25%;
    left: auto; }
  100% {
    width: 10%;
    right: 25%;
    left: auto; } }

@keyframes line-one {
  0% {
    left: 25%;
    width: 0; }
  40% {
    left: 25%;
    width: 0%; }
  43% {
    left: 25%;
    width: 50%; }
  52% {
    left: 25%;
    width: 50%; }
  54% {
    left: 25%;
    width: 0%; }
  55% {
    right: 25%;
    left: auto; }
  63% {
    width: 10%;
    right: 25%;
    left: auto; }
  100% {
    width: 10%;
    right: 25%;
    left: auto; } }

@-webkit-keyframes line-two {
  0% {
    width: 0; }
  42% {
    width: 0%; }
  45% {
    width: 50%; }
  53% {
    width: 50%; }
  54% {
    width: 0%; }
  60% {
    width: 50%; }
  100% {
    width: 50%; } }

@keyframes line-two {
  0% {
    width: 0; }
  42% {
    width: 0%; }
  45% {
    width: 50%; }
  53% {
    width: 50%; }
  54% {
    width: 0%; }
  60% {
    width: 50%; }
  100% {
    width: 50%; } }

@-webkit-keyframes line-three {
  0% {
    width: 0; }
  45% {
    width: 0%; }
  48% {
    width: 50%; }
  51% {
    width: 50%; }
  52% {
    width: 0%; }
  100% {
    width: 0%; } }

@keyframes line-three {
  0% {
    width: 0; }
  45% {
    width: 0%; }
  48% {
    width: 50%; }
  51% {
    width: 50%; }
  52% {
    width: 0%; }
  100% {
    width: 0%; } }

@-webkit-keyframes box {
  0% {
    opacity: 1;
    margin-left: 0px;
    height: 50px;
    width: 40px; }
  55% {
    margin-left: 0px;
    height: 50px;
    width: 40px; }
  60% {
    margin-left: 0px;
    height: 35px;
    width: 50px; }
  74% {
    msthin-left: 0; }
  80% {
    margin-left: -50px;
    opacity: 1; }
  90% {
    height: 35px;
    width: 50px;
    margin-left: 50px;
    opacity: 0; }
  100% {
    opacity: 0; } }

@keyframes box {
  0% {
    opacity: 1;
    margin-left: 0px;
    height: 50px;
    width: 40px; }
  55% {
    margin-left: 0px;
    height: 50px;
    width: 40px; }
  60% {
    margin-left: 0px;
    height: 35px;
    width: 50px; }
  74% {
    msthin-left: 0; }
  80% {
    margin-left: -50px;
    opacity: 1; }
  90% {
    height: 35px;
    width: 50px;
    margin-left: 50px;
    opacity: 0; }
  100% {
    opacity: 0; } }

.F2, .F3 {
  display: none; }

[data-toggle-slave] {
  display: none; }

.form-steps {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  font-size: 3rem;
  margin-bottom: 30px; }
  .form-steps:before {
    content: "";
    display: block;
    border-bottom: 2px solid #949599;
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 100%; }
  .form-steps .form-step {
    position: relative;
    text-align: center;
    display: none; }
    @media (min-width: 30em) {
      .form-steps .form-step {
        display: block; } }
    .form-steps .form-step .form-step-item {
      border-radius: 50%;
      background-color: #fff;
      text-align: center;
      line-height: 1em;
      padding: 0.1em 0 0.2em 0;
      width: 1.4em;
      margin: 0px auto;
      border: 2px solid #949599;
      color: #000; }
    .form-steps .form-step.selected {
      display: block; }
      .form-steps .form-step.selected .form-step-item {
        border-color: #740A39;
        background-color: #740A39;
        color: #FFF; }
    .form-steps .form-step .form-step-description {
      font-size: 0.5em; }
