/*! nouislider - 14.2.0 - 3/27/2020 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
.noUi-connect {
  height: 100%;
  width: 100%;
}
.noUi-origin {
  height: 10%;
  width: 10%;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  top: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.ui__alert {
  position: fixed;
  left: 0;
  right: 0;
  top: 50px;
  z-index: 999999; }
  .ui__alert--main {
    width: 560px;
    margin: 0px auto;
    background-color: #eeeeee;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
    padding: 15px 20px 15px 55px;
    position: relative; }
    @media (max-width: 640px) {
      .ui__alert--main {
        width: 94%; } }
  .ui__alert--content {
    font-size: 14px;
    font-weight: normal;
    color: #444444; }
    .ui__alert--content a {
      text-decoration: underline; }
  .ui__alert--icon {
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 26px;
    line-height: 26px;
    color: #999999; }
  .ui__alert--accept .ui__alert--main, .ui__alert--success .ui__alert--main {
    background-color: #4e9f2a; }
  .ui__alert--accept .ui__alert--content, .ui__alert--success .ui__alert--content {
    color: #ffffff; }
    .ui__alert--accept .ui__alert--content a, .ui__alert--success .ui__alert--content a {
      color: #ffffff; }
  .ui__alert--accept .ui__alert--icon, .ui__alert--success .ui__alert--icon {
    color: #345525; }
  .ui__alert--error .ui__alert--main, .ui__alert--danger .ui__alert--main {
    background-color: #be3333; }
  .ui__alert--error .ui__alert--content, .ui__alert--danger .ui__alert--content {
    color: #ffffff; }
    .ui__alert--error .ui__alert--content a, .ui__alert--danger .ui__alert--content a {
      color: #ffffff; }
  .ui__alert--error .ui__alert--icon, .ui__alert--danger .ui__alert--icon {
    color: #712121; }
  .ui__alert--warning .ui__alert--main {
    background-color: #f9bf2c; }
  .ui__alert--warning .ui__alert--content {
    color: #36464e; }
    .ui__alert--warning .ui__alert--content a {
      color: #36464e; }
  .ui__alert--warning .ui__alert--icon {
    color: #ab8628; }

.easyearn__banner ._banner--main ._image img {
  width: 100%; }

@media (max-width: 769px) {
  .easyearn__banner ._banner--main ._image._desktop {
    display: none; } }

.easyearn__banner ._banner--main ._image._mobile {
  display: none; }
  @media (max-width: 769px) {
    .easyearn__banner ._banner--main ._image._mobile {
      display: block; } }

.easyearn__about {
  margin-top: 110px; }
  .easyearn__about._on-play .feature--main .feature--thumb ._video--trigger,
  .easyearn__about._on-play .feature--main .feature--thumb ._thumb--inner {
    opacity: 0;
    visibility: hidden; }
  .easyearn__about.feature .feature--thumb {
    opacity: 1; }
    .easyearn__about.feature .feature--thumb ._thumb--inner {
      width: 100%;
      position: relative;
      z-index: 2;
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -ms-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s; }
    .easyearn__about.feature .feature--thumb ._video--inner {
      width: 100%;
      height: 100%;
      position: relative; }
    .easyearn__about.feature .feature--thumb ._video--main {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0; }
      @media (max-width: 769px) {
        .easyearn__about.feature .feature--thumb ._video--main {
          overflow: hidden; } }
      .easyearn__about.feature .feature--thumb ._video--main iframe {
        width: 100% !important;
        height: 100% !important; }
    .easyearn__about.feature .feature--thumb ._video--thumb ._image {
      width: 100%; }
    .easyearn__about.feature .feature--thumb ._video--trigger {
      position: absolute;
      z-index: 3;
      width: 78px;
      height: 78px;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      background: url("../images/icons/play--circle--white--sh.png") no-repeat 0 0;
      background-size: contain;
      border: 0 none;
      padding: 0;
      outline: none; }
      @media (min-width: 1900px) {
        .easyearn__about.feature .feature--thumb ._video--trigger {
          width: 98px;
          height: 98px; } }
      @media (max-width: 768px) {
        .easyearn__about.feature .feature--thumb ._video--trigger {
          width: 68px;
          height: 68px; } }
      @media (max-width: 480px) {
        .easyearn__about.feature .feature--thumb ._video--trigger {
          width: 58px;
          height: 58px; } }
  @media (max-width: 768px) {
    .easyearn__about.feature .feature--content ._content--inner {
      padding-right: 40px; } }
  @media (max-width: 580px) {
    .easyearn__about.feature .feature--content ._content--inner {
      padding-right: 20px; } }

.easyearn__feature {
  margin-top: 110px; }
  .easyearn__feature ._feature--inner {
    overflow: hidden; }
  .easyearn__feature ._feature--intro {
    text-align: center;
    margin-bottom: 50px; }
    .easyearn__feature ._feature--intro .section--title {
      margin-bottom: 45px; }
  .easyearn__feature ._feature--main {
    background-color: #f2f5f6;
    padding-bottom: 78px;
    display: block; }
  .easyearn__feature ._feature--section ._section--inner {
    padding-top: 60px;
    padding-bottom: 64px;
    border-bottom: 5px solid #ff4582; }
  .easyearn__feature ._feature--section ._section--header h3 {
    font-size: 26px;
    font-weight: bold;
    margin: 0 0 60px;
    text-align: center; }
  .easyearn__feature ._feature--section ._feature--items {
    display: flex;
    flex-direction: row;
    align-items: inherit;
    padding-left: 90px;
    padding-right: 90px;
    margin-left: -30px;
    margin-right: -30px; }
    @media (max-width: 992px) {
      .easyearn__feature ._feature--section ._feature--items {
        padding-left: 30px;
        padding-right: 30px; } }
    @media (max-width: 768px) {
      .easyearn__feature ._feature--section ._feature--items {
        flex-direction: column;
        align-items: center; } }
  .easyearn__feature ._feature--section ._feature--item {
    width: 50%;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center; }
    @media (max-width: 768px) {
      .easyearn__feature ._feature--section ._feature--item {
        width: 100%;
        max-width: 480px;
        margin-bottom: 60px; }
        .easyearn__feature ._feature--section ._feature--item:last-child {
          margin-bottom: 0; } }
    @media (max-width: 768px) {
      .easyearn__feature ._feature--section ._feature--item .feature--thumb {
        margin-bottom: 20px; } }
    .easyearn__feature ._feature--section ._feature--item .feature--title {
      min-height: 60px; }
      @media (max-width: 768px) {
        .easyearn__feature ._feature--section ._feature--item .feature--title {
          min-height: 0;
          margin-bottom: 20px; } }
    .easyearn__feature ._feature--section ._feature--item .feature--info {
      padding-left: 0;
      padding-right: 0; }
      .easyearn__feature ._feature--section ._feature--item .feature--info p {
        margin-bottom: 10px; }
    .easyearn__feature ._feature--section ._feature--item ._w-label {
      display: flex;
      flex-direction: row;
      align-items: center; }
      .easyearn__feature ._feature--section ._feature--item ._w-label ._label {
        width: 80px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
        text-align: center;
        margin-right: 16px;
        background-color: #00c79a; }
        .easyearn__feature ._feature--section ._feature--item ._w-label ._label._label--red {
          background-color: #ff4582; }
  .easyearn__feature ._feature--section:first-child ._section--header h3 {
    color: #ff4582; }
  .easyearn__feature ._feature--section:first-child ._feature--items {
    padding-left: 150px;
    padding-right: 150px; }
    @media (max-width: 992px) {
      .easyearn__feature ._feature--section:first-child ._feature--items {
        padding-left: 90px;
        padding-right: 90px; } }
    @media (max-width: 768px) {
      .easyearn__feature ._feature--section:first-child ._feature--items {
        padding-left: 30px;
        padding-right: 30px; } }
  .easyearn__feature ._feature--section:first-child ._feature--item:first-child .feature--info {
    display: inline-block;
    text-align: left; }
  .easyearn__feature ._feature--section:nth-child(2) ._section--inner {
    border-bottom-color: #00c79a; }
  .easyearn__feature ._feature--section:nth-child(2) ._section--header h3 {
    color: #00c79a; }
  .easyearn__feature ._feature--section:nth-child(2) ._feature--item {
    width: 33.33333333%; }
    @media (max-width: 768px) {
      .easyearn__feature ._feature--section:nth-child(2) ._feature--item {
        width: 100%;
        max-width: 480px; } }
  .easyearn__feature ._feature--section:nth-child(3) ._section--inner {
    border-bottom-color: #8191f3; }
  .easyearn__feature ._feature--section:nth-child(3) ._section--header h3 {
    color: #8191f3; }
  .easyearn__feature ._feature--section:nth-child(3) ._feature--items {
    padding-left: 150px;
    padding-right: 150px; }
    @media (max-width: 992px) {
      .easyearn__feature ._feature--section:nth-child(3) ._feature--items {
        padding-left: 90px;
        padding-right: 90px; } }
    @media (max-width: 768px) {
      .easyearn__feature ._feature--section:nth-child(3) ._feature--items {
        padding-left: 30px;
        padding-right: 30px; } }
  .easyearn__feature ._feature--section:nth-child(3) ._feature--item:first-child .feature--info {
    display: inline-block;
    text-align: left; }

.easyearn__why {
  margin-top: 110px; }
  .easyearn__why ._why--intro {
    text-align: center;
    margin-bottom: 50px; }
    .easyearn__why ._why--intro .section--title {
      margin-bottom: 45px; }
  .easyearn__why ._why--list {
    display: flex;
    flex-direction: row;
    align-items: inherit;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px; }
    @media (max-width: 992px) {
      .easyearn__why ._why--list {
        margin-left: -5px;
        margin-right: -5px; } }
    .easyearn__why ._why--list ._section--break {
      flex-basis: 100%;
      width: 0;
      height: 0;
      display: none; }
      @media (max-width: 768px) {
        .easyearn__why ._why--list ._section--break {
          display: block; } }
    .easyearn__why ._why--list ._section--box {
      width: 33.333333%;
      padding-left: 20px;
      padding-right: 20px;
      margin-bottom: 40px;
      display: flex;
      flex-direction: column; }
      @media (max-width: 992px) {
        .easyearn__why ._why--list ._section--box {
          padding-left: 5px;
          padding-right: 5px;
          margin-bottom: 20px; } }
      @media (max-width: 768px) {
        .easyearn__why ._why--list ._section--box {
          width: 50%; } }
      @media (max-width: 480px) {
        .easyearn__why ._why--list ._section--box {
          width: 100%; }
          .easyearn__why ._why--list ._section--box._box--main {
            width: 100%; }
            .easyearn__why ._why--list ._section--box._box--main--last {
              margin-top: 30px; } }
      .easyearn__why ._why--list ._section--box ._box--header {
        text-align: center;
        padding: 22px 52px;
        background-color: #143350; }
        @media (max-width: 1200px) {
          .easyearn__why ._why--list ._section--box ._box--header {
            padding-left: 10px;
            padding-right: 10px; } }
        .easyearn__why ._why--list ._section--box ._box--header h3 {
          color: #ffffff;
          font-weight: bold;
          margin: 0;
          font-size: 26px;
          line-height: 26px; }
      .easyearn__why ._why--list ._section--box ._box--content {
        text-align: center;
        background-color: #f2f5f6;
        padding: 50px 20px;
        flex: 1; }
        .easyearn__why ._why--list ._section--box ._box--content ul {
          display: inline-block;
          text-align: left;
          padding: 0;
          margin: 0;
          list-style: none; }
          .easyearn__why ._why--list ._section--box ._box--content ul li {
            margin: 0;
            padding: 0; }
          .easyearn__why ._why--list ._section--box ._box--content ul li {
            margin-bottom: 10px;
            display: flex;
            flex-direction: row;
            align-items: center; }
            .easyearn__why ._why--list ._section--box ._box--content ul li:last-child {
              margin-bottom: 0; }
            .easyearn__why ._why--list ._section--box ._box--content ul li ._icon {
              display: inline-block;
              width: 20px;
              height: 20px;
              margin-right: 32px;
              background-position: 0 0;
              background-repeat: no-repeat;
              background-size: contain; }
              .easyearn__why ._why--list ._section--box ._box--content ul li ._icon--smile {
                background-image: url("../images/easyearn/icon--smile.png"); }
              .easyearn__why ._why--list ._section--box ._box--content ul li ._icon--danger {
                background-image: url("../images/easyearn/icon--remove.png"); }
      .easyearn__why ._why--list ._section--box:nth-child(1) ._box--header {
        background-color: #00c79a; }
      .easyearn__why ._why--list ._section--box._box--main--last ._box--header {
        background-color: #ff4582; }

.easyearn__calculator {
  margin-top: 80px; }
  .easyearn__calculator ._calculator--intro {
    text-align: center;
    margin-bottom: 70px; }
    .easyearn__calculator ._calculator--intro .section--title {
      margin-bottom: 45px; }
  .easyearn__calculator ._calculator--form {
    text-align: center; }
    .easyearn__calculator ._calculator--form ._field--money {
      display: flex;
      flex-direction: row;
      align-items: center;
      margin-top: 60px; }
      .easyearn__calculator ._calculator--form ._field--money ._value {
        font-size: 26px;
        font-weight: bold;
        color: #143350; }
        @media (max-width: 480px) {
          .easyearn__calculator ._calculator--form ._field--money ._value {
            font-size: 20px; } }
        .easyearn__calculator ._calculator--form ._field--money ._value--from {
          margin-right: 25px; }
          @media (max-width: 480px) {
            .easyearn__calculator ._calculator--form ._field--money ._value--from {
              margin-right: 15px; } }
        .easyearn__calculator ._calculator--form ._field--money ._value--to {
          margin-left: 45px; }
          @media (max-width: 480px) {
            .easyearn__calculator ._calculator--form ._field--money ._value--to {
              margin-left: 35px; } }
      .easyearn__calculator ._calculator--form ._field--money ._input {
        flex: 1;
        height: 8px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
        border-radius: 20px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none;
        border: 0 none;
        background-color: #f2f5f6;
        margin: 0 -20px 0 10px;
        padding: 0 20px 0 10px; }
      .easyearn__calculator ._calculator--form ._field--money .noUi-handle {
        border: 0 none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        -o-box-shadow: none;
        box-shadow: none;
        width: 8px;
        height: 26px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        -ms-border-radius: 20px;
        -o-border-radius: 20px;
        border-radius: 20px;
        background-color: #69438e;
        top: -9px;
        right: -10px;
        outline: none; }
        .easyearn__calculator ._calculator--form ._field--money .noUi-handle:before, .easyearn__calculator ._calculator--form ._field--money .noUi-handle:after {
          display: none; }
    .easyearn__calculator ._calculator--form .select2.select2-container {
      width: 360px !important;
      margin: 0px auto;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      -ms-border-radius: 0;
      -o-border-radius: 0;
      border-radius: 0;
      z-index: 9;
      border-radius: 0 !important;
      z-index: 9;
      border-bottom: 2px solid #e5e5e5; }
    .easyearn__calculator ._calculator--form .select2.select2-container--open .select2-selection .select2-selection__arrow b {
      background-image: url("https://dashrevamp.s3-ap-southeast-1.amazonaws.com/assets/images/icons/arrow--up--primary.svg"); }
    .easyearn__calculator ._calculator--form .select2 .select2-selection {
      border: 0 none;
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      -ms-border-radius: 0;
      -o-border-radius: 0;
      border-radius: 0;
      height: 48px;
      display: flex;
      align-items: center; }
      @media (min-width: 1900px) {
        .easyearn__calculator ._calculator--form .select2 .select2-selection {
          height: 53px; } }
      @media (min-width: 2500px) {
        .easyearn__calculator ._calculator--form .select2 .select2-selection {
          height: 62px; } }
      @media (max-width: 768px) {
        .easyearn__calculator ._calculator--form .select2 .select2-selection {
          height: 34px; } }
      .easyearn__calculator ._calculator--form .select2 .select2-selection .select2-selection__rendered {
        position: relative;
        text-align: left;
        font-size: 22px;
        line-height: 22px;
        color: #69438e; }
        @media (min-width: 1900px) {
          .easyearn__calculator ._calculator--form .select2 .select2-selection .select2-selection__rendered {
            font-size: 43px;
            line-height: 53px; } }
        @media (min-width: 2500px) {
          .easyearn__calculator ._calculator--form .select2 .select2-selection .select2-selection__rendered {
            font-size: 52px;
            line-height: 62px; } }
        @media (max-width: 768px) {
          .easyearn__calculator ._calculator--form .select2 .select2-selection .select2-selection__rendered {
            font-size: 24px;
            line-height: 34px;
            padding-right: 10px;
            padding-left: 0; } }
        @media (max-width: 480px) {
          .easyearn__calculator ._calculator--form .select2 .select2-selection .select2-selection__rendered {
            font-size: 22px;
            line-height: 30px; } }
        @media (max-width: 380px) {
          .easyearn__calculator ._calculator--form .select2 .select2-selection .select2-selection__rendered {
            font-size: 20px;
            line-height: 28px; } }
        @media (max-width: 340px) {
          .easyearn__calculator ._calculator--form .select2 .select2-selection .select2-selection__rendered {
            font-size: 19px;
            line-height: 26px; } }
      .easyearn__calculator ._calculator--form .select2 .select2-selection .select2-selection__arrow {
        height: 48px;
        line-height: 48px;
        right: 0;
        width: 20px; }
        @media (min-width: 1900px) {
          .easyearn__calculator ._calculator--form .select2 .select2-selection .select2-selection__arrow {
            width: 22px; } }
        @media (max-width: 768px) {
          .easyearn__calculator ._calculator--form .select2 .select2-selection .select2-selection__arrow {
            line-height: 42px;
            top: -2px;
            width: 18px; } }
        @media (max-width: 480px) {
          .easyearn__calculator ._calculator--form .select2 .select2-selection .select2-selection__arrow {
            top: -4px;
            width: 14px; } }
        .easyearn__calculator ._calculator--form .select2 .select2-selection .select2-selection__arrow b {
          position: static;
          display: inline-block;
          vertical-align: middle;
          border: 0 none;
          margin-left: 0;
          margin-top: 0;
          width: 16px;
          height: 12px;
          background: url("https://dashrevamp.s3-ap-southeast-1.amazonaws.com/assets/images/icons/arrow--down--primary.svg") no-repeat 0 0;
          background-size: contain; }
          @media (min-width: 1900px) {
            .easyearn__calculator ._calculator--form .select2 .select2-selection .select2-selection__arrow b {
              width: 18px;
              line-height: 14px; } }
          @media (max-width: 768px) {
            .easyearn__calculator ._calculator--form .select2 .select2-selection .select2-selection__arrow b {
              width: 14px; } }
          @media (max-width: 480px) {
            .easyearn__calculator ._calculator--form .select2 .select2-selection .select2-selection__arrow b {
              width: 14px;
              height: 12px; } }
  .easyearn__calculator ._calculator--result {
    text-align: center;
    margin-top: 58px; }
    .easyearn__calculator ._calculator--result ._result--box {
      display: inline-block;
      padding: 60px;
      background-color: #f2f5f6; }
      @media (max-width: 480px) {
        .easyearn__calculator ._calculator--result ._result--box {
          padding-left: 20px;
          padding-right: 20px;
          display: block; } }
      .easyearn__calculator ._calculator--result ._result--box p {
        margin-bottom: 18px;
        font-size: 20px;
        line-height: 20px; }
        @media (max-width: 480px) {
          .easyearn__calculator ._calculator--result ._result--box p {
            font-size: 18px;
            line-height: 18px; } }
        .easyearn__calculator ._calculator--result ._result--box p:last-child {
          margin-bottom: 0; }

.easyearn__help {
  margin-top: 110px; }
  .easyearn__help ._help--intro {
    text-align: center;
    margin-bottom: 70px;
    padding-left: 20px;
    padding-right: 20px; }
    .easyearn__help ._help--intro .section--title {
      margin-bottom: 36px; }
    .easyearn__help ._help--intro .section--subtitle {
      margin: 0;
      font-size: 26px;
      line-height: 26px; }
  .easyearn__help .faq--collapse ._collapse--trigger strong {
    font-weight: bold; }

.easyearn__faq {
  padding-bottom: 78px; }
  .easyearn__faq ._how-to--faq {
    margin-top: 86px;
    display: block !important; }
