@charset "UTF-8";
/*

[Table of contents] 

1. SITE STRUCTURE and TYPOGRAPHY
- 1.1 Typography
- 1.2 Buttons
- 1.3 Structure

2. CONTENT
- 2.1 Wizard
- 2.2 Success submit
- 2.3 Inner pages

3. COMMON
- 3.1 Input forms
- 3.2 Spacing

/*============================================================================================*/
/* 1.  SITE STRUCTURE and TYPOGRAPHY */
/*============================================================================================*/
/*-------- Preloader --------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #fff;
  z-index: 99999999999 !important;
}

[data-loader=circle-side] {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  animation: circle infinite 0.95s linear;
  border: 2px solid #1c5dab;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
}

#loader_form {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-color: #fafafa;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 99999999999 !important;
  display: none;
}

[data-loader=circle-side-2] {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin-left: -25px;
  margin-top: -25px;
  animation: circle infinite 0.95s linear;
  border: 2px solid #1c5dab;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-radius: 100%;
}
@keyframes circle {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*-------- 1.1 Typography --------*/
/* rem reference
10px = 0.625rem
12px = 0.75rem
14px = 0.875rem
16px = 1rem (base)
18px = 1.125rem
20px = 1.25rem
24px = 1.5rem
30px = 1.875rem
32px = 2rem
*/
.main_title {
  text-align: center;
}
.main_title h1 {
  font-size: 44px;
  line-height: 40px;
  margin-top: 70px;
}
.main_title h2 {
  font-size: 36px;
  font-size: 2.25rem;
  text-transform: uppercase;
  margin-bottom: 0;
}
.main_title p {
  font-size: 21px;
  font-size: 1.3125rem;
  color: #777;
}

.question_title {
  text-align: center;
}
.question_title h3 {
  font-size: 32px;
  line-height: 26px;
  font-weight: 500;
  margin-top: 15px;
  color: #333;
}
.question_title h4 {
  font-size: 28px;
  line-height: 26px;
  font-weight: 500;
  margin-top: 15px;
  color: #333;
}
.question_title p {
  font-size: 25px;
  color: #777;
  margin-bottom: 0;
}

.justify-content-center {
  display: flex;
  justify-content: center;
}

/*============================================================================================*/
/* 2.  CONTENT */
/*============================================================================================*/
/*-------- 2.1 Wizard --------*/
.item {
  max-width: 100%;
}
.item label {
  border-radius: 5px;
  display: block;
  background: url(../images/bg/bg-item.png) no-repeat center;
  min-height: 257px;
  padding: 45px;
  text-align: center;
  margin-bottom: 0;
  transition: all 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  position: relative;
  font-size: 30px;
  color: #777;
  cursor: pointer;
}
@media (max-width: 991px) {
  .item label {
    padding: 30px;
  }
}
.item label strong {
  text-transform: uppercase;
  display: block;
  font-size: 32px;
  color: black;
  font-weight: 500;
}
.item label img {
  display: block;
  margin: 0 auto 15px;
  max-width: 100%;
  width: 80%;
}
@media (max-width: 767px) {
  .item label img {
    width: 80px;
    height: auto;
  }
}
.item label span {
  border: 4px solid #d9e1e6;
  display: block;
  margin: 0 auto 15px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  padding: 4px;
  transition: all 0.5s ease;
}
.item label figure {
  position: relative;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  margin: 0;
  overflow: hidden;
}
.item label figure img {
  width: 130px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.item input[type=checkbox]:not(old),
.item input[type=radio]:not(old) {
  visibility: hidden;
}
.item input[type=checkbox]:not(old):checked + label,
.item input[type=radio]:not(old):checked + label,
.item input[type=checkbox]:not(old):checked + span + label,
.item input[type=radio]:not(old):checked + span + label {
  display: block;
}
.item input[type=checkbox]:not(old):checked + label:before,
.item input[type=radio]:not(old):checked + label:before,
.item input[type=checkbox]:not(old):checked + span + label:before,
.item input[type=radio]:not(old):checked + span + label:before {
  content: "";
  background: url(../images/bg/icon-check.png) no-repeat center;
  width: 47px;
  height: 49px;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 24px;
  font-size: 1.5rem;
  color: #000;
}
.item input[type=checkbox]:not(old):checked + label span,
.item input[type=radio]:not(old):checked + label span,
.item input[type=checkbox]:not(old):checked + span + label span,
.item input[type=radio]:not(old):checked + span + label span {
  border: 4px solid #000;
}
.item input[type=checkbox]:not(old):checked + label figure img,
.item input[type=radio]:not(old):checked + label figure img,
.item input[type=checkbox]:not(old):checked + span + label figure img,
.item input[type=radio]:not(old):checked + span + label figure img {
  transform: translate(-50%, -50%) scale(1.2);
}

.checkbox_questions {
  position: relative;
}
.checkbox_questions span.error {
  left: -5px;
  top: -35px;
}
.checkbox_questions .icheckbox_square-grey {
  margin-right: 10px;
}

.box_general {
  border-radius: 5px;
  display: block;
  background-color: #fff;
  padding: 15px;
  border: 1px solid #d9e1e6;
}
.box_general label {
  font-weight: 500;
}

input#website {
  display: none;
}

#wizard_container {
  position: relative;
  min-height: 450px;
  background-color: #fff;
  box-shadow: 0 0 5px #777;
  margin-top: 0px;
  margin-bottom: 30px;
  z-index: 9;
}

/* Wizard Buttons*/
button.backward,
button.forward,
button.submit {
  color: white;
  padding: 7px 20px;
  text-decoration: none;
  transition: background 0.5s ease;
  -moz-transition: background 0.5s ease;
  -webkit-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
  display: inline-block;
  cursor: pointer;
  font-weight: 400;
  outline: none;
  min-width: 118px;
  text-align: center;
  position: relative;
  font-size: 28px;
  line-height: 1;
  padding: 10px 30px 10px 30px;
  background: url(../images/button/bg-button-black.png) no-repeat center;
  min-height: 63px;
  margin: 0 5px;
  border: 0;
}
button.backward:hover,
button.forward:hover,
button.submit:hover {
  text-decoration: underline;
}

button.backward {
  color: #333;
  padding: 10px 20px 10px 30px;
  background: url(../images/bg/bg-button.png) no-repeat center;
}

button.forward,
button.submit {
  padding: 10px 30px 10px 20px;
}

button[disabled] {
  display: none;
}

button.backward:before {
  content: "";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  font-size: 18px;
}

button.forward:before {
  content: "";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  font-size: 18px;
}

button.submit:before {
  content: "";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  font-size: 18px;
}

#middle-wizard {
  padding: 30px 70px 15px 70px;
}

#bottom-wizard {
  padding: 30px 0 45px 0;
  text-align: center;
}

.ui-widget-content a {
  color: #222222;
}

.ui-widget-header {
  background: #222;
}

.ui-widget-header a {
  color: #222222;
}

.ui-progressbar {
  height: 3px;
  width: 100%;
  position: relative;
  top: -1px;
  z-index: 2;
}

.ui-progressbar .ui-progressbar-value {
  height: 100%;
  transition: all 0.2s ease;
}

.submit .rc-anchor-light.rc-anchor-normal {
  width: 99% !important;
}

.form-survey-sent {
  padding-left: 15px;
  padding-right: 15px;
  display: none;
  font-size: 32px;
  text-align: center;
}

/*-------- 2.2 Success submit --------*/
#success {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 150px;
  margin-top: -120px;
  margin-left: -195px;
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  padding: 45px;
  border: 1px solid #d9e1e6;
  box-sizing: content-box;
}

#success h4 {
  margin: 0;
}

#success h4 span {
  display: block;
  font-size: 24px;
}
@keyframes checkmark {
  0% {
    stroke-dashoffset: 50px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes checkmark-circle {
  0% {
    stroke-dashoffset: 240px;
  }
  100% {
    stroke-dashoffset: 480px;
  }
}
.inlinesvg .svg svg {
  display: inline;
}

.icon--order-success svg path {
  animation: checkmark 0.25s ease-in-out 0.7s backwards;
}

.icon--order-success svg circle {
  animation: checkmark-circle 0.6s ease-in-out backwards;
}

/*============================================================================================*/
/* 3.  COMMON */
/*============================================================================================*/
/*-------- 3.1 Input forms --------*/
.wizard-branch .styled-select {
  width: 100%;
  overflow: hidden;
  height: 44px;
  background: #fff url(../img/arrow_down.svg) no-repeat right center;
  border: 1px solid #d9e1e6;
  border-radius: 3px;
}
.wizard-branch .styled-select select {
  background: transparent;
  width: 107%;
  padding: 5px 5px 5px 15px;
  border: 0;
  height: 41px;
  color: #999;
  margin: 0;
  font-weight: 400;
  -moz-appearance: window;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  font-size: 30px;
}
.wizard-branch .styled-select select:focus {
  color: #555;
  outline: none;
  box-shadow: none;
}
.wizard-branch .styled-select select::-ms-expand {
  display: none;
}
.wizard-branch .styled-select select::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.wizard-branch .styled-select select::-webkit-input-placeholder {
  color: #999;
}
.wizard-branch input.form-control,
.wizard-branch select.form-control,
.wizard-branch textarea.form-control {
  border: 1px solid #d9e1e6;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: none;
  color: #999;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 25px;
  padding: 6px 10px 6px 15px;
}
.wizard-branch input.form-control:focus,
.wizard-branch select.form-control:focus,
.wizard-branch textarea.form-control:focus {
  border-color: #392779;
  outline: 0;
  box-shadow: none;
  color: #555;
  transition: all 0.3s ease-in-out;
  background-color: #195196;
  background-color: rgba(28, 93, 171, 0.03);
}
.wizard-branch span.error {
  font-size: 28px;
  position: absolute;
  border-radius: 3px;
  top: -20px;
  left: 15px;
  z-index: 2;
  height: 32px;
  line-height: 18px;
  background-color: #333;
  color: #fff;
  font-weight: normal;
  display: inline-block;
  padding: 6px 8px;
}
.wizard-branch span.error:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0 6px 6px 0;
  border-color: transparent #333;
  display: block;
  width: 0;
  z-index: 1;
  bottom: -6px;
  left: 20%;
}
.wizard-branch .form-group {
  position: relative;
  margin-bottom: 25px;
}
.wizard-branch .form-group span.error {
  left: -5px;
  top: -28px;
}
.wizard-branch .form-group .icheckbox_square-grey {
  margin-right: 10px;
}
.wizard-branch .form-group.short {
  margin-bottom: 10px;
}

/* Rounder range slider */
.rounded_slider {
  text-align: center;
}
.rounded_slider p {
  margin-bottom: 0;
  color: #777;
}
.rounded_slider .full .rs-tooltip {
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
}

.rs-tooltip-text {
  font-weight: bold;
  font-size: 18px;
  color: #333;
}
.rs-tooltip-text:after {
  content: "months";
  padding-left: 5px;
}

/*** handle types ***/
.rs-handle-dot {
  border: 1px solid #ccc !important;
  padding: 6px;
}
.rs-handle-dot:after {
  border: 1px solid #fff !important;
}

/*** theming - colors ***/
.rs-seperator {
  border: 1px solid #AAAAAA;
}

.rs-border {
  border: 1px solid #fff !important;
}

.rs-path-color {
  background-color: #ccc !important;
}

.rs-range-color {
  background-color: #333 !important;
}

.rs-bg-color {
  background-color: #FFFFFF;
}

.rs-handle {
  background-color: #fff !important;
}

.rs-handle-dot {
  background-color: #FFFFFF;
}

.rs-handle-dot:after {
  background-color: #333 !important;
}

#top-wizard {
  text-align: center;
  padding: 15px 190px;
  background-color: #f3f3f3;
  border-bottom: 1px solid #e7e7e7;
  position: relative;
  text-transform: uppercase;
  font-size: 30px;
}

.shadow {
  width: 100%;
  height: 6px;
  position: absolute;
  left: 0;
  bottom: -6px;
  background: url(../images/bg/shadow_top_form.png) no-repeat center top;
  box-shadow: none !important;
}

#top-wizard .ui-widget-content {
  background: url(../images/bg/bg-progress.png) repeat-x;
  height: 48px;
  color: #222222;
  position: relative;
}
#top-wizard .ui-widget-content::before {
  content: "";
  height: 40px;
  width: 2px;
  background: #333;
  position: absolute;
  left: 0;
  top: 3px;
}
#top-wizard .ui-widget-content::after {
  content: "";
  height: 40px;
  width: 2px;
  background: #333;
  position: absolute;
  right: 0;
  top: 3px;
}
#top-wizard .ui-widget-content a {
  color: #222222;
}
#top-wizard .ui-widget-header {
  background: url(../images/bg/bg-step.png) repeat-x center left;
}
#top-wizard .ui-widget-header a {
  color: #222222;
}
#top-wizard .ui-progressbar {
  min-height: 48px;
  text-align: left;
  top: 2px;
}
#top-wizard .ui-progressbar .ui-progressbar-value {
  height: 100%;
}

/* iCheck plugin Square skin, grey
----------------------------------- */
.icheckbox_square-grey,
.iradio_square-grey {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 25px;
  height: 24px;
  background: url(../images/button/icon-radio.png) no-repeat;
  border: none;
  cursor: pointer;
}

.icheckbox_square-grey {
  background-position: 0 0;
}

.icheckbox_square-grey.hover {
  background: url(../images/button/icon-radio.png) no-repeat;
}

.icheckbox_square-grey.checked {
  background: url(../images/button/icon-radio-checked.png) no-repeat;
}

.icheckbox_square-grey.disabled {
  background: url(../images/button/icon-radio.png) no-repeat #ccc;
  cursor: default;
}

.icheckbox_square-grey.checked.disabled {
  background-position: -96px 0;
  background: url(../images/button/icon-radio.png) no-repeat #ccc;
}

.iradio_square-grey {
  background-position: -120px 0;
}

.iradio_square-grey.hover {
  background-position: -144px 0;
}

.iradio_square-grey.checked {
  background-position: -168px 0;
}

.iradio_square-grey.disabled {
  background-position: -192px 0;
  cursor: default;
}

.iradio_square-grey.checked.disabled {
  background-position: -216px 0;
}

#ncc-survey .form-group.error, #ncc-survey .form-group.success {
  position: relative;
}
#ncc-survey .form-group.error:after, #ncc-survey .form-group.success:after {
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  font-size: 16px;
}
#ncc-survey .form-group.error:after {
  content: "";
  color: #d95c5c;
}
#ncc-survey .form-group.success:after {
  content: "";
  color: #00c077;
}

/* HiDPI support */
@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .icheckbox_square-grey,
.iradio_square-grey {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 25px;
    height: 24px;
    background: url(../images/button/icon-radio.png) no-repeat;
    border: none;
    cursor: pointer;
  }
}
/* reponsive */
@media screen and (max-width: 768px) {
  #top-wizard, #middle-wizard {
    padding: 15px;
  }

  input[type=checkbox]:not(old):checked + label::before,
input[type=radio]:not(old):checked + label::before,
input[type=checkbox]:not(old):checked + span + label::before,
input[type=radio]:not(old):checked + span + label::before {
    right: 40px !important;
  }
}
@media screen and (max-width: 360px) {
  .row-custom .col-xs-6 {
    width: 100%;
  }

  .head_title p {
    font-size: 32px;
  }

  input[type=checkbox]:not(old):checked + label::before,
input[type=radio]:not(old):checked + label::before,
input[type=checkbox]:not(old):checked + span + label::before,
input[type=radio]:not(old):checked + span + label::before {
    right: 45px !important;
  }
}