@charset "UTF-8";
/* IkanoSans */
@font-face {
  font-family: 'IkanoSans Light';
  src: url("../fonts/IkanoSans-Light.eot");
  src: local("☺"), url("../fonts/IkanoSans-Light.otf") format("otf"), url("../fonts/IkanoSans-Light.ttf") format("ttf"), url("../fonts/IkanoSans-Light.woff") format("woff"), url("../fonts/IkanoSans-Light.svg") format("svg"); }

@font-face {
  font-family: 'IkanoSans Bold';
  src: url("../fonts/IkanoSans-Bold.eot");
  src: local("☺"), url("../fonts/IkanoSans-Bold.otf") format("otf"), url("../fonts/IkanoSans-Bold.ttf") format("ttf"), url("../fonts/IkanoSans-Bold.woff") format("woff"), url("../fonts/IkanoSans-Bold.svg") format("svg"); }

body {
  font-family: 'IkanoSans Light';
  background-color: #f6f4ef;
  color: #000000;
  font-size: 18px; }
  body .show_system {
    display: block; }
  body .hide_system {
    display: none; }
  body .logo-blacberry {
    display: none; }
  body a {
    text-decoration: none; }
  body img {
    max-width: 100%; }
  body .title {
    font-family: 'IkanoSans Bold'; }
  body .wrapper {
    max-width: 1140px;
    margin-top: 30px;
    margin-bottom: 30px; }

@media screen and (max-width: 767px) {
  body {
    color: #7f7f7f;
    font-size: 14px; }
    body .logo-blacberry {
      margin-bottom: 10px;
      text-align: center;
      display: block; }
    body .left-content {
      border-radius: 0; }
      body .left-content .download {
        display: none; }
      body .left-content .title {
        font-size: 36px; }
      body .left-content .description {
        font-size: 24px; }
    body .right-content .logo {
      display: none; }
    body .info.close {
      width: 100%; } }

.btn-ipc {
  background: #0047ba;
  border-radius: 10px;
  color: #fff;
  font-family: 'IkanoSans Bold';
  font-size: 16px;
  line-height: 24px;
  max-width: 100%;
  padding: 12px;
  text-align: center;
  -webkit-box-shadow: 0 5px 10px 3px rgba(182, 178, 174, 0.8);
  -moz-box-shadow: 0 5px 10px 3px rgba(182, 178, 174, 0.8);
  box-shadow: 0 5px 10px 3px rgba(182, 178, 174, 0.8);
  transition: all .15s ease; }

.btn.btn-large {
  width: 240px; }

.btn.btn-small {
  width: 30%;
  margin-left: 15px; }

.btn:hover {
  color: #ffffff; }

label.error {
  position: absolute;
  color: red;
  bottom: -30px;
  font-size: 12px;
  font-weight: normal; }

span.agree {
  text-transform: none; }

#frm-validation label.error {
  bottom: -18px;
  font-weight: normal; }

#agree_error {
  width: 100%;
  left: 45px;
  bottom: -10px; }

.form-group {
  text-align: left;
  font-size: 16px;
  position: relative; }
  .form-group label {
    margin-bottom: 0px;
    font-weight: bold;
    text-transform: capitalize; }
  .form-group .form-control {
    padding: 5px 0 10px;
    color: #7f7f7f;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #dbdad7;
    border-radius: 0; }
    .form-group .form-control:focus {
      box-shadow: none; }

.right-content button {
  border-radius: 8px;
  font-size: 16px;
  background: #0047ba;
  font-family: 'IkanoSans Bold'; }

.right-content input[type='text'] {
  color: #7f7f7f; }

/*the container must be positioned relative:*/
.customs-select {
  position: relative; }

.customs-select select {
  display: none;
  /*hide original SELECT element:*/ }

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 14px;
  height: 11px;
  background-size: cover;
  background: url(../images/select.png) no-repeat;
  transition: all 0.2s; }

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 14px;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg); }

/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
  color: #7f7f7f;
  padding: 8px 0;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none; }

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #f6f4ef;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99; }

/*hide the items when the select box is closed:*/
.select-hide {
  display: none; }

.select-items div:hover {
  background-color: rgba(0, 0, 0, 0.1); }

.input-ipc {
  border: 0;
  border-bottom: 1px solid #7f7f7f;
  background-color: transparent;
  outline: 0; }

input[type=checkbox] {
  outline: 0;
  position: relative;
  top: 2px;
  left: 2px;
  cursor: pointer; }
  input[type=checkbox]:before {
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: rotate(-45deg) scale(0, 0);
    -moz-transform: rotate(-45deg) scale(0, 0);
    -ms-transform: rotate(-45deg) scale(0, 0);
    -o-transform: rotate(-45deg) scale(0, 0);
    transform: rotate(-45deg) scale(0, 0);
    content: "";
    position: absolute;
    left: 2px;
    top: 3px;
    z-index: 1;
    width: 13px;
    height: 7px;
    border: 2px solid #0047ba;
    border-top-style: none;
    border-right-style: none; }
  input[type=checkbox]:checked:before {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    -moz-transform: rotate(-45deg) scale(1, 1);
    -ms-transform: rotate(-45deg) scale(1, 1);
    -o-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1); }
  input[type=checkbox]:after {
    content: "";
    position: absolute;
    top: -0.125rem;
    left: -2px;
    width: 20px;
    height: 20px;
    background: #f6f4ef;
    border: 1px solid #ccc;
    cursor: pointer; }

.checkbox-wrap {
  position: relative; }
  .checkbox-wrap::after {
    content: "";
    clear: both;
    display: table; }
  .checkbox-wrap span.checkbox {
    width: 30px;
    display: block;
    float: left; }
  .checkbox-wrap span.label {
    margin-left: 15px;
    width: calc(100% - 45px);
    display: block;
    float: right;
    line-height: 2;
    color: #7f7f7f;
    font-size: 16px;
    font-weight: normal; }

.left-content {
  background: linear-gradient(#ebdac8, #f8f1ea);
  border-radius: 18px;
  padding: 74px 80px;
  text-align: center; }
  .left-content .title {
    font-size: 48px;
    font-weight: bold;
    line-height: normal; }
  .left-content .description {
    font-size: 28px;
    font-weight: 300;
    margin-top: 30px; }
  .left-content .thumbnail {
    margin-top: 10px; }
    .left-content .thumbnail img {
      max-width: 100%; }
  .left-content .down-button {
    margin-top: 30px; }
    .left-content .down-button a:hover {
      text-decoration: none; }
  .left-content .down-title {
    margin-top: 40px;
    font-size: 18px;
    font-weight: bold; }
  .left-content .app {
    margin-right: 5px; }

@media screen and (max-width: 767px) {
  .left-content {
    padding: 30px 15px; } }

.right-content {
  text-align: center;
  padding: 20px 20px 20px 40px; }

.tick {
  padding: 46px 0; }

.success {
  font-size: 24px;
  color: #e70095;
  font-weight: bold;
  text-alight: center; }

.info {
  font-size: 18px;
  font-weight: 300; }
  .info.start {
    padding-top: 30px; }
  .info.end {
    padding-top: 30px; }
  .info.close {
    padding-top: 30px;
    color: #898888; }

@media screen and (max-width: 767px) {
  .right-content {
    padding: 15px; } }

.right-content .text-line {
  font-size: 24px;
  text-align: center;
  margin: 25px 0;
  line-height: 34px;
  position: relative;
  z-index: 1;
  margin: 25px -15px;
  margin-top: 30px;
  color: #e70095;
  font-family: "IkanoSans Bold"; }
  .right-content .text-line span {
    background: #f6f4ef;
    padding: 0 15px; }
    .right-content .text-line span::before {
      border-top: 1px solid #e70095;
      content: "";
      margin: 0 auto;
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      bottom: 0;
      width: 100%;
      z-index: -1; }

.right-content form .input-ipc {
  width: calc(100% - 30% - 15px);
  font-size: 16px; }

.right-content-title {
  font-family: "IkanoSans Bold";
  font-size: 24px;
  line-height: 34px; }

.right-content-subtitle {
  margin-bottom: 32px; }

.right-content-top .right-content-title {
  color: #e70095; }

.right-content-bottom .btn-ipc {
  width: 240px; }

input[type="text"], input[type="email"], input[type="tel"], input[type="date"], .select2 {
    width: 100%;
    max-width: 350px;
    height: 40px;
    margin-top: 5px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 5px 10px;
    color: #808080;
    font-size: 12px;
    margin-bottom: 5px;
    box-sizing: border-box;
}
.select2 {
    width: 100%!important;
    max-width: 350px;
    height: 40px;
    margin: 0px;
    border: 1px solid #808080;
    border-radius: 3px;
    padding: 5px 10px;
    color: #808080;
    font-size: 12px;
    box-sizing: border-box;
    margin-bottom: 5px;
    background-color: white;
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 0px solid #fff;
    border-radius: 4px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #7f7f7f;
}

#errorDiv {
    margin: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .right-content {
    padding: 25px; }
    .right-content form .input-group {
      display: block; }
    .right-content form .input-ipc {
      width: 100%; }
    .right-content form .btn-ipc {
      width: 100%;
      margin-top: 15px;
      margin-left: 0; } }

.app-mobile .header {
  padding: 30px 25px 10px 25px;
  position: relative; }
  .app-mobile .header a {
    color: #000000; }
    .app-mobile .header a.cancel {
      position: absolute;
      bottom: 10px;
      right: 15px;
      color: #2b74f9;
      font-size: 15px;
      font-family: 'IkanoSans Bold'; }
  .app-mobile .header .title {
    margin: 30px 0 0 0;
    color: #000000; }

.app-mobile .contain {
  padding: 25px;
  background: linear-gradient(#ebdac8, #f8f1ea);
  min-height: 100vh; }
  .app-mobile .contain .logo {
    text-align: center; }
  .app-mobile .contain .title {
    font-size: 18px;
    font-family: 'IkanoSans Bold';
    color: #e70095;
    text-align: center; }
    .app-mobile .contain .title p {
      margin: 25px 0 17px;
      line-height: 24px; }
  .app-mobile .contain .banner {
    text-align: center; }
  .app-mobile .contain .switch {
    text-align: -webkit-center; }
    .app-mobile .contain .switch .btn {
      display: block;
      margin-bottom: 5px; }
    .app-mobile .contain .switch .text-line {
      font-size: 14px;
      text-align: center;
      margin: 25px 0;
      line-height: 24px;
      position: relative;
      z-index: 1; }
      .app-mobile .contain .switch .text-line a {
        color: #0047ba; }
      .app-mobile .contain .switch .text-line span {
        padding: 0 15px; }
        .app-mobile .contain .switch .text-line span::after {
          border-top: 1px solid #7f7f7f;
          content: "";
          margin: 0 auto;
          position: absolute;
          top: 50%;
          left: 0;
          bottom: 0;
          width: 50px;
          z-index: -1; }
        .app-mobile .contain .switch .text-line span::before {
          border-top: 1px solid #7f7f7f;
          content: "";
          margin: 0 auto;
          position: absolute;
          top: 50%;
          right: 0;
          bottom: 0;
          width: 50px;
          z-index: -1; }
