/*Import fonts family
@font-face {
  font-family: 'gotham_book';
  src: url('../fonts/gotham-book.eot');
  src: url('../fonts/gotham-book.eot?#iefix') format('embedded-opentype'),
       url('../fonts/gotham-book.woff2') format('woff2'),
       url('../fonts/gotham-book.woff') format('woff'),
       url('../fonts/gotham-book.ttf') format('truetype'),
       url('../fonts/gotham-book.svg#gotham_bookregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'JelesBold';
  src: url('../fonts/JelesBold.eot');
  src: url('../fonts/JelesBold.eot?#iefix') format('embedded-opentype'),
       url('../fonts/JelesBold.woff2') format('woff2'),
       url('../fonts/JelesBold.woff') format('woff'),
       url('../fonts/JelesBold.ttf') format('truetype'),
       url('../fonts/JelesBold.svg#gotham_boldregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'DIN Next LT Pro';
    src: url('../fonts/DINNextLTPro-LightCondensed.eot');
    src: url('../fonts/DINNextLTPro-LightCondensed.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DINNextLTPro-LightCondensed.woff2') format('woff2'),
        url('../fonts/DINNextLTPro-LightCondensed.woff') format('woff'),
        url('../fonts/DINNextLTPro-LightCondensed.ttf') format('truetype'),
        url('../fonts/DINNextLTPro-LightCondensed.svg#DINNextLTPro-LightCondensed') format('svg');
    font-weight: 300;
    font-style: normal;
}
*/



* {
  box-sizing: border-box;
}

.iframe-inner {
  border: 3px solid #9b6945;
  padding: 30px 20px;
  max-width: 855px;
  margin: 0 auto;
  box-shadow: 0 7px 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 7px 10px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 7px 10px 0 rgba(0, 0, 0, 0.1);
  height: 100%;
}

.tab {
  display: none;
}

.current {
  display: block;
}

.content > span,
.content-error > span,
.content-sucessful > span {
    /*font-weight: bold;*/
    font-size: 18px;
    font-family: Poppins,helvetica,sans-serif;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-align: center;
    color: #777777;
    padding: 0 15px 40px 15px;
    margin-bottom: 40px;
    display: inline-block;
}

.content > span {
  border-bottom: 1px solid #b3804f;
  font-size: 16px;
}

.next,
.submit {
  text-transform: uppercase;
  font-family: Lora, Arial, sans-serif;
  color: #ffffff;
  font-size: 24px;
  text-align: center;
  background-color: #9b6945;
  padding: 16px 20px 11px;
  cursor: pointer;
  border: 1px solid #9b6945;
  line-height: 1;
  outline: none;
  opacity: 1;
  float: right;
}

button:hover {
  opacity: 0.6;
}

.previous {
  border: none;
  outline: none;
  background-image: url('../assets/hmd80_arrow-left-icon.svg');
  width: 35px;
  height: 35px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  text-indent: -9999em;
  float: left;
  position: relative;
  left: -10px;
  top: 10px;
  cursor: pointer;
}

.previous:hover {
  background-image: url('../assets/hmd80_arrow-left-icon-hover.svg');
  opacity: 1;
}


.error {
  color: #9b6945;
  padding-left: 5px;
}

label {
  display: block;
}

.label_checkbox {
  display: inline;
}

.buttons {
  display: block;
  overflow: hidden;
}

.logo,
.introtext {
  text-align: center;
}

.iframe-inner > .logo img {
  max-width: 100%;  
  height: auto;
}

.introtext {
  margin-bottom: 65px;
}

    .introtext h2 {
        font-family: Poppins,helvetica,sans-serif;
        font-size: 32px;
        letter-spacing: 1.05px;
        color: #666666;
        margin-bottom: 20px;
    }

    .introtext p {
        font-size: 16px;
        color: #777777;
        line-height: 1.72;
        letter-spacing: 0.45px;
        font-family: Poppins,helvetica,sans-serif;
        padding: 0 10px;
    }

.subheader h3 {
    font-family: Poppins,helvetica,sans-serif;
    font-size: 30px;
    letter-spacing: 0.45px;
    color: #a7b8b6;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.form-message label,
.form-upload label,
.form-checkbox label {
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: 0.5px;
    color: #555555;
    font-family: Poppins,helvetica,sans-serif;
    margin-bottom: 15px;
}

.form-message {
  padding: 0 10px;
  margin-bottom: 30px;
}

    .form-message textarea {
        width: 100%;
        border: none;
        font-size: 16px;
        color: #979797;
        resize: none;
        outline: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        background-color: transparent;
        font-family: Poppins, helvetica, sans-serif;
        position: relative;
        z-index: 4;
    }

.form-message textarea:focus {
  background-color: #ffffff;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .form-message textarea {
    overflow: auto;
  }
}

.form-message-group {
  position: relative;
}

.form-message-group span {
  display: inline-block;
  width: 1px;
  height: 36px;
  background-color: #979797;
  position: absolute;
  top: 1px;
  left: 2px;
  z-index: 1;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  opacity: 1;
  color: transparent;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  opacity: 1;
  color: transparent;
}

::-ms-input-placeholder { /* Microsoft Edge */
  opacity: 1;
  color: transparent;
}

.form-upload {
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}

    .form-upload input {
        background-image: url('../assets/hmd80_cloud_upload.svg');
        background-size: 66px 44px;
        background-repeat: no-repeat;
        background-position: top center;
        padding-top: 48px;
        text-indent: -9999em;
        margin-bottom: 40px;
        font-family: Poppins,helvetica,sans-serif;
        font-size: 10px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 211px;
        outline: none;
        background-color: none;
        cursor: pointer;
    }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .form-upload input {
    padding-top: 0;
    background: none;
  }
}

.form-upload label {
  max-width: 469px;
  margin-left: auto;
  margin-right: auto;
}

strong {
  font-family: 'gotham', Arial, sans-serif;
}

.form-checkbox {
  margin-bottom: 60px;
}

.form-checkbox input {
  position: relative;
  top: -3px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .form-checkbox input {
    top: 0;
  }
}

.form-checkbox label a {
  color: #9f6b46;
  text-decoration: none;
}

.form-checkbox label a:hover {
  opacity: 0.6;
  text-decoration: none;
}

.content-error,
.content-sucessful {
  padding-top: 50px;
  height: 100%;
}

.content-error .subheader h3,
.content-sucessful .subheader h3 {
  margin-top: 0;
}

.content-error .logo,
.content-sucessful .logo {
  margin-bottom: 60px;
}

.content-error .logo img,
.content-sucessful .logo img {
  max-width: 100%;
  height: auto;
  width: 325px;
}

@media screen and (max-width: 667px) {
  .introtext h2 {
    font-size: 25px;
  }
}

@media screen and (min-width: 768px) {
  .content > span,
  .content-error > span,
  .content-sucessful > span {
    font-size: 20px;
    padding: 0 30px 40px 30px;
  }

  .content > span {
    font-size: 18px;
  }

  .introtext h2 {
    font-size: 38px;
  }

  .introtext p {
    font-size: 18px;
    padding: 0 25px;
  }

  .subheader h3 {
    font-size: 36px;
  }

  .form-message label,
  .form-upload label,
  .form-checkbox label {
    font-size: 18px;
  }

  .form-message {
    padding: 0 30px;
    margin-bottom: 50px;
  }

  .form-message textarea {
    font-size: 18px;
  }

  .form-upload {
    position: relative;
    margin-bottom: 40px;
    margin-top: 40px;
  }

  .form-checkbox {
    margin-bottom: 80px;
  }

  .content-error,
  .content-sucessful {
    padding-top: 90px;
    min-height: 1156px;
  }

  .content-error .logo,
  .content-sucessful .logo {
    margin-bottom: 80px;
  }

    .content-error .logo img,
    .content-sucessful .logo img {
        max-width: 100%;
        height: auto;
    }
}
