@font-face {
  font-family: azo_sans;
  src: url(../fonts/azo_sans_black.eot);
  src: url(../fonts/azo_sans_black.eot?#iefix) format("embedded-opentype"),
    url(../fonts/azo_sans_black.ttf) format("tff"),
    url(../fonts/azo_sans_black.woff2) format("woff2"),
    url(../fonts/azo_sans_black.woff) format("woff");
  font-weight: 700;
}
@font-face {
  font-family: azo_sans;
  src: url(../fonts/azo_sans_bold.eot);
  src: url(../fonts/azo_sans_bold.eot?#iefix) format("embedded-opentype"),
    url(../fonts/azo_sans_bold.ttf) format("tff"),
    url(../fonts/azo_sans_bold.woff2) format("woff2"),
    url(../fonts/azo_sans_bold.woff) format("woff");
  font-weight: 600;
}
@font-face {
  font-family: azo_sans;
  src: url(../fonts/azo_sans_medium.eot);
  src: url(../fonts/azo_sans_medium.eot?#iefix) format("embedded-opentype"),
    url(../fonts/azo_sans_medium.ttf) format("tff"),
    url(../fonts/azo_sans_medium.woff2) format("woff2"),
    url(../fonts/azo_sans_medium.woff) format("woff");
  font-weight: 500;
}
@font-face {
  font-family: azo_sans;
  src: url(../fonts/azo_sans.eot);
  src: url(../fonts/azo_sans.eot?#iefix) format("embedded-opentype"),
    url(../fonts/azo_sans_regular.ttf) format("tff"),
    url(../fonts/azo_sans_regular.woff2) format("woff2"),
    url(../fonts/azo_sans_regular.woff) format("woff");
  font-weight: 400;
}
body,
html {
  background-color: #fff;
  color: #5e5e5e;
  font-family: azo_sans, sans-serif;
  margin: 0;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
body.scroll,
html.scroll {
  overflow-x: hidden;
  overflow-y: auto;
}
body.plan,
html.plan {
  background-color: #ebebeb;
}
body {
  position: relative;
}
:root {
  font-size: 14px;
}
body.ready .body-wrapper {
  opacity: 1;
}
.body-wrapper {
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
a {
  text-decoration: none;
}
button {
  cursor: pointer;
  text-transform: uppercase;
  font-family: azo_sans, sans-serif;
}
button:focus {
  outline: 0;
}
select:focus {
  outline: 0;
}
.btn {
  display: inline-block;
  padding: 0 30px;
  height: 40px;
  line-height: 36px;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fe5c01;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.2rem;
  border: 0;
  outline: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn {
    padding: 0 20px;
    font-size: 1.15rem;
  }
}
.btn:hover {
  -webkit-box-shadow: 0 3px 7px #cfcfcf;
  box-shadow: 0 3px 7px #cfcfcf;
}
.btn.light {
  background-color: #ff8700;
}
.btn.outline {
  background-color: transparent;
  border: 2px solid #ff4e00;
  color: #ff4e00;
}
.btn.outline:hover {
  background-color: #fff4f0;
}
.btn.inline {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #ff4e00;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}
.btn.inline:hover {
  color: #ff9566;
}
.btn.inline.disable {
  background-color: transparent;
  color: #dbdbdb;
}
.btn.disable {
  background-color: #dbdbdb;
  pointer-events: none;
  cursor: not-allowed;
}
.btn.grey {
  background-color: #dbdbdb;
}
.btn-close {
  background-color: transparent;
  border: 0;
  height: 25px;
  width: 22px;
  position: absolute;
  right: 22px;
  top: 20px;
}
@media screen and (max-width: 767px) {
  .btn-close {
    right: 10px;
    top: 10px;
  }
}
.btn-close:after,
.btn-close:before {
  background-color: #000;
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  width: 20px;
}
.btn-close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn-close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.btn-info {
  background: url(../img/icon_info.svg) center/contain no-repeat transparent;
  border: 0;
  height: 16px;
  width: 16px;
  margin-left: 2px;
  margin-right: 8px;
}
.btn-round {
  background-color: transparent;
  border: 2px solid #dbdbdb;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #dbdbdb;
  font-size: 1.3rem;
  height: 60px;
  line-height: 56px;
  padding: 0;
  width: 60px;
}
.btn-round:hover {
  border-color: #ff9566;
  color: #ff9566;
}
.btn-round.active {
  border-color: #ff4e00;
  color: #ff4e00;
  font-weight: 600;
}
.btn-uploadfile {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #dbdbdb;
  font-size: 1.2rem;
  padding-left: 20px;
  position: relative;
  height: 40px;
  width: 300px;
  text-decoration: none;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .btn-uploadfile {
    width: 250px;
  }
}
.btn-uploadfile input {
  display: none;
}
.btn-uploadfile:before {
  content: "";
  padding: 2px;
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: url(../img/icon-arrow-up.png) center/55% no-repeat #dbdbdb;
  right: 15px;
}
.checkbox {
  display: inline-block;
  position: relative;
  width: 25px;
  height: 25px;
}
.checkbox + * {
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .checkbox + * {
    width: 88%;
  }
}
.checkbox input {
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .checkbox input {
    width: 25px;
  }
}
.checkbox input:checked + span {
  border-color: #696969;
  -webkit-animation: checkboxGrowEffect 0.5s linear forwards;
  animation: checkboxGrowEffect 0.5s linear forwards;
}
.checkbox input:checked + span:before {
  background: #ff4e00;
  -webkit-box-shadow: 2px 0 0 #ff4e00, 4px 0 0 #ff4e00, 4px -2px 0 #ff4e00,
    4px -4px 0 #ff4e00, 4px -6px 0 #ff4e00, 4px -8px 0 #ff4e00,
    4px -10px 0 #ff4e00;
  box-shadow: 2px 0 0 #ff4e00, 4px 0 0 #ff4e00, 4px -2px 0 #ff4e00,
    4px -4px 0 #ff4e00, 4px -6px 0 #ff4e00, 4px -8px 0 #ff4e00,
    4px -10px 0 #ff4e00;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@-webkit-keyframes checkboxGrowEffect {
  30% {
    -webkit-box-shadow: 0 0 12px #ff8700;
    box-shadow: 0 0 12px #ff8700;
  }
}
@keyframes checkboxGrowEffect {
  30% {
    -webkit-box-shadow: 0 0 12px #ff8700;
    box-shadow: 0 0 12px #ff8700;
  }
}
.checkbox span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #dbdbdb;
  border-radius: 3px;
  pointer-events: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.checkbox span:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  width: 2px;
  height: 2px;
}
.checkbox-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 500;
  font-size: 1.25rem;
}
.checkbox-wrapper a {
  color: #ff4e00;
  text-decoration: none;
}
.checkbox-wrapper label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .checkbox-wrapper label {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .checkbox-wrapper label .checkbox {
    margin-top: 2px;
  }
}
.radio {
  display: inline-block;
  position: relative;
  width: 27px;
  height: 27px;
}
.radio + * {
  padding-left: 10px;
}
.radio input {
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.radio input:checked + span {
  border-color: #666;
}
.radio input:checked + span:before {
  background-color: #ff4e00;
}
.radio span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #dbdbdb;
  border-radius: 50%;
  pointer-events: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.radio span:before {
  content: "";
  border-radius: 50%;
  height: 60%;
  width: 65%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.radio-wrapper {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.radio-wrapper label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.input-field {
  height: 40px;
  width: 300px;
  background-color: #fff;
  border: 1.3px solid #dbdbdb;
  border-radius: 10px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .input-field {
    width: 100%;
    height: 45px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .input-field {
    max-width: 350px;
  }
}
.input-field.small {
  width: 50px;
}
.input-field.small input {
  padding: 0;
  text-align: center;
}
.input-field.medium {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .input-field.medium {
    width: 160px;
  }
}
.input-field .error,
.input-field:focus-within {
  border-color: #ff4e00;
}
.input-field.fixed {
  border-color: #333;
}
.input-field.fixed input {
  pointer-events: none;
}
.input-field.disable {
  opacity: 0.5;
  pointer-events: none;
}
.input-field label {
  font-size: 1.3rem;
  padding-left: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.input-field label + input {
  padding-left: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.input-field input {
  background: 0 0;
  border: 0;
  outline: 0;
  width: 100%;
  height: 100%;
  font-family: azo_sans, sans-serif;
  font-size: 1.4rem;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.input-field input::-webkit-input-placeholder {
  color: #dbdbdb;
  font-size: 1.3rem;
}
.input-field input:-ms-input-placeholder {
  color: #dbdbdb;
  font-size: 1.3rem;
}
.input-field input::-ms-input-placeholder {
  color: #dbdbdb;
  font-size: 1.3rem;
}
.input-field input::placeholder {
  color: #dbdbdb;
  font-size: 1.3rem;
}
.input-field input[type="number"] {
  -moz-appearance: textfield;
}
.input-field input::-webkit-inner-spin-button,
.input-field input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.select-field {
  width: 300px;
  height: 40px;
  border-radius: 10px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .select-field {
    width: 100%;
    min-width: 250px;
  }
}
.select-field:before {
  border-bottom: 1.5px solid #dbdbdb;
  border-right: 1.5px solid #dbdbdb;
  position: absolute;
  right: 10px;
  top: 12px;
  height: 8px;
  width: 8px;
  z-index: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.select-field:focus-within {
  border-color: #ff4e00;
}
.select-field.small {
  width: 105px;
}
.select-field.medium {
  width: 200px;
}
.select-field select {
  background: 0 0;
  border: 0;
  font-family: azo_sans, sans-serif;
  font-size: 1.4rem;
  height: 100%;
  padding-left: 18px;
  padding-right: 25px;
  outline: 0;
  width: 100%;
  z-index: 1;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.select-field select::-ms-expand {
  display: none;
}
.select-field select option {
  line-height: 1.8rem;
}
.select-field select option.placeholder {
  color: #dbdbdb;
  display: none;
}
.error-msg {
  color: #ff4e00;
  line-height: 13px;
  margin-top: 3px;
  padding-left: 24px;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .error-msg {
    position: unset;
  }
}
.error-msg:before {
  background: url(../img/icon_error.svg) center no-repeat;
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .error-msg:before {
    top: unset;
    bottom: -4px;
  }
}
.modal {
  background: rgba(174, 174, 174, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation: popUpFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation: popUpFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  z-index: 100;
}
.modal.closing {
  -webkit-animation: popUpFadeOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation: popUpFadeOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.modal.closing .modal-container {
  -webkit-animation: popUpOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation: popUpOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.modal.open {
  opacity: 1;
  visibility: visible;
}
.modal .modal-container {
  background-color: #fff;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 35px 45px;
  position: relative;
  max-width: 800px;
  width: 94%;
  -webkit-animation: popUpIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation: popUpIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@media screen and (max-width: 767px) {
  .modal .modal-container {
    padding: 20px 22px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .modal .modal-container {
    margin: 6% auto;
    position: absolute;
    top: 0;
  }
}
.modal .modal-container.small {
  max-width: 450px;
}
.modal .modal-container .modal-title {
  color: #000;
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 700;
  margin: 20px 0;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modal .modal-container .modal-title {
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin-bottom: 0;
  }
}
.modal .modal-container .modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.modal .modal-container .modal-content img {
  max-width: 100%;
}
.modal .modal-container .modal-content h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.modal .modal-container .modal-content p {
  font-size: 1.4rem;
  color: #303030;
}

.modal .modal-container .modal-content ul li {
  font-size: 1.1rem;
  color: #303030;
}
@media screen and (max-width: 767px) {
  .modal .modal-container .modal-content p {
    font-size: 1.15rem;
    margin-bottom: 0;
    text-align: center;
  }
  .modal .modal-container .modal-content ul li {
	  font-size: 1rem;
	  color: #303030;
  }
}
.modal .modal-container .modal-content .input-wrapper {
  margin-bottom: 30px;
}
.modal .modal-container .modal-content.text-center {
  text-align: center;
}
.modal .modal-container .modal-footer {
  margin-top: 22px;
  text-align: center;
}
@-webkit-keyframes popUpFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popUpFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes popUpFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes popUpFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes popUpIn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes popUpIn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes popUpOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes popUpOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
}
.flows-tab-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .flows-tab-wrapper {
    margin-bottom: 75px;
  }
}
.flows-tab-wrapper .flow-item {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.flows-tab-wrapper .flow-item:before {
  background-color: #dbdbdb;
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  left: -50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.flows-tab-wrapper .flow-item:after {
  content: attr(data-flow);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #dbdbdb;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-box-shadow: 0 0 0 0 #ffdccc;
  box-shadow: 0 0 0 0 #ffdccc;
  z-index: 10;
  position: relative;
}
.flows-tab-wrapper .flow-item:first-child:before {
  width: 0;
}
.flows-tab-wrapper .flow-item span {
  position: absolute;
  top: 50px;
  left: 50%;
  text-transform: uppercase;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .flows-tab-wrapper .flow-item span {
    font-size: 0.9rem;
    text-align: center;
    top: 42px;
    white-space: normal;
  }
}
.flows-tab-wrapper .flow-item.active span,
.flows-tab-wrapper .flow-item.done span {
  color: #ff4e00;
  font-weight: 500;
}
.flows-tab-wrapper .flow-item.active:before,
.flows-tab-wrapper .flow-item.done:before {
  background-color: #ff4e00;
}
.flows-tab-wrapper .flow-item.active:after,
.flows-tab-wrapper .flow-item.done:after {
  background-color: #ff4e00;
  -webkit-box-shadow: 0 0 0 10px #ffdccc;
  box-shadow: 0 0 0 10px #ffdccc;
}
.flows-tab-wrapper .flow-item.done {
  cursor: pointer;
}
.flows-tab-wrapper .flow-item.done span {
  font-weight: 400;
}
.flows-tab-wrapper .flow-item.done:after {
  -webkit-box-shadow: none;
  box-shadow: none;
  content: "\2713";
}
.plan-options .category-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.plan-options .category-row .btn-category {
  background-color: transparent;
  border: 2px solid transparent;
  color: #666;
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 14px 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.plan-options .category-row .btn-category:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .plan-options .category-row .btn-category:not(:last-child) {
    margin-right: 5px;
    margin-bottom: 5px;
  }
}
.plan-options .category-row .btn-category.active {
  color: #fff !important;
  background-color: #ff4e00 !important;
}
.plan-options .category-row .btn-category.active .ui-selectmenu-icon {
  border-color: #fff;
}
.plan-options .category-row .btn-category.active .ui-selectmenu-button {
  background-color: #ff4e00 !important;
  border-radius: 20px;
}
.plan-options .category-row .btn-category.select {
  padding: 0;
  position: relative;
  height: 27px;
  min-width: 148px;
}
@media screen and (max-width: 767px) {
  .plan-options .category-row .btn-category.select {
    height: 25px;
  }
}
.plan-options .category-row .btn-category.select .btn-select-wrapper {
  height: 100%;
  width: 100%;
}
.plan-options
  .category-row
  .btn-category.select
  .btn-select-wrapper
  .ui-selectmenu-button {
  background-color: transparent;
  margin: 0;
  height: 100%;
  border: 0;
  padding: 6px 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.plan-options
  .category-row
  .btn-category.select
  .btn-select-wrapper
  .ui-selectmenu-button.ui-selectmenu-button-open:before {
  background-color: #fff;
  border-width: 2px;
  left: 0;
  bottom: 0;
  width: 98%;
}
.plan-options
  .category-row
  .btn-category.select
  .btn-select-wrapper
  .ui-selectmenu-button
  .ui-selectmenu-text {
  font-size: 1rem;
  line-height: 18px;
}
.plan-options
  .category-row
  .btn-category.select
  .btn-select-wrapper
  .ui-selectmenu-button
  .ui-selectmenu-icon {
  top: 5px;
}
.plan-options
  .category-row
  .btn-category.select
  .btn-select-wrapper
  .ui-selectmenu-menu {
  border-width: 2px;
  border-radius: 0 0 15px 15px;
  max-width: 148px;
  position: relative;
}
.plan-options
  .category-row
  .btn-category.select
  .btn-select-wrapper
  .ui-selectmenu-menu
  ul {
  border-radius: 0 0 10px 10px;
  color: #696969;
  font-size: 1.1rem;
  max-width: 100%;
  position: relative;
  z-index: 1;
}
.plan-options
  .category-row
  .btn-category.select
  .btn-select-wrapper
  .ui-selectmenu-menu
  ul
  li:first-child {
  padding-top: 2px;
}
.plan-options
  .category-row
  .btn-category.select
  .btn-select-wrapper
  .ui-selectmenu-menu
  ul
  li:last-child {
  padding-bottom: 3px;
}
.plan-options
  .category-row
  .btn-category.select
  .btn-select-wrapper
  .ui-selectmenu-menu
  ul
  .ui-menu-item-wrapper {
  padding: 10px 14px 6px 14px;
}
.plan-options .option-row {
  text-align: center;
}
.plan-options .option-row .option-item {
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  margin: 30px;
  padding: 30px 20px 20px 20px;
  position: relative;
  text-align: center;
  vertical-align: top;
  width: calc((100% / 3) - 60px - 4px);
}
@media screen and (max-width: 767px) {
  .plan-options .option-row .option-item {
    margin-bottom: 10px;
    width: 80%;
    max-width: 280px;
  }
}
.plan-options .option-row .option-item[data-month="No contract"] .btn-select,
.plan-options .option-row .option-item[data-month="No contract"] .hot {
  background-color: #ffc83e;
}
.plan-options .option-row .option-item[data-month="No contract"] .desc-title,
.plan-options .option-row .option-item[data-month="No contract"] .months,
.plan-options .option-row .option-item[data-month="No contract"] a {
  color: #ffc83e;
}
.plan-options .option-row .option-item[data-month="No contract"] ul {
  list-style-image: url(../img/plan/tick_0.png);
}
.plan-options .option-row .option-item[data-month="No contract"] .learn {
  color: #696969;
}
.plan-options .option-row .option-item[data-month="No contract"] .learn:hover {
  color: #ffc83e;
}
.plan-options
  .option-row
  .option-item[data-month="No contract"]
  .learn:hover:before {
  border-bottom-color: #ffc83e;
  border-right-color: #ffc83e;
}
.plan-options .option-row .option-item[data-month="12"] .btn-select,
.plan-options .option-row .option-item[data-month="12"] .hot {
  background-color: #ffa300;
}
.plan-options .option-row .option-item[data-month="12"] .desc-title,
.plan-options .option-row .option-item[data-month="12"] .months,
.plan-options .option-row .option-item[data-month="12"] a {
  color: #ffa300;
}
.plan-options .option-row .option-item[data-month="12"] ul {
  list-style-image: url(../img/plan/tick_12.png);
}
.plan-options .option-row .option-item[data-month="12"] .learn {
  color: #696969;
}
.plan-options .option-row .option-item[data-month="12"] .learn:hover {
  color: #ffa300;
}
.plan-options .option-row .option-item[data-month="12"] .learn:hover:before {
  border-bottom-color: #ffa300;
  border-right-color: #ffa300;
}
.plan-options .option-row .option-item[data-month="24"] .btn-select,
.plan-options .option-row .option-item[data-month="24"] .hot {
  background-color: #ff8700;
}
.plan-options .option-row .option-item[data-month="24"] .desc-title,
.plan-options .option-row .option-item[data-month="24"] .months,
.plan-options .option-row .option-item[data-month="24"] a {
  color: #ff8700;
}
.plan-options .option-row .option-item[data-month="24"] ul {
  list-style-image: url(../img/plan/tick_24.png);
}
.plan-options .option-row .option-item[data-month="24"] .learn {
  color: #696969;
}
.plan-options .option-row .option-item[data-month="24"] .learn:hover {
  color: #ff8700;
}
.plan-options .option-row .option-item[data-month="24"] .learn:hover:before {
  border-bottom-color: #ff8700;
  border-right-color: #ff8700;
}
.plan-options .option-row .option-item[data-month="36"] .btn-select,
.plan-options .option-row .option-item[data-month="36"] .hot {
  background-color: #ff5a00;
}
.plan-options .option-row .option-item[data-month="36"] .desc-title,
.plan-options .option-row .option-item[data-month="36"] .months,
.plan-options .option-row .option-item[data-month="36"] a {
  color: #ff5a00;
}
.plan-options .option-row .option-item[data-month="36"] ul {
  list-style-image: url(../img/plan/tick_36.png);
}
.plan-options .option-row .option-item[data-month="36"] .learn {
  color: #696969;
}
.plan-options .option-row .option-item[data-month="36"] .learn:hover {
  color: #ff5a00;
}
.plan-options .option-row .option-item[data-month="36"] .learn:hover:before {
  border-bottom-color: #ff5a00;
  border-right-color: #ff5a00;
}



.plan-options .option-row .option-item[data-month="60"] .btn-select,
.plan-options .option-row .option-item[data-month="60"] .hot {
  background-color: #E64500;
}
.plan-options .option-row .option-item[data-month="60"] .desc-title,
.plan-options .option-row .option-item[data-month="60"] .months,
.plan-options .option-row .option-item[data-month="60"] a {
  color: #E64500;
}
.plan-options .option-row .option-item[data-month="60"] ul {
  list-style-image: url(../img/plan/tick_36.png);
}
.plan-options .option-row .option-item[data-month="60"] .learn {
  color: #696969;
}
.plan-options .option-row .option-item[data-month="60"] .learn:hover {
  color: #E64500;
}
.plan-options .option-row .option-item[data-month="60"] .learn:hover:before {
  border-bottom-color: #E64500;
  border-right-color: #E64500;
}



.plan-options .option-row .option-item .hot {
  border-radius: 4px;
  background-color: #ff8700;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  height: 30px;
  letter-spacing: 1px;
  padding: 0 20px;
  position: absolute;
  left: 50%;
  top: -15px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-options .option-row .option-item img {
  max-width: 100%;
}
.plan-options .option-row .option-item img.plan-icon {
  width: 94px;
}
.plan-options .option-row .option-item .months {
  color: #ff4e00;
  font-size: 1.2rem;
  text-transform: capitalize;
}
.plan-options .option-row .option-item .title {
  font-size: 1.8rem;
  margin-bottom: 5px;
  text-transform: uppercase;
  min-height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.plan-options .option-row .option-item .price-wrapper {
  margin-bottom: 15px;
}
.plan-options .option-row .option-item .price-wrapper.price-day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.plan-options .option-row .option-item .price-wrapper .price {
  color: #000;
  font-size: 2.2rem;
  font-weight: 700;
}
.plan-options .option-row .option-item .price-wrapper .price-unit {
  color: #000;
  font-size: 1.4rem;
}
.plan-options .option-row .option-item .price-wrapper .plus-icon {
  color: #000;
  margin: 0 15px;
}
.plan-options .option-row .option-item .learn-plan-wrapper {
  display: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 5px;
  width: 100%;
}
.plan-options .option-row .option-item .learn-plan-wrapper .desc-title {
  font-size: 1.2rem;
  font-weight: 500;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.plan-options .option-row .option-item .learn-plan-wrapper .desc {
  color: #000;
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
}
.plan-options .option-row .option-item .learn-plan-wrapper ul {
  font-size: 0.9rem;
  line-height: 1.5rem;
  text-align: left;
  padding-left: 21px;
  height: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.plan-options .option-row .option-item .learn-plan-wrapper .more-info {
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 20px;
}
.plan-options .option-row .option-item .learn-plan-wrapper a {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 8px;
  text-decoration: underline;
}
.plan-options .option-row .option-item .btn-select {
  background-color: #ff8700;
  border: 0;
  border-radius: 8px;
  color: #fff;
  display: block;
  font-size: 1.2rem;
  margin: 0 auto 10px auto;
  padding: 8px;
  position: relative;
  width: 50%;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.plan-options .option-row .option-item .btn-select:hover {
  -webkit-box-shadow: 0 3px 7px #cfcfcf;
  box-shadow: 0 3px 7px #cfcfcf;
}
.plan-options .option-row .option-item .learn {
  color: #696969;
  display: inline-block;
  padding: 6px 18px 6px 6px;
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.plan-options .option-row .option-item .learn:before {
  border-bottom: 1px solid;
  border-bottom-color: #696969;
  border-right: 1px solid;
  border-right-color: #696969;
  content: "";
  margin-left: -7px;
  position: absolute;
  top: 9px;
  right: 2px;
  height: 7px;
  width: 7px;
  z-index: 1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.plan-options .option-row .option-item .learn.active:before {
  -webkit-transform: translateY(4px) rotate(585deg);
  -ms-transform: translateY(4px) rotate(585deg);
  transform: translateY(4px) rotate(585deg);
}
.plan-wrapper {
  position: relative;
}
.plan-wrapper .plan-box {
  background-color: #f7f7f7;
  border-radius: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  min-height: 200px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .plan-wrapper .plan-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 0;
  }
}
.plan-wrapper .plan-box .plan-item {
  -ms-flex-preferred-size: calc(100% / 4);
  flex-basis: calc(100% / 4);
  padding: 40px 20px;
}
@media screen and (max-width: 767px) {
  .plan-wrapper .plan-box .plan-item {
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
    padding: 6px 20px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .plan-wrapper .plan-box .plan-item {
    padding: 6px 32px;
  }
}
.plan-wrapper .plan-box .plan-item:last-child {
  border-left: 2px solid #ececec;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .plan-wrapper .plan-box .plan-item:last-child {
    border-left: 0;
    padding: 6px 20px;
    -ms-flex-preferred-size: 10%;
    flex-basis: 10%;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .plan-wrapper .plan-box .plan-item:last-child {
    padding: 6px 32px;
  }
}
.plan-wrapper .plan-box .plan-item h3 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.6rem;
}
@media screen and (max-width: 767px) {
  .plan-wrapper .plan-box .plan-item h3 {
    line-height: 1.6rem;
  }
}
.plan-wrapper .plan-box .plan-item h4 {
  font-size: 1.5rem;
  text-transform: uppercase;
}
.plan-wrapper .plan-box .plan-item p {
  font-size: 1rem;
  line-height: 22px;
  margin-top: 8px;
}
.plan-wrapper .plan-box .btn-edit-plan {
  background-color: transparent;
  border: 0;
}
.plan-wrapper .plan-box.options {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 30px 50px;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .plan-wrapper .plan-box.options {
    padding: 50px 20px;
  }
}
.padding-side {
  padding: 0 36px;
}
@media screen and (max-width: 767px) {
  .padding-side {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .padding-side.plan-wrapper {
    padding: 0;
  }
}
.animation-wrapper {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .animation-wrapper {
    display: none;
  }
}
.animation-wrapper .steps-wrapper {
  margin: auto;
  max-width: 1000px;
  width: 100%;
  position: relative;
  height: 400px;
}
.animation-wrapper .active {
  opacity: 1 !important;
}
.animation-wrapper .plus-sign {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 70px;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.animation-wrapper .phone-animation > div {
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.animation-wrapper .phone-animation .phone {
  width: 250px;
  height: 250px;
  top: 50px;
  right: 0;
}
.animation-wrapper .phone-animation .small-plus-sign {
  width: 30px;
  height: 30px;
  top: 280px;
  right: 20px;
}
.animation-wrapper .phone-animation .small-black-circle {
  width: 24px;
  height: 24px;
  right: 255px;
  top: 255px;
}
.animation-wrapper .phone-animation .small-orange-circle {
  width: 30px;
  height: 30px;
  right: 240px;
  top: 240px;
}
.animation-wrapper .phone-animation .big-orange-circle {
  width: 36px;
  height: 36px;
  top: 20px;
  right: 30px;
}
.animation-wrapper .phone-animation .big-orange-circle-light {
  width: 100px;
  height: 100px;
  top: 200px;
  right: 50px;
}
.animation-wrapper .phone-animation .three-dots {
  width: 50px;
  height: 12px;
  top: 99px;
  right: 123px;
}
.animation-wrapper .phone-animation .three-lines {
  width: 40px;
  height: 40px;
  top: 20px;
  right: 60px;
}
.animation-wrapper .check-icon {
  width: 380px;
  height: 250px;
  top: 30px;
  right: 0;
  position: absolute;
  opacity: 0;
  -webkit-transform: scale(0.2);
  -ms-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.animation-wrapper .check-icon.active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.animation-wrapper .thumbs-up {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 100px;
}
@media screen and (max-width: 767px) {
  .animation-wrapper .thumbs-up {
    top: 0;
    right: 20px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .animation-wrapper .thumbs-up {
    top: 100px;
    right: 115px;
  }
}
.animation-wrapper .thumbs-up img {
  width: 270px;
}
.animation-wrapper .percentage-icon {
  width: 280px;
  height: 250px;
  top: 20px;
  right: 50px;
  position: absolute;
  opacity: 0;
  -webkit-transform: scale(0.2);
  -ms-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.animation-wrapper .percentage-icon.active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.steps-existing[data-existing="true"] .animation-wrapper .plus-sign {
  -webkit-transform: translateX(-250px) translateY(100px);
  -ms-transform: translateX(-250px) translateY(100px);
  transform: translateX(-250px) translateY(100px);
}
.steps-existing[data-existing="true"]
  .animation-wrapper
  .phone-animation
  .small-plus-sign {
  -webkit-transform: translateY(-200px);
  -ms-transform: translateY(-200px);
  transform: translateY(-200px);
}
.steps-existing[data-existing="true"]
  .animation-wrapper
  .phone-animation
  .small-black-circle {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}
.steps-existing[data-existing="true"]
  .animation-wrapper
  .phone-animation
  .small-black-circle[data-stage="4"] {
  -webkit-transform: translateX(0) translateY(-200px);
  -ms-transform: translateX(0) translateY(-200px);
  transform: translateX(0) translateY(-200px);
}
.steps-existing[data-existing="true"]
  .animation-wrapper
  .phone-animation
  .small-black-circle[data-stage="5"] {
  -webkit-transform: translateX(105px) translateY(-10px);
  -ms-transform: translateX(105px) translateY(-10px);
  transform: translateX(105px) translateY(-10px);
}
.steps-existing[data-existing="true"]
  .animation-wrapper
  .phone-animation
  .small-orange-circle {
  -webkit-transform: translateX(68px) translateY(-150px) scale(0.4);
  -ms-transform: translateX(68px) translateY(-150px) scale(0.4);
  transform: translateX(68px) translateY(-150px) scale(0.4);
}
.steps-existing[data-existing="true"]
  .animation-wrapper
  .phone-animation
  .small-orange-circle[data-stage="4"] {
  -webkit-transform: translateX(0) translateY(-186px) scale(0.9);
  -ms-transform: translateX(0) translateY(-186px) scale(0.9);
  transform: translateX(0) translateY(-186px) scale(0.9);
}
.steps-existing[data-existing="true"]
  .animation-wrapper
  .phone-animation
  .small-orange-circle[data-stage="5"] {
  -webkit-transform: translateX(-20px) translateY(-166px) scale(1.1);
  -ms-transform: translateX(-20px) translateY(-166px) scale(1.1);
  transform: translateX(-20px) translateY(-166px) scale(1.1);
}
.steps-existing[data-existing="true"]
  .animation-wrapper
  .phone-animation
  .small-orange-circle[data-stage="6"] {
  -webkit-transform: translateX(28rem) translateY(23rem) scale(2);
  -ms-transform: translateX(28rem) translateY(23rem) scale(2);
  transform: translateX(28rem) translateY(23rem) scale(2);
}
.steps-existing[data-existing="true"]
  .animation-wrapper
  .phone-animation
  .big-orange-circle {
  -webkit-transform: translateX(-200px) translateY(240px);
  -ms-transform: translateX(-200px) translateY(240px);
  transform: translateX(-200px) translateY(240px);
}
.steps-existing[data-existing="true"]
  .animation-wrapper
  .phone-animation
  .big-orange-circle[data-stage="4"] {
  -webkit-transform: translateX(-80px) translateY(140px);
  -ms-transform: translateX(-80px) translateY(140px);
  transform: translateX(-80px) translateY(140px);
}
.steps-existing[data-existing="true"]
  .animation-wrapper
  .phone-animation
  .big-orange-circle[data-stage="5"] {
  -webkit-transform: translateX(0) translateY(0) scale(3);
  -ms-transform: translateX(0) translateY(0) scale(3);
  transform: translateX(0) translateY(0) scale(3);
}
.steps-existing[data-existing="true"]
  .animation-wrapper
  .phone-animation
  .big-orange-circle[data-stage="6"] {
  -webkit-transform: translateX(21rem) translateY(29rem) scale(3);
  -ms-transform: translateX(21rem) translateY(29rem) scale(3);
  transform: translateX(21rem) translateY(29rem) scale(3);
}
.steps-existing[data-existing="true"]
  .animation-wrapper
  .phone-animation
  .big-orange-circle-light[data-stage="4"] {
  -webkit-transform: translateX(-160px) translateY(-10px);
  -ms-transform: translateX(-160px) translateY(-10px);
  transform: translateX(-160px) translateY(-10px);
}
.steps-existing[data-existing="true"]
  .animation-wrapper
  .phone-animation
  .big-orange-circle-light[data-stage="5"] {
  -webkit-transform: translateX(-80px) translateY(-10px) scale(0.5);
  -ms-transform: translateX(-80px) translateY(-10px) scale(0.5);
  transform: translateX(-80px) translateY(-10px) scale(0.5);
}
.steps-existing[data-existing="true"]
  .animation-wrapper
  .phone-animation
  .big-orange-circle-light[data-stage="6"] {
  -webkit-transform: translateX(9rem) translateY(2rem) scale(2);
  -ms-transform: translateX(9rem) translateY(2rem) scale(2);
  transform: translateX(9rem) translateY(2rem) scale(2);
}
.steps-existing[data-existing="false"]
  .animation-wrapper
  .plus-sign[data-stage="3"] {
  -webkit-transform: translateX(-250px) translateY(30px);
  -ms-transform: translateX(-250px) translateY(30px);
  transform: translateX(-250px) translateY(30px);
}
.steps-existing[data-existing="false"]
  .animation-wrapper
  .plus-sign[data-stage="4"] {
  -webkit-transform: translateX(-250px) translateY(100px);
  -ms-transform: translateX(-250px) translateY(100px);
  transform: translateX(-250px) translateY(100px);
}
.steps-existing[data-existing="false"]
  .animation-wrapper
  .plus-sign[data-stage="5"] {
  -webkit-transform: translateX(-170px) translateY(160px);
  -ms-transform: translateX(-170px) translateY(160px);
  transform: translateX(-170px) translateY(160px);
}
.steps-existing[data-existing="false"]
  .animation-wrapper
  .phone-animation
  .small-plus-sign[data-stage="4"] {
  -webkit-transform: translateY(-200px);
  -ms-transform: translateY(-200px);
  transform: translateY(-200px);
}
.steps-existing[data-existing="false"]
  .animation-wrapper
  .phone-animation
  .small-black-circle[data-stage="4"] {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}
.steps-existing[data-existing="false"]
  .animation-wrapper
  .phone-animation
  .small-black-circle[data-stage="5"] {
  -webkit-transform: translateX(0) translateY(-200px);
  -ms-transform: translateX(0) translateY(-200px);
  transform: translateX(0) translateY(-200px);
}
.steps-existing[data-existing="false"]
  .animation-wrapper
  .phone-animation
  .small-orange-circle[data-stage="4"] {
  -webkit-transform: translateX(68px) translateY(-150px) scale(0.4);
  -ms-transform: translateX(68px) translateY(-150px) scale(0.4);
  transform: translateX(68px) translateY(-150px) scale(0.4);
}
.steps-existing[data-existing="false"]
  .animation-wrapper
  .phone-animation
  .small-orange-circle[data-stage="5"] {
  -webkit-transform: translateX(0) translateY(-186px) scale(0.9);
  -ms-transform: translateX(0) translateY(-186px) scale(0.9);
  transform: translateX(0) translateY(-186px) scale(0.9);
}
.steps-existing[data-existing="false"]
  .animation-wrapper
  .phone-animation
  .small-orange-circle[data-stage="6"],
.steps-existing[data-existing="false"]
  .animation-wrapper
  .phone-animation
  .small-orange-circle[data-stage="7"] {
  -webkit-transform: translateX(28rem) translateY(23rem) scale(2);
  -ms-transform: translateX(28rem) translateY(23rem) scale(2);
  transform: translateX(28rem) translateY(23rem) scale(2);
}
.steps-existing[data-existing="false"]
  .animation-wrapper
  .phone-animation
  .big-orange-circle[data-stage="4"] {
  -webkit-transform: translateX(-200px) translateY(240px);
  -ms-transform: translateX(-200px) translateY(240px);
  transform: translateX(-200px) translateY(240px);
}
.steps-existing[data-existing="false"]
  .animation-wrapper
  .phone-animation
  .big-orange-circle[data-stage="5"] {
  -webkit-transform: translateX(-80px) translateY(140px);
  -ms-transform: translateX(-80px) translateY(140px);
  transform: translateX(-80px) translateY(140px);
}
.steps-existing[data-existing="false"]
  .animation-wrapper
  .phone-animation
  .big-orange-circle[data-stage="6"],
.steps-existing[data-existing="false"]
  .animation-wrapper
  .phone-animation
  .big-orange-circle[data-stage="7"] {
  -webkit-transform: translateX(21rem) translateY(29rem) scale(3);
  -ms-transform: translateX(21rem) translateY(29rem) scale(3);
  transform: translateX(21rem) translateY(29rem) scale(3);
}
.steps-existing[data-existing="false"]
  .animation-wrapper
  .phone-animation
  .big-orange-circle-light[data-stage="5"] {
  -webkit-transform: translateX(-160px) translateY(-10px);
  -ms-transform: translateX(-160px) translateY(-10px);
  transform: translateX(-160px) translateY(-10px);
}
.steps-existing[data-existing="false"]
  .animation-wrapper
  .phone-animation
  .big-orange-circle-light[data-stage="6"],
.steps-existing[data-existing="false"]
  .animation-wrapper
  .phone-animation
  .big-orange-circle-light[data-stage="7"] {
  -webkit-transform: translateX(9rem) translateY(2rem) scale(2);
  -ms-transform: translateX(9rem) translateY(2rem) scale(2);
  transform: translateX(9rem) translateY(2rem) scale(2);
} /*!
 * Datepicker v1.0.9
 * https://fengyuanchen.github.io/datepicker
 *
 * Copyright 2014-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2019-09-21T06:57:30.334Z
 */
.datepicker-container {
  background-color: #fff;
  direction: ltr;
  font-size: 12px;
  left: 0;
  line-height: 30px;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: calc(270px + 4rem);
  z-index: -1;
  border: 1px solid #dbdbdb;
  padding: 1rem 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .datepicker-container {
    width: calc(270px + 2rem);
    padding: 4px 10px;
  }
}
.datepicker-container:after,
.datepicker-container:before {
  border: 5px solid transparent;
  content: " ";
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}
.datepicker-dropdown {
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 3px 6px #ccc;
  box-shadow: 0 3px 6px #ccc;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: absolute;
  z-index: 1;
}
.datepicker-inline {
  position: static;
}
.datepicker-top-left,
.datepicker-top-right {
  border-top-color: #39f;
}
.datepicker-top-left:after,
.datepicker-top-left:before {
  border-top: 0;
  left: 10px;
  top: -5px;
}
.datepicker-top-right:after,
.datepicker-top-right:before {
  border-top: 0;
  left: 10px;
  top: -5px;
}
.datepicker-top-left:before,
.datepicker-top-right:before {
  border-bottom-color: #39f;
}
.datepicker-top-left:after,
.datepicker-top-right:after {
  border-bottom-color: #fff;
  top: -4px;
}
.datepicker-bottom-left,
.datepicker-bottom-right {
  border-bottom-color: #39f;
}
.datepicker-bottom-left:after,
.datepicker-bottom-left:before {
  border-bottom: 0;
  bottom: -5px;
  left: 10px;
}
.datepicker-bottom-right:after,
.datepicker-bottom-right:before {
  border-bottom: 0;
  bottom: -5px;
  left: 10px;
}
.datepicker-bottom-left:before,
.datepicker-bottom-right:before {
  border-top-color: #39f;
}
.datepicker-bottom-left:after {
  border-top-color: #fff;
  bottom: -4px;
}
.datepicker-bottom-right:after {
  border-top-color: #fff;
  bottom: -4px;
  left: auto;
  right: 10px;
}
.datepicker-bottom-right:before {
  left: auto;
  right: 10px;
}
.datepicker-top-right:after,
.datepicker-top-right:before {
  left: auto;
  right: 10px;
}
.datepicker-panel > ul {
  margin: 0;
  padding: 0;
  width: 102%;
}
.datepicker-panel > ul:not([data-view]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.datepicker-panel > ul:not([data-view]) > li {
  margin: 0;
}
.datepicker-panel > ul:after,
.datepicker-panel > ul:before {
  content: " ";
  display: table;
}
.datepicker-panel > ul:after {
  clear: both;
}
.datepicker-panel > ul > li {
  background-color: #fff;
  cursor: pointer;
  float: left;
  height: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 30px;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 10px;
}
.datepicker-panel > ul > li:nth-child(7n) {
  margin-right: 0;
}
.datepicker-panel > ul > li:hover {
  background-color: #ff9566;
  color: #fff;
}
.datepicker-panel > ul > li.muted {
  color: #999;
}
.datepicker-panel > ul > li.muted:hover {
  color: #999;
}
.datepicker-panel > ul > li.highlighted {
  background-color: #ccc;
  color: #fff;
}
.datepicker-panel > ul > li.highlighted:hover {
  background-color: #ff9566;
}
.datepicker-panel > ul > li.picked {
  color: #fff;
  background-color: #ff4e00;
}
.datepicker-panel > ul > li.picked:hover {
  color: #fff;
}
.datepicker-panel > ul > li.disabled {
  background-color: #fff;
  color: #ccc;
  cursor: default;
}
.datepicker-panel > ul > li.disabled:hover {
  background-color: #fff;
  color: #ccc;
  cursor: default;
}
.datepicker-panel > ul > li.disabled.highlighted,
.datepicker-panel > ul > li.disabled:hover.highlighted {
  background-color: #e5f2ff;
}
.datepicker-panel > ul > li[data-view="month next"],
.datepicker-panel > ul > li[data-view="month prev"],
.datepicker-panel > ul > li[data-view="year next"],
.datepicker-panel > ul > li[data-view="year prev"],
.datepicker-panel > ul > li[data-view="years next"],
.datepicker-panel > ul > li[data-view="years prev"],
.datepicker-panel > ul > li[data-view="next"] {
  font-size: 18px;
  color: #ff4e00;
}
.datepicker-panel > ul > li[data-view="month current"],
.datepicker-panel > ul > li[data-view="year current"],
.datepicker-panel > ul > li[data-view="years current"] {
  width: 150px;
}
.datepicker-panel > ul[data-view="months"] > li {
  margin-right: 15px;
}
.datepicker-panel > ul[data-view="months"] > li:nth-child(4n) {
  margin-right: 0;
}
.datepicker-panel > ul[data-view="months"] > li,
.datepicker-panel > ul[data-view="years"] > li {
  height: 52.5px;
  line-height: 52.5px;
  width: 52.5px;
}
.datepicker-panel > ul[data-view="week"] {
  border-bottom: 1px solid #ccc;
  margin-bottom: 4px;
}
.datepicker-panel > ul[data-view="week"] > li {
  pointer-events: none;
  cursor: default;
}
.datepicker-panel > ul[data-view="week"] > li:hover {
  cursor: default;
}
.datepicker-hide {
  display: none;
}
.ui-button {
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: visible;
}
.ui-selectmenu-button {
  width: 100%;
  border: 1.3px solid #dbdbdb;
  border-radius: 10px;
  background: #fff;
  font-size: 1.3rem;
  padding: 9px 20px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  text-align: left;
  font-family: azo_sans, sans-serif;
}
.ui-selectmenu-button:focus {
  outline: 0;
  border-color: #ff4e00;
}
.ui-selectmenu-button .ui-selectmenu-text {
  display: block;
  margin-right: 15px;
  height: 23px;
  line-height: 26px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.ui-selectmenu-button.ui-selectmenu-button-open:before {
  content: "";
  position: absolute;
  width: calc(100% + 1px);
  border-left: 1px solid #ff4e00;
  border-right: 1px solid #ff4e00;
  bottom: -4px;
  left: -1px;
  right: 0;
  height: 12px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .ui-selectmenu-button.ui-selectmenu-button-open:before {
    width: calc(100% - 1px);
  }
}
.ui-selectmenu-button.ui-selectmenu-button-open .ui-selectmenu-icon {
  -webkit-transform: rotate(-135deg) translate(-5px, -5px);
  -ms-transform: rotate(-135deg) translate(-5px, -5px);
  transform: rotate(-135deg) translate(-5px, -5px);
}
.ui-selectmenu-icon {
  border-bottom: 1.5px solid #a4a4a4;
  border-right: 1.5px solid #a4a4a4;
  content: "";
  position: absolute;
  right: 10px;
  top: 14px;
  height: 8px;
  width: 8px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.ui-selectmenu-menu {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  z-index: 4;
  font-family: azo_sans, sans-serif;
  background-color: #fff;
  border: 1px solid #ff4e00;
  border-top: 0;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
.ui-selectmenu-menu.ui-selectmenu-open {
  display: block;
}
.ui-selectmenu-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: transparent;
  border: 0;
  border-radius: 0 0 10px 10px;
  font-size: 1.3rem;
  max-height: 200px;
  max-width: 100%;
  overflow-y: auto;
}
.ui-selectmenu-menu ul::-webkit-scrollbar {
  width: 5px;
}
.ui-selectmenu-menu ul::-webkit-scrollbar-track {
  background-color: #dbdbdb;
  border-radius: 100px;
}
.ui-selectmenu-menu ul::-webkit-scrollbar-thumb {
  background: #ff4e00;
  border-radius: 10px;
}
.ui-selectmenu-menu ul .ui-menu-item-wrapper {
  padding: 7px 21px;
  cursor: pointer;
}
.ui-selectmenu-menu ul .ui-state-disabled {
  display: none;
}
.ui-selectmenu-menu ul li:hover {
  background-color: #ff4e00;
  color: #fff;
}
.select-field .ui-selectmenu-menu {
  max-width: 298px;
}
@media screen and (max-width: 767px) {
  .select-field .ui-selectmenu-menu {
    max-width: 99%;
  }
}
.select-field.small .ui-selectmenu-menu {
  max-width: 103px;
}
@media screen and (max-width: 767px) {
  .select-field.small .ui-selectmenu-menu {
    max-width: 99%;
  }
}
.select-field.medium .ui-selectmenu-menu {
  max-width: 198px;
}
@media screen and (max-width: 767px) {
  .select-field.medium .ui-selectmenu-menu {
    max-width: 99%;
  }
}
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}
body {
  font-size: 0.8rem;
  padding-top: 50px;
}
body.menu-opened {
  overflow: hidden;
}
@media (min-width: 992px) {
  body {
    padding-top: 50px;
  }
}
#navbar {
  z-index: 10000;
  padding: 0;
}
.navbar {
  background-color: #ff3200;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.gray {
  background-color: #f5f5f5;
}
.navbar.orange {
  background-color: #fc6921;
}
.navbar.bg-light {
  background-color: #fff !important;
  -webkit-box-shadow: 0 2px 5px rgba(55, 55, 55, 0.05);
  box-shadow: 0 2px 5px rgba(55, 55, 55, 0.05);
}
.navbar .normal-nav-bar {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.navbar .responsive-nav-bar {
  display: none;
  margin-left: auto;
}
.navbar .responsive-nav-bar .infobox {
  position: relative;
  top: 0;
  right: 10px;
  height: 50px;
}
.navbar .responsive-nav-bar .infobox .menu-toggle {
  font-size: 0;
  margin-left: 10px;
  width: 25px;
  height: 3px;
  background-color: #fff;
  position: relative;
}
.navbar.gray .responsive-nav-bar .infobox .menu-toggle {
  background-color: #ff8700;
}
.navbar.bg-light .responsive-nav-bar .infobox .menu-toggle {
  background-color: #ff3200;
}
.navbar.gray.bg-light .responsive-nav-bar .infobox .menu-toggle {
  background-color: #ff8700;
}
.navbar .responsive-nav-bar .infobox .menu-toggle:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.gray .responsive-nav-bar .infobox .menu-toggle:before {
  background-color: #ff8700;
}
.navbar.bg-light .responsive-nav-bar .infobox .menu-toggle:before {
  background-color: #ff3200;
}
.navbar.gray.bg-light .responsive-nav-bar .infobox .menu-toggle:before {
  background-color: #ff8700;
}
.navbar .responsive-nav-bar .infobox .menu-toggle:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  -webkit-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.gray .responsive-nav-bar .infobox .menu-toggle:after {
  background-color: #ff8700;
}
.navbar.bg-light .responsive-nav-bar .infobox .menu-toggle:after {
  background-color: #ff3200;
}
.navbar.gray.bg-light .responsive-nav-bar .infobox .menu-toggle:after {
  background-color: #ff8700;
}
.navbar .responsive-nav-bar .infobox .menu-toggle.active,
.navbar.gray.bg-light .responsive-nav-bar .infobox .menu-toggle.active {
  background-color: transparent;
}
.navbar .responsive-nav-bar .infobox .menu-toggle.active:before {
  -webkit-transform: rotate(-45deg) translate(1px, -1px);
  -ms-transform: rotate(-45deg) translate(1px, -1px);
  transform: rotate(-45deg) translate(1px, -1px);
}
.navbar .responsive-nav-bar .infobox .menu-toggle.active:after {
  -webkit-transform: rotate(45deg) translate(-1px, 0);
  -ms-transform: rotate(45deg) translate(-1px, 0);
  transform: rotate(45deg) translate(-1px, 0);
}
.navbar .responsive-nav-bar ul.nav-list {
  list-style: none;
  margin: 0;
  height: calc(100% - 50px);
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  width: 100%;
  overflow: auto;
  background-color: #ff3200;
  padding: 30px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.gray .responsive-nav-bar ul.nav-list {
  background-color: #f5f5f5;
}
.navbar.orange .responsive-nav-bar ul.nav-list {
  background-color: #fc6921;
}
.navbar.bg-light .responsive-nav-bar ul.nav-list,
.navbar.gray.bg-light .responsive-nav-bar ul.nav-list {
  background-color: #fff;
}
.navbar .responsive-nav-bar ul.nav-list .nav-item {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  min-height: 50px;
  line-height: 50px;
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  transform: translateX(-100px);
  opacity: 0;
}
.navbar.gray .responsive-nav-bar ul.nav-list .nav-item {
  color: #ff8700;
  border-bottom: 1px solid rgba(255, 135, 0, 0.8);
}
.navbar.bg-light .responsive-nav-bar ul.nav-list .nav-item {
  color: #ff3200;
  border-bottom: 1px solid rgba(255, 50, 0, 0.8);
}
.navbar.gray.bg-light .responsive-nav-bar ul.nav-list .nav-item {
  color: #ff8700;
  border-bottom: 1px solid rgba(255, 135, 0, 0.8);
}
.navbar .responsive-nav-bar ul.nav-list.active .nav-item {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.navbar .responsive-nav-bar ul.nav-list .nav-item:nth-child(1) {
  -webkit-transition-delay: 50ms;
  -o-transition-delay: 50ms;
  transition-delay: 50ms;
}
.navbar .responsive-nav-bar ul.nav-list .nav-item:nth-child(2) {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.navbar .responsive-nav-bar ul.nav-list .nav-item:nth-child(3) {
  -webkit-transition-delay: 150ms;
  -o-transition-delay: 150ms;
  transition-delay: 150ms;
}
.navbar .responsive-nav-bar ul.nav-list .nav-item:nth-child(4) {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.navbar .responsive-nav-bar ul.nav-list .nav-item:nth-child(5) {
  -webkit-transition-delay: 250ms;
  -o-transition-delay: 250ms;
  transition-delay: 250ms;
}
.navbar .responsive-nav-bar ul.nav-list .nav-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.8);
}
.navbar.gray .responsive-nav-bar ul.nav-list .nav-item:first-child {
  border-top: 1px solid rgba(255, 135, 0, 0.8);
}
.navbar.bg-light .responsive-nav-bar ul.nav-list .nav-item:first-child {
  border-top: 1px solid rgba(255, 50, 0, 0.8);
}
.navbar.gray.bg-light .responsive-nav-bar ul.nav-list .nav-item:first-child {
  border-top: 1px solid rgba(255, 135, 0, 0.8);
}
.navbar .responsive-nav-bar ul.nav-list .nav-item .nav-link {
  color: #fff;
  padding: 0;
  display: inline;
}
.navbar.gray .responsive-nav-bar ul.nav-list .nav-item .nav-link {
  color: #ff8700;
}
.navbar.bg-light .responsive-nav-bar ul.nav-list .nav-item .nav-link {
  color: #ff3200;
}
.navbar.gray.bg-light .responsive-nav-bar ul.nav-list .nav-item .nav-link {
  color: #ff8700;
}
.navbar .responsive-nav-bar ul.nav-list .nav-item .expand {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 50px;
  color: #fff;
  text-decoration: none;
}
.navbar.gray .responsive-nav-bar ul.nav-list .nav-item .expand {
  color: #ff8700;
}
.navbar.bg-light .responsive-nav-bar ul.nav-list .nav-item .expand {
  color: #ff3200;
}
.navbar.gray.bg-light .responsive-nav-bar ul.nav-list .nav-item .expand {
  color: #ff8700;
}
.navbar .responsive-nav-bar ul.nav-list .nav-item .expand:before {
  content: "\f067";
  font-family: FontAwesome;
  position: absolute;
  top: 25px;
  right: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  text-decoration: none;
}
.navbar.gray .responsive-nav-bar ul.nav-list .nav-item .expand:before {
  color: #ff8700;
}
.navbar.bg-light .responsive-nav-bar ul.nav-list .nav-item .expand:before {
  color: #ff3200;
}
.navbar.gray.bg-light .responsive-nav-bar ul.nav-list .nav-item .expand:before {
  color: #ff8700;
}
.navbar .responsive-nav-bar ul.nav-list .nav-item .expand.opened:before {
  content: "\f068";
}
.navbar .responsive-nav-bar ul.nav-list .nav-item .dropdown {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0 0 0 20px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.navbar.gray .responsive-nav-bar ul.nav-list .nav-item .dropdown {
  color: #ff8700;
  border-top: 1px solid rgba(255, 135, 0, 0.5);
}
.navbar.bg-light .responsive-nav-bar ul.nav-list .nav-item .dropdown {
  color: #ff3200;
  border-top: 1px solid rgba(255, 50, 0, 0.5);
}
.navbar.gray.bg-light .responsive-nav-bar ul.nav-list .nav-item .dropdown {
  color: #ff8700;
  border-top: 1px solid rgba(255, 135, 0, 0.5);
}
.navbar .responsive-nav-bar ul.nav-list .nav-item .dropdown a {
  color: #fff;
  text-transform: uppercase;
}
.navbar.gray .responsive-nav-bar ul.nav-list .nav-item .dropdown a {
  color: #ff8700;
}
.navbar.bg-light .responsive-nav-bar ul.nav-list .nav-item .dropdown a {
  color: #ff3200;
}
.navbar.gray.bg-light .responsive-nav-bar ul.nav-list .nav-item .dropdown a {
  color: #ff8700;
}
.navbar .responsive-nav-bar .dropdown.active {
  opacity: 1;
}
.navbar .responsive-nav-bar .dropdown.active li {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.navbar .responsive-nav-bar .dropdown li {
  list-style: none;
  height: 50px;
  line-height: 50px;
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  transform: translateX(-100px);
  opacity: 0;
  overflow: hidden;
}
.navbar .responsive-nav-bar .dropdown li:nth-child(1) {
  -webkit-transition-delay: 50ms;
  -o-transition-delay: 50ms;
  transition-delay: 50ms;
}
.navbar .responsive-nav-bar .dropdown li:nth-child(2) {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.navbar .responsive-nav-bar .dropdown li:nth-child(3) {
  -webkit-transition-delay: 150ms;
  -o-transition-delay: 150ms;
  transition-delay: 150ms;
}
.navbar .responsive-nav-bar .dropdown li:nth-child(4) {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.navbar .responsive-nav-bar .dropdown li:nth-child(5) {
  -webkit-transition-delay: 250ms;
  -o-transition-delay: 250ms;
  transition-delay: 250ms;
}
.navbar .navbar-brand {
  height: 50px;
  width: 200px;
  background-image: url(../img/logo2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  margin-left: 0;
  -webkit-transition: background-image 0.2s ease-in-out;
  -o-transition: background-image 0.2s ease-in-out;
  transition: background-image 0.2s ease-in-out;
}
.navbar.bg-light .navbar-brand,
.navbar.gray .navbar-brand {
  background-image: url(../img/logo1.png);
}
.navbar .phoneicon {
  margin-left: 20px;
  margin-right: 7px;
  height: 30px;
  width: 30px;
  background-image: url(../img/avatar1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.navbar.bg-light .phoneicon,
.navbar.gray .phoneicon {
  background-image: url(../img/avatar2.png);
}
.navbar .phoneicon img {
  height: 20px;
  width: auto;
}
.navbar .phoneno {
  color: #fff;
  font-size: 14px;
}
.navbar .phoneno > a {
  color: #fff !important;
}
.navbar.bg-light .phoneno,
.navbar.gray .phoneno {
  color: #000;
}
.navbar .infobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar .loginpanel {
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar .normal-nav-bar .nav-item {
  padding: 0 10px;
  height: 70px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.navbar .normal-nav-bar .nav-item:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ff8700;
  -webkit-transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .normal-nav-bar .nav-item:hover:before {
  width: 100%;
}
.navbar .normal-nav-bar .nav-item:hover .nav-link {
  color: #fff;
}
.navbar .normal-nav-bar .nav-item .nav-link {
  color: #fff;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  z-index: 10;
}
.navbar.gray .normal-nav-bar .nav-item .nav-link {
  color: #000;
}
.navbar.gray .normal-nav-bar .nav-item:hover .nav-link {
  color: #fff;
}
.navbar.bg-light .normal-nav-bar .nav-item:before {
  background-color: #ff3200;
}
.navbar.gray.bg-light .normal-nav-bar .nav-item:before {
  background-color: #ff8700;
}
.navbar.bg-light .normal-nav-bar .nav-item .nav-link {
  color: #000;
}
.navbar.bg-light .normal-nav-bar .nav-item:hover .nav-link {
  color: #fff;
}
.navbar .loginpanel .login-panel-btn {
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 10;
  display: block;
}
.navbar .loginpanel .login-panel-btn:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -1;
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar .loginpanel .btnsignup {
  border-radius: 12px 0 0 12px;
  padding: 0 10px 0 20px;
  border-right: 0;
}
.navbar .loginpanel .btnsignup:before {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}
.navbar .loginpanel .btnlogin {
  border-radius: 0 12px 12px 0;
  padding: 0 20px 0 10px;
}
.navbar .loginpanel .btnlogin:before {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.navbar .loginpanel .login-panel-btn:hover {
  color: #ff3200;
}
.navbar .loginpanel .login-panel-btn:hover:before {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.navbar.gray .loginpanel .login-panel-btn {
  color: #ff8700;
  border: 1px solid #ff8700;
}
.navbar.orange .loginpanel .login-panel-btn {
  color: #fff;
  border: 1px solid #fff;
}
.navbar.bg-light .loginpanel .login-panel-btn {
  color: #ff3200;
  border: 1px solid #ff3200;
}
.navbar.gray.bg-light .loginpanel .login-panel-btn {
  color: #ff8700;
  border: 1px solid #ff8700;
}
.navbar.gray .loginpanel .login-panel-btn.btnsignup {
  border-right: 0;
}
.navbar.bg-light .loginpanel .login-panel-btn.btnsignup,
.navbar.orange .loginpanel .login-panel-btn.btnsignup {
  border-right: 0;
}
.navbar.gray .loginpanel .login-panel-btn:before {
  background-color: #ff8700;
}
.navbar.orange .loginpanel .login-panel-btn:before {
  background-color: #fff;
}
.navbar.bg-light .loginpanel .login-panel-btn:before {
  background-color: #ff3200;
}
.navbar.gray.bg-light .loginpanel .login-panel-btn:before {
  background-color: #ff8700;
}
.navbar.gray .loginpanel .login-panel-btn:hover {
  color: #fff;
}
.navbar.orange .loginpanel .login-panel-btn:hover {
  color: #fc6921;
}
.navbar.bg-light .loginpanel .login-panel-btn:hover {
  color: #fff;
}
.navbar .normal-nav-bar .dropdown {
  position: absolute;
  background-color: #fff;
  margin: 0;
  padding: 0;
  top: 70px;
  left: 0;
  width: auto;
  display: none;
  opacity: 0;
  -webkit-box-shadow: 0 4px 12px rgba(55, 55, 55, 0.2);
  box-shadow: 0 4px 12px rgba(55, 55, 55, 0.2);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  -webkit-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.navbar .normal-nav-bar .dropdown.active {
  opacity: 1;
}
.navbar .normal-nav-bar .dropdown.active li {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.navbar .normal-nav-bar .dropdown li {
  list-style: none;
  height: 50px;
  line-height: 50px;
  position: relative;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateX(-100px);
  -ms-transform: translateX(-100px);
  transform: translateX(-100px);
  opacity: 0;
  overflow: hidden;
}
.navbar .normal-nav-bar .dropdown li:nth-child(1) {
  -webkit-transition-delay: 50ms;
  -o-transition-delay: 50ms;
  transition-delay: 50ms;
}
.navbar .normal-nav-bar .dropdown li:nth-child(2) {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.navbar .normal-nav-bar .dropdown li:nth-child(3) {
  -webkit-transition-delay: 150ms;
  -o-transition-delay: 150ms;
  transition-delay: 150ms;
}
.navbar .normal-nav-bar .dropdown li:nth-child(4) {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.navbar .normal-nav-bar .dropdown li:nth-child(5) {
  -webkit-transition-delay: 250ms;
  -o-transition-delay: 250ms;
  transition-delay: 250ms;
}
.navbar .normal-nav-bar .dropdown li:hover a {
  color: #fff;
}
.navbar .normal-nav-bar .dropdown li:hover a:before {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.navbar .normal-nav-bar .dropdown li a {
  display: block;
  padding: 0 20px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
}
.navbar .normal-nav-bar .dropdown li a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #ff3200;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.navbar.gray .normal-nav-bar .dropdown li a:before {
  background-color: #ff8700;
}
.navbar.orange .normal-nav-bar .dropdown li a:before {
  background-color: #fc6921;
}
.navbar.bg-light .normal-nav-bar .dropdown li a:before {
  background-color: #ff3200;
}
.navbar.gray.bg-light .normal-nav-bar .dropdown li a:before {
  background-color: #ff8700;
}
@media screen and (max-width: 368px) {
  .navbar .phoneicon {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .navbar .normal-nav-bar {
    display: none;
  }
  .navbar .responsive-nav-bar {
    display: block;
  }
  .navbar .navbar-brand {
    background-size: auto 70%;
    background-position: 20% center;
  }
}
.fact-sheet-wrapper {
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 20px;
}
.fact-sheet-wrapper a {
  color: #ff4e00;
}
.fact-sheet-wrapper .fact-sheet-row {
  margin-bottom: 20px;
}
.fact-sheet-wrapper .fact-sheet-row ol,
.fact-sheet-wrapper .fact-sheet-row ul {
  margin: 0;
  padding: 0 0 0 15px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.fact-sheet-wrapper .fact-sheet-row ol li,
.fact-sheet-wrapper .fact-sheet-row ul li {
  font-size: 14px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .fact-sheet-wrapper .fact-sheet-row ol li,
  .fact-sheet-wrapper .fact-sheet-row ul li {
    font-size: 13px;
  }
}
.fact-sheet-wrapper .fact-sheet-row h3.title {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 20px;
  padding: 5px 20px;
  min-height: 32px;
  background-color: #ff4e00;
  color: #fff;
  border-radius: 32px;
  margin: 0;
  text-transform: initial;
}
.fact-sheet-wrapper .fact-sheet-row .fact-sheet-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.fact-sheet-wrapper .fact-sheet-row .fact-sheet-content:not(:last-child) {
  border-bottom: 1px solid #333;
}
.fact-sheet-wrapper .fact-sheet-row .fact-sheet-content .left-content {
  width: 45%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
  font-weight: 700;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 20px;
}
.fact-sheet-wrapper .fact-sheet-row .fact-sheet-content .right-content {
  width: 55%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 55%;
  flex: 0 0 55%;
}
.fact-sheet-wrapper .fact-sheet-row .fact-sheet-content table.payment {
  font-size: 14px;
  border-collapse: collapse;
}
.fact-sheet-wrapper .fact-sheet-row .fact-sheet-content table.payment ul {
  margin: 0;
  padding: 0 0 0 15px;
}
.fact-sheet-wrapper .fact-sheet-row .fact-sheet-content table.payment thead tr {
  border-bottom: 1px solid #333;
  font-weight: 700;
}
.fact-sheet-wrapper
  .fact-sheet-row
  .fact-sheet-content
  table.payment
  thead
  tr
  td {
  padding-top: 12px;
  padding-bottom: 12px;
}
.fact-sheet-wrapper .fact-sheet-row .fact-sheet-content table.payment tbody tr {
  border-bottom: 1px solid #dbdbdb;
}
.fact-sheet-wrapper
  .fact-sheet-row
  .fact-sheet-content
  table.payment
  tbody
  tr
  td {
  vertical-align: top;
  padding-top: 12px;
  padding-bottom: 12px;
}
.fact-sheet-wrapper
  .fact-sheet-row
  .fact-sheet-content
  table.payment
  tbody
  tr
  td:first-child {
  color: #ff4e00;
  font-weight: 700;
  width: 20%;
}
.fact-sheet-wrapper
  .fact-sheet-row
  .fact-sheet-content
  table.payment
  tbody
  tr
  td:not(:last-child) {
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .fact-sheet-wrapper
    .fact-sheet-row
    .fact-sheet-content
    table.payment
    tbody
    tr
    td:not(:last-child) {
    padding-right: 10px;
  }
}
.fact-sheet-wrapper
  .fact-sheet-row
  .fact-sheet-content
  table.payment
  tbody
  tr
  td:not(:first-child) {
  width: calc((100% - 20%) / 2);
}
.fact-sheet-wrapper
  .fact-sheet-row
  .fact-sheet-content
  table.payment
  tbody
  tr
  td
  li {
  word-break: break-word;
}
.pick-wrapper {
  width: 55%;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .pick-wrapper {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .pick-wrapper .title {
    font-size: 2rem !important;
    text-align: center !important;
  }
}
.pick-wrapper h3 {
  font-weight: 400 !important;
  font-size: 1.8rem !important;
  margin: 0 0 20px 0 !important;
}
@media screen and (max-width: 767px) {
  .pick-wrapper h3 {
    font-size: 1.4rem !important;
  }
}
.pick-wrapper p {
  font-size: 1rem !important;
  line-height: 21px !important;
  margin-bottom: 1rem !important;
  color: #333 !important;
}
.pick-wrapper .tariff {
  background: #2383a6;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  padding: 10px;
  color: #fff;
  display: inline-block;
  letter-spacing: 1px;
}
.pick-wrapper .tariff .tariff-total {
  display: inline-block;
  min-width: 50px;
}
@media screen and (max-width: 767px) {
  .pick-wrapper .tariff {
    font-size: 13px;
  }
}
.plan-bottom-wrapper .checkout-promo {
  text-align: center;
  margin-bottom: 100px;
}
.plan-bottom-wrapper .checkout-promo .checkout-promo-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.plan-bottom-wrapper .checkout-promo .checkout-promo-box:hover h4:after,
.plan-bottom-wrapper .checkout-promo .checkout-promo-box:hover h4:before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.plan-bottom-wrapper .checkout-promo .checkout-promo-box div:not(:last-child) {
  margin-right: 20px;
}
.plan-bottom-wrapper .checkout-promo .checkout-promo-box img {
  width: 100px;
  height: 124px;
}
.plan-bottom-wrapper .checkout-promo .checkout-promo-box h4 {
  letter-spacing: 1px;
  font-size: 1.7rem;
  font-weight: 400;
  position: relative;
  text-align: left;
  line-height: 33px;
}
.plan-bottom-wrapper .checkout-promo .checkout-promo-box h4:after,
.plan-bottom-wrapper .checkout-promo .checkout-promo-box h4:before {
  content: "";
  background: #ff4e00;
  position: absolute;
  height: 2px;
  left: 0;
  top: 32px;
  width: 100%;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}
.plan-bottom-wrapper .checkout-promo .checkout-promo-box h4:after {
  top: 64px;
  width: 80%;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.plan-bottom-wrapper .checkout-promo .checkout-promo-box button {
  background: #ff4e00;
  border-radius: 19px;
  border-style: none;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  width: 50px;
  height: 50px;
  position: relative;
}
.plan-bottom-wrapper .checkout-promo .checkout-promo-box button:before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 20px;
  left: 19px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.plan-bottom-wrapper .light-up .title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.plan-bottom-wrapper .light-up .title-wrapper .title {
  font-size: 2.2rem;
  line-height: 2.5rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .plan-bottom-wrapper .light-up .title-wrapper .title {
    font-size: 1.8rem;
  }
}
.plan-bottom-wrapper .light-up .title-wrapper img {
  width: 90px;
}
.plan-bottom-wrapper .light-up .deal-wrapper {
  text-align: center;
  min-height: 400px;
}
.plan-bottom-wrapper .light-up .deal-wrapper .deal-box {
  width: calc((100% / 3) - 40px);
  display: inline-block;
  vertical-align: top;
  text-align: left;
  margin: 0 15px;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .plan-bottom-wrapper .light-up .deal-wrapper .deal-box {
    width: 90%;
    margin-bottom: 20px;
  }
}
.plan-bottom-wrapper .light-up .deal-wrapper .deal-box:nth-child(1) {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.plan-bottom-wrapper .light-up .deal-wrapper .deal-box:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.plan-bottom-wrapper .light-up .deal-wrapper .deal-box:nth-child(3) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.plan-bottom-wrapper .light-up .deal-wrapper .deal-box.show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.plan-bottom-wrapper .light-up .deal-wrapper .deal-box img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}
.plan-bottom-wrapper .light-up .deal-wrapper .deal-box .deal-text {
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 0 0 20px 20px;
  padding: 20px 10px;
}
.plan-bottom-wrapper .light-up .deal-wrapper .deal-box .deal-text h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 6px;
}
.plan-bottom-wrapper .light-up .deal-wrapper .deal-box .deal-text p {
  color: #333;
  font-size: 1rem;
  line-height: 21px;
}
.top-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.top-menu .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 576px) {
  .top-menu .container {
    max-width: 540px;
  }
  .top-menu .container .navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
  }
}
@media (min-width: 768px) {
  .top-menu .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .top-menu .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .top-menu .container {
    max-width: 1140px;
  }
}
.content-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.content-container h1 {
  color: #696969;
  font-size: 1.5rem;
  margin: 1rem 0 3rem;
  padding-bottom: 1rem;
  font-weight: 500;
  border-bottom: 1px solid #dbdbdb;
}
@media screen and (max-width: 767px) {
  .content-container h1 {
    margin-bottom: 1rem;
  }
}
.content-container h3 {
  color: #fe5c01;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 500;
}
.content-container h4 {
  color: #333;
  margin: 0;
  font-size: 1.125rem;
}
.content-container h5 {
  color: #bcbcbc;
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
  font-weight: 100;
}
.content-container p {
  color: #696969;
  margin: 0;
  font-size: 1.3rem;
  line-height: 28px;
}
.content-container .steps-existing {
  height: 100%;
  -webkit-transform: translateY(200px);
  -ms-transform: translateY(200px);
  transform: translateY(200px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-container .steps-existing.hide {
  -webkit-transform: translateY(200px);
  -ms-transform: translateY(200px);
  transform: translateY(200px);
  opacity: 0;
  visibility: hidden;
}
.content-container .steps-existing.hide > .steps-container {
  pointer-events: none;
}
.content-container .steps-existing.hidden {
  display: none !important;
}
.content-container .steps-existing.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.content-container .steps-existing.active + .hide {
  -webkit-transform: translateY(200px);
  -ms-transform: translateY(200px);
  transform: translateY(200px);
}
.content-container .steps-container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100vw;
  margin-bottom: 40px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateY(200px);
  -ms-transform: translateY(200px);
  transform: translateY(200px);
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  overflow: auto;
}
.content-container .steps-container:before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  height: 8vw;
  background: url(../img/top-menu-curve.webp) top/100% 100% no-repeat;
}
@media screen and (max-width: 767px) {
  .content-container .steps-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.content-container .steps-container .steps-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto;
  max-width: 1000px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .content-container .steps-container .steps-wrapper {
    padding: 0 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container .steps-container .steps-wrapper {
    margin-top: 120px;
    padding: 0 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.content-container .steps-container.prev {
  -webkit-transform: translateY(-200px);
  -ms-transform: translateY(-200px);
  transform: translateY(-200px);
  opacity: 0;
  visibility: hidden;
}
.content-container .steps-container.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.content-container .steps-container.active ~ .steps-container.hide {
  -webkit-transform: translateY(200px);
  -ms-transform: translateY(200px);
  transform: translateY(200px);
}
.content-container .steps-container.hide {
  -webkit-transform: translateY(-200px);
  -ms-transform: translateY(-200px);
  transform: translateY(-200px);
  opacity: 0;
  visibility: hidden;
}
.content-container .steps-container .left-col {
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
}
@media screen and (max-width: 767px) {
  .content-container .steps-container .left-col {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.content-container .steps-container .right-col {
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
}
@media screen and (max-width: 767px) {
  .content-container .steps-container .right-col {
    display: none;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
  }
}
.content-container .steps-container .full-col {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .content-container .steps-container .full-col {
    width: 100%;
    padding-bottom: 70px;
  }
}
.content-container .steps-container .title {
  color: #000;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: azo_sans, sans-serif;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .content-container .steps-container .title {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}
.content-container .steps-container .button-wrapper {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .content-container .steps-container .button-wrapper {
    margin-bottom: 35px;
  }
}
.content-container
  .steps-container
  .button-wrapper
  .btn-round:not(:last-child) {
  margin-right: 1rem;
}
.content-container .steps-container[data-step="1"] .steps-wrapper {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .content-container .steps-container[data-step="1"] .steps-wrapper {
    padding-top: 0;
  }
}
.content-container .steps-container[data-step="1"] .title {
  margin-bottom: 35px;
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container .steps-container[data-step="1"] .title span {
    display: block;
  }
}
.content-container .steps-container[data-step="1"] .consent-wrapper.show > div {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.content-container .steps-container[data-step="1"] .consent-wrapper.sign-up {
  margin-top: -40px;
}
.content-container .steps-container[data-step="1"] .consent-wrapper > div {
  opacity: 0;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  visibility: hidden;
}
.content-container
  .steps-container[data-step="1"]
  .consent-wrapper
  > div:nth-child(1) {
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-container
  .steps-container[data-step="1"]
  .consent-wrapper
  > div:nth-child(2) {
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-container
  .steps-container[data-step="1"]
  .consent-wrapper
  > div:nth-child(3) {
  -webkit-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-container
  .steps-container[data-step="1"]
  .consent-wrapper
  .checkbox-wrapper {
  margin-bottom: 20px;
}
.content-container
  .steps-container[data-step="1"]
  .consent-wrapper
  .checkbox-wrapper
  .checkbox
  span {
  border-color: #696969;
}
.content-container
  .steps-container[data-step="1"]
  .consent-wrapper
  .note-wrapper {
  margin-bottom: 60px;
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-container[data-step="1"]
    .consent-wrapper
    .note-wrapper {
    margin-bottom: 20px;
  }
}
.content-container
  .steps-container[data-step="1"]
  .consent-wrapper
  .note-wrapper
  p {
  font-size: 1.125rem;
}
.content-container
  .steps-container[data-step="1"]
  .consent-wrapper
  .submit-wrapper {
  margin-bottom: 20px;
}
.content-container .steps-container[data-step="1"] .bulb {
  position: absolute;
  width: 200px;
  bottom: -5%;
  right: 10%;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.content-container .steps-container[data-step="1"] .bulb.move {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .content-container .steps-container[data-step="1"] .bulb.move {
    -webkit-transform: translateY(-30%);
    -ms-transform: translateY(-30%);
    transform: translateY(-30%);
  }
}
.content-container .steps-existing {
  position: relative;
  z-index: 0;
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="2"]
  .steps-wrapper {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="2"]
    .steps-wrapper {
    margin-top: 100px;
    padding-top: 0;
  }
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="2"]
  .title {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="2"]
    .title {
    margin-bottom: 1.5rem;
  }
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="2"]
  .input-wrapper {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="2"]
    .input-wrapper {
    margin-bottom: 1.5rem;
  }
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="2"]
  .input-wrapper
  h4 {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="2"]
    .input-wrapper
    input-field {
    width: 80%;
  }
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="2"]
  .submit-wrapper {
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="2"]
    .submit-wrapper {
    padding-bottom: 70px;
  }
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="2"]
  .submit-wrapper
  .btn {
  margin-top: 6px;
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="2"]
  .submit-wrapper
  .btn:last-child {
  margin-left: 20px;
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="2"]
  .bulb {
  position: absolute;
  width: 200px;
  bottom: 13%;
  right: 20%;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="3"]
  .submit-wrapper {
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="3"]
    .submit-wrapper {
    margin-bottom: 0;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="4"]
    .steps-wrapper {
    margin: auto;
  }
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="5"] {
  background-color: #fff;
  padding-top: 185px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="5"] {
    padding-top: 110px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="5"] {
    padding-top: 0;
  }
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="5"]
  .title {
  margin-bottom: 50px;
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="5"]
  h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="5"]
  .multi-col {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="5"]
    .multi-col {
    margin-bottom: 1.5rem;
  }
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="5"]
  .flex-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 3rem;
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="5"]
  .flex-wrapper
  .submit-wrapper {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="5"]
    .flex-wrapper
    .submit-wrapper {
    margin-left: 12px;
  }
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="5"]
    .flex-wrapper
    .btn.outline {
    white-space: nowrap;
    padding: 0 13px;
  }
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="6"] {
  background-color: #ebebeb;
  padding-top: 185px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="6"] {
    padding-top: 110px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="6"] {
    padding-top: 0;
  }
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="6"]
  .category-row
  .btn-category {
  color: #909090;
  font-size: 1.4rem;
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="6"]
  .category-row
  .btn-category:hover {
  color: #ff4e00;
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="6"]
  .category-row
  .btn-category.select {
  min-width: 180px;
  padding: 4px 0;
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="6"]
  .category-row
  .btn-category.select
  .btn-select-wrapper
  .ui-selectmenu-button {
  height: 122%;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="6"]
  .category-row
  .btn-category.select
  .btn-select-wrapper
  .ui-selectmenu-button
  .ui-selectmenu-text {
  font-size: 1.3rem;
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="6"]
  .category-row
  .btn-category.select
  .btn-select-wrapper
  .ui-selectmenu-menu {
  max-width: 180px;
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="6"]
  .category-row
  .btn-category.select
  .btn-select-wrapper
  .ui-selectmenu-menu
  ul {
  font-size: 1.3rem;
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="6"]
  .back-wrapper {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="6"]
    .back-wrapper {
    margin-top: 1rem;
    padding-bottom: 3rem;
    text-align: center;
  }
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="7"] {
  background-color: #fff;
  padding-top: 185px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="7"] {
    padding-top: 110px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="7"] {
    padding-top: 0;
  }
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="7"]
  .monthly-ebill-wrapper {
  border-top: 1px solid #dbdbdb;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="7"]
  .monthly-ebill-wrapper
  h1 {
  border-bottom: 0;
  margin-bottom: 0;
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="7"]
  .monthly-ebill-wrapper
  .checkbox-wrapper {
  color: #333;
  margin-bottom: 3rem;
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="7"]
  .submit-wrapper
  button {
  margin-top: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="7"]
    .submit-wrapper
    button {
    padding: 0 25px;
  }
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="7"]
  .submit-wrapper
  button:last-child {
  margin-left: 20px;
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="8"] {
  padding-top: 185px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="8"] {
    padding-top: 110px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="8"] {
    padding-top: 15px;
  }
}
.content-container
  .steps-existing[data-existing="true"]
  .steps-container[data-step="8"]
  .title {
  margin-bottom: 3.8rem;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="8"]
    .submit-wrapper {
    display: block;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="8"]
    .submit-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="8"]
    .submit-wrapper
    .btn.submitCC1 {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="8"]
    .submit-wrapper
    .btn.submitCC1 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="8"]
    .submit-wrapper
    .btn.grey {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="8"]
    .submit-wrapper
    .btn.grey {
    margin-bottom: 0;
    padding: 0 10px;
    width: 155px;
  }
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="true"]
    .steps-container[data-step="8"]
    .submit-wrapper
    .other-payment {
    margin-left: 4px;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="2"]
  .steps-wrapper {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="2"]
    .steps-wrapper {
    margin-top: 100px;
    padding-top: 0;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="2"]
  .title {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="2"]
    .title {
    margin-bottom: 2.5rem;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="2"]
  .bulb {
  position: absolute;
  width: 200px;
  bottom: 0;
  right: 0;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="2"]
  .login-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="2"]
    .login-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 2rem;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="2"]
  .login-wrapper
  .login-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="2"]
    .login-wrapper
    .login-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="2"]
  .login-wrapper
  .login-item
  .btn {
  letter-spacing: 0.7px;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="2"]
    .login-wrapper
    .login-item
    .btn {
    margin-bottom: 1rem;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="2"]
  .login-wrapper
  .login-item
  p {
  display: block;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 24px;
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="2"]
    .login-wrapper
    .login-item
    p
    br {
    content: " ";
    padding: 2px;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="2"]
  .login-wrapper
  .login-item:not(:first-child) {
  border-left: 1px solid #dbdbdb;
  padding-left: 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="2"]
    .login-wrapper
    .login-item:not(:first-child) {
    border: 0;
    padding-left: 0;
    padding-top: 25px;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="2"]
  .submit-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="2"]
  .submit-wrapper
  .btn#agentLogin {
  padding-right: 0;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="2"]
  .submit-wrapper
  .btn:last-child {
  margin-bottom: 40px;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="2"]
  .submit-wrapper
  .btn.inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="2"]
  .submit-wrapper
  .btn.inline:before {
  right: calc(30px + 3rem);
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="2"]
  .submit-wrapper
  .btn.inline:hover:before {
  width: calc(100% - 30px - 30px - 3rem);
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="2"]
  .submit-wrapper
  .btn.inline
  svg {
  width: 3rem;
  height: 3rem;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="2"]
  .form-icon {
  width: 250px;
  height: 250px;
  position: absolute;
  top: 23%;
  right: 0;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="3"]
  p {
  margin-bottom: 2.5rem;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="3"]
  .input-wrapper {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="3"]
    .input-wrapper {
    margin-bottom: 4.5rem;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="3"]
  .submit-wrapper {
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="3"]
    .submit-wrapper {
    padding-bottom: 70px;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="3"]
  .submit-wrapper
  .btn:last-child {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="3"]
    .submit-wrapper
    .btn:last-child {
    margin-left: 5px;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="4"]
  .submit-wrapper {
  margin-bottom: 20px;
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="4"]
    .submit-wrapper {
    margin-bottom: 0;
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="5"]
    .steps-wrapper {
    margin: auto;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="6"] {
  background-color: #ebebeb;
  padding-top: 185px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="6"] {
    padding-top: 110px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="6"] {
    padding-top: 0;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="6"]
  .category-row
  .btn-category {
  color: #909090;
  font-size: 1.4rem;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="6"]
  .category-row
  .btn-category:hover {
  color: #ff4e00;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="6"]
  .category-row
  .btn-category.select {
  min-width: 180px;
  padding: 4px 0;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="6"]
  .category-row
  .btn-category.select
  .btn-select-wrapper
  .ui-selectmenu-button {
  height: 122%;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="6"]
  .category-row
  .btn-category.select
  .btn-select-wrapper
  .ui-selectmenu-button
  .ui-selectmenu-text {
  font-size: 1.3rem;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="6"]
  .category-row
  .btn-category.select
  .btn-select-wrapper
  .ui-selectmenu-menu {
  max-width: 180px;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="6"]
  .category-row
  .btn-category.select
  .btn-select-wrapper
  .ui-selectmenu-menu
  ul {
  font-size: 1.3rem;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="6"]
  .back-wrapper {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="6"]
    .back-wrapper {
    margin-top: 1rem;
    text-align: center;
    padding-bottom: 3rem;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"] {
  background-color: #fff;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .steps-wrapper {
  margin-top: 200px;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .steps-wrapper {
    margin-top: 110px;
    padding: 0 10px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .steps-wrapper {
    margin-top: 125px;
    padding: 0 50px;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-wrapper {
  position: relative;
  width: 100%;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-bottom: 4rem;
  -webkit-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  transform: translateY(-100px);
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container.hide {
  display: none;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container
  .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .form-container
    .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container
  .form-row.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container
  .form-row.flex-column
  .horizontal-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .form-container
    .form-row.flex-column
    .horizontal-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .form-container
    .form-row.flex-column
    .horizontal-wrapper
    .input-wrapper {
    width: 100%;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container
  .form-row
  h4 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .form-container
    .form-row
    h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container
  .form-row
  .input-wrapper {
  margin-right: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .form-container
    .form-row
    .input-wrapper {
    margin-right: 0;
    margin-bottom: 25px;
  }
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .form-container
    .form-row
    .input-wrapper
    .input-field,
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .form-container
    .form-row
    .input-wrapper
    .select-field {
    width: 100%;
  }
}
@media screen and (max-width: 767px) and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .form-container
    .form-row
    .input-wrapper
    .input-field,
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .form-container
    .form-row
    .input-wrapper
    .select-field {
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .form-container
    .form-row
    .input-wrapper
    .input-field.blockno {
    max-width: 130px;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container
  .submit-wrapper
  .btn:last-child {
  margin-left: 20px;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="1"]
  .fin-details-wrapper {
  display: none;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .form-container[data-register="1"]
    .dob
    .input-wrapper:not(:first-child)
    h4 {
    display: none;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="1"]
  input[name="givenname"],
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="1"]
  input[name="preferredname"],
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="1"]
  input[name="surname"] {
  text-transform: capitalize;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="2"]
  .select-housetype-wrapper
  .ui-selectmenu-text.initial {
  font-size: 15.2px;
  line-height: 23px;
  margin-right: 0;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="2"]
  .diff-add-wrapper {
  display: none;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="2"]
  .checkbox-wrapper {
  font-weight: 100;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="2"]
  .checkbox-wrapper
  input:checked
  + span {
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .form-container[data-register="2"]
    .floor-unit {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-right: 30px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .form-container[data-register="2"]
    .floor-unit
    .input-field {
    max-width: 130px;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="2"]
  .floor-unit
  .floor {
  position: relative;
  margin-right: 30px;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="2"]
  .floor-unit
  .floor:before {
  background-color: #696969;
  content: "";
  height: 2px;
  width: 16px;
  position: absolute;
  right: -23px;
  bottom: 23%;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="2"]
  .btn-datepicker {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #dbdbdb;
  font-size: 1.3rem;
  padding-left: 20px;
  width: 323px;
  position: relative;
  z-index: 1;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="2"]
  .btn-datepicker:before {
  content: "";
  position: absolute;
  top: 12px;
  right: 10px;
  height: 8px;
  width: 8px;
  border-right: 1.5px solid #dbdbdb;
  border-bottom: 1.5px solid #dbdbdb;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="2"]
  .datepicker-wrapper {
  margin-top: -43px;
  margin-bottom: 43px;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="2"]
  .datepicker-wrapper.show-picker {
  position: relative;
  margin-bottom: 0;
  z-index: 1;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="3"]
  .multi-col
  .form-row {
  display: block;
  margin-bottom: 3.5rem;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="4"]
  .upload-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .form-container[data-register="4"]
    .upload-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="4"]
  .upload-wrapper
  .progress-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="4"]
  .upload-wrapper
  .progress {
  width: 300px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #dbdbdb;
  position: relative;
  overflow: hidden;
  display: none;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .form-container[data-register="4"]
    .upload-wrapper
    .progress {
    width: 250px;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="4"]
  .upload-wrapper
  .progress
  .bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #ff4e00;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background-image: -webkit-linear-gradient(
    315deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-image: -o-linear-gradient(
    315deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-image: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 75%,
    transparent
  );
  background-size: 40px 40px;
  -webkit-animation: progress-bar-stripes 1s linear infinite;
  animation: progress-bar-stripes 1s linear infinite;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="4"]
  .upload-wrapper
  .progress
  .bar:before {
  content: attr(data-percentage) "%";
  padding-right: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  text-align: right;
  line-height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="4"]
  .upload-wrapper
  .progress
  .bar.end {
  background-image: none;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="4"]
  .upload-wrapper
  .upload-info {
  margin-left: 5rem;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .form-container[data-register="4"]
    .upload-wrapper
    .upload-info {
    margin-left: 0;
    margin-top: 15px;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="4"]
  .upload-wrapper
  .upload-info
  h5 {
  margin-bottom: 0;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="4"]
  .upload-wrapper
  .upload-info
  p {
  font-size: 1.1rem;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="4"]
  .upload-wrapper
  .btn-delete {
  background: url(../img/icon_delete.png) no-repeat center/contain;
  border: 0;
  height: 25px;
  width: 30px;
  margin-left: 5px;
  outline: 0;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="4"]
  .uploadstatus {
  font-size: 1.1rem;
  padding-top: 5px;
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="4"]
  .form-row {
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="7"]
    .form-container[data-register="4"]
    .form-row {
    margin-bottom: 20px;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="7"]
  .form-container[data-register="4"]
  .form-row
  .input-wrapper
  h4 {
  margin-bottom: 30px;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="8"] {
  padding-top: 185px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="8"] {
    padding-top: 110px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="8"] {
    padding-top: 15px;
  }
}
.content-container
  .steps-existing[data-existing="false"]
  .steps-container[data-step="8"]
  .title {
  margin-bottom: 3.8rem;
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="8"]
    .submit-wrapper {
    display: block;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="8"]
    .submit-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="8"]
    .submit-wrapper
    .btn.submitCC2 {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="8"]
    .submit-wrapper
    .btn.submitCC2 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="8"]
    .submit-wrapper
    .btn.grey {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="8"]
    .submit-wrapper
    .btn.grey {
    margin-bottom: 0;
    padding: 0 10px;
    width: 155px;
  }
}
@media screen and (max-width: 767px) {
  .content-container
    .steps-existing[data-existing="false"]
    .steps-container[data-step="8"]
    .submit-wrapper
    .other-payment {
    margin-left: 4px;
  }
}
.content-container .fact-sheet .checkbox-wrapper,
.content-container .monthly-ebill-wrapper .checkbox-wrapper {
  font-weight: 100;
  margin-bottom: 1.3rem;
}
.content-container .fact-sheet .checkbox-group,
.content-container .monthly-ebill-wrapper .checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 35px;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  .content-container .fact-sheet .checkbox-group,
  .content-container .monthly-ebill-wrapper .checkbox-group {
    display: block;
    padding-left: 0;
  }
}
.content-container .fact-sheet .checkbox-group .checkbox-wrapper,
.content-container .monthly-ebill-wrapper .checkbox-group .checkbox-wrapper {
  margin-left: 2rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .content-container .fact-sheet .checkbox-group .checkbox-wrapper,
  .content-container .monthly-ebill-wrapper .checkbox-group .checkbox-wrapper {
    margin-left: 1rem;
  }
}
.content-container .fact-sheet .checkbox-group > label,
.content-container .monthly-ebill-wrapper .checkbox-group > label {
  font-weight: 700;
}
.content-container .fact-sheet {
  color: #333;
  position: relative;
}
.content-container .fact-sheet h1 {
  margin-bottom: 22px;
}
.content-container .fact-sheet .btn-fact {
  background: 0 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #ff4e00;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0 15px 0 0;
  position: absolute;
  right: 0;
  top: 2px;
  text-transform: none;
}
.content-container .fact-sheet .btn-fact:before {
  content: "";
  position: absolute;
  right: 0;
  height: 8px;
  width: 8px;
  border-left: 1px solid #ff4e00;
  border-bottom: 1px solid #ff4e00;
  margin-top: 3px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-container .fact-sheet .btn-fact.open:before {
  margin-top: 8px;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.content-container .fact-sheet .facts-wrapper {
  display: none;
  margin-top: -15px;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .content-container .fact-sheet .facts-wrapper {
    margin-top: 0;
  }
}
.content-container .fact-sheet .facts-wrapper img {
  max-width: 100%;
}
.content-container .fact-sheet .marketing-contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .content-container .fact-sheet .marketing-contact-wrapper {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .content-container
    .fact-sheet
    .marketing-contact-wrapper
    .checkbox-wrapper:first-child {
    margin-left: 0;
  }
}
.content-container .multi-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .content-container .multi-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.content-container .multi-col p {
  color: #333;
}
.content-container .multi-col .col-item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  padding: 0 3rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .content-container .multi-col .col-item {
    padding: 0 1rem;
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}
.content-container .multi-col .col-item:first-child {
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .content-container .multi-col .col-item:first-child {
    padding: 0 1rem;
  }
}
.content-container .multi-col .col-item:nth-child(2) {
  -ms-flex-preferred-size: 120%;
  flex-basis: 120%;
}
@media screen and (max-width: 767px) {
  .content-container .multi-col .col-item:nth-child(2) {
    -ms-flex-preferred-size: unset;
    flex-basis: unset;
  }
}
.content-container .multi-col .col-item:last-child {
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .content-container .multi-col .col-item:last-child {
    padding: 0 1rem;
  }
}
.content-container .multi-col .col-item:not(:last-child) {
  border-right: 1px solid #dbdbdb;
}
@media screen and (max-width: 767px) {
  .content-container .multi-col .col-item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 10px;
  }
}
.content-container .multi-col .col-item .form-row {
  margin-bottom: 4rem;
}
.content-container .multi-col .col-item .form-row h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .content-container .multi-col .col-item .form-row h3 {
    margin-bottom: 0.3rem;
  }
}
.content-container .multi-col .col-item .form-row p {
  font-size: 1.4rem;
}
.content-container .multi-col .col-item .form-row .input-wrapper .btn.inline {
  padding: 0 12px;
}
.content-container
  .multi-col
  .col-item
  .form-row
  .input-wrapper
  .btn.inline:before {
  right: 12px;
}
.content-container
  .multi-col
  .col-item
  .form-row
  .input-wrapper
  .btn.inline:hover:before {
  left: 12px;
  right: auto;
  width: calc(100% - 24px);
}
.content-container .multi-col .input-wrapper {
  position: relative;
}
.content-container .multi-col .input-wrapper .btn-edit-contact {
  background-color: transparent;
  border: 0;
  position: absolute;
  right: 0;
}
.content-container .multi-col .applied-code {
  display: none;
}
.content-container .multi-col .applied-code .title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 280px;
}
@media screen and (max-width: 767px) {
  .content-container .multi-col .applied-code .title-wrapper {
    width: 100%;
  }
}
.content-container .multi-col .applied-code .title-wrapper button {
  background-color: transparent;
  border: 0;
  margin-left: auto;
}
.content-container .multi-col .promo-message {
  position: relative;
  display: inline-block;
}
.content-container .multi-col .promo-message:after {
  content: "";
  position: absolute;
  right: -8px;
  top: 11px;
  background: #30b235;
  width: 2px;
  height: 2px;
  -webkit-box-shadow: 2px 0 0 #30b235, 4px 0 0 #30b235, 4px -2px 0 #30b235,
    4px -4px 0 #30b235, 4px -6px 0 #30b235, 4px -8px 0 #30b235,
    4px -10px 0 #30b235;
  box-shadow: 2px 0 0 #30b235, 4px 0 0 #30b235, 4px -2px 0 #30b235,
    4px -4px 0 #30b235, 4px -6px 0 #30b235, 4px -8px 0 #30b235,
    4px -10px 0 #30b235;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.content-container .multi-col .details-message {
  color: #5f5f5f;
  position: relative;
  font-size: 1.15rem !important;
  margin-top: 10px;
}
.content-container .otp-container {
  width: 100%;
}
.content-container .otp-container .title {
  margin-bottom: 2.5rem;
}
.content-container .otp-container .input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
}
.content-container
  .otp-container
  .input-wrapper
  > .input-field:not(:last-child) {
  margin-right: 8px;
}
.content-container .otp-container .otp-wrapper {
  margin-bottom: 4rem;
}
.content-container .otp-container .otp-wrapper .btn {
  padding: 0 8px;
}
.content-container .otp-container .otp-wrapper .countdown-wrapper {
  color: #c5c5c5;
}
.content-container .otp-container .submit-wrapper .btn:last-child {
  margin-left: 20px;
}
.content-container .img-updatecard {
  margin-bottom: 3rem;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .content-container .img-updatecard {
    display: none;
  }
}
.content-container .payment-page h3 {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .content-container .payment-page h3 {
    font-size: 1.5rem;
  }
}
.content-container .payment-page .title {
  text-transform: uppercase;
}
.content-container .payment-page .black {
  color: #000;
}
.content-container .payment-page .summary-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 28px 0 40px 0;
}
.content-container
  .payment-page
  .summary-wrapper
  .summary-item:not(:last-child) {
  padding-right: 30px;
  border-right: 1px solid #dbdbdb;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .content-container
    .payment-page
    .summary-wrapper
    .summary-item:not(:last-child) {
    padding-right: 12px;
    margin-right: 12px;
  }
}
.content-container .payment-page .summary-wrapper .summary-item h4 {
  color: #ff4e00;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .content-container .payment-page .summary-wrapper .summary-item h4 {
    font-size: 1.2rem;
  }
}
.content-container .payment-page .summary-wrapper .summary-item div {
  color: #151515;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .content-container .payment-page .summary-wrapper .summary-item div {
    font-size: 1.2rem;
  }
}
.content-container .payment-page .last-step-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .content-container .payment-page .last-step-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
    margin-top: 15px;
  }
}
.content-container .payment-page .last-step-wrapper .pay-option-box {
  border: 2px solid #696969;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #000;
  cursor: pointer;
  font-size: 1.4rem;
  padding: 35px 40px;
  height: 220px;
  width: 350px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .content-container .payment-page .last-step-wrapper .pay-option-box {
    padding: 25px 30px;
    height: 200px;
    width: 100%;
    max-width: 300px;
  }
}
.content-container
  .payment-page
  .last-step-wrapper
  .pay-option-box:not(:last-child) {
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  .content-container
    .payment-page
    .last-step-wrapper
    .pay-option-box:not(:last-child) {
    margin-bottom: 20px;
    margin-right: 0;
  }
}
.content-container
  .payment-page
  .last-step-wrapper
  .pay-option-box
  .option-box-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 8px;
  text-transform: uppercase;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-container .payment-page .last-step-wrapper .pay-option-box .title {
  position: relative;
}
.content-container
  .payment-page
  .last-step-wrapper
  .pay-option-box
  .title:after {
  content: "";
  background: #30b235;
  -webkit-box-shadow: -2px 0 0 #30b235, 2px 0 0 #30b235, 4px 0 0 #30b235,
    4px -2px 0 #30b235, 4px -4px 0 #30b235, 4px -6px 0 #30b235,
    4px -8px 0 #30b235, 4px -10px 0 #30b235, 4px -12px 0 #30b235,
    4px -14px 0 #30b235;
  box-shadow: -2px 0 0 #30b235, 2px 0 0 #30b235, 4px 0 0 #30b235,
    4px -2px 0 #30b235, 4px -4px 0 #30b235, 4px -6px 0 #30b235,
    4px -8px 0 #30b235, 4px -10px 0 #30b235, 4px -12px 0 #30b235,
    4px -14px 0 #30b235;
  position: absolute;
  right: -15px;
  top: 50%;
  height: 2px;
  width: 2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-container .payment-page .last-step-wrapper .pay-option-box .desc {
  font-size: 1.3rem;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .content-container .payment-page .last-step-wrapper .pay-option-box .desc {
    font-size: 1.15rem;
    text-align: left;
  }
}
.content-container
  .payment-page
  .last-step-wrapper
  .pay-option-box
  .credit-card-num {
  font-size: 1.6rem;
  margin-top: 3rem;
  margin-bottom: 15px;
  position: relative;
}
.content-container
  .payment-page
  .last-step-wrapper
  .pay-option-box
  .credit-card-num
  .last-four-digit {
  display: inline-block;
  margin-right: 10px;
}
.content-container
  .payment-page
  .last-step-wrapper
  .pay-option-box
  .credit-card-num:after {
  content: "";
  background: #30b235;
  -webkit-box-shadow: -2px 0 0 #30b235, 2px 0 0 #30b235, 4px 0 0 #30b235,
    4px -2px 0 #30b235, 4px -4px 0 #30b235, 4px -6px 0 #30b235,
    4px -8px 0 #30b235, 4px -10px 0 #30b235, 4px -12px 0 #30b235,
    4px -14px 0 #30b235;
  box-shadow: -2px 0 0 #30b235, 2px 0 0 #30b235, 4px 0 0 #30b235,
    4px -2px 0 #30b235, 4px -4px 0 #30b235, 4px -6px 0 #30b235,
    4px -8px 0 #30b235, 4px -10px 0 #30b235, 4px -12px 0 #30b235,
    4px -14px 0 #30b235;
  position: absolute;
  top: 50%;
  height: 2px;
  width: 2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-container
  .payment-page
  .last-step-wrapper
  .pay-option-box
  .icon-add-card {
  border: 2px solid #3e3e3e;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  position: relative;
  margin-top: 2.2rem;
}
.content-container
  .payment-page
  .last-step-wrapper
  .pay-option-box
  .icon-add-card:after,
.content-container
  .payment-page
  .last-step-wrapper
  .pay-option-box
  .icon-add-card:before {
  background-color: #696969;
  content: "";
  position: absolute;
  height: 2px;
  width: 20px;
  left: 30%;
  top: 50%;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.content-container
  .payment-page
  .last-step-wrapper
  .pay-option-box
  .icon-add-card:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.content-container .payment-page .last-step-wrapper .pay-option-box.active,
.content-container .payment-page .last-step-wrapper .pay-option-box:hover {
  border-color: #ff4e00;
  -webkit-box-shadow: 0 5px 14px 3px #e2e2e2;
  box-shadow: 0 5px 14px 3px #e2e2e2;
}
.content-container
  .payment-page
  .last-step-wrapper
  .pay-option-box.active
  .option-box-title,
.content-container
  .payment-page
  .last-step-wrapper
  .pay-option-box:hover
  .option-box-title {
  color: #ff4e00;
}
.content-container
  .payment-page
  .last-step-wrapper
  .pay-option-box.active
  .title:after {
  opacity: 1;
  visibility: visible;
}
.content-container
  .payment-page
  .last-step-wrapper
  .pay-option-box.active
  .credit-card-num:after {
  opacity: 1;
  visibility: visible;
}
.content-container
  .payment-page
  .last-step-wrapper
  .pay-option-box.active
  .icon-add-card:before {
  background-color: #30b235;
  width: 8px;
  -webkit-transform: rotate(45deg) translate(2px, 4px);
  -ms-transform: rotate(45deg) translate(2px, 4px);
  transform: rotate(45deg) translate(2px, 4px);
}
.content-container
  .payment-page
  .last-step-wrapper
  .pay-option-box.active
  .icon-add-card:after {
  background-color: #30b235;
  -webkit-transform: rotate(-45deg) translate(1px, 2px);
  -ms-transform: rotate(-45deg) translate(1px, 2px);
  transform: rotate(-45deg) translate(1px, 2px);
}
.content-container .payment-page .recurring-payment-wrapper .form-row {
  margin-bottom: 35px;
}
.content-container .payment-page .recurring-payment-wrapper .form-row h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.content-container
  .payment-page
  .recurring-payment-wrapper
  .form-row
  .input-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.content-container
  .payment-page
  .recurring-payment-wrapper
  .form-row
  .input-wrapper
  .input-field {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .content-container
    .payment-page
    .recurring-payment-wrapper
    .form-row
    .input-wrapper
    .input-field {
    margin-right: 10px;
  }
}
.content-container
  .payment-page
  .recurring-payment-wrapper
  .form-row
  .input-wrapper.card-num
  .field-desc {
  white-space: nowrap;
}
.content-container
  .payment-page
  .recurring-payment-wrapper
  .form-row
  .input-wrapper.card-num
  .field-desc
  img {
  margin-right: 10px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .content-container
    .payment-page
    .recurring-payment-wrapper
    .form-row
    .input-wrapper.card-num
    .field-desc
    img {
    width: 40px;
    margin-right: 5px;
  }
}
.content-container
  .payment-page
  .recurring-payment-wrapper
  .form-row
  .input-wrapper.card-num
  .field-desc
  img.unselected {
  opacity: 0.3;
}
.content-container
  .payment-page
  .recurring-payment-wrapper
  .form-row
  .flex-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.content-container
  .payment-page
  .recurring-payment-wrapper
  .form-row
  .flex-wrapper
  .input-field.small {
  margin-right: 18px;
  width: 60px;
}
@media screen and (max-width: 767px) {
  .content-container
    .payment-page
    .recurring-payment-wrapper
    .form-row
    .flex-wrapper
    .input-field.small {
    margin-right: 8px;
  }
}
.content-container .payment-page .submit-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .content-container .payment-page .submit-wrapper {
    padding-bottom: 70px;
  }
}
.content-container .payment-page .submit-wrapper.block-wrapper {
  display: block;
}
.content-container .payment-page .submit-wrapper.block-wrapper div {
  font-size: 1.1rem;
  margin-top: 15px;
}
.content-container .payment-page .submit-wrapper .btn {
  margin-right: 20px;
}
.content-container .payment-page.renew-contract .subtitle {
  color: #000;
  font-size: 1.4rem;
}
.content-container .payment-page.renew-contract .recurring-payment-wrapper {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .content-container .payment-page.renew-contract .recurring-payment-wrapper {
    margin-top: 4rem;
  }
}
.content-container .payment-page.renew-contract .submit-wrapper button {
  min-width: 145px;
}
.loading-container {
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #000;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 2.4rem;
  font-weight: 700;
  height: 100%;
  width: 100%;
  padding: 0 25px;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.loading-container .orange {
  color: #ff4e00;
}
.loading-container .small {
  font-size: 1.2rem;
  font-weight: 100;
}
.loading-container .loader {
  margin: 3rem 0;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.loading-container.active {
  opacity: 1;
  visibility: visible;
}
.modal-oem {
  display: none;
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .modal-oem {
    padding-left: 6px;
  }
}
.modal-oem .modal-container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: 0;
  margin: 2% auto;
  max-width: 700px;
  width: 100%;
  padding: 24px 17px 24px 28px;
}
@media screen and (max-width: 767px) {
  .modal-oem .modal-container {
    width: 97%;
  }
}
@media screen and (max-width: 1000px) and (orientation: landscape) {
  .modal-oem .modal-container {
    position: unset;
  }
}
.modal-oem .modal-container a {
  color: #ff8700;
}
.modal-oem .modal-container .modal-logo {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 65px 10px 65px;
}
@media screen and (max-width: 767px) {
  .modal-oem .modal-container .modal-logo {
    padding: 5px 20px 10px 20px;
  }
}
.modal-oem .modal-container .modal-logo img {
  width: 80%;
  display: block;
  margin: auto;
}
.modal-oem .modal-container .modal-logo div:last-child {
  margin-left: auto;
}
.modal-oem .modal-container .modal-title {
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 38px;
  font-size: 29.44px;
}
@media screen and (max-width: 767px) {
  .modal-oem .modal-container .modal-title {
    font-size: 24px;
    line-height: 30px;
  }
}
.modal-oem .modal-container .modal-content {
  font-size: 14px;
  padding-right: 12px;
}
.modal-oem .modal-container .modal-content p {
  margin-top: 0;
  line-height: 21px;
  font-size: 14px;
}
.modal-oem .modal-container .modal-content strong {
  color: #212529;
}
.modal-oem .modal-container .modal-content ol {
  list-style: none;
  counter-reset: item;
  -webkit-padding-start: 25px;
  padding-inline-start: 25px;
}
@media screen and (max-width: 767px) {
  .modal-oem .modal-container .modal-content ol {
    -webkit-padding-start: 15px;
    padding-inline-start: 15px;
  }
}
.modal-oem .modal-container .modal-content ol li {
  counter-increment: item;
  position: relative;
}
.modal-oem .modal-container .modal-content ol li:before {
  background-color: #62c8d2;
  border-radius: 50%;
  color: #000;
  content: counter(item);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700;
  height: 25px;
  width: 25px;
  position: absolute;
  left: -23px;
  top: 0;
  z-index: -1;
}
.modal-oem .modal-container .modal-content .li-box {
  margin-bottom: 14px;
  padding-left: 30px;
}
.modal-oem .modal-container .modal-content .flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 16px;
}
.modal-oem .modal-container .modal-content .flex-row .icon-col {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modal-oem .modal-container .modal-content .flex-row .icon-col {
    margin-right: 20px;
  }
}
.modal-oem .modal-container .modal-content .flex-row .icon-col img {
  width: 82px;
}
@media screen and (max-width: 767px) {
  .modal-oem .modal-container .modal-content .flex-row .icon-col img {
    width: 53px;
  }
}
.modal-oem .modal-container .modal-content .flex-row .desc-col {
  -ms-flex-preferred-size: 80%;
  flex-basis: 80%;
  line-height: 23px;
  color: #212529;
}
.modal-oem .modal-container .modal-content .contact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 26px;
}
@media screen and (max-width: 767px) {
  .modal-oem .modal-container .modal-content .contact-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.modal-oem .modal-container .modal-content .contact-wrapper .contact-method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.modal-oem
  .modal-container
  .modal-content
  .contact-wrapper
  .contact-method
  img {
  margin-right: 8px;
}
.modal-oem .modal-container .modal-content .contact-wrapper .contact-method a {
  font-weight: 700;
}
.modal-oem
  .modal-container
  .modal-content
  .contact-wrapper
  .contact-method:last-child {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .modal-oem
    .modal-container
    .modal-content
    .contact-wrapper
    .contact-method:last-child {
    margin-left: 0;
  }
}
.modal-oem
  .modal-container
  .modal-content
  .acknowledge-wrapper
  .acknowledgement {
  margin-bottom: 8px;
}
.modal-oem
  .modal-container
  .modal-content
  .acknowledge-wrapper
  .checkbox-wrapper
  label
  span {
  font-family: azo_sans, sans-serif;
  font-size: 14px;
  font-weight: 100;
  width: 100%;
  line-height: 21px;
}
.modal-oem .modal-container .modal-footer {
  font-size: 11px;
}
.showpromocodedesc p {
  font-size: 14px;
  color: #333;
  line-height: 14px;
  margin-bottom: 10px;
}
