.page-header-wrapper {
  padding-top: 100px;
  padding-bottom: 80px;
  text-align: center;
  /* background: #933260 */
  background-color: var(--vendor-primary, #2e3582);
}

.page-header-wrapper h1 {
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
}

.page-header-wrapper h1 p {
  color: white;
  line-height: 56px;
}

.tc-wrapper {
  padding: 45px 0;
}

.tc-wrapper h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 56px;
  margin: 30px 0;
  padding: 0;
}

.tc-wrapper p {
  font-size: 18px;
  line-height: 32px;
}

.tc-wrapper h3 {
  color: #fc5846;
  margin-top: 0;
}

.tc-wrapper ul li {
  font-size: 18px;
  line-height: 32px;
}

@media screen and (min-width: 481px) and (max-width: 600px) {
  .tc-wrapper p {
    font-size: 13px;
  }

  .tc-wrapper h2 {
    font-size: 25px;
    line-height: 27px;
  }

  .tc-wrapper li {
    font-size: 13px;
  }
}

@media screen and (min-width: 0px) and (max-width: 480px) {
  .tc-wrapper p {
    font-size: 13px;
  }

  .tc-wrapper ul li {
    font-size: 13px;
  }

  .tc-wrapper h2 {
    font-size: 25px;
    line-height: 27px;
  }
}

.cf-modal__close {
  display: inline-block;
  font-family: iconfont !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cf-modal__close:before {
  content: "\e904";
  color: #999;
  font-size: 18px;
}

.cf-modal__close {
  font-weight: 700;
  padding: 8px;
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 50%;
}

.cf-modal__close--top:after,
.cf-modal__close--top:before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.w--multi_select_arrow {
  display: inline-block;
  font-family: iconfont !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.w--multi_select_arrow:before {
  content: "\e906";
  color: inherit;
  font-size: 16px;
}

.w--multi_select_arrow {
  line-height: 9px;
  width: 16px;
  height: 9px;
  color: rgba(49, 68, 81, 0.4);
}

h1 {
  font-size: 45px;
  line-height: 56px;
}

.h2,
h2 {
  font-size: 34px;
  line-height: 41px;
}

.h2.flg,
h2.flg {
  font-size: 45px;
  line-height: 56px;
}

h3 {
  font-size: 24px;
  line-height: 30px;
}

h3.flg {
  font-size: 34px;
  line-height: 41px;
}

.h4,
h4 {
  font-size: 18px;
  line-height: 24px;
}

.h4.flg,
h4.flg {
  font-size: 20px;
  line-height: 24px;
}

ol li,
p,
ul li {
  /* font-size: 16px; */
  line-height: 24px;
}

ol li.flg,
p.flg,
ul li.flg {
  font-size: 20px;
  line-height: 30px;
}

ol li.fm,
p.fm,
ul li.fm {
  font-size: 14px;
  line-height: 24px;
}

ol li.fs,
p.fs,
ul li.fs {
  font-size: 12px;
  line-height: 20px;
}

ol li.fxs,
p.fxs,
ul li.fxs {
  font-size: 11px;
  line-height: 20px;
}

.fwb {
  font-weight: 700;
}

.fsi {
  font-style: italic;
}

.fwt {
  font-weight: 300;
}

.fwn {
  font-weight: 400;
}

.ls1 {
  letter-spacing: 1px;
}

.ls2 {
  letter-spacing: 2px;
}

ul.fs li {
  font-size: 13px;
  line-height: 20px;
}

ul.no-bullets {
  list-style-type: none;
  padding: 0;
}

ul.no-bullets li.list-header {
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-top: 15px;
  margin-left: -15px;
  font-weight: 700;
}

.font-mw {
  font-family: Merriweather, serif !important;
}

.w--spinner {
  width: 70px;
  text-align: center;
  margin: 0 auto;
}

.w--spinner.narrow {
  width: 48px;
}

.w--spinner > div {
  width: 10px;
  height: 10px;
  margin-left: 3px;
  background-color: #314451;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.w--spinner.white > div {
  background: #fff;
}

.w--spinner.orange > div {
  background: #fc5846;
}

.w--spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.w--spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes bouncedelay {
  0%,
  100%,
  80% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes bouncedelay {
  0%,
  100%,
  80% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.btn {
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
}

.btn:not(input):empty {
  display: none;
}

.btn--orange {
  background: #fc5846;
  color: #fff;
  border: 1px solid #ef5443;
}

.btn--orange:active,
.btn--orange:hover {
  background: #ef5443;
  text-decoration: none;
  color: #fff;
}

.btn--basedark {
  background: #314451;
  color: #fff;
  border: 1px solid #314451;
}

.btn--basedark:active,
.btn--basedark:hover {
  opacity: 0.9;
  text-decoration: none;
}

.btn--empty {
  background: 0 0;
  border: 1px solid #314451;
  color: #314451;
}

.btn--empty:active,
.btn--empty:focus,
.btn--empty:hover {
  background: #efeff4;
  color: #314451;
  text-decoration: none;
}

.btn--empty.btn--orange {
  color: #fc5846;
  border: 1px solid #ef5443;
}

.btn--empty.btn--orange:active,
.btn--empty.btn--orange:focus,
.btn--empty.btn--orange:hover {
  color: #fff;
}

.btn--empty.btn--blue {
  background: 0 0;
  border: 1px solid #129df5;
  color: #129df5;
}

.btn--empty.btn--blue:active,
.btn--empty.btn--blue:focus,
.btn--empty.btn--blue:hover {
  color: #129df5;
}

.btn--thin {
  padding: 5px 10px;
}

.btn--large {
  font-size: 18px;
  padding: 15px;
}

.btn--block {
  display: block;
  width: 100%;
}

.btn.disabled,
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.w--button {
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

.w--button:empty {
  display: none;
}

@media (max-width: 499px) {
  .w--button:focus {
    outline: 0;
  }
}

.w--button--yellow {
  background: #f8bf5f;
  color: #fff;
  border: 1px solid #ecb55a;
}

:not(.loading).w--button--yellow:active,
:not(.loading).w--button--yellow:hover {
  background: #ecb55a;
  text-decoration: none;
  color: #fff;
}

.w--button--yellow .w--spinner > div {
  background: #fff;
}

.w--button--yellow.loading,
.w--button--yellow.loading:hover {
  border: none;
  background: linear-gradient(270deg, #ff594f, #ff7344, #ff704c);
  background-size: 200% 200%;
  -webkit-animation: orangeGradientAnim 1.4s ease infinite;
  animation: orangeGradientAnim 1.4s ease infinite;
}

.w--button--orange {
  background: #fc5846;
  color: #fff;
  border: 1px solid #ef5443;
}

:not(.loading).w--button--orange:active,
:not(.loading).w--button--orange:hover {
  background: #ef5443;
  text-decoration: none;
  color: #fff;
}

.w--button--orange .w--spinner > div {
  background: #fff;
}

.w--button--orange.loading,
.w--button--orange.loading:hover {
  border: none;
  background: linear-gradient(270deg, #ff594f, #ff7344, #ff704c);
  background-size: 200% 200%;
  -webkit-animation: orangeGradientAnim 1.4s ease infinite;
  animation: orangeGradientAnim 1.4s ease infinite;
}

.w--button--basedark {
  background: #314451;
  color: #fff;
  border: 1px solid #314451;
}

.w--button--basedark:active,
.w--button--basedark:hover {
  opacity: 0.9;
  text-decoration: none;
}

.w--button--orange-gradient {
  background: #fc5846;
  background-image: linear-gradient(357.04deg, #ec5f67 0, #ff704c 100%);
  color: #fff;
  padding: 12px 24px;
  border: 0;
  text-decoration: none;
}

.w--button--orange-gradient .w--spinner > div {
  background: #fff;
}

.w--button--orange-gradient.w--button--large {
  height: 45px;
  width: 244px;
}

.w--button--orange-gradient:hover {
  background: #f26a48;
  text-decoration: none;
  color: #fff;
}

.w--button--large {
  height: 48px;
  width: 140px;
}

.w--button--link {
  background-color: transparent;
  border: none;
  text-transform: none;
  letter-spacing: 0;
  color: #4a90e2;
}

.w--button--link:hover {
  color: #314451;
}

.w--button--empty {
  background: 0 0;
  border: 1px solid #314451;
  color: #314451;
}

.w--button--empty:active,
.w--button--empty:hover {
  background: #efeff4;
  color: #314451;
  text-decoration: none;
}

.w--button--empty.w--button--orange {
  color: #fc5846;
  border: 1px solid #ef5443;
}

.w--button--thin {
  padding: 5px 10px;
}

.w--button:disabled {
  opacity: 0.6;
}

.w--button.not-allowed {
  cursor: not-allowed;
}

@-webkit-keyframes orangeGradientAnim {
  0% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

@keyframes orangeGradientAnim {
  0% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0 50%;
  }
}

.w--calendar {
  position: relative;
  cursor: pointer;
  display: inline-block;
  margin-right: 15px;
  width: 100%;
}

.w--calendar .error-label {
  font-size: 12px;
  color: red;
  margin-top: 3px;
}

.w--calendar:focus {
  outline: 0;
}

.w--calendar.w--calendar-column-2 .w--calendar_dd {
  width: 582px;
}

.w--calendar .label_minimised {
  position: absolute;
  font-size: 12px;
  opacity: 0.7;
  top: 3px;
  left: 0;
}

.w--calendar .label_full {
  color: rgba(49, 68, 81, 0.7);
}

.w--calendar_edit {
  display: inline-block;
  font-family: iconfont !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.w--calendar_edit:before {
  content: "\e902";
  color: #314451;
  font-size: 18px;
}

.w--calendar_edit {
  width: 18px;
  height: 17px;
  position: absolute;
  top: 18px;
  right: 5px;
}

.w--calendar_handle {
  position: relative;
  border-bottom: 1px solid rgba(49, 68, 81, 0.4);
  padding: 19px 65px 0 0;
}

.w--calendar_month {
  display: inline-block;
}

.w--calendar_month_header {
  background: #fff;
  padding: 10px 60px;
}

.w--calendar_month_table {
  padding: 10px 30px;
}

.w--calendar_next,
.w--calendar_prev {
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: absolute;
  left: 12px;
  top: 6px;
  background: 0 0;
  border-radius: 20px;
  padding: 4px 7px;
  width: 30px;
  height: 30px;
  font-size: 18px;
  line-height: 1em;
}

.w--calendar_next:hover,
.w--calendar_prev:hover {
  background: rgba(204, 204, 204, 0.52);
}

.w--calendar_next {
  right: 12px;
  left: auto;
}

.w--calendar_dd {
  position: absolute;
  top: 100%;
  background: #fff;
  border-radius: 3px;
  padding: 0;
  box-shadow: 0 2px 25px 0 rgba(0, 0, 0, 0.12);
  z-index: 300;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  opacity: 0;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}

.w--calendar_dd.reveal {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  z-index: 100;
}

.w--calendar_dd table th {
  background: shade(#fc5846, 5%);
  text-align: center;
}

.w--calendar_dd table td {
  text-align: center;
  padding: 5px 8px;
  border-radius: 20px;
}

.w--calendar_dd table td:hover {
  background: #efeff4;
}

.w--calendar_dd table td.cal_hlt,
.w--calendar_dd table td.cal_hlt_rng {
  background-color: #efeff4;
  position: relative;
}

.w--calendar_dd table td.cal_hlt_rng {
  border-radius: 0;
}

.w--calendar_dd table td.cal_hlt_dark {
  background-color: #314451;
  color: #fff !important;
  position: relative;
}

.w--calendar_dd td.cal_hlt_dark + td.cal_hlt_rng:after,
.w--calendar_dd td.cal_hlt_rng + td.cal_hlt_dark:after {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #efeff4;
  top: 0;
  height: 100%;
  width: 50%;
}

.w--calendar_dd td.cal_hlt_rng + td.cal_hlt_dark:after {
  left: 0;
}

.w--calendar_dd td.cal_hlt_dark + td.cal_hlt_rng:after {
  left: -50%;
}

.date-picker-header {
  text-transform: uppercase;
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1px;
}

.date-div {
  width: 73px;
  display: inline-block;
  text-align: center;
  font-size: 16px;
  margin: 20px 0;
}

.selected-date,
.unselected-date {
  margin: 20px 0;
}

.unselected-date {
  color: rgba(49, 68, 81, 0.42);
}

.selected-date {
  color: #314451;
  position: relative;
}

.selected-date:after,
.selected-date:before {
  content: "";
  display: block;
  position: absolute;
  border-bottom: 1px solid #fc5846;
  width: 39px;
  top: -10px;
  left: 16px;
}

.selected-date:after {
  top: 30px;
}

.arrow-down,
.arrow-up {
  position: relative;
  border-width: 9px 5px;
  border-style: solid;
  border-color: transparent;
  height: 0;
  width: 0;
  padding: 0;
  margin: auto;
}

.arrow-down {
  border-top-color: rgba(49, 68, 81, 0.49);
}

.arrow-up {
  border-bottom-color: rgba(49, 68, 81, 0.49);
}

.group-btn {
  text-align: center;
}

.group-btn .w--button {
  font-size: 12px;
}

.group-btn .w--button--link {
  color: #314451;
}

.bike_ModalDatePicker .error-label {
  font-size: 12px;
  color: red;
  margin-top: 3px;
}

.bike_ModalDatePicker .w--text_input:after {
  content: "";
  position: absolute;
  background-image: url("https://assets.coverfox.com/static/img/common/calendar.83d663c65529.png");
  background-size: 18px 17px;
  background-repeat: no-repeat;
  right: 2px;
  top: 38%;
  display: block;
  width: 18px;
  height: 17px;
}

.w--check_box {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  outline: 0;
}

.w--check_box:hover:before {
  background-color: #efeff4;
}

.w--check_box:before {
  transition: background-color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #314451;
  border-radius: 3px;
  top: 2px;
  left: 0;
}

.w--check_box.checked:before {
  background-image: url("https://assets.coverfox.com/static/img/common/check.b8415cd4aa28.png");
  background-position: 2px 3px;
  background-size: 10px 8px;
  background-repeat: no-repeat;
}

.w--check_box.checked:before,
.w--check_box.checked:hover:before {
  background-color: #314451;
}

.w--error {
  color: red;
  padding: 10px;
  margin: 0;
  font-weight: 400;
  line-height: 1.4em;
}

.error-label {
  font-size: 12px;
  color: red;
  margin-top: 3px;
  line-height: 1.4em;
}

.error-label .error-gpay {
  padding: 0 3px 0 17px;
}

.error-label .error-gpay li {
  font-size: 12px;
  line-height: 16px;
}

.w--label {
  margin-top: 24px;
  margin-bottom: 11px;
  display: block;
  opacity: 0.7;
  display: inline-block;
}

.w--label.flg {
  font-size: 18px;
}

.w--lrcard--middle {
  position: relative;
}

.w--lrcard--right {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

.cf-modal {
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: rgba(231, 234, 238, 0.85);
}

.cf-modal.modal--opaque_background {
  background: #e7eaee;
}

.cf-modal--light {
  background: rgba(231, 234, 238, 0.85);
}

.cf-modal--dark {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.cf-modal__content {
  width: 550px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 3px;
  margin: 0 auto;
  margin-top: 100px;
  position: relative;
  padding: 20px;
}

@media screen and (max-width: 499px) {
  .cf-modal__content {
    max-width: 100%;
  }
}

.cf-modal__close {
  position: absolute;
  cursor: pointer;
  right: 12px;
  top: 10px;
  z-index: 2;
  text-decoration: none;
}

.cf-modal__close--top {
  position: absolute;
  right: -12px;
  top: -12px;
  cursor: pointer;
  background-color: #fff;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  border: 1px solid rgba(49, 68, 81, 0.51);
}

.cf-modal__close--top:after,
.cf-modal__close--top:before {
  content: "";
  width: 2px;
  height: 12px;
  background-color: rgba(49, 68, 81, 0.51);
}

.cf-modal__close--top:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.cf-modal__close--top:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cf-modal--popup {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  opacity: 0;
  -webkit-transform-origin: 1% 1%;
  transform-origin: 1% 1%;
  border-radius: 3px;
  padding: 0;
}

.cf-modal--popup.reveal {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  z-index: 2;
}

.cf-modal--popup .cf-modal__content {
  margin-top: 0;
  box-shadow: 0 2px 25px 0 rgba(0, 0, 0, 0.12);
  width: auto;
  padding: 0;
}

.cf-modal--popup .cf-modal__content .popup-header {
  padding: 10px 15px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 0;
  opacity: 0.7;
}

.cf-modal--dialogue {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: auto;
}

.cf-modal--dialogue .cf-modal__content {
  margin: auto;
  -webkit-flex-basis: 1;
  -ms-flex-preferred-size: 1;
  flex-basis: 1;
  width: auto;
}

.cf-modal.has-inner-modal > .cf-modal__content {
  -webkit-animation: none;
  animation: none;
}

.cf-modal.dropdown-modal .cf-modal__content {
  padding: 40px 0 0;
  min-width: 285px;
}

.cf-modal.dropdown-modal .w--multi_select_dd {
  position: relative;
  box-shadow: none;
  z-index: 1;
  margin-top: 0;
  min-width: 270px;
  overflow: visible;
  text-align: left;
}

.cf-modal.dropdown-modal .w--multi_select_dd_element {
  font-size: 16px;
  border-bottom: 1px solid rgba(49, 68, 81, 0.06);
  padding: 10px 12px;
}

.cf-modal.dropdown-modal .w--multi_select_header {
  position: relative;
  margin-top: -35px;
  padding-right: 40px;
  padding-left: 40px;
  margin-bottom: 10px;
  font-size: 12px;
  text-align: center;
}

.cf-modal.dropdown-modal .w--multi_select_keyword {
  margin-bottom: 6px;
}

.cf-modal.dropdown-modal .w--multi_select_keyword input {
  min-width: 100%;
}

.cf-modal.dropdown-modal .w--calendar_dd {
  position: relative;
  box-shadow: none;
  z-index: 1;
  margin-top: 15px;
  min-width: 270px;
  overflow: visible;
  text-align: left;
  font-size: 16px;
}

.cf-modal.dropdown-modal .w--calendar_dd .w--calendar_next,
.cf-modal.dropdown-modal .w--calendar_dd .w--calendar_prev {
  top: 9px;
}

.cf-modal.dropdown-modal .w--calendar_month_table {
  padding-left: 20px;
  padding-right: 20px;
}

.cf-modal.dropdown-modal .w--calendar_month_header {
  text-align: center;
  padding-left: 40px;
  padding-right: 40px;
}

.cf-modal.dropdown-modal .w--calendar_month_header select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 3px 5px;
  margin: 0 4px;
  display: inline-block;
  font-size: 14px;
}

.cf-modal.dropdown-modal .modal_header {
  margin-top: -18px;
  padding: 0 40px;
  max-width: 278px;
}

.cf-modal .modal_back_arrow {
  display: inline-block;
  font-family: iconfont !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cf-modal .modal_back_arrow:before {
  content: "\e90b";
  color: inherit;
  font-size: 20px;
}

.cf-modal .modal_back_arrow {
  position: absolute;
  top: 14px;
  left: 20px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  padding: 6px;
  border: 1px solid transparent;
  border-radius: 3px;
}

.cf-modal .modal_back_arrow:active,
.cf-modal .modal_back_arrow:focus,
.cf-modal .modal_back_arrow:hover {
  text-decoration: none;
  border-color: #efeff4;
}

.modal-open {
  overflow: hidden;
}

.cf-modal__content.full_bg {
  background-color: rgba(231, 234, 238, 0.8);
  width: 100%;
  padding: 100px 8px 50px;
  margin: 0;
  box-shadow: none;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow-y: auto;
}

.cf-modal__content.full_bg > .cf-modal__close {
  right: 20px;
  top: 15px;
}

.cf-modal__content.full_bg > .cf-modal__close:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.modal_header {
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 2px;
  margin-bottom: 15px;
  text-align: center;
  padding: 0 20px;
  letter-spacing: 1px;
  line-height: 1.4em;
}

.modal_header--hr {
  position: relative;
  margin: 20px 0;
  text-align: center;
}

.modal_header--hr > span {
  background: #fff;
  padding: 5px 10px;
  position: relative;
}

.modal_header--hr:before {
  border-bottom: 1px solid #efeff4;
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  margin-top: -1px;
  width: 100%;
  left: 0;
}

.modal_footer {
  font-size: 12px;
  padding: 15px;
  opacity: 0.6;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(231, 234, 238, 0.43);
  margin-top: 15px;
}

.cf-modal__title--top {
  position: absolute;
  top: -34px;
  color: #fff;
  font-size: 20px;
  left: 0;
}

@-webkit-keyframes bounceInUp {
  30%,
  60%,
  80%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
  }

  30% {
    opacity: 1;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }

  60% {
    -webkit-transform: translate3d(0, 4px, 0);
    transform: translate3d(0, 4px, 0);
  }

  80% {
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  30%,
  60%,
  80%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 200px, 0);
    transform: translate3d(0, 200px, 0);
  }

  30% {
    opacity: 1;
    -webkit-transform: translate3d(0, -40px, 0);
    transform: translate3d(0, -40px, 0);
  }

  60% {
    -webkit-transform: translate3d(0, 4px, 0);
    transform: translate3d(0, 4px, 0);
  }

  80% {
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.modal-bounce-in {
  -webkit-animation-duration: 0.85s;
  animation-duration: 0.85s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

.w--multi_select {
  position: relative;
  cursor: pointer;
  display: inline-block;
  margin-right: 15px;
}

.w--multi_select:focus {
  outline: 0;
}

.w--multi_select .label_show {
  position: absolute;
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.7;
  top: 10px;
  left: 12px;
  letter-spacing: 1px;
}

.w--multi_select .label_hide {
  display: none;
}

.w--multi_select_handle {
  position: relative;
  border-radius: 3px;
  border: 1px solid rgba(49, 68, 81, 0.4);
  padding: 23px 40px 6px 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.w--multi_select .w--multi_select_handle:hover {
  background: #f7f7fa;
}

.w--multi_select_handle .dd_placeholder {
  position: absolute;
  top: 50%;
  -webkit-transform: translate3D(0, -50%, 0);
  transform: translate3D(0, -50%, 0);
}

.w--multi_select_handle:focus {
  outline: 0;
}

.w--multi_select_dd {
  position: absolute;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  padding: 0;
  box-shadow: 0 2px 25px 0 rgba(0, 0, 0, 0.12);
  z-index: 300;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  opacity: 0;
  -webkit-transform-origin: 1% 1%;
  transform-origin: 1% 1%;
  top: 0;
}

.w--multi_select_dd input {
  padding: 8px 9px 8px 34px;
  background-color: transparent;
  height: 32px;
  border-radius: 3px;
  border: 1px solid #4a90e2;
  width: 100%;
  min-width: 100%;
}

.w--multi_select_dd input:focus {
  outline: 0;
}

.w--multi_select_dd.reveal {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  opacity: 1;
  z-index: 1;
}

.w--multi_select_dd_element {
  display: block;
  padding: 5px 23px;
  font-size: 12px;
}

.w--multi_select_dd_element:hover {
  background: #f7f7fa;
}

.w--multi_select_dd_element.selected {
  background: #efeff4;
}

.w--multi_select_dd_element.selected.check {
  background-color: #fff;
  font-weight: 700;
}

.w--multi_select_dd_element.selected.check:before {
  position: absolute;
  right: 18px;
  top: 13px;
  width: 17px;
  height: 8px;
  border: 2px solid #643fbd;
  content: "";
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.w--multi_select_dd_element.selected.check:hover {
  background-color: #f7f7fa;
}

.w--multi_select_dd_element.selected.forcePush {
  border-bottom: 1px solid rgba(49, 68, 81, 0.2);
}

.w--multi_select_options {
  width: 100%;
  max-height: 300px;
  overflow: hidden;
  overflow: auto;
}

.w--multi_select_options.touch-scrolling {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.w--multi_select_header {
  padding: 16px 23px 6px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px;
}

.w--multi_select_footer {
  font-size: 12px;
  padding: 15px;
  opacity: 0.6;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(231, 234, 238, 0.43);
  margin-top: 15px;
}

.w--multi_select_arrow {
  position: absolute;
  right: 10px;
  top: 43%;
}

.w--multi_select .w--error {
  position: absolute;
  padding-left: 0;
}

.w--multi_select.single_row_dd .w--multi_select_handle {
  float: left;
  padding: 8px;
  padding-left: 15px;
  padding-right: 40px;
}

.w--multi_select.single_row_dd .w--multi_select_handle .dd_placeholder {
  position: relative;
  top: 0;
  -webkit-transform: translate3D(0, 0, 0);
  transform: translate3D(0, 0, 0);
}

.w--multi_select.single_row_dd .label_show {
  position: relative;
  float: left;
  top: 0;
  left: 0;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  opacity: 1;
}

.w--multi_select.single_row_dd .selected_items {
  opacity: 0.7;
  float: left;
  margin-left: 6px;
}

.w--multi_select .w--multi_group_header {
  color: #999;
  padding: 17px 23px 8px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 1px;
  text-align: left;
  position: relative;
}

.w--multi_select .w--multi_group_header .hb {
  background-color: #fff;
  padding: 0 5px;
  position: relative;
  left: -5px;
  z-index: 1;
}

.w--multi_select .w--multi_group_header:before {
  content: "";
  display: block;
  background-color: #efeff4;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 0;
}

.w--multi_select_keyword {
  margin: 6px 14px 0;
  position: relative;
  background-color: #fff;
}

.w--multi_select_keyword:before {
  content: "\e911";
  display: inline-block;
  font-size: 18px;
  color: #4a90e2;
  font-family: iconfont !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 11px;
  margin-top: -8px;
  z-index: 0;
}

.w--multi_select_keyword input {
  position: relative;
  z-index: 1;
}

.w--multi_select_keyword.no_icon input {
  padding-left: 9px;
}

.w--multi_select_keyword.no_icon:before {
  display: none;
}

.w--highlight_dd_option {
  background-color: #efeff4;
}

.w--radio {
  margin-bottom: 10px;
}

.w--radio__label {
  width: 60%;
  display: inline-block;
  color: rgba(49, 68, 81, 0.7);
}

.w--radio__options {
  width: 40%;
  display: inline-block;
}

.w--radio .w--radio__option {
  display: inline-block;
  margin-right: 30px;
  position: relative;
  cursor: pointer;
  min-width: 35px;
}

.w--radio .w--radio__option:focus {
  outline: 0;
}

.w--radio .w--radio__option:last-child {
  margin-right: 0;
}

.w--radio .w--radio__option.radio_selected:before {
  background-color: #314451;
}

.w--radio .w--radio__option.radio_selected:after {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

.w--radio .w--radio__option:after {
  position: absolute;
  content: "";
  width: 6px;
  left: -18px;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(2);
  transform: translateY(-50%) scale(2);
  opacity: 0;
  height: 6px;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.w--radio .w--radio__option:before {
  position: absolute;
  content: "";
  width: 14px;
  left: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 14px;
  border: 1px solid #314451;
  border-radius: 20px;
}

.w--radio .error-label {
  font-size: 12px;
  color: red;
}

.w--radio--block .w--radio__label,
.w--radio--block .w--radio__options {
  display: block;
  width: 100%;
}

.w--radio--block .w--radio__option {
  margin-left: 24px;
  display: block;
}

.w--text_input {
  position: relative;
  margin-bottom: 10px;
}

.w--text_input hr {
  margin: 0;
  position: relative;
  border-top: 1px solid rgba(46, 68, 81, 0.4);
  overflow: visible;
}

.w--text_input hr:after {
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: absolute;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(270deg, #1aa2d8, #4d60ff, #4cb9e4);
  border-radius: 3px;
  content: "";
  left: 0;
  right: 100%;
}

.w--text_input.is_focused hr:after {
  right: 0;
}

.w--text_input.w--text_input-mobile .country_code {
  position: absolute;
  top: 15px;
  left: 0;
  display: none;
  opacity: 0.5;
}

.w--text_input.w--text_input-mobile .country_code.reveal {
  display: block;
}

.w--text_input.w--text_input-mobile input {
  padding-left: 28px;
}

.w--text_input input {
  width: 100%;
  border: none;
  outline: 0;
  color: #314451;
  background: 0 0;
  padding-top: 15px;
  padding-left: 0;
  opacity: 1;
}

.w--text_input.has-error .error-label {
  font-size: 12px;
  color: red;
  margin-top: 3px;
}

.w--text_input.has-error .error-label.absolute {
  position: absolute;
  bottom: -20px;
}

.w--text_input--label {
  position: absolute;
  pointer-events: none;
  color: rgba(49, 68, 81, 0.7);
  font-size: 14px;
  left: 0;
  top: 14px;
  font-weight: 400;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.w--text_input--label-minimized {
  font-size: 12px;
  top: 0;
}

.w--text_input.text_ellipsis input {
  text-overflow: ellipsis;
  padding-right: 30px;
}

.w--tabs {
  margin-bottom: 15px;
}

.w--tabs .w--tabs__tab {
  display: inline-block;
  opacity: 0.4;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
  font-size: 12px;
}

.w--tabs .w--tabs__tab.active {
  opacity: 1;
}

.w--tabs .w--tabs__tab.active:after {
  content: "";
  height: 2px;
  border-radius: 3px;
  background: #314451;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
}

.w--formgroup {
  position: relative;
  text-align: center;
  margin: 5px auto;
}

.w--formgroup .w--text_input {
  margin-bottom: 3px;
  height: 42px;
  background: #fff;
}

.w--formgroup .w--text_input input {
  height: 100%;
  padding-left: 8px;
}

.w--formgroup .w--text_input hr {
  display: none;
}

.w--formgroup .w--text_input-mobile input {
  padding-left: 30px;
  padding-top: 10px;
}

.w--formgroup .w--text_input--label {
  left: 8px;
  top: 11px;
}

.w--formgroup .w--text_input--label-minimized {
  top: 0;
}

.w--formgroup .w--text_input .country_code {
  left: 3px;
}

.w--formgroup .has-error {
  margin-bottom: 17px;
}

.w--formgroup .w--button {
  position: absolute;
  border-radius: 0 2px 2px 0;
  right: 0;
  top: 0;
  height: 42px;
  text-transform: none;
}

.w--formgroup .w--button:focus {
  outline: 0;
}

.w--formgroup .error-label {
  text-align: left;
  white-space: nowrap;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.otp-loader {
  margin-top: 120px;
  margin-bottom: 120px;
}

.otp-modal-content {
  color: #314451;
  font-size: 13px;
  max-width: 500px;
  margin: auto;
  padding: 20px;
  position: relative;
  text-align: center;
}

.otp-modal-content h4 {
  font-weight: 500;
  font-size: 18px;
  margin: 20px 0 15px;
}

.otp-modal-content h4 strong {
  font-weight: 400;
}

.otp-modal-content h5 {
  font-weight: 500;
  font-size: 16px;
  margin: 15px 0;
}

.otp-modal-content p {
  font-size: inherit;
  opacity: 0.6;
  margin: 15px;
  line-height: 18px;
}

.otp-modal-content a {
  cursor: pointer;
  color: #0076ff;
}

.otp-modal-content a:active,
.otp-modal-content a:focus,
.otp-modal-content a:hover {
  text-decoration: none;
  outline: 0;
  color: #0076ff;
}

.otp-modal-content a img {
  height: 31px;
}

.otp-modal-content .btn {
  margin-top: 20px;
  padding: 8px 15px;
  min-width: 170px;
  text-transform: uppercase;
  font-size: 14px;
}

.otp-modal-content .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.otp-modal-content .btn.w--button--large {
  max-width: 100%;
  width: 330px;
}

.otp-modal-content .btn.btn-sec {
  height: 40px;
}

.w--text_input.otp-input {
  max-width: 330px;
  margin: 20px auto 0;
}

.w--text_input.otp-input .error-label {
  text-align: left;
}

.w--text_input.otp-input.has_error hr {
  border-color: #e01717;
}

.w--text_input.otp-input.has_error input {
  color: #e01717;
}

.otp-error {
  max-width: 300px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.otp-modal-actions {
  font-size: 11px;
  padding: 20px 0 0;
}

.otp-modal-actions a,
.otp-modal-actions span {
  margin: 4px;
  display: inline-block;
  vertical-align: middle;
}

.otp-modal-actions a > img,
.otp-modal-actions span > img {
  margin: 0 4px;
}

.otp-modal-actions .pipe-sep {
  border-right: 1px solid rgba(0, 0, 0, 0.4);
  padding-right: 8px;
}

.otp-modal-actions .w--spinner {
  display: inline-block;
}

.otp-modal-actions .ic_checkmark {
  display: inline-block;
  font-family: iconfont !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.otp-modal-actions .ic_checkmark:before {
  content: "\e905";
  color: inherit;
  font-size: inherit;
}

.otp-modal-actions .ic_checkmark {
  font-size: 14px;
  margin: -4px 4px;
}

.info-msg {
  margin-top: 10px;
  color: #314451;
}

.cf-modal.cf-modal--otp .w--text_input.otp-input {
  font-size: 16px;
}

.cf-modal.cf-modal--otp .w--text_input.otp-input input {
  padding-top: 14px;
  outline: 0;
  background-color: transparent;
  height: 40px;
  font-size: inherit;
}

.cf-modal.cf-modal--otp
  .w--text_input.otp-input.w--text_input-mobile
  .country_code {
  top: 16px;
}

.cf-modal.cf-modal--otp .w--text_input.otp-input.w--text_input-mobile input {
  padding-left: 32px;
}

.cf-modal.cf-modal--otp .w--text_input.otp-input .w--text_input--label-full {
  top: 16px;
}

.cf-modal.cf-modal--otp .w--text_input.otp-input .error-label {
  padding-top: 4px;
}

.cf-modal.cf-modal--otp .otp-modal__close {
  display: none;
}

.cf-modal.cf-modal--otp-alt {
  background: rgba(49, 68, 81, 0.9);
}

.cf-modal.cf-modal--otp-alt .cf-modal__content.full_bg {
  background-color: transparent;
}

.cf-modal.cf-modal--otp-alt .otp-modal-content {
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: #fff;
}

.cf-modal.cf-modal--otp-alt .otp-modal-content a {
  cursor: pointer;
  color: #0076ff;
}

.cf-modal.cf-modal--otp-alt .otp-modal-content a:active,
.cf-modal.cf-modal--otp-alt .otp-modal-content a:focus,
.cf-modal.cf-modal--otp-alt .otp-modal-content a:hover {
  text-decoration: none;
  outline: 0;
  color: #314451;
}

.cf-modal.cf-modal--otp-alt .otp-modal-content .w--button--large {
  width: auto;
  min-width: 170px;
}

.cf-modal.cf-modal--otp-alt .w--text_input.otp-input .error-label {
  text-align: center;
  padding-left: 0;
}

.cf-modal.cf-modal--otp-alt .cf-modal__close {
  display: none;
}

.cf-modal.cf-modal--otp-alt .otp-modal__close {
  display: block;
}

.cf-modal.cf-modal--otp-alt .w--text_input.otp-input {
  max-width: 300px;
}

.otp-red-alert {
  margin: 20px auto 0;
  text-align: left;
  color: #e01717;
  max-width: 330px;
}

.otp-red-alert a {
  color: #4a90e2;
  text-decoration: underline;
}

.otp-red-alert a:active,
.otp-red-alert a:focus,
.otp-red-alert a:hover {
  text-decoration: underline;
}

.otp-doc-separate {
  margin: 35px auto 0;
  max-width: 460px;
  position: relative;
  text-align: center;
}

.otp-doc-separate > span {
  display: inline-block;
  padding: 0 8px;
  background-color: #e7eaee;
  position: relative;
  z-index: 1;
  line-height: 30px;
}

.otp-doc-separate:before {
  content: "";
  border-bottom: 1px solid rgba(49, 68, 81, 0.2);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 0;
}

.cf-modal.cf-modal--otp-true-caller {
  background: rgba(49, 68, 81, 0.9);
}

.cf-modal.cf-modal--otp-true-caller .cf-modal__content.full_bg {
  background-color: transparent;
}

.cf-modal.cf-modal--otp-true-caller .otp-modal-content {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: #fff;
  max-width: 576px;
}

.cf-modal.cf-modal--otp-true-caller .otp-modal-content h4 {
  margin-top: 0;
}

.cf-modal.cf-modal--otp-true-caller .otp-modal-content a {
  cursor: pointer;
  color: #0076ff;
}

.cf-modal.cf-modal--otp-true-caller .otp-modal-content a:active,
.cf-modal.cf-modal--otp-true-caller .otp-modal-content a:focus,
.cf-modal.cf-modal--otp-true-caller .otp-modal-content a:hover {
  text-decoration: none;
  outline: 0;
  color: #314451;
}

.cf-modal.cf-modal--otp-true-caller .otp-modal-content .otp-input {
  margin-top: 0;
}

.cf-modal.cf-modal--otp-true-caller .otp-modal-content .w--button--large {
  margin-top: 0;
  width: 100px;
  padding: 0;
  height: 36px;
}

.cf-modal.cf-modal--otp-true-caller .error-label {
  text-align: left;
}

.cf-modal.cf-modal--otp-true-caller .cf-modal__close {
  display: none;
}

.cf-modal.cf-modal--otp-true-caller .otp-modal__close {
  display: block;
}

.cf-modal.cf-modal--otp-true-caller .otp-modal-fields {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 400px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cf-modal.cf-modal--otp-true-caller .omf__field {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cf-modal.cf-modal--otp-true-caller .omf__field .otp-input {
  width: 175px;
  margin: 0 auto 10px;
}

.cf-modal.cf-modal--otp-true-caller .text-black {
  color: #314451;
  font-weight: 600;
}

.otp-modal-footer {
  border-top: 1px solid rgba(49, 68, 81, 0.14);
  background-color: #f7f7f7;
  margin: 20px -20px -20px;
  padding: 12px 20px 0;
}

.true-caller {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: auto;
  max-width: 430px;
  text-align: left;
}

.tc__left {
  padding: 20px 0;
  margin-right: 12px;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: rgba(49, 68, 81, 0.7);
}

.tc__left h5 {
  margin: 6% 0;
  font-size: 18px;
  color: inherit;
}

.tc__logo {
  background: url("https://assets.coverfox.com/static/img/logos/truecaller-logo.d8f11fcb29d1.png")
    center center no-repeat transparent;
  display: inline-block;
  background-size: 100%;
  width: 5em;
  height: 1em;
}

.tc__img {
  background: url("https://assets.coverfox.com/static/img/logos/truecaller-otp-2x.16531ca33f69.png")
    center bottom no-repeat transparent;
  background-size: 100%;
  width: 45%;
  padding-top: 40%;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

body.fullscreen-mode {
  overflow: hidden;
  height: 100%;
  position: absolute;
}

body.fullscreen-mode:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 300;
}

.mobile-fullscreen {
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  width: 100%;
  background: #fff;
  position: fixed;
  z-index: 301;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 32px;
}

.error-display-modal {
  padding: 20px 40px;
  max-width: 442px;
  width: auto;
  text-align: center;
}

.error-display-modal .greetings-text {
  font-size: 24px;
  color: #3023ae;
  background: -webkit-linear-gradient(-134deg, #c86dd7 0, #3023ae 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 700;
}

.edm__title {
  font-size: 16px;
  color: #5333b7;
  margin-top: 10px;
}

.edm__para {
  margin-top: 10px;
  font-size: 14px;
}

.w--button--edp {
  width: 147px;
  margin-top: 25px;
}

.cf-page-loaded {
  position: relative;
}

.cf-page-loaded:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 3px;
  border-radius: 3px;
  width: 0;
  z-index: 400;
  background-image: linear-gradient(
    to right,
    #5856d6,
    #0084ff,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #0084ff
  );
  -webkit-animation: barload 1s ease-in;
  animation: barload 1s ease-in;
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

@-webkit-keyframes barload {
  0%,
  100% {
    transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
  }

  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes barload {
  0%,
  100% {
    transition-timing-function: cubic-bezier(1, 0, 0.65, 0.85);
  }

  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
body,
button,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Lato, "Helvetica Neue", Helvetica, Tahoma, Arial, sans-serif;
  color: #314451;
  font-variant-ligatures: none;
}

.sticky-padding {
  padding-bottom: 120px;
}

.react_native_show {
  display: none;
}

.react-native-mode .react_native_show {
  display: block !important;
}

.react-native-mode .react_native_hide,
.react-native-mode w-div {
  display: none !important;
}

.react-native-mode #top-bar.header-wrapper {
  visibility: hidden !important;
}
