body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  background: white;
  overflow-x: hidden;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

p {
  line-height: 1.5;
  font-size: 18px;
}
.where-work-text {
	display: none;
}
.answer-text p {
  font-size: 22px;
}

.form-wrap {
  display: flex;
  flex-direction: row;
  height: 100vh;
  overflow: hidden;
}

.questions-wrap {
  flex-direction: column;
  flex: 0 1 50%;
  height: 100vh;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  will-change: transform;
}
.question-contain {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  height: 100vh;
  padding: 40px 80px 40px 40px;
}
.question-title {
  color: white;
  font-size: 75px;
  font-weight: 700;
  letter-spacing: 1.8px;
  margin: 0;
}


.question__1 {
  background-color: #0b5ba4;
}
.question__2 {
  background-color: #81c41d;
}
.question__3 {
  background-color: #81c41d;
}

.answer__2 .answer-radio-row.selected,
.answer__2 .answer-radio-row.selected .answer-radio-circle:before,
.answer__2 .answer-select-item.selected .answer-select-circle:before,
.step__2 .form-step-nav-btn.next__btn {
  background-color: #81c41d;
}
.answer__2 .answer-select-item.selected {
  background-color: #81c41d;
  border-color: #81c41d;
}

.answer-select-item.selected span {
  color:#FFF;
}

.answers-wrap {
  flex-direction: column;
  flex: 1 0 50%;
  position: relative;  
}
.answers-inside-wrap {  
  font-size: 18px;  
  height: calc(100% - 73px);
  will-change: transform;
}
.answer-contain {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 50px;
  flex-direction: column;
}
.answer-text {
  padding: 0 0 50px;
}
.answer-radio-wrap {
  width: 100%;
}
.answer-radio-row {
  border-bottom: 1px solid #E0E0E0;
  cursor: pointer;
  position: relative;
  padding: 25px 20px;
  width: 100%;
}
.answer-radio-row:last-of-type {
  border-bottom: 1px solid transparent;
}
.answer-radio-circle {
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid black;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 26px;
}
.answer-radio-text {
  display: block;
  padding-left: 30px;
  font-size: 20px;
  font-weight: 500;
}
.answer-radio-row.selected {
  background-color: #0b5ba4;
  color: white;
  border-bottom: 1px solid transparent;
  border-radius: 4px;
}
.answer-radio-row.selected .answer-radio-circle {
  border: 1px solid white;
  background-color: white;
}
.answer-radio-row.selected .answer-radio-circle:before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background-color: #0b5ba4;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
}

.answer-select-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.answer-select-col {
  float: left;
  width: 25%;
  padding: 10px;
}
.answer-select-item {
  border: 1px solid #E0E0E0;
  padding: 40px 20px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.answer-select-circle {
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid black;
  /* border-radius: 50%; */
  margin: 0 auto;
  position: relative;
}
.answer-select-text {
  display: block;
  font-size: 20px;
  font-weight: 500;
  padding: 0 0 20px;
}
.answer-select-item.selected {
  background-color: #0b5ba4;
  color: white;
  border-color: #0b5ba4;
}
.answer-select-item.selected .answer-select-circle {
  border: 1px solid white;
  background-color: white;
}
.answer-select-item.selected .answer-select-circle:before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background-color: #0b5ba4;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  /* border-radius: 50%; */
}
.answer-text-inputs-wrap {
  display: block;
  width: 100%;
}
.answer-input-wrap {
  display: flex;
  flex-direction: row;
  padding: 0 0 30px;
  align-items: center;
  justify-content: center;
}
.answer-input-wrap.noflex {
  display: block;
}
.answer-input-wrap.noflex label {
  width: 100%;
  padding: 0 0 20px;
  padding-left: 0 !important;
}
.answer-input-wrap.noflex .answer-input {
  width: 100%;
}
.answer-input-flex.noflex + .answer-input-flex.noflex {
  padding-left: 30px;
}
.answer-input-wrap label {
  display: block;
  width: 150px;
  font-size: 18px;
  font-weight: 500;
}
.answer-input {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  padding: 15px 10px;
  flex: 1;
  font-size: 16px;
}
textarea.answer-input {
  height: 100px;
}
._ERROR.answer-input-wrap label {
  color: red;
}
._ERROR.answer-input-wrap .answer-input {
  border-color: red;
}
.answer-select-wrap + .answer-text-inputs-wrap {
  padding-top: 30px;
}
.answer-input-flex-wrap {
  display: flex;
}
.answer-input-flex {
  flex: 50%;
}
.answer-input-flex + .answer-input-flex.answer-input-wrap label {
  padding-left: 30px;
}

.form-steps-nav-wrap {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: #ECEDEE;
  padding: 15px;
  width: 100%;
}
.form-steps-nav {
  align-items: center;
  flex-direction: row;
  display: flex;
}
.form-step-nav-btn-wrap {
  flex: 1 1 auto;  
}
.form-step-nav-btn {
  display: inline-block;
  padding: 12px 32px;
  color: white;
  font-weight: 700;
  background: #0b5ba4;
  border-radius: 4px;
  cursor: pointer;
}
.form-step-nav-btn.disabled {
  opacity: 0.4;
}
.back__btn {
  background: white;
  color: #333;
}
.next__btn {
  float: right;
}
.next__btn.submit__btn {
  display: none;
  background: #81c41d;
}
.current-form-steps {
  font-weight: 700;
  flex: 1 0 50%;
  text-align: center;
  letter-spacing: 2px;
  font-size: 16px;
}

.form-error-wrap {
  width: 100%;
  max-width: 500px;
  background: #81c41d;
  border-radius: 6px;
  position: absolute;
  bottom: calc(100% + 20px);
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
  padding: 15px;
  font-size: 18px;
  color: white;
  font-weight: 600;
}

.sending-status-wrap {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0b5ba4;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.sending-status-text {
  color: white;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.5;
  flex: 1;
}
.sending-status-text h3 {
  font-size: 50px;
  color:#FFF;
}
.sending-status-text p {
	font-size: 25px;
  color:#FFF;
  line-height: 1.6;
	margin: 20px 0;
}
.sending-status-text.--done {
	display: none;
}
.sending-status-text.--done a {
	color: white;
	font-size: 25px;
}
.sending-status-img {
  width: 100px;
  display: block;
  height: auto;
  margin: 40px auto 0;
}
.logo-img-wrap {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 99;
	text-decoration: none;
}
.logo-img {
  width: 150px;
}
.logo-img-back {
	color: white;
	position: relative;
	font-size: 20px;
	top: -25px;
	display: inline-block;
	margin-left: 15px;
}
.logo-img-back svg {
	position: relative;
	margin-right: 5px;
	top: 5px;
}
.answer-stars-wrap {
  clear: both;
  padding: 0 0 15px;
}
.answer-stars-wrap:after {
  clear: both;
  content: '';
  display: table;
}
.answer-stars-num {
  float: left;
  margin-right: 15px;
  position: relative;
  top: 2px;
  font-weight: 700;
}
.answer-stars-over {
  overflow: hidden;
}
.answer-stars-over p {
  margin: 0 0 10px;
}

.rating-group {
  display: inline-flex;
}

/* make hover effect work properly in IE */
.rating__icon {
  pointer-events: none;
}

/* hide radio inputs */
.rating__input {
  position: absolute !important;
  left: -9999px !important;
}

/* hide 'none' input from screenreaders */
.rating__input--none {
  display: none
}

/* set icon padding and size */
.rating__label {
  cursor: pointer;
  padding: 0 0.1em;
  font-size: 2rem;
}

/* set default star color */
.rating__icon--star {
  color: #81c41d;
}

/* if any input is checked, make its following siblings grey */
.rating__input:checked ~ .rating__label .rating__icon--star {
  color: #ddd;
}

/* make all stars #81c41d on rating group hover */
.rating-group:hover .rating__label .rating__icon--star {
  color: #81c41d;
}

/* make hovered input's following siblings grey on hover */
.rating__input:hover ~ .rating__label .rating__icon--star {
  color: #ddd;
}
.select-style {
  flex: 1;
}
.select-style .selectize-input {
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  padding: 15px 20px;
  font-size: 15px;
}
.select-style .selectize-dropdown {
  cursor: pointer;
}
.province-select-US {
  display: none;
}
._ERROR .select-style .selectize-input {
  border-color: red;
}
.find-address-again {
	background: #0b5ba4;
	color: white;
	border: 0;
	border-radius: 6px;
	padding: 6px 15px;
	display: inline-block;
	font-size: 18px;
	cursor: pointer;
}

@media (max-width: 1299px) and (min-width: 1271px) {
  .current-form-steps + .form-step-nav-btn-wrap {
    margin-right: 30px;
  }
}

@media (max-width: 1440px) {
	.answer-text {
		padding: 0 0 10px;
	}
	.answer-text p {
		margin: 10px 0;
	}
	.answer-contain {
		overflow-y: auto;
	}
}

@media (max-width: 1270px) {
  .question-title {
    font-size: 40px;
  }
  .form-wrap {
    display: block;
    /* height: auto; */
  }
  .questions-wrap,
  .question-contain {
    height: 110px;
    overflow: hidden;
    text-align: right;
    display: block;
  }
  .question-contain {
    padding: 20px 40px;
  }
  .answers-wrap {
    overflow: hidden;
  }
  .form-wrap {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .form-steps-nav-wrap {
    position: fixed;
  }
  .answers-inside-wrap {
    height: calc(100% - 110px);
    overflow: hidden;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    position: fixed;
    left: 0;
    top: 110px;
    right: 0;
  }
  .answer-contain {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    will-change: transform;
	overflow: hidden;
  }
  .answer__3 .answer-text {
    display: none;
  }
}

@media (max-width: 767px),
(max-width: 1024px) and (min-height: 767px),
(min-device-width : 768px) and (max-device-width : 1100px) and (orientation: landscape),
(min-device-width : 768px) and (max-device-width : 1024px) and (-webkit-min-device-pixel-ratio: 2) {
  .questions-wrap {
    position: relative;
    z-index: 999;
  }
  .questions-wrap, .question-contain {
    height: 85px;
  }
  .question-title {
    font-size: 28px;
    max-width: 200px;
    width: 100%;
    float: right;
    text-align: left;
  }
  .logo-img-wrap {
	  top: 18px;
  }
  .logo-img {
    width: 110px;
  }
  .answers-inside-wrap {
	height: calc(100% - 158px);
	top: 85px;
	-webkit-transform: none;
	transform: none;
	/* overflow-y: auto;
	align-items: flex-start;
    justify-content: flex-start;
    padding-top: 40px; */
  }
  .answer-input-flex-wrap {
    display: block;
  }
  .answer-input-flex + .answer-input-flex.answer-input-wrap label {
    padding-left: 0;
  }
  .answer-text {
    padding: 0 0 15px;
  }
  .question-contain {
    padding: 9px;
  }
  .answer-select-col {
	padding: 5px;
	float: left;
    width: 50%;
  }
  .answer-select-text {
    font-size: 16px;
  }
  .answer-select-wrap {
    display: block;
  }
  .answer-select-wrap:after {
    clear: both;
    content: '';
    display: table;
  }
  .answer-select-item {
    padding: 25px 10px;
  }
  .form-step-nav-btn {
    padding: 12px 16px;
  }
  .answer-contain {
	padding: 20px;
    align-items: flex-start;
    justify-content: flex-start;
	overflow-y: auto;
	padding-top: 40px;
  }
  .sending-status-text {
    font-size: 40px;
    padding: 20px;
  }
  .answer-input-flex.noflex + .answer-input-flex.noflex {
	  padding-left: 0;
  }
  .sending-status-text h3 {
	  font-size: 35px;
  }
  .sending-status-text p,
  .sending-status-text.--done a {
	  font-size: 20px;
  }
}

@media (max-width: 500px) {
	.logo-img-back {
		display: none;
	}
}

@media (max-width: 375px) {
	.logo-img-wrap {
		top: 19px;
	}
  .logo-img {
    width: 100px;
  }
  .question-contain {
    padding: 15px;
  }
  .question-title {
    font-size: 22px;
    max-width: 150px;
  }
  .answer-input-wrap label {
	padding-right: 10px;
	width: 92px;
  }
  .answers-inside-wrap {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  .answer-select-text {
    font-size: 12px;
  }
}