.text {
  margin: 0px;
  font-size: 14px;
}

.text.text-bold {
  font-weight: 600;
}

.text.text-extra-bold {
  font-weight: 700;
}

.text.text-helper {
  opacity: 0.8;
}

.text.text-theme {
  color: #2196f3;
}

.text.text-capitalize {
  text-transform: capitalize;
}

.text.text-uppercase {
  text-transform: uppercase;
}

.text.text-lowercase {
  text-transform: lowercase;
}

.text.text-italic {
  font-style: italic;
}

.text.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-inline-block {
  display: inline-block;
}

.text-inline-block.text-valign-top {
  vertical-align: top;
}

.text-inline-block.text-valign-bottom {
  vertical-align: bottom;
}

.text-inline-block.text-valign-middle {
  vertical-align: middle;
}

.text-primary {
  color: #2196f3;
}

.text-primary-darken {
  color: #0c7cd5;
}

.text-black {
  color: black;
}

.text-white {
  color: white;
}

.text-gray {
  color: #ddd;
}

.text-info {
  color: #90c4f2;
}

.card {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 20px;
  border-radius: 6px !important;
  background: #fff;
}

.card.card-shadow {
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
}

.card.card-border {
  border: 1px solid #ddd;
}

.card.card-border.card-border-hover:hover {
  border-color: #2196f3;
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.card.card-border .card-title {
  border-bottom: 1px solid #ddd;
}

.card.card-border .card-title.card-title-theme {
  border-bottom-width: 0;
  background: #2196f3;
  margin-left: -15px;
  margin-right: -15px;
  margin-top: -15px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top-left-radius: 6px !important;
  border-top-right-radius: 6px !important;
  color: white;
}

.card.card-border .card-title.card-title-theme .btn {
  margin-top: -9px;
}

.card .card-title {
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.card .card-content {
  padding: 15px;
}

.btn {
  border-radius: 6px;
  padding-top: 10px;
  padding-bottom: 10px;
  -moz-transition: all cubic-bezier(0.55, 0, 0.1, 1) 0.2s;
  -webkit-transition: all cubic-bezier(0.55, 0, 0.1, 1) 0.2s;
  transition: all cubic-bezier(0.55, 0, 0.1, 1) 0.2s;
}

.btn-theme {
  background: #2196f3;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.btn-theme:hover,
.btn-theme:focus {
  background: #0c7cd5;
  color: #fff;
}

.btn-theme-lighten {
  background: #82c4f8;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.btn-theme-lighten:hover,
.btn-theme-lighten:focus {
  background: #51adf6;
  color: #fff;
}

.btn-theme-2 {
  background: #1e88e5;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.btn-theme-2:hover,
.btn-theme-2:focus {
  background: #166dba;
  color: #fff;
}

.btn-info {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.btn-clear,
.btn-clear:focus,
.btn-clear:active {
  background: transparent;
}

.btn-clear:hover {
  background: rgba(0, 0, 0, 0.03);
}

#topcontrol {
  bottom: 50px !important;
  right: 15px !important;
}

[style*="background: #c1042b"] {
  background: #1e88e5 !important;
}

.form-group .form-control,
.form-group .input-group-addon {
  background: none;
}

.form-group .form-control,
.form-group .input-group-addon,
.form-group .input-group-btn .btn,
.form-group .input-group-btn .btn:focus,
.form-group .input-group-btn .btn:active {
  border-width: 0;
  min-height: 42px;
}

.form-group .input-group-addon > i,
.form-group .input-group-btn .btn-clear {
  color: #b2dbfb;
}

.form-group > .input-group,
.form-group > .form-control,
.form-group .input-inline {
  border: 1px solid #2196f3;
  border-radius: 6px !important;
}

.form-group .input-group .input-group-btn + .twitter-typeahead .form-control,
.form-group .input-group .input-group-btn + .form-control,
.form-group .input-group .input-group-addon + .twitter-typeahead .form-control,
.form-group .input-group .input-group-addon + .form-control {
  padding-left: 0;
  padding-right: 0;
}

.form-group > label {
  color: #0c7cd5;
  font-weight: 600;
}

.form-group.disabled {
  opacity: 0.2;
  position: relative;
}

.form-group.disabled:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: not-allowed;
  z-index: 2;
}

@media (max-width: 767px) {
  .form-group .input-inline {
    margin-bottom: 8px;
  }
}

.checkbox.checkbox-theme > label {
  position: relative;
  padding-left: 24px;
}

.checkbox.checkbox-theme > label input {
  display: none;
}

.checkbox.checkbox-theme > label input:checked ~ span {
  border-color: #2196f3;
  background: #2196f3;
}

.checkbox.checkbox-theme > label input:checked ~ span:before {
  content: "";
  height: 7px;
  width: 13px;
  position: absolute;
  border-left-width: 2px;
  border-bottom-width: 2px;
  border-top-width: 0;
  border-right-width: 0;
  border-style: solid;
  border-color: white;
  top: 0px;
  left: 0px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.checkbox.checkbox-theme > label span {
  content: "";
  height: 15px;
  width: 15px;
  background: none;
  border-radius: 3px;
  border-width: 1px;
  border-style: solid;
  border-color: #ccc;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.checkbox.checkbox-theme.checkbox-theme-circle > label input:checked ~ span {
  background: transparent;
}

.checkbox.checkbox-theme.checkbox-theme-circle > label input:checked ~ span:before {
  height: 9px;
  width: 9px;
  background: #1e88e5;
  border-radius: 999px !important;
  top: 2px;
  left: 2px;
  border: 1px solid #1e88e5;
}

.checkbox.checkbox-theme.checkbox-theme-circle > label span {
  border-radius: 999px;
}

.mister-aladin .page-wrapper-top .notification-top {
  border-radius: 0;
  background: #2196f3;
  color: white;
  margin-bottom: 0;
  padding: 8px 15px;
}

.mister-aladin .page-wrapper-top .notification-top button[data-dismiss] {
  padding: 0;
  border: 0;
  background: none;
  float: right;
  opacity: 0.5;
}

.mister-aladin .page-wrapper-top .notification-top .text {
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 992px) {
  .mister-aladin .page-wrapper-top .notification-top .text {
    text-align: center;
  }
}

.mister-aladin .page-wrapper-top .notification-top .label {
  background: #1e88e5;
  border-radius: 6px;
  color: #2196f3;
  margin-right: 8px;
  padding: 2px 6px 2px 6px;
  font-size: 12px;
  font-weight: bold;
  top: -2px;
  position: relative;
}

.mister-aladin .page-wrapper-top .page-logo a img {
  margin-top: 13px;
  max-height: 50px;
}

.mister-aladin .page-wrapper-top .top-menu .icon,
.mister-aladin .page-wrapper-top .top-menu-mobile .icon {
  width: 20px;
  display: inline-block;
  vertical-align: middle;
}

.mister-aladin .page-wrapper-top .top-menu .icon + span,
.mister-aladin .page-wrapper-top .top-menu-mobile .icon + span {
  margin-left: 5px;
}

.mister-aladin .page-wrapper-top .top-menu ul li:first-child {
  border-right: #e6e6e6 1px solid;
}

.mister-aladin .page-wrapper-top .page-header-menu {
  border-bottom: 5px solid #2196f3;
  background: white;
}

@media (max-width: 991px) {
  .mister-aladin .page-wrapper-top .page-header-menu {
    background: #2196f3;
  }
}

@media (max-height: 550px) {
  .mister-aladin .page-wrapper-top .page-header-menu {
    overflow-y: auto;
    overflow-x: hidden;
  }
}

@media (min-width: 992px) {
  .mister-aladin .page-wrapper-top .page-header-menu .hor-menu {
    top: -5px;
    position: absolute;
  }
}

.mister-aladin .page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li.active > a,
.mister-aladin .page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li.active > a:hover,
.mister-aladin .page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li.current > a,
.mister-aladin .page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li.current > a:hover,
.mister-aladin .page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li > a,
.mister-aladin .page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li > a:focus,
.mister-aladin .page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li > a:hover {
  background: transparent;
}

@media (min-width: 992px) {
  .mister-aladin .page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li.active > a {
    color: #1e88e5;
    border-bottom-color: #1e88e5;
  }

  .mister-aladin .page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li > a {
    border-bottom-width: 5px;
    border-bottom-style: solid;
    border-bottom-color: transparent;
  }
}

.mister-aladin .page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li > a {
  color: #2196f3;
  font-weight: bold;
  text-transform: uppercase;
}

.mister-aladin .page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li > a:hover {
  color: #1e88e5;
}

@media (max-width: 991px) {
  .mister-aladin .page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav {
    background: transparent;
  }

  .mister-aladin .page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li {
    border-bottom-color: #6ab8f7;
  }

  .mister-aladin .page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li > a {
    color: #fff;
  }
}

.mister-aladin .page-wrapper-top .page-header-menu .social-media-buttons {
  position: absolute;
  bottom: -5px;
  left: 15px;
}

@media (max-height: 550px) {
  .mister-aladin .page-wrapper-top .page-header-menu .social-media-buttons {
    position: relative;
    margin-top: 30px;
  }
}

.mister-aladin .page-wrapper-top .page-header-menu .social-media-buttons ul li a {
  display: inline-block;
  padding: 8px;
  border-radius: 999px;
  background: #0c7cd5;
  color: #fff;
}

.mister-aladin .page-wrapper-top .page-header-menu .social-media-buttons ul li a i {
  font-size: 16px;
  line-height: 16px;
}

.mister-aladin .page-wrapper-top .page-header-menu [data-helper-menu-container] {
  -moz-transition: all cubic-bezier(0.55, 0, 0.1, 1) 0.2s;
  -webkit-transition: all cubic-bezier(0.55, 0, 0.1, 1) 0.2s;
  transition: all cubic-bezier(0.55, 0, 0.1, 1) 0.2s;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #2196f3;
  padding: 15px;
}

@media (max-height: 550px) {
  .mister-aladin .page-wrapper-top .page-header-menu [data-helper-menu-container] {
    height: initial;
  }
}

.mister-aladin .page-wrapper-top .page-header-menu [data-helper-menu-container].active {
  left: 0;
}

.mister-aladin .page-wrapper-top .page-header-menu [data-helper-menu-container] .helper-info {
  padding: 0px 8px;
}

.mister-aladin .page-wrapper-top .page-header-menu [data-helper-menu-container] .helper-info li {
  margin-bottom: 15px;
}

.mister-aladin .page-wrapper-top .page-header-menu [data-helper-menu-container] .helper-info i,
.mister-aladin .page-wrapper-top .page-header-menu [data-helper-menu-container] .helper-info .content {
  display: inline-block;
  vertical-align: top;
}

.mister-aladin .page-wrapper-top .page-header-menu [data-helper-menu-container] .helper-info i,
.mister-aladin .page-wrapper-top .page-header-menu [data-helper-menu-container] .helper-info a,
.mister-aladin .page-wrapper-top .page-header-menu [data-helper-menu-container] .helper-info .content {
  color: #fff;
}

.mister-aladin .page-wrapper-top .page-header-menu [data-helper-menu-container] .helper-info i {
  font-size: 18px;
  opacity: 0.5;
}

.mister-aladin .page-wrapper-top .page-header-menu [data-helper-menu-container] .helper-info .content {
  padding-left: 3px;
}

.mister-aladin .page-wrapper-top span.backdrop {
  display: block;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
}

@media (max-width: 991px) {
  .mister-aladin .page-wrapper-top .page-logo {
    float: none;
    margin: 0;
    text-align: center;
  }

  .mister-aladin .page-wrapper-top .page-logo .img {
    margin-left: -25px;
  }

  .mister-aladin .page-wrapper-top .menu-toggler {
    float: left;
    margin-left: 0;
    margin-top: 22px;
  }

  .mister-aladin .page-wrapper-top .page-header-menu {
    position: fixed;
    display: block;
    height: 100%;
    top: 0;
    left: -400px;
    min-width: 280px;
    z-index: 10;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    -moz-transition: all cubic-bezier(0.55, 0, 0.1, 1) 0.3s;
    -webkit-transition: all cubic-bezier(0.55, 0, 0.1, 1) 0.3s;
    transition: all cubic-bezier(0.55, 0, 0.1, 1) 0.3s;
  }

  .mister-aladin .page-wrapper-top .page-header-menu + span.backdrop {
    opacity: 0;
    visibility: hidden;
    z-index: -10;
  }

  .mister-aladin .page-wrapper-top .page-header-menu.active {
    left: 0;
  }

  .mister-aladin .page-wrapper-top .page-header-menu.active + span.backdrop {
    opacity: 1;
    visibility: visible;
    z-index: 9;
  }

  .mister-aladin .page-wrapper-top .page-header-menu .top-menu-mobile {
    display: inline-block;
    padding: 0 15px;
  }

  .mister-aladin .page-wrapper-top .page-header-menu .hor-menu {
    float: left;
    width: 100%;
  }
}

.mister-aladin .page-wrapper-bottom a.social-icon {
  text-align: center;
  height: 30px;
  width: 30px;
  color: white;
  position: relative;
  border-radius: 999px;
  padding-top: 7px;
  margin-bottom: 8px;
}

.mister-aladin .page-wrapper-bottom .subscribe-title {
  position: relative;
}

.mister-aladin .page-wrapper-bottom .subscribe-title > span {
  background: white;
  position: relative;
  z-index: 1;
}

.mister-aladin .page-wrapper-bottom .subscribe-title:before {
  content: "";
  display: block;
  position: absolute;
  top: 25%;
  left: 0;
  height: 6px;
  width: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48.34 4.99'%3E%3Cpolygon points='27.36 0 48.34 0 45.48 4.99 24.5 4.99 27.36 0' fill='%23ffa300'/%3E%3Cpolygon points='2.86 0 23.84 0 20.98 4.99 0 4.99 2.86 0' fill='%231796dd'/%3E%3C/svg%3E") center center repeat-x;
}

@media (max-width: 767px) {
  .mister-aladin .page-wrapper-bottom .pre-footer-grid {
    min-height: 150px;
  }
}

@media (max-width: 991px) {
  .mister-aladin .page-wrapper-bottom .payment-method-info {
    text-align: center;
    margin-bottom: 30px;
  }
}

.bg-primary {
  background-color: #2196f3;
  color: white;
}

.bg-gray {
  background-color: #ddd;
}

.bg-gray-light {
  background-color: #f5f5f5;
}

.border-theme {
  border: 1px solid #2196f3;
}

.border-right-theme {
  border-right: 1px solid #2196f3;
}

.border-left-theme {
  border-left: 1px solid #2196f3;
}

.border-top-theme {
  border-top: 1px solid #2196f3;
}

.border-bottom-theme {
  border-bottom: 1px solid #2196f3;
}

.border-theme-2 {
  border: 1px solid #1e88e5;
}

.border-right-theme-2 {
  border-right: 1px solid #1e88e5;
}

.border-left-theme-2 {
  border-left: 1px solid #1e88e5;
}

.border-top-theme-2 {
  border-top: 1px solid #1e88e5;
}

.border-bottom-theme-2 {
  border-bottom: 1px solid #1e88e5;
}

.border-theme-lighten {
  border: 1px solid #6ab8f7;
}

.border-right-theme-lighten {
  border-right: 1px solid #6ab8f7;
}

.border-left-theme-lighten {
  border-left: 1px solid #6ab8f7;
}

.border-top-theme-lighten {
  border-top: 1px solid #6ab8f7;
}

.border-bottom-theme-lighten {
  border-bottom: 1px solid #6ab8f7;
}

.img-responsive {
  display: inline-block;
}

@media (max-width: 991px) {
  .table-scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .table-scroll.table-row {
    margin-left: -15px;
    margin-right: -15px;
  }

  .table-scroll.table-no-border > table {
    border: 0;
  }

  .table-scroll > table td {
    white-space: nowrap;
  }
}

.panel.cstm {
  background: none;
  border: 0 !important;
}

.panel.cstm .registration-container {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 6px !important;
}

.panel.cstm .registration-container hr {
  margin-top: 15px;
  margin-bottom: 30px;
  margin-left: -15px;
  margin-right: -15px;
}

.panel.cstm .form-group {
  margin-bottom: 20px;
}

.panel.cstm .form-group #recaptcha_area {
  margin: auto;
}

.panel.cstm .form-group label {
  font-weight: bold;
}

.panel.cstm .form-group.attention {
  border: 2px solid #EF5350;
  padding: 8px 15px;
  border-radius: 6px !important;
  margin-top: 15px;
}

.panel.cstm .form-group.attention label {
  color: #EF5350;
  font-size: 16px;
}

.panel.cstm .form-group.attention p {
  margin: 0;
  margin-bottom: 8px !important;
  font-size: 13px;
  line-height: 1.4;
}

.panel.cstm .form-group .field-validation-error {
  font-size: 11px;
  margin-top: 0px;
  position: absolute;
  font-weight: normal;
  color: #EF5350;
}

.panel.cstm .form-group .form-control {
  padding: 8px 20px;
  font-size: 17px;
  -moz-transition: all 0.2s eases;
  -webkit-transition: all 0.2s eases;
  transition: all 0.2s eases;
}

.panel.cstm .form-group .form-control.input-validation-error {
  border: 6px solid rgba(239, 83, 80, 0.9) !important;
  color: #EF5350;
}

.panel.cstm input.form-control[type="text"],
.panel.cstm select,
.panel.cstm textarea,
.panel.cstm input.form-control[type="number"],
.panel.cstm input.form-control[type="password"] {
  border-radius: 6px !important;
  background: #fff;
  border: 2px solid #1e88e5 !important;
  height: initial !important;
  overflow: hidden;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.panel.cstm input.form-control[type="text"]:focus,
.panel.cstm select:focus,
.panel.cstm textarea:focus,
.panel.cstm input.form-control[type="number"]:focus,
.panel.cstm input.form-control[type="password"]:focus {
  border-color: #2196f3 !important;
  -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.19);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.19);
}

.panel.cstm .radioInput[data-toggle="buttons"] label {
  font-weight: bold;
  background: none;
  position: relative;
  /*color: $font-color;*/
  padding: 0;
  opacity: 0.4;
  line-height: 2;
  vertical-align: middle;
  margin: 0 15px;
  margin-left: 30px;
  font-size: 14px !important;
  text-transform: capitalize;
  color: #999;
}

.panel.cstm .radioInput[data-toggle="buttons"] label:before {
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  content: "";
  width: 15px;
  height: 15px;
  background: none;
  display: block;
  position: absolute;
  border-radius: 999px;
  left: -20px;
  top: 0px;
  bottom: 0px;
  margin: auto;
  border: 1px solid #999;
}

.panel.cstm .radioInput[data-toggle="buttons"] label:after {
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  content: "";
  width: 0px;
  height: 0px;
  background: #1e88e5;
  display: block;
  position: absolute;
  border-radius: 999px;
  left: -13px;
  top: 0px;
  bottom: 0px;
  margin: auto;
}

.panel.cstm .radioInput[data-toggle="buttons"] label.active {
  opacity: 1;
  color: #1e88e5;
}

.panel.cstm .radioInput[data-toggle="buttons"] label.active:after {
  width: 7px;
  left: -16px;
  height: 7px;
}

.panel.cstm .radioInput[data-toggle="buttons"] label.active:before {
  background: #fff;
  border-color: #1e88e5;
}

.panel.cstm .regist-as label.title {
  font-weight: bold;
}

.panel.cstm .regist-as .radioInput {
  margin-left: 30px;
}

.panel.cstm .btn[type="submit"] {
  width: 100% !important;
  background: #2196f3;
  color: #fff;
  font-weight: bold;
  border-radius: 6px !important;
  font-size: 18px;
}

#DivSettingRpt .input-group {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 6px !important;
  overflow: hidden;
}

#DivSettingRpt .input-group input[id*="Txt"] {
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  -moz-box-shadow: initial;
  -webkit-box-shadow: initial;
  box-shadow: initial;
  border: 0 !important;
  background: #fafafa;
}

#DivSettingRpt .input-group input[id*="Txt"] + span.input-group-btn span {
  background: #eee;
  color: #999 !important;
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}

#DivSettingRpt .input-group [id*="btnCariData"] {
  width: 100%;
  background: #1e88e5;
  color: #fff;
  font-weight: bold;
}

#DivSettingRpt .input-group + span.help-block.badge-default {
  margin-top: 8px;
  padding: 0px 8px;
  border-radius: 6px !important;
}

#DivSettingRpt input[type="text"]#PaxName,
#DivSettingRpt input[type="text"]#BookingCode {
  border-radius: 6px !important;
  border: 0;
  background: #fafafa;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#DivSettingRpt input[type="submit"]#btnCariDataHarian {
  border-radius: 6px !important;
  border: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#ShowCloseSetting {
  padding: 0;
  background: none;
  color: #fff;
  background: #2196f3;
  padding: 8px !important;
  border-radius: 6px !important;
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  float: left;
  margin-bottom: 15px;
  margin-left: 8px;
}

#ShowCloseSetting .fa {
  margin: 0;
  line-height: 1;
}

#ShowCloseSetting.label-danger {
  background: #EF5350 !important;
}

#ShowCloseSetting.label-danger + #GenerateReport {
  color: #EF5350;
}

#ShowCloseSetting + #GenerateReport {
  float: left;
  background: #fafafa;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  color: #2196f3;
  padding: 8.5px;
  padding-right: 0;
  line-height: 1;
  border-radius: 6px !important;
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

#ShowCloseSetting + #GenerateReport:hover {
  text-decoration: none;
}

.user-list .form-horizontal {
  margin-bottom: 30px !important;
}

.user-list .form-horizontal select,
.user-list .form-horizontal input[type="text"] {
  background: #fafafa;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  border: 0px !important;
  border-radius: 6px !important;
}

.user-list .form-horizontal select[readonly="readonly"],
.user-list .form-horizontal input[type="text"][readonly="readonly"] {
  background: #f5f5f5;
  color: #ccc;
}

.user-list .form-horizontal select:focus,
.user-list .form-horizontal input[type="text"]:focus {
  -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.19);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.19);
}

@media (min-width: 992px) {
  .user-list .form-horizontal + .form-horizontal [class*="md-2"] {
    width: 25%;
  }

  .user-list .form-horizontal + .form-horizontal [class*="md-2"] .form-group {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .user-list .form-horizontal + .form-horizontal [class*="md-2"] .form-group .input-group {
    width: 100%;
  }
}

.user-list .form-horizontal input[type="submit"] {
  border-radius: 6px !important;
  width: 45%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.user-list .form-horizontal input[type="submit"] + .btn {
  border-radius: 6px !important;
  width: 45%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

form[action*="/Agency/BookingList"] .form-horizontal {
  margin-bottom: 30px !important;
}

form[action*="/Agency/BookingList"] .form-horizontal select,
form[action*="/Agency/BookingList"] .form-horizontal input[type="text"] {
  background: #fafafa;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  border: 0px !important;
  border-radius: 6px !important;
}

form[action*="/Agency/BookingList"] .form-horizontal select[readonly="readonly"],
form[action*="/Agency/BookingList"] .form-horizontal input[type="text"][readonly="readonly"] {
  background: #f5f5f5;
  color: #ccc;
}

form[action*="/Agency/BookingList"] .form-horizontal select:focus,
form[action*="/Agency/BookingList"] .form-horizontal input[type="text"]:focus {
  -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.19);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.19);
}

@media (min-width: 992px) {
  form[action*="/Agency/BookingList"] .form-horizontal + .form-horizontal [class*="md-2"] {
    width: 25%;
  }

  form[action*="/Agency/BookingList"] .form-horizontal + .form-horizontal [class*="md-2"] .form-group {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  form[action*="/Agency/BookingList"] .form-horizontal + .form-horizontal [class*="md-2"] .form-group .input-group {
    width: 100%;
  }
}

form[action*="/Agency/BookingList"] .form-horizontal input[type="submit"] {
  border-radius: 6px !important;
  width: 45%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

form[action*="/Agency/BookingList"] .form-horizontal input[type="submit"] + .btn {
  border-radius: 6px !important;
  width: 45%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.user-edit {
  border-radius: 6px !important;
  overflow: hidden;
  margin-top: 30px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.user-edit .panel.panel-default.table-responsive {
  border: 0;
  margin-bottom: 0 !important;
  background: #fafafa;
}

.user-edit .panel-heading {
  background: #2196f3 !important;
  border: 0 !important;
}

.user-edit .panel-heading span {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.user-edit .panel-body {
  padding: 15px 30px !important;
  padding-bottom: 5px !important;
}

.user-edit .panel-body select,
.user-edit .panel-body input[type="text"] {
  padding: 8px 10px;
  font-size: 14px !important;
  height: initial !important;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  border: 0px !important;
  border-radius: 6px !important;
}

.user-edit .panel-body select[readonly="readonly"],
.user-edit .panel-body select[disabled="disabled"],
.user-edit .panel-body input[type="text"][readonly="readonly"],
.user-edit .panel-body input[type="text"][disabled="disabled"] {
  background: #f5f5f5;
  color: #ccc;
}

.user-edit .panel-body select:focus,
.user-edit .panel-body input[type="text"]:focus {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.user-edit .panel-body input[type="text"] {
  line-height: 1.5 !important;
}

.user-edit .panel-body input[type="text"]#TxtFirstName {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.user-edit .panel-body input[type="text"]#TxtLastName {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  margin-left: -3px !important;
}

.user-edit .panel-body label[for="TxtMobilePhone"] + .input-group select,
.user-edit .panel-body label[for="TxtHomePhone"] + .input-group select {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.user-edit .panel-body label[for="TxtMobilePhone"] + .input-group input,
.user-edit .panel-body label[for="TxtHomePhone"] + .input-group input {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.user-edit .panel-body .btn-sm {
  margin-right: 15px;
  border-radius: 6px !important;
  padding: 8px 15px;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.user-edit .panel-body .btn-sm.btn-primary {
  background: #999;
  float: right;
  margin: 0;
}

.user-edit .panel-body .btn-sm.btn-success {
  background: #2196f3;
  float: right;
}

.user-edit .panel-body .btn-sm#BtChangePass {
  background: #ec2a15;
  float: left;
  border-radius: 999px !important;
}

.user-edit .panel-body .row + .col-md-12.border-top + .form-group:before,
.user-edit .panel-body .row + .col-md-12.border-top + .form-group::after {
  content: "";
  display: table;
  clear: both;
}

.booking-summary .designator-code + div img {
  max-height: 40px;
  width: auto;
}

@media (max-width: 767px) {
  .booking-summary .schedule-info > .row {
    margin-bottom: 15px;
  }

  .booking-summary .schedule-info > .row div:first-child {
    padding-right: 0;
  }

  .booking-summary .schedule-info > .row div:first-child p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .booking-summary .schedule-info > .row .designator-code {
    display: inline-block;
    width: initial;
    padding-right: 0;
  }

  .booking-summary .schedule-info > .row .designator-code + div {
    padding-left: 8px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .payment-method ul.nav-tabs {
    white-space: nowrap;
    overflow: auto;
    padding-bottom: 15px;
  }

  .payment-method ul.nav-tabs li {
    float: none;
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .payment-method ul.nav-tabs {
    margin: 0 -8px;
  }

  .payment-method ul.nav-tabs li {
    width: 50%;
    margin-bottom: 15px;
    padding: 0 8px;
  }

  .payment-method ul.nav-tabs li:nth-child(5) {
    width: 33.3333%;
  }

  .payment-method ul.nav-tabs li:nth-child(6) {
    width: 33.3333%;
  }

  .payment-method ul.nav-tabs li:nth-child(7) {
    width: 33.3333%;
  }

  .payment-method ul.nav-tabs li > a {
    border-radius: 6px;
    padding: 8px 3px;
    margin: 0;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (min-width: 992px) {
  .payment-method #aladeenVaTabs .nav-pills {
    text-align: right;
  }
}

.payment-method #aladeenVaTabs .nav-pills > li.active a {
  background-color: #2196f3;
}

.payment-method #aladeenVaTabs .nav-pills > li:not(.active) a {
  color: #2196f3;
  opacity: 0.7;
}

.circle {
  width: 90px;
  height: 90px;
  margin: 30px auto;
  position: relative;
}

.circle:before {
  content: "";
  opacity: 0.8;
  height: 100%;
  top: 0;
  background: #fff;
  z-index: 2;
  bottom: 0;
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
  position: absolute;
  -moz-animation: blink cubic-bezier(0.1, 0.49, 0.8, 0.13) 1s infinite;
  -o-animation: blink cubic-bezier(0.1, 0.49, 0.8, 0.13) 1s infinite;
  -webkit-animation: blink cubic-bezier(0.1, 0.49, 0.8, 0.13) 1s infinite;
  animation: blink cubic-bezier(0.1, 0.49, 0.8, 0.13) 1s infinite;
}

.circle:after {
  content: "";
  opacity: 0.7;
  height: 100%;
  top: 0;
  background: #fff;
  z-index: 2;
  bottom: 0;
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -webkit-transform: rotate(20deg);
  transform: rotate(20deg);
  position: absolute;
  -moz-animation: blink2 cubic-bezier(0.1, 0.49, 0.8, 0.13) 1s infinite;
  -o-animation: blink2 cubic-bezier(0.1, 0.49, 0.8, 0.13) 1s infinite;
  -webkit-animation: blink2 cubic-bezier(0.1, 0.49, 0.8, 0.13) 1s infinite;
  animation: blink2 cubic-bezier(0.1, 0.49, 0.8, 0.13) 1s infinite;
}

.circle .circle-child-1 {
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.circle .circle-child-1:before {
  content: "";
  left: 0;
  position: absolute;
  background: #1e88e5;
  display: block;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-radius: 999px;
  -moz-animation: loadingAnumate infinite linear 1.2s;
  -o-animation: loadingAnumate infinite linear 1.2s;
  -webkit-animation: loadingAnumate infinite linear 1.2s;
  animation: loadingAnumate infinite linear 1.2s;
  -moz-animation-delay: -0.1s;
  -o-animation-delay: -0.1s;
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

.circle .circle-child-2 {
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.circle .circle-child-2:before {
  content: "";
  left: 0;
  position: absolute;
  background: #1e88e5;
  display: block;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-radius: 999px;
  -moz-animation: loadingAnumate infinite linear 1.2s;
  -o-animation: loadingAnumate infinite linear 1.2s;
  -webkit-animation: loadingAnumate infinite linear 1.2s;
  animation: loadingAnumate infinite linear 1.2s;
  -moz-animation-delay: -0.2s;
  -o-animation-delay: -0.2s;
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.circle .circle-child-3 {
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  -moz-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.circle .circle-child-3:before {
  content: "";
  left: 0;
  position: absolute;
  background: #1e88e5;
  display: block;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-radius: 999px;
  -moz-animation: loadingAnumate infinite linear 1.2s;
  -o-animation: loadingAnumate infinite linear 1.2s;
  -webkit-animation: loadingAnumate infinite linear 1.2s;
  animation: loadingAnumate infinite linear 1.2s;
  -moz-animation-delay: -0.3s;
  -o-animation-delay: -0.3s;
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.circle .circle-child-4 {
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.circle .circle-child-4:before {
  content: "";
  left: 0;
  position: absolute;
  background: #1e88e5;
  display: block;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-radius: 999px;
  -moz-animation: loadingAnumate infinite linear 1.2s;
  -o-animation: loadingAnumate infinite linear 1.2s;
  -webkit-animation: loadingAnumate infinite linear 1.2s;
  animation: loadingAnumate infinite linear 1.2s;
  -moz-animation-delay: -0.4s;
  -o-animation-delay: -0.4s;
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.circle .circle-child-5 {
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  -moz-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}

.circle .circle-child-5:before {
  content: "";
  left: 0;
  position: absolute;
  background: #1e88e5;
  display: block;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-radius: 999px;
  -moz-animation: loadingAnumate infinite linear 1.2s;
  -o-animation: loadingAnumate infinite linear 1.2s;
  -webkit-animation: loadingAnumate infinite linear 1.2s;
  animation: loadingAnumate infinite linear 1.2s;
  -moz-animation-delay: -0.5s;
  -o-animation-delay: -0.5s;
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.circle .circle-child-6 {
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  -moz-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
}

.circle .circle-child-6:before {
  content: "";
  left: 0;
  position: absolute;
  background: #1e88e5;
  display: block;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-radius: 999px;
  -moz-animation: loadingAnumate infinite linear 1.2s;
  -o-animation: loadingAnumate infinite linear 1.2s;
  -webkit-animation: loadingAnumate infinite linear 1.2s;
  animation: loadingAnumate infinite linear 1.2s;
  -moz-animation-delay: -0.6s;
  -o-animation-delay: -0.6s;
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.circle .circle-child-7 {
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.circle .circle-child-7:before {
  content: "";
  left: 0;
  position: absolute;
  background: #1e88e5;
  display: block;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-radius: 999px;
  -moz-animation: loadingAnumate infinite linear 1.2s;
  -o-animation: loadingAnumate infinite linear 1.2s;
  -webkit-animation: loadingAnumate infinite linear 1.2s;
  animation: loadingAnumate infinite linear 1.2s;
  -moz-animation-delay: -0.7s;
  -o-animation-delay: -0.7s;
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.circle .circle-child-8 {
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  -moz-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg);
}

.circle .circle-child-8:before {
  content: "";
  left: 0;
  position: absolute;
  background: #1e88e5;
  display: block;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-radius: 999px;
  -moz-animation: loadingAnumate infinite linear 1.2s;
  -o-animation: loadingAnumate infinite linear 1.2s;
  -webkit-animation: loadingAnumate infinite linear 1.2s;
  animation: loadingAnumate infinite linear 1.2s;
  -moz-animation-delay: -0.8s;
  -o-animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.circle .circle-child-9 {
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  -moz-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
}

.circle .circle-child-9:before {
  content: "";
  left: 0;
  position: absolute;
  background: #1e88e5;
  display: block;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-radius: 999px;
  -moz-animation: loadingAnumate infinite linear 1.2s;
  -o-animation: loadingAnumate infinite linear 1.2s;
  -webkit-animation: loadingAnumate infinite linear 1.2s;
  animation: loadingAnumate infinite linear 1.2s;
  -moz-animation-delay: -0.9s;
  -o-animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.circle .circle-child-10 {
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.circle .circle-child-10:before {
  content: "";
  left: 0;
  position: absolute;
  background: #1e88e5;
  display: block;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-radius: 999px;
  -moz-animation: loadingAnumate infinite linear 1.2s;
  -o-animation: loadingAnumate infinite linear 1.2s;
  -webkit-animation: loadingAnumate infinite linear 1.2s;
  animation: loadingAnumate infinite linear 1.2s;
  -moz-animation-delay: -1s;
  -o-animation-delay: -1s;
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.circle .circle-child-11 {
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  -moz-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
}

.circle .circle-child-11:before {
  content: "";
  left: 0;
  position: absolute;
  background: #1e88e5;
  display: block;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-radius: 999px;
  -moz-animation: loadingAnumate infinite linear 1.2s;
  -o-animation: loadingAnumate infinite linear 1.2s;
  -webkit-animation: loadingAnumate infinite linear 1.2s;
  animation: loadingAnumate infinite linear 1.2s;
  -moz-animation-delay: -1.1s;
  -o-animation-delay: -1.1s;
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.circle .circle-child-12 {
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  -moz-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  -webkit-transform: rotate(330deg);
  transform: rotate(330deg);
}

.circle .circle-child-12:before {
  content: "";
  left: 0;
  position: absolute;
  background: #1e88e5;
  display: block;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-radius: 999px;
  -moz-animation: loadingAnumate infinite linear 1.2s;
  -o-animation: loadingAnumate infinite linear 1.2s;
  -webkit-animation: loadingAnumate infinite linear 1.2s;
  animation: loadingAnumate infinite linear 1.2s;
  -moz-animation-delay: -1.2s;
  -o-animation-delay: -1.2s;
  -webkit-animation-delay: -1.2s;
  animation-delay: -1.2s;
}

.circle .circle-child-13 {
  width: 100%;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 3;
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.circle .circle-child-13:before {
  content: "";
  left: 0;
  position: absolute;
  background: #1e88e5;
  display: block;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-radius: 999px;
  -moz-animation: loadingAnumate infinite linear 1.2s;
  -o-animation: loadingAnumate infinite linear 1.2s;
  -webkit-animation: loadingAnumate infinite linear 1.2s;
  animation: loadingAnumate infinite linear 1.2s;
  -moz-animation-delay: -1.3s;
  -o-animation-delay: -1.3s;
  -webkit-animation-delay: -1.3s;
  animation-delay: -1.3s;
}

.circle .theGlobe {
  width: 90%;
  height: 90%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  text-align: center;
  padding: 13px 0;
  z-index: 1;
}

.circle .theGlobe:before {
  content: "\F0AC";
  color: #2196f3;
  display: inline;
  font-size: 50px !important;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  left: 0;
  right: 0;
  -moz-animation: blinkGlobe cubic-bezier(0.1, 0.49, 0.8, 0.13) 1s infinite;
  -o-animation: blinkGlobe cubic-bezier(0.1, 0.49, 0.8, 0.13) 1s infinite;
  -webkit-animation: blinkGlobe cubic-bezier(0.1, 0.49, 0.8, 0.13) 1s infinite;
  animation: blinkGlobe cubic-bezier(0.1, 0.49, 0.8, 0.13) 1s infinite;
}

.circle .thePlane {
  width: 100%;
  height: 10px;
  position: absolute;
  padding-top: 20px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
  margin: auto;
  -moz-animation: planeAnimate linear 1.2s infinite;
  -o-animation: planeAnimate linear 1.2s infinite;
  -webkit-animation: planeAnimate linear 1.2s infinite;
  animation: planeAnimate linear 1.2s infinite;
}

.circle .thePlane:before {
  content: "\F072";
  left: -12px;
  position: absolute;
  color: #2196f3;
  display: inline;
  font-size: 20px !important;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -moz-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes blinkGlobe {
  0%, 20%, 80%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

@keyframes blink2 {
  0% {
    left: 0%;
    width: 0;
  }

  75% {
    left: 40%;
    width: 15px;
  }

  100% {
    left: 100%;
    width: 0px;
  }
}

@keyframes blink {
  0% {
    left: 0%;
    width: 0;
  }

  60% {
    left: 50%;
    width: 30px;
  }

  100% {
    left: 100%;
    width: 0px;
  }
}

@keyframes planeAnimate {
  0% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loadingAnumate {
  0%, 60%, 100% {
    width: 0;
    height: 0px;
    opacity: 0;
  }

  15% {
    opacity: 1;
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 767px) {
  #frPax .form-group .input-inline {
    width: 100%;
  }

  #frPax .card-title .checkbox-theme {
    display: block;
    width: 100%;
    float: none !important;
    padding-top: 8px;
  }
}

.modal-footer.cstm {
  background: #f5f5f5;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail {
  margin: 0px;
  display: table;
  padding: 15px 0px;
  padding-bottom: 0px;
  width: 100%;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .col-md-6 {
  padding: 0px;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .modaltitles {
  padding-right: 0px;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .modaltitles h4 {
  text-align: left;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .modaltitles span {
  font-size: 12px;
  text-align: left;
  display: block;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .modalroutes .innerRoutes {
  display: table;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .modalroutes .innerRoutes .box {
  display: table;
  width: 40%;
  padding-right: 15px;
  float: left;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .modalroutes .innerRoutes .box h3 {
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0px;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .modalroutes .innerRoutes .box span {
  text-align: left;
  display: block;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .modalroutes .innerRoutes h4 {
  display: table;
  width: 60%;
  float: right;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-left: 15px;
  margin-top: 8px;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .modalroutes .innerRoutes h4:before {
  content: "";
  display: table;
  width: 15px;
  height: 15px;
  position: relative;
  left: -22px;
  float: left;
  border-radius: 999px !important;
  border: 2px #eee solid;
  z-index: 2;
  border-width: 2px;
  border-style: solid;
  background: transparent;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .modalroutes .innerRoutes h4:after {
  content: "";
  display: table;
  width: 1.5px;
  height: 40px;
  position: absolute;
  left: 0px;
  bottom: 15px;
  background: #777;
  float: left;
  z-index: 1;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .modalroutes .innerRoutes:first-child h4:before {
  border-color: #2196f3;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .modalroutes .innerRoutes:first-child h4:after {
  display: none;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .modalroutes .innerRoutes:last-child {
  margin-bottom: 0px;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .modalroutes .innerRoutes:last-child h4:before {
  border-color: #1e88e5;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .thadetails .plane {
  padding: 15px;
  text-align: center;
  padding-bottom: 0px;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .thadetails .plane img {
  width: 100%;
  max-width: 100px;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .thadetails .plane span {
  display: block;
  margin-top: 5px;
  font-weight: bold;
  font-size: 14px;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .thadetails .info {
  text-align: center;
  padding: 15px;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .thadetails .info p {
  font-size: 14px;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .thadetails .info p span {
  font-size: 9px;
  left: -15.2px;
  position: relative;
  color: #fff;
  line-height: 0;
  top: -2px;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .thadetails .info p i {
  font-size: 20px;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .thadetails .info h5 {
  font-weight: bold;
  font-size: 18px;
}

.modal-footer.cstm #showDetailsContainer .modal-footer-schedule-detail .thadetails .info h5 span {
  font-weight: normal;
  font-size: 12px;
}

#divLoadingBar {
  overflow: visible;
  height: 8px;
  background: initial;
}

@media (max-width: 991px) {
  #divLoadingBar {
    margin-top: 50px;
    margin-bottom: 25px;
  }
}

#divLoadingBar.flight-loading .meterLoading:after {
  content: "\F072";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: -20px;
  top: -6px;
}

#divLoadingBar.train-loading .meterLoading:after {
  content: "\F102";
  font-family: trave-icon-2 !important;
  font-style: normal;
  font-weight: normal !important;
  vertical-align: top;
  font-size: 30px;
  top: -8px;
  right: -35px;
}

#divLoadingBar .meterLoading {
  height: 8px;
  position: relative;
  background: #2196f3 !important;
  border-bottom-left-radius: 6px !important;
  border-top-left-radius: 6px !important;
}

#divLoadingBar .meterLoading:after {
  color: #2196f3;
  position: absolute;
}

#divLoadingBar .meterLoading span {
  display: none;
  position: absolute;
  top: -20px;
  right: 0;
  color: #2196f3;
}

div[data-sort] .btn {
  text-transform: capitalize;
  text-align: left;
  border-width: 0;
  padding: 0;
}

div[data-sort] .btn,
div[data-sort] .btn:hover,
div[data-sort] .btn:focus,
div[data-sort] .btn:active {
  background: transparent;
}

div[data-sort] .btn.asc > span {
  transform: rotate(180deg);
}

div[data-sort] .btn.dsc > span {
  transform: rotate(0deg);
  top: -2px;
}

div[data-sort] .btn.active > span i:first-child {
  color: blue;
}

div[data-sort] .btn > span {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 0;
  bottom: 0;
  height: 23px;
  margin: auto;
  margin-left: 8px;
  transition: all ease 0.3s;
}

div[data-sort] .btn > span i {
  height: 8px;
  width: 8px;
  display: block;
  color: #ddd;
}

@media (max-width: 991px) {
  div[data-sort] {
    white-space: nowrap;
    overflow: auto;
    margin: 0;
    padding-bottom: 8px;
    text-align: center;
  }

  div[data-sort] > div[class*="col-"],
  div[data-sort] .row > div[class*="col-"] {
    display: inline-block;
    width: initial;
    float: none;
  }
}

@media (max-width: 767px) {
  div[data-sort] {
    max-width: 300px;
  }

  div[data-sort],
  div[data-sort] .row {
    width: 100%;
    display: table;
    margin: 0 auto;
  }

  div[data-sort] > div[class*="col-"],
  div[data-sort] .row > div[class*="col-"] {
    display: table-cell;
    padding: 0px 5px;
  }

  div[data-sort] .sub-col {
    padding: 0px !important;
  }

  div[data-sort] .btn {
    font-size: 12px;
  }

  div[data-sort] .btn span {
    margin-left: 3px;
  }

  div[data-sort].ml-0.mr-0 {
    margin-right: auto !important;
    margin-left: auto !important;
  }
}

div[data-schedule] .card-content {
  padding-bottom: 8px;
}

div[data-schedule] .card-content > .list-inline li {
  padding: 0 15px;
}

div[data-schedule] .card-content > .list-inline i {
  display: none;
}

@media (max-width: 991px) {
  div[data-schedule] .card-content > .row > div:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  div[data-schedule] .card-content > .row > div:first-child {
    text-align: center;
  }
}

div[data-schedule] .path-schedule > li {
  position: relative;
}

div[data-schedule] .path-schedule > li:before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 999px;
  position: absolute;
  left: 0;
  top: calc(50% - 8px);
  border-width: 2px;
  border-style: solid;
}

div[data-schedule] .path-schedule > li:first-child {
  margin-bottom: 15px;
}

div[data-schedule] .path-schedule > li:first-child:before {
  border-color: #2196f3;
}

div[data-schedule] .path-schedule > li:first-child:after {
  content: "";
  width: 1px;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: calc(50% + 7px);
  left: 7px;
  background: #999;
}

div[data-schedule] .path-schedule > li:last-child::before {
  border-color: #1e88e5;
}

div[data-schedule] .path-schedule > li > ul.list-inline {
  padding-left: 30px;
}

@media (min-width: 768px) and (max-width: 991px) {
  div[data-schedule] .schedule-detail .row > div[class*="col-"]:not(:last-child):first-child {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  div[data-schedule] .schedule-detail .row > div[class*="col-"]:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  div[data-train][data-journey-type="one-way"] .card-content > .row > div:last-child {
    text-align: center;
  }
}

@media (max-width: 991px) {
  div[data-train][data-journey-type="round-trip"] .card-content > .row > div:first-child {
    margin-bottom: 25px;
  }

  div[data-train][data-journey-type="round-trip"] .train-name {
    display: inline-block;
    vertical-align: middle;
  }
}

@media (max-width: 991px) {
  div[data-train] .sticky-wrapper .card.selected:before {
    content: "Perjalanan Pergi";
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  div[data-flight][data-journey-type="one-way"] .card-content > .row > div:last-child {
    text-align: center;
    width: 25%;
    margin-left: 75%;
  }
}

@media (max-width: 991px) {
  div[data-flight][data-journey-type="one-way"] .card-content > .row > div:nth-child(5) {
    text-align: center;
    margin-bottom: 0;
  }
}

@media (max-width: 991px) {
  div[data-flight] .sticky-wrapper .card.selected:before {
    content: "Penerbangan Pergi";
  }
}

@media (max-width: 767px) {
  [data-journey-type="round-trip"]:first-child {
    margin-bottom: 30px;
  }

  [data-journey-type="round-trip"] .card-content > .row > div:last-child {
    text-align: center;
  }
}

div[data-schedule-parent] {
  position: relative;
}

div[data-schedule-parent].small:not(.selected):after {
  content: "";
  cursor: pointer;
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

div[data-schedule-parent].small .card {
  opacity: 0.3;
}

div[data-schedule-parent].small .card-content .list-inline,
div[data-schedule-parent].small .card-content .btnSelect,
div[data-schedule-parent].small .sticky-wrapper .card,
div[data-schedule-parent].small div[data-sort],
div[data-schedule-parent].small div[data-header-info],
div[data-schedule-parent].small .dropdown {
  display: none;
}

div[data-schedule-parent].small .card-content > div[class*="detil"] {
  display: none !important;
}

div[data-schedule-parent].small .card-content > .row > div:not(:first-child):not(:last-child) {
  width: 33.333%;
}

div[data-schedule-parent].small .card-content > .row > div:first-child {
  width: 100%;
  text-align: center;
}

div[data-schedule-parent].small .card-content > .row > div:first-child:first-child {
  margin-bottom: 15px;
}

div[data-schedule-parent].small .card-content > .row > div:first-child:last-child {
  margin-top: 15px;
}

div[data-schedule-parent].small .card-content > .row > div:last-child {
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

div[data-schedule-parent].small .card-content > .row > div:last-child .btn-theme {
  display: none;
}

div[data-schedule-parent].small .sticky-wrapper .card.selected {
  display: inline-block;
  opacity: 1;
  margin-top: 15px;
}

@media (max-width: 767px) {
  div[data-schedule-parent].small .sticky-wrapper .card.selected .card-content > .row > div p.fs-20 {
    font-size: 16px !important;
  }
}

@media (max-width: 991px) {
  div[data-schedule-parent].small .sticky-wrapper .card.selected {
    margin-top: 0;
    margin-bottom: 0;
    background: #f5f5f5;
    border-width: 0;
  }

  div[data-schedule-parent].small .sticky-wrapper .card.selected:before {
    display: block;
    padding: 8px 15px;
    font-size: 14px;
    border-bottom: 1px solid #e5e5e5;
    background: #eee;
  }

  div[data-schedule-parent].small .sticky-wrapper .card.selected .card-content > .row > div:nth-child(1) {
    width: 25%;
    min-height: 50px;
    margin-bottom: 8px;
  }

  div[data-schedule-parent].small .sticky-wrapper .card.selected .card-content > .row > div:nth-child(2) {
    width: 25%;
    min-height: 50px;
    margin-bottom: 8px;
  }

  div[data-schedule-parent].small .sticky-wrapper .card.selected .card-content > .row > div:nth-child(3) {
    width: 25%;
    min-height: 50px;
    margin-bottom: 8px;
  }

  div[data-schedule-parent].small .sticky-wrapper .card.selected .card-content > .row > div:nth-child(4) {
    width: 25%;
    min-height: 50px;
    margin-bottom: 8px;
  }

  div[data-schedule-parent].small .sticky-wrapper .card.selected .card-content > .row > div:first-child {
    float: left;
    text-align: left;
  }

  div[data-schedule-parent].small .sticky-wrapper .card.selected .card-content > .row > div:last-child {
    width: 50%;
    text-align: left;
  }

  div[data-schedule-parent].small .sticky-wrapper .card.selected .card-content > .row > div:last-child .btnSelect + .text {
    display: none;
  }

  div[data-schedule-parent].small .sticky-wrapper .card.selected .searchMore {
    position: absolute;
    right: 0;
    bottom: 10px;
  }

  div[data-schedule-parent].small .sticky-wrapper .card.selected .searchMore .btn {
    background: transparent;
    border-width: 0;
    padding: 6px 15px;
    color: #51adf6;
    font-weight: bold;
  }
}

@media (max-width: 991px) {
  div[data-schedule-parent] #Departsticky {
    position: relative !important;
    top: 0 !important;
  }
}

@media (max-width: 543px) {
  div[data-modal-confirmation] .modal-footer > .row > div:last-child li {
    width: 100%;
  }

  div[data-modal-confirmation] .modal-footer > .row > div:last-child li:last-child a {
    float: left;
  }
}

@media (max-width: 767px) {
  div[data-modal-confirmation] .modal-header .text {
    padding-right: 25px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  div[data-modal-confirmation] .modal-header .text a {
    position: absolute;
    top: 12px;
    right: 12px;
  }

  div[data-modal-confirmation] .modal-body > div > .row > div:first-child {
    margin-bottom: 15px;
  }

  div[data-modal-confirmation] .modal-body > div > .row > div:first-child .row div {
    display: inline-block;
    width: initial;
  }

  div[data-modal-confirmation] .modal-body > div > .row > div:last-child .row > .text-right {
    text-align: left !important;
  }

  div[data-modal-confirmation] .modal-footer > .row > div:last-child li:last-child {
    margin-top: 15px;
  }

  div[data-modal-confirmation] .modal-footer .modal-footer-schedule-detail > div:first-child > .row > div:first-child {
    margin-bottom: 15px;
  }

  div[data-modal-confirmation] .modal-footer .modal-footer-schedule-detail > div:last-child > .row > div,
  div[data-modal-confirmation] .modal-footer .modal-footer-schedule-detail > div:last-child > .row > div p,
  div[data-modal-confirmation] .modal-footer .modal-footer-schedule-detail > div:last-child > .row > div h5 {
    text-align: left !important;
  }

  div[data-modal-confirmation] .modal-footer .modal-footer-schedule-detail > div:last-child > .row > div .info span {
    display: block;
  }

  div[data-modal-confirmation] .modal-footer .modal-footer-schedule-detail > div:last-child > .row > div h5 span {
    display: block;
  }
}

@media (max-width: 767px) {
  div[data-modal-confirmation="train"] .modal-body-schedule-item > div:last-child > .row > div:last-child {
    margin-top: 15px;
  }
}

@media (max-width: 543px) {
  .availability-journey-header .availability-journey-title {
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    animation: marquee 15s linear infinite;
  }

  .availability-journey-header .availability-journey-title i {
    display: inline;
  }
}

@media (max-width: 767px) {
  .availability-journey-header .availability-journey-icon-info {
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px !important;
  }

  .availability-journey-header .availability-journey-icon-info span {
    display: table-cell;
    vertical-align: middle;
    padding: 0px 8px;
    font-size: 12px;
    font-weight: normal;
    text-align: center;
  }

  .availability-journey-header .availability-journey-icon-info span:not(:last-child) {
    border-right: 1px solid #eee;
  }

  .availability-journey-header .availability-journey-icon-info span i {
    display: block;
    margin-right: 0 !important;
  }

  .availability-journey-header > div:last-child {
    text-align: center !important;
  }

  .availability-journey-header + hr {
    margin-top: 0;
    margin-bottom: 15px;
  }
}

@keyframes marquee {
  0% {
    text-indent: 100%;
  }

  100% {
    text-indent: -200%;
  }
}

ul.bread-crumb,
ul.breadcrumb {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-top: 15px;
  margin-bottom: 15px;
}

ul.bread-crumb > li,
ul.breadcrumb > li {
  padding: 5px;
  background: #f5f5f5;
  padding-right: 15px;
  padding-left: 25px;
  position: relative;
  display: inline-block;
}

ul.bread-crumb > li:first-child,
ul.breadcrumb > li:first-child {
  padding-left: 15px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

ul.bread-crumb > li:last-child,
ul.breadcrumb > li:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  background: #2196f3;
  color: #fff;
}

ul.bread-crumb > li:not(.active)::before,
ul.bread-crumb > li:not(.active)::after,
ul.breadcrumb > li:not(.active)::before,
ul.breadcrumb > li:not(.active)::after {
  content: "";
  position: absolute;
  border-left: 20px solid transparent;
  border-top: 20px solid transparent;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 10.5px;
  width: 20px;
  height: 20px;
  margin: auto;
}

ul.bread-crumb > li:not(.active):after,
ul.breadcrumb > li:not(.active):after {
  border-right: 20px #f5f5f5 solid;
  right: -11.5px;
  z-index: 2;
}

ul.bread-crumb > li:not(.active):before,
ul.breadcrumb > li:not(.active):before {
  border-right: 20px #fff solid;
  right: -16px;
  z-index: 1;
}

@media (max-width: 767px) {
  ul.bread-crumb,
  ul.breadcrumb {
    font-size: 12px;
    display: table;
  }

  ul.bread-crumb > li,
  ul.breadcrumb > li {
    display: table-cell;
    text-align: center;
  }

  ul.bread-crumb > li:not(:last-child),
  ul.breadcrumb > li:not(:last-child) {
    border-right: 3px solid #fff;
  }

  ul.bread-crumb > li:not(:last-child):before,
  ul.bread-crumb > li:not(:last-child):after,
  ul.breadcrumb > li:not(:last-child):before,
  ul.breadcrumb > li:not(:last-child):after {
    top: 12px;
    bottom: 0;
  }
}

div.page-prefooter {
  color: #2196f3;
}

div.page-prefooter a:not(.social-icon) {
  color: #2196f3;
}

.checboxcstm {
  display: table;
  width: 100%;
  padding-bottom: 15px;
}

.checboxcstm .checkcstm {
  position: relative;
  width: 19px;
  float: left;
}

.checboxcstm .checkcstm label.styles {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  background: #fcfff4;
  background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  border-radius: 6px !important;
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0, 0, 0, 0.5);
  -moz-transition: 0.2s ease all;
  -o-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}

.checboxcstm .checkcstm label.styles:after {
  content: '';
  width: 11px;
  height: 7px;
  position: absolute;
  top: 4.5px;
  left: 4px;
  border: 3px solid #aaa;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0.5;
  transform: rotate(-45deg);
  -moz-transition: 0.2s ease all;
  -o-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}

.checboxcstm .checkcstm label.styles:hover::after {
  opacity: 0.7;
  -moz-transition: 0.2s ease all;
  -o-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}

.checboxcstm .checkcstm input[type=checkbox] {
  visibility: hidden;
  -moz-transition: 0.2s ease all;
  -o-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}

.checboxcstm .checkcstm input[type=checkbox]:checked + label:after {
  border-color: #2196f3;
  opacity: 1;
  -moz-transition: 0.2s ease all;
  -o-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}

.checboxcstm label.labelcstm {
  line-height: 20px;
  font-size: 15px;
  margin-left: 10px;
  display: table;
  float: left;
  font-weight: 600;
}

.checboxcstm:last-child {
  padding-bottom: 0px;
}

input[type="radio"].radio {
  opacity: 0;
  position: absolute;
}

input[type="radio"] + .radio-label:before {
  content: '';
  background: #fff;
  border-radius: 100%;
  border: 1px solid #ccc;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
}

input[type="radio"]:checked + .radio-label:before {
  background-color: #3498db;
  box-shadow: inset 0 0 0 4px #fff;
}

input[type="radio"]:focus + .radio-label:before {
  outline: none;
  border-color: #3498db;
}

input[type="radio"] + .radio-label:empty:before {
  margin-right: 0;
}

.chosen-container {
  border-radius: 6px !important;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.chosen-container.chosen-container-active.chosen-with-drop a.chosen-single {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-color: #fff !important;
  -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.19);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.19);
}

.chosen-container.chosen-container-active.chosen-with-drop a.chosen-single b {
  background-position: -17px 7px !important;
}

.chosen-container.chosen-container-active.chosen-with-drop .chosen-drop {
  min-height: 290px;
  border-top: 0 !important;
  border-left: 2px solid #1e88e5 !important;
  border-right: 2px solid #1e88e5 !important;
  border-bottom: 2px solid #1e88e5 !important;
  height: 100%;
  -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.19);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 4px 6px rgba(0, 0, 0, 0.19);
}

.chosen-container.chosen-container-active.chosen-with-drop .chosen-drop .chosen-search,
.chosen-container.chosen-container-active.chosen-with-drop .chosen-drop ul.chosen-results {
  opacity: 1;
}

.chosen-container a.chosen-single {
  border-radius: 6px !important;
  background: #fff;
  border: 2px solid #1e88e5 !important;
  background: #fff !important;
  height: initial;
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.chosen-container a.chosen-single b {
  background-position: 3px 7px !important;
}

.chosen-container .chosen-drop {
  border: 0px !important;
  border-bottom-left-radius: 6px !important;
  border-top-left-radius: 0px !important;
  border-bottom-right-radius: 6px !important;
  border-top-right-radius: 0px !important;
  overflow: hidden;
  height: 0;
  min-height: 0;
  left: 0 !important;
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.chosen-container .chosen-drop .chosen-search {
  padding: 8px;
  opacity: 0;
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.chosen-container .chosen-drop .chosen-search input[type="text"] {
  border-radius: 6px !important;
  background: #fafafa;
  border: 1px solid #1e88e5 !important;
  border: 0;
  margin: 0;
  padding: 10px 12px;
}

.chosen-container .chosen-drop ul.chosen-results {
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  opacity: 0;
  margin: 0px !important;
  padding: 0;
}

.chosen-container .chosen-drop ul.chosen-results li {
  padding: 8px;
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.chosen-container .chosen-drop ul.chosen-results li:nth-child(2n+1) {
  background: #eee;
}

.chosen-container .chosen-drop ul.chosen-results li.highlighted {
  background: #1e88e5;
}

.list-inline-icon-bordered > li {
  padding: 0 15px;
  width: 100%;
  margin-bottom: 15px;
}

.list-inline-icon-bordered > li img {
  display: inline;
  max-width: 150px;
}

@media (min-width: 768px) {
  .list-inline-icon-bordered {
    border: 1px solid #ddd;
    border-radius: 6px !important;
    display: table;
    margin: auto;
  }

  .list-inline-icon-bordered li {
    display: table-cell;
    margin-bottom: 0;
    padding-top: 25px;
    padding-bottom: 25px;
    vertical-align: middle;
  }

  .list-inline-icon-bordered li:not(:last-child) {
    border-right: 1px solid #ddd;
  }

  .list-inline-icon-bordered li.col-5 {
    width: 20%;
  }

  .list-inline-icon-bordered li.col-4 {
    width: 25%;
  }
}

.modal .modal-dialog {
  border-radius: 6px !important;
}

.modal .modal-dialog .modal-content {
  border: 0px;
}

.modal .modal-dialog .modal-content .modal-header {
  background: #2196f3 !important;
  border: 0;
}

.modal .modal-dialog .modal-content .modal-header[style*="4b8df8"] {
  background: #2196f3 !important;
  position: relative;
}

.modal .modal-dialog .modal-content .modal-header[style*="4b8df8"]:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background: #2196f3;
}

.modal .modal-dialog .modal-content .modal-header[style*="4b8df8"] * {
  z-index: 1;
  position: relative;
  color: #fff !important;
}

.modal .modal-dialog .modal-content .modal-footer {
  border: 0;
}

.modal .modal-dialog .modal-content .modal-footer .btn {
  border-radius: 6px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.nav.nav-tabs {
  border-color: #4ca0ea !important;
}

.nav.nav-tabs li > a {
  padding-top: 5px;
  padding-bottom: 5px;
}

.nav.nav-tabs li > a,
.nav.nav-tabs li > a:hover,
.nav.nav-tabs li > a:focus {
  border-top-left-radius: 6px !important;
  border-top-right-radius: 6px !important;
  background-color: #ccc;
  color: white;
}

.nav.nav-tabs li.active > a,
.nav.nav-tabs li.active > a:hover,
.nav.nav-tabs li.active > a:focus {
  color: white;
  background-color: #1e88e5 !important;
  border-color: #4ca0ea !important;
  font-weight: bold;
}

.nav > li > a:hover,
.nav > li > a:focus {
  background-color: transparent;
}

.header {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background: #fff;
}

.header .site-logo {
  padding: 8px 0px !important;
  width: 110px;
}

.header .site-logo img {
  max-width: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .header .dropdown-backdrop {
    display: none;
  }
}

.header #navigation .header-navigation > ul li {
  -moz-transition: all linear 0.25s;
  -webkit-transition: all linear 0.25s;
  transition: all linear 0.25s;
}

.header #navigation .header-navigation > ul li.active {
  background: rgba(0, 0, 0, 0.03);
}

.header #navigation .header-navigation > ul li.active > a {
  background: none;
  font-weight: bold;
  color: #1e88e5;
  border-bottom: 0 !important;
}

.header #navigation .header-navigation > ul li.active > a:before {
  top: 100%;
  width: 100%;
}

.header #navigation .header-navigation > ul li:hover {
  background: #1e88e5;
}

.header #navigation .header-navigation > ul li:hover > a {
  background: none;
  color: #fff;
}

.header #navigation .header-navigation > ul li > a {
  padding: 24px 0px 24px;
  color: #1e88e5;
  position: relative;
  border: 0 !important;
  padding-right: 0;
  padding-left: 0;
  margin-left: 12px;
  margin-right: 12px;
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.header #navigation .header-navigation > ul li > a.dropdown-toggle:after {
  left: 0;
  right: 0;
  margin: auto;
  border-bottom-color: #fff;
}

.header #navigation .header-navigation > ul li > a:hover {
  text-decoration: none;
}

.header #navigation .header-navigation > ul li > a:after {
  display: none !important;
  border: 0 !important;
}

.header #navigation .header-navigation > ul li.login {
  margin-top: 15px;
  border-radius: 6px !important;
}

.header #navigation .header-navigation > ul li.login a.search-btn {
  display: block;
  margin: 0 !important;
  border-radius: 6px !important;
  line-height: 1;
  padding: 12px 15px;
  background: #1e88e5;
  color: #fff;
}

.header #navigation .header-navigation > ul li.dropdown ul.dropdown-menu {
  margin: 0;
  padding: 2px;
  border: 0 !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  border-bottom-right-radius: 6px !important;
  border-bottom-left-radius: 6px !important;
}

.header #navigation .header-navigation > ul li.dropdown ul.dropdown-menu li {
  border: 0 !important;
  padding: 3px;
  border-top: 0;
}

.header #navigation .header-navigation > ul li.dropdown ul.dropdown-menu li:hover {
  background: rgba(255, 255, 255, 0);
}

.header #navigation .header-navigation > ul li.dropdown ul.dropdown-menu li:hover a {
  background: #2196f3;
  color: #fff;
}

.header #navigation .header-navigation > ul li.dropdown ul.dropdown-menu li a {
  padding: 10px 12px;
  margin: 0;
  border-radius: 6px !important;
}

.header #navigation .header-navigation > ul li.dropdown ul.dropdown-menu li a:before {
  display: none;
}

.header #navigation .header-navigation > ul li.dropdown ul.dropdown-menu li #btLogin {
  background: #2196f3 !important;
  border-radius: 6px !important;
  display: block;
  color: #fff;
  width: 100% !important;
  position: relative;
  z-index: 10;
  float: left;
}

.header #navigation .header-navigation > ul li.dropdown ul.dropdown-menu li #btLogin:hover {
  background: #0c7cd5 !important;
}

.header #navigation .header-navigation > ul li.dropdown ul.dropdown-menu form {
  position: relative;
  display: inline-block;
  width: 100%;
  z-index: 1;
}

.header #navigation .header-navigation > ul li.menu-search {
  top: 25px;
}

.header #navigation .header-navigation > ul li.menu-search i {
  margin-left: 12px;
  margin-right: 12px;
}

.header #navigation .header-navigation > ul li.menu-search i:hover {
  color: #333;
}

.header #navigation .header-navigation > ul li.menu-search:hover {
  background: none;
}

.header #navigation .header-navigation > ul li.menu-search .search-box {
  border-top: 0px;
  top: 43px;
  background: #fff;
  border-bottom-left-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.header #navigation .header-navigation > ul li.menu-search .search-box:after {
  display: none !important;
}

.header #navigation .header-navigation > ul li.menu-search .search-box #btLogin {
  background: #2196f3 !important;
  border-radius: 6px !important;
  display: block;
  color: #fff;
}

.header #navigation .header-navigation > ul li.menu-search .search-box #btLogin:hover {
  background: #0c7cd5 !important;
}

.page-header .top-menu li > a {
  color: #777;
}

.portlet {
  border-radius: 6px !important;
}

.portlet .portlet-title {
  border-top-left-radius: 6px !important;
  border-top-right-radius: 6px !important;
}

.portlet .portlet-body {
  border-bottom-left-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
}

.portlet.box.blue,
.portlet.box.red,
.portlet.box.grey {
  border: 1px solid #2196f3 !important;
}

.portlet.box.blue > .portlet-title,
.portlet.box.red > .portlet-title,
.portlet.box.grey > .portlet-title {
  background: #2196f3 !important;
  position: relative;
}

.portlet.box.blue > .portlet-title .caption,
.portlet.box.red > .portlet-title .caption,
.portlet.box.grey > .portlet-title .caption {
  line-height: 1.5;
  font-weight: bold;
  vertical-align: middle;
  color: #fff !important;
}

@media (max-width: 767px) {
  .portlet.box.blue > .portlet-title .caption,
  .portlet.box.red > .portlet-title .caption,
  .portlet.box.grey > .portlet-title .caption {
    display: block;
    text-align: center;
    width: 100%;
  }
}

.portlet.box.blue > .portlet-title .caption i,
.portlet.box.red > .portlet-title .caption i,
.portlet.box.grey > .portlet-title .caption i {
  margin-top: 6px;
  margin-right: 15px;
  margin-left: 8px;
  font-size: 20px;
}

.portlet.box.blue > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"],
.portlet.box.red > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"],
.portlet.box.grey > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] {
  position: static;
}

@media (max-width: 767px) {
  .portlet.box.blue > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"],
  .portlet.box.red > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"],
  .portlet.box.grey > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] {
    text-align: center;
    display: block !important;
    width: 100%;
  }
}

.portlet.box.blue > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button,
.portlet.box.red > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button,
.portlet.box.grey > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button {
  background: #1e88e5 !important;
  color: #fff;
  padding: 6px 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 6px !important;
  float: left;
  z-index: 2;
  position: relative;
}

@media (min-width: 768px) {
  .portlet.box.blue > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="PrintInvoiceTrx"],
  .portlet.box.blue > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="PrintTicketTrxVol"],
  .portlet.box.blue > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="SendEmailTicketTrxVol"],
  .portlet.box.red > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="PrintInvoiceTrx"],
  .portlet.box.red > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="PrintTicketTrxVol"],
  .portlet.box.red > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="SendEmailTicketTrxVol"],
  .portlet.box.grey > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="PrintInvoiceTrx"],
  .portlet.box.grey > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="PrintTicketTrxVol"],
  .portlet.box.grey > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="SendEmailTicketTrxVol"] {
    margin-right: 8px !important;
  }
}

@media (max-width: 767px) {
  .portlet.box.blue > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="PrintInvoiceTrx"],
  .portlet.box.blue > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="PrintTicketTrxVol"],
  .portlet.box.blue > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="SendEmailTicketTrxVol"],
  .portlet.box.red > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="PrintInvoiceTrx"],
  .portlet.box.red > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="PrintTicketTrxVol"],
  .portlet.box.red > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="SendEmailTicketTrxVol"],
  .portlet.box.grey > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="PrintInvoiceTrx"],
  .portlet.box.grey > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="PrintTicketTrxVol"],
  .portlet.box.grey > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] button[onclick*="SendEmailTicketTrxVol"] {
    display: table-cell;
    float: none;
    margin-right: 0px;
  }
}

.portlet.box.blue > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] b,
.portlet.box.red > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] b,
.portlet.box.grey > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] b {
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}

@media (min-width: 768px) {
  .portlet.box.blue > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] b,
  .portlet.box.red > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] b,
  .portlet.box.grey > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] b {
    position: absolute;
    display: block;
  }
}

@media (max-width: 767px) {
  .portlet.box.blue > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] b,
  .portlet.box.red > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] b,
  .portlet.box.grey > .portlet-title div[style*="display: inline-block; float: right; font-size: 18px"] b {
    margin-top: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
  }
}

.portlet.box.blue .btn,
.portlet.box.red .btn,
.portlet.box.grey .btn {
  background: #2196f3;
  border-radius: 6px !important;
  color: #fff;
}

#grid-list table {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 6px !important;
  overflow: hidden;
}

#grid-list table thead,
#grid-list table tfoot {
  background: #e5e5e5;
}

#grid-list table tfoot [class*="col-md"] {
  padding: 8px 30px;
}

#grid-list table tfoot [class*="col-md"]:first-child {
  font-weight: bold;
}

#grid-list table tfoot [class*="col-md"]:last-child {
  font-weight: bold;
  font-size: 16px;
}

#grid-list table tfoot [class*="col-md"] a {
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  font-weight: normal;
  font-size: 12px !important;
  padding: 2px 6px;
  background: #fff;
  color: #999;
  margin: 0px 3px;
  border-radius: 6px !important;
  position: relative;
  top: -2px;
}

#grid-list table tfoot [class*="col-md"] a:hover {
  background: #2196f3;
  color: #fff;
  text-decoration: none;
}

#grid-list table tbody tr td {
  vertical-align: middle;
}

#grid-list table tbody tr td a.btn {
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  margin: 0 !important;
  border-radius: 6px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 3px 8px !important;
  font-size: 12px;
}

#GridMonitor {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 6px !important;
  overflow: hidden;
}

#GridMonitor thead,
#GridMonitor tfoot {
  background: #e5e5e5;
}

#GridMonitor tfoot [class*="col-md"] {
  padding: 8px 30px;
}

#GridMonitor tfoot [class*="col-md"]:first-child {
  font-weight: bold;
}

#GridMonitor tfoot [class*="col-md"]:last-child {
  font-weight: bold;
  font-size: 16px;
}

#GridMonitor tfoot [class*="col-md"] a {
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  font-weight: normal;
  font-size: 12px !important;
  padding: 2px 6px;
  background: #fff;
  color: #999;
  margin: 0px 3px;
  border-radius: 6px !important;
  position: relative;
  top: -2px;
}

#GridMonitor tfoot [class*="col-md"] a:hover {
  background: #2196f3;
  color: #fff;
  text-decoration: none;
}

#GridMonitor tbody tr td {
  vertical-align: middle;
}

#GridMonitor tbody tr td a.btn {
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  margin: 0 !important;
  border-radius: 6px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 3px 8px !important;
  font-size: 12px;
}

#GridMonitor thead tr th:nth-child(5) {
  text-align: center;
}

#GridMonitor tbody tr td {
  vertical-align: middle;
}

#GridMonitor tbody tr td:nth-child(5) {
  text-align: center;
}

.document-visa-parent {
  padding-top: 30px;
  padding-bottom: 30px;
}

.document-visa-parent .document-visa {
  background: #ffffff;
  padding-top: 30px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  margin-left: 0px;
  margin-right: 0px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

@media (min-width: 768px) {
  .document-visa-parent .document-visa {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    max-width: 970px;
    margin: auto;
  }
}

.document-visa-parent .document-visa .title {
  border-bottom: 1px solid #eee;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.document-visa-parent .document-visa form label {
  margin-bottom: 8px;
  display: block;
  color: #999;
  text-align: center;
}

.document-visa-parent .document-visa form select {
  text-align: center;
  text-align-last: center;
  margin-bottom: 35px;
}

.document-visa-parent .document-visa .btn-group {
  float: right;
}

.document-visa-parent .document-visa .btn-group button i {
  margin-right: 8px;
}

.document-visa-parent #emailModal .modal-header h4 {
  color: #fff !important;
}

.document-visa-parent #emailModal .modal-content .btn-close {
  background: none;
}

.document-visa-parent #emailModal .modal-content .btn-close span {
  font-size: 16px;
}

.document-visa-parent #loadingModal p {
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: center;
  margin-bottom: 0px;
}

.document-visa-parent #loadingModal p i {
  position: relative;
  font-size: 26px;
  bottom: -3px;
}

.document-visa-parent #loadingModal p span {
  font-size: 16px;
}

.image-loader,
.event-container .event-block .left-side .banner-img,
.event-container .payment-event .description .banner-img {
  background-size: cover !important;
  background-position: center !important;
  text-align: center;
  position: relative;
}

.image-loader.loading:before,
.event-container .event-block .left-side .loading.banner-img:before,
.event-container .payment-event .description .loading.banner-img:before,
.image-loader.loading:after,
.event-container .event-block .left-side .loading.banner-img:after,
.event-container .payment-event .description .loading.banner-img:after {
  opacity: 1;
}

.image-loader:before,
.event-container .event-block .left-side .banner-img:before,
.event-container .payment-event .description .banner-img:before,
.image-loader:after,
.event-container .event-block .left-side .banner-img:after,
.event-container .payment-event .description .banner-img:after {
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.image-loader:before,
.event-container .event-block .left-side .banner-img:before,
.event-container .payment-event .description .banner-img:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #eee;
  opacity: 0;
}

.image-loader:after,
.event-container .event-block .left-side .banner-img:after,
.event-container .payment-event .description .banner-img:after {
  content: "\F110";
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 30px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-rendering: auto;
  opacity: 0;
  -webkit-font-smoothing: antialiased;
  color: #aaa;
}

@media (min-width: 992px) {
  .image-loader,
  .event-container .event-block .left-side .banner-img,
  .event-container .payment-event .description .banner-img {
    border-bottom-left-radius: 6px !important;
    border-top-left-radius: 6px !important;
  }
}

.input-groups,
.event-container .details-event .ticket .input-group,
.event-container .attendee-event .input-group,
.event-container .payment-event .list.payment-method .tab-container .input-group {
  border-radius: 6px !important;
}

.input-groups.error.xs-col-1 .form-control,
.event-container .details-event .ticket .error.xs-col-1.input-group .form-control,
.event-container .attendee-event .error.xs-col-1.input-group .form-control,
.event-container .payment-event .list.payment-method .tab-container .error.xs-col-1.input-group .form-control,
.input-groups.error.xs-col-1 .form-control:focus,
.event-container .details-event .ticket .error.xs-col-1.input-group .form-control:focus,
.event-container .attendee-event .error.xs-col-1.input-group .form-control:focus,
.event-container .payment-event .list.payment-method .tab-container .error.xs-col-1.input-group .form-control:focus {
  border-left-color: #F44336;
}

.input-groups.error .input-group-addon,
.event-container .details-event .ticket .error.input-group .input-group-addon,
.event-container .attendee-event .error.input-group .input-group-addon,
.event-container .payment-event .list.payment-method .tab-container .error.input-group .input-group-addon {
  border-color: #F44336;
}

.input-groups.error .input-group-addon i,
.event-container .details-event .ticket .error.input-group .input-group-addon i,
.event-container .attendee-event .error.input-group .input-group-addon i,
.event-container .payment-event .list.payment-method .tab-container .error.input-group .input-group-addon i {
  color: #F44336;
}

.input-groups.error .form-control,
.event-container .details-event .ticket .error.input-group .form-control,
.event-container .attendee-event .error.input-group .form-control,
.event-container .payment-event .list.payment-method .tab-container .error.input-group .form-control,
.input-groups.error .form-control:focus,
.event-container .details-event .ticket .error.input-group .form-control:focus,
.event-container .attendee-event .error.input-group .form-control:focus,
.event-container .payment-event .list.payment-method .tab-container .error.input-group .form-control:focus {
  border-top-color: #F44336;
  border-right-color: #F44336;
  border-bottom-color: #F44336;
}

.input-groups.error span.error,
.event-container .details-event .ticket .error.input-group span.error,
.event-container .attendee-event .error.input-group span.error,
.event-container .payment-event .list.payment-method .tab-container .error.input-group span.error {
  position: absolute;
  color: #F44336;
  bottom: -20px;
  left: 0;
}

.input-groups.xs-col-1 .form-control,
.event-container .details-event .ticket .xs-col-1.input-group .form-control,
.event-container .attendee-event .xs-col-1.input-group .form-control,
.event-container .payment-event .list.payment-method .tab-container .xs-col-1.input-group .form-control {
  border-top-left-radius: 6px !important;
  border-bottom-left-radius: 6px !important;
}

.input-groups.joined,
.event-container .details-event .ticket .joined.input-group,
.event-container .attendee-event .joined.input-group,
.event-container .payment-event .list.payment-method .tab-container .joined.input-group {
  width: 100%;
}

.input-groups.joined .form-control[placeholder*="First"],
.event-container .details-event .ticket .joined.input-group .form-control[placeholder*="First"],
.event-container .attendee-event .joined.input-group .form-control[placeholder*="First"],
.event-container .payment-event .list.payment-method .tab-container .joined.input-group .form-control[placeholder*="First"] {
  border-top-right-radius: 6px !important;
  border-top-left-radius: 6px !important;
  border-bottom-right-radius: 0 !important;
}

.input-groups.joined .form-control[placeholder*="Last"],
.event-container .details-event .ticket .joined.input-group .form-control[placeholder*="Last"],
.event-container .attendee-event .joined.input-group .form-control[placeholder*="Last"],
.event-container .payment-event .list.payment-method .tab-container .joined.input-group .form-control[placeholder*="Last"] {
  border-bottom-left-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
  border-top-right-radius: 0 !important;
  border-top: 0;
}

.input-groups select.form-control,
.event-container .details-event .ticket .input-group select.form-control,
.event-container .attendee-event .input-group select.form-control,
.event-container .payment-event .list.payment-method .tab-container .input-group select.form-control {
  padding: 8px 5px;
}

.input-groups .input-group-addon,
.event-container .details-event .ticket .input-group .input-group-addon,
.event-container .attendee-event .input-group .input-group-addon,
.event-container .payment-event .list.payment-method .tab-container .input-group .input-group-addon {
  background: #ffffff;
}

.input-groups .input-group-addon:first-child,
.event-container .details-event .ticket .input-group .input-group-addon:first-child,
.event-container .attendee-event .input-group .input-group-addon:first-child,
.event-container .payment-event .list.payment-method .tab-container .input-group .input-group-addon:first-child {
  border-top-left-radius: 6px !important;
  border-bottom-left-radius: 6px !important;
}

.input-groups .form-control,
.event-container .details-event .ticket .input-group .form-control,
.event-container .attendee-event .input-group .form-control,
.event-container .payment-event .list.payment-method .tab-container .input-group .form-control {
  background: #ffffff;
  border-top-right-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
  height: initial;
  padding: 10px 12px;
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.input-groups .form-control:focus,
.event-container .details-event .ticket .input-group .form-control:focus,
.event-container .attendee-event .input-group .form-control:focus,
.event-container .payment-event .list.payment-method .tab-container .input-group .form-control:focus {
  background: #fff;
  border-color: #1e88e5;
}

.input-groups i,
.event-container .details-event .ticket .input-group i,
.event-container .attendee-event .input-group i,
.event-container .payment-event .list.payment-method .tab-container .input-group i {
  font-size: 18px;
  vertical-align: middle;
}

.event-container {
  width: 100%;
  float: left;
}

.event-container .event-block {
  color: #424242 !important;
  overflow: hidden;
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.event-container .event-block:before,
.event-container .event-block::after {
  content: "";
  display: table;
  clear: both;
}

.event-container .event-block .left-side {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.event-container .event-block .left-side .banner-img {
  border-radius: 6px !important;
}

.event-container .event-block .right-side {
  display: block;
}

.event-container .event-block .right-side .right-side-inner {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 15px;
  display: inline-block;
  width: 100%;
  border-radius: 6px !important;
}

.event-container .event-block .right-side .event-initial {
  float: left;
  width: 100%;
  margin-bottom: 15px;
}

.event-container .event-block .right-side .event-initial strong.name {
  padding-left: 0;
  text-align: left;
  font-size: 18px;
}

.event-container .event-block .right-side .event-initial span.price {
  padding-right: 0;
  text-align: right;
  font-size: 17px;
  font-weight: normal;
}

.event-container .event-block .right-side .event-initial span.price strong {
  font-size: 11px;
  vertical-align: top;
  margin-right: 5px;
  color: #BDBDBD !important;
}

.event-container .event-block .right-side p {
  float: left;
  width: 100%;
}

.event-container .event-block .right-side p span {
  color: #BDBDBD;
}

.event-container .event-block .right-side button,
.event-container .event-block .right-side a.btn {
  margin-top: 20px;
}

.event-container .details-event {
  float: left;
  width: 100%;
}

.event-container .details-event .top-section {
  margin-bottom: 30px;
  padding: 0px 15px;
}

.event-container .details-event .card {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  margin-bottom: 15px;
  float: left;
  width: 100%;
}

.event-container .details-event .card p {
  margin: 0;
}

.event-container .details-event .info .card {
  padding: 15px 0px;
  margin-bottom: 0px;
}

.event-container .details-event .info .desc-title {
  font-size: 14px;
  color: #BDBDBD;
  margin-bottom: 8px;
}

.event-container .details-event .info .desc {
  font-size: 16px;
}

.event-container .details-event .ticket .total {
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  height: 0px;
  opacity: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-bottom: 1px dashed #BDBDBD;
  padding-bottom: 0px;
  margin-bottom: 0px;
  padding: 0px 15px;
}

.event-container .details-event .ticket .total h3 {
  margin-bottom: 0;
  line-height: 1.5;
}

.event-container .details-event .ticket .total h3 .idr {
  font-size: 11px;
  vertical-align: top;
  margin-right: 5px;
  color: #BDBDBD !important;
}

.event-container .details-event .ticket .total.is-absolute {
  margin-bottom: 0px !important;
  margin-top: 0px !important;
}

.event-container .details-event .ticket .total.active {
  opacity: 1;
  height: 50px;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.event-container .details-event .ticket .total.active.is-sticky {
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 5;
  height: 65px;
  padding-top: 15px;
}

.event-container .details-event .ticket .card {
  padding: 30px 0px;
  position: relative;
  margin-bottom: 30px;
  box-shadow: none;
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}

.event-container .details-event .ticket .card:before {
  content: "";
  width: 13px;
  position: absolute;
  border-left: 2px dashed #EEE;
  top: 0;
  bottom: 0;
  right: 50%;
}

.event-container .details-event .ticket .card [class*="col-sm"]:nth-child(1) {
  position: static;
}

.event-container .details-event .ticket .card [class*="col-sm"]:nth-child(1) p {
  padding: 0px 15px;
}

.event-container .details-event .ticket .card [class*="col-sm"]:nth-child(1):before,
.event-container .details-event .ticket .card [class*="col-sm"]:nth-child(1):after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #fff;
}

.event-container .details-event .ticket .card [class*="col-sm"]:nth-child(1):before {
  top: -15px;
  left: -15px;
}

.event-container .details-event .ticket .card [class*="col-sm"]:nth-child(1):after {
  bottom: -15px;
  left: -15px;
}

.event-container .details-event .ticket .card [class*="col-sm"]:nth-child(2) {
  position: static;
}

.event-container .details-event .ticket .card [class*="col-sm"]:nth-child(2):before,
.event-container .details-event .ticket .card [class*="col-sm"]:nth-child(2):after {
  content: "";
  display: block;
  position: absolute;
  border-right: 12px solid rgba(255, 255, 255, 0);
  border-left: 12px solid rgba(255, 255, 255, 0);
}

.event-container .details-event .ticket .card [class*="col-sm"]:nth-child(2):before {
  border-top: 8px solid #fff;
  top: 0px;
  right: 50%;
}

.event-container .details-event .ticket .card [class*="col-sm"]:nth-child(2):after {
  border-bottom: 8px solid #fff;
  bottom: 0px;
  right: 50%;
}

.event-container .details-event .ticket p {
  font-size: 18px;
}

.event-container .details-event .ticket p .idr {
  font-size: 11px;
  vertical-align: top;
  margin-right: 5px;
  color: #BDBDBD !important;
}

.event-container .details-event .ticket .input-group {
  width: 100%;
  -moz-transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

@media (min-width: 992px) {
  .event-container .details-event .ticket .input-group {
    width: 50%;
    margin: auto;
    top: 10px;
  }
}

.event-container .details-event .ticket .input-group * {
  display: table-cell !important;
  float: none !important;
  height: 34px;
  margin: 0;
  border: 0 !important;
  padding: 8px !important;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
}

.event-container .details-event .ticket .input-group .input-group-addon:first-child {
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.event-container .details-event .ticket .input-group .input-group-addon:last-child {
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.event-container .attendee-event {
  width: 100%;
  display: block;
}

.event-container .attendee-event:before,
.event-container .attendee-event::after {
  content: "";
  display: table;
  clear: both;
}

.event-container .attendee-event .event .banner-img {
  background-size: cover !important;
  background-position: center !important;
  text-align: center;
  position: relative;
}

@media (min-width: 992px) {
  .event-container .attendee-event .event .banner-img {
    border-bottom-left-radius: 6px !important;
    border-top-left-radius: 6px !important;
  }
}

.event-container .attendee-event .booker,
.event-container .attendee-event .attendee {
  /*.react-date-field {
                width: 100%;
                border-color: #e5e5e5;
                border-radius: $radiusValue !important;
                background: #ffffff;
                &.react-date-field--expanded {
                    border-color: $color-1;
                    @include animate(ease, 0.3);
                    input {
                        background: #fff;
                        &+.react-date-field__calendar-icon {
                            border-color: $color-1;
                            &:before,
                            &:after,
                            .react-date-field__calendar-icon-inner {
                                background: $color-1;
                            }
                        }
                    }
                }
                input {
                    @include animate(ease, 0.3);
                    background: #ffffff;
                    padding: 8px 15px;
                    &+.react-date-field__calendar-icon {
                        margin: 0px 15px;
                        &:active {
                            border-color: $color-1;
                            &:before,
                            &:after,
                            .react-date-field__calendar-icon-inner {
                                background: $color-1;
                            }
                        }
                    }
                }
                .react-date-field__picker {
                    border: 0;
                    .react-date-picker__month-view {
                        border-bottom-left-radius: $radiusValue !important;
                        border-bottom-right-radius: $radiusValue !important;
                        display: block;
                        width: 100%;
                        .react-date-picker__month-view-day--active {
                            .react-date-picker__month-view-day-text {
                                background: $color-1;
                                &:hover {
                                    background: $color-1-dark;
                                }
                            }
                            .react-date-picker__month-view-day--today-highlight {
                                color: #fff;
                            }
                        }
                        .react-date-picker__month-view-day--today-highlight {
                            color: $color-2;
                            font-weight: bold;
                        }
                        .react-date-picker__month-view-day-text {
                            border: 0px;
                            border-radius: $radiusValue !important;
                            &:hover {
                                background: #eee;
                            }
                        }
                    }
                    .react-date-picker__nav-bar--theme-default {
                        * {
                            border-radius: $radiusValue !important;
                        }
                        .react-date-picker__nav-bar-history-view {
                            border: 1px solid #eee;
                        }
                        .react-date-picker__year-view-month--active {
                            background: $color-2;
                            border: 0px;
                        }
                        .react-date-picker__decade-view {
                            border-radius: 0px !important;
                            padding: 8px 0px;
                            border-top: #eee dashed 1px;
                            border-bottom: #eee solid 1px;
                            .react-date-picker__decade-view-year--active {
                                background: $color-2;
                                border: 0px;
                            }
                        }
                        .react-date-picker__footer-button {
                            padding: 4px 6px;
                            width: 35%;
                            border: 0;
                            margin: 8px 8px;
                            font-size: 14px;
                        }
                    }
                }
            }*/
}

.event-container .attendee-event .booker h3.form-title,
.event-container .attendee-event .attendee h3.form-title {
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
  color: #999;
}

.event-container .attendee-event .booker hr,
.event-container .attendee-event .attendee hr {
  border-top-style: dashed;
}

.event-container .attendee-event .booker .rdtPicker,
.event-container .attendee-event .attendee .rdtPicker {
  top: 36px;
}

.event-container .attendee-event .booker .rdtPicker tbody tr td,
.event-container .attendee-event .attendee .rdtPicker tbody tr td {
  border-radius: 6px !important;
}

.event-container .attendee-event .booker .rdtPicker tbody tr td.rdtActive,
.event-container .attendee-event .attendee .rdtPicker tbody tr td.rdtActive {
  background-color: #1e88e5;
}

.event-container .attendee-event .booker .rdtPicker tbody tr td.rdtToday:before,
.event-container .attendee-event .attendee .rdtPicker tbody tr td.rdtToday:before {
  border-bottom-color: #1e88e5;
}

.event-container .attendee-event .attendee .accordion-btn {
  display: block;
  border: 0;
  padding: 0;
  outline: 0;
  width: 100%;
  background: #fff !important;
  border: 1px solid #eee;
  color: #1e88e5;
  -moz-transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.event-container .attendee-event .attendee .accordion-btn + .form-group {
  padding: 0;
  border-width: 0;
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  overflow: hidden;
}

.event-container .attendee-event .attendee .accordion-btn + .form-group .wrapper {
  bottom: -100%;
  opacity: 0;
  -moz-transition: all ease 0.5s;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.event-container .attendee-event .attendee .accordion-btn.open {
  background: #fff !important;
  color: #999;
  border-bottom-color: #ddd;
  border-bottom-style: dashed;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.event-container .attendee-event .attendee .accordion-btn.open + .form-group {
  padding: 15px 0px;
  border-width: 1px;
  overflow: visible;
}

.event-container .attendee-event .attendee .accordion-btn.open + .form-group .wrapper {
  bottom: 0%;
  opacity: 1;
}

.event-container .attendee-event .attendee .accordion-btn.open h3 {
  font-size: 18px !important;
}

.event-container .attendee-event .attendee .accordion-btn.open h3 span {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.event-container .attendee-event .attendee .accordion-btn.open h3 span i {
  vertical-align: middle;
}

.event-container .attendee-event .attendee .accordion-btn.multiple h3 span {
  right: 35px;
}

.event-container .attendee-event .attendee .accordion-btn h3 {
  font-weight: bold;
  font-size: 16px !important;
  margin: 0;
  padding: 8px 15px;
  position: relative;
  text-align: left;
  -moz-transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.event-container .attendee-event .attendee .accordion-btn h3 span {
  height: 24px;
  top: 0;
  bottom: 0;
  right: 8px;
  margin: auto;
  position: absolute;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -moz-transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.event-container .attendee-event .attendee .form-group {
  border: solid #eee;
  border-bottom-left-radius: 6px !important;
  border-bottom-right-radius: 6px !important;
  background: #fff;
  position: relative;
}

.event-container .attendee-event .attendee .btn-close {
  border: 0;
  padding: 0;
  height: 24px;
  width: 24px;
  position: absolute;
  color: #F44336;
  right: 25px;
  top: 5px;
  z-index: 4;
  outline: 0;
  background: none !important;
  -moz-transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}

.event-container .attendee-event .attendee .btn-close i {
  vertical-align: middle;
}

.event-container .attendee-event .attendee .add.btn {
  line-height: 1;
  background: none !important;
  color: #999;
  padding: 0;
  margin: 0;
  margin-top: -15px;
  width: 24px;
  height: 24px;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.event-container .attendee-event .attendee .add.btn i {
  -moz-transition: all linear 0.2s;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  vertical-align: middle;
  font-size: 24px;
}

.event-container .attendee-event .attendee .add.btn:hover {
  color: #1e88e5;
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

.event-container .attendee-event .attendee .add.btn:hover i {
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.event-container .payment-event .list {
  background: #ffffff;
  margin-bottom: 30px;
  padding-bottom: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  width: 100%;
  float: left;
  overflow: hidden;
  border-radius: 6px !important;
}

.event-container .payment-event .list.payment-method {
  padding-bottom: 15px;
}

.event-container .payment-event .list.payment-method .btn {
  -moz-transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.event-container .payment-event .list.payment-method .btn.btn-danger {
  background: #F44336 !important;
}

.event-container .payment-event .list.payment-method .btn.btn-danger:hover,
.event-container .payment-event .list.payment-method .btn.btn-danger:focus,
.event-container .payment-event .list.payment-method .btn.btn-danger:active {
  background: #D32F2F !important;
}

.event-container .payment-event .list.payment-method .btn.btn-primary {
  background: #2196f3 !important;
}

.event-container .payment-event .list.payment-method .btn.btn-primary:hover,
.event-container .payment-event .list.payment-method .btn.btn-primary:focus,
.event-container .payment-event .list.payment-method .btn.btn-primary:active {
  background: #0c7cd5 !important;
}

.event-container .payment-event .list.payment-method .btn.tabs {
  background: none !important;
  color: #777;
  border-bottom: 3px solid #ddd;
  border-radius: 0px !important;
  padding-left: 3px;
  padding-right: 3px;
}

.event-container .payment-event .list.payment-method .btn.tabs.not-available.active {
  color: #F44336;
  border-bottom-color: #F44336;
}

.event-container .payment-event .list.payment-method .btn.tabs.active {
  color: #1e88e5;
  border-bottom-color: #1e88e5;
}

.event-container .payment-event .list.payment-method .btn.btn-lg {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.event-container .payment-event .list.payment-method .tab-container {
  padding: 0px 15px;
}

.event-container .payment-event .list.payment-method .tab-container p.total {
  text-align: left;
  background: #F44336;
  padding: 8px 0px;
  font-size: 24px;
  margin-left: -30px;
  margin-right: -30px;
  margin-top: -14px;
  box-shadow: inset 0px -1px 2px rgba(0, 0, 0, 0.2);
}

.event-container .payment-event .list.payment-method .tab-container p.total strong {
  color: #fff;
  font-size: 24px;
}

.event-container .payment-event .list.payment-method .tab-container p.total span {
  color: #fff;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.8;
}

.event-container .payment-event .list.payment-method .tab-container p.total + .row {
  margin-left: -30px;
  margin-right: -30px;
}

.event-container .payment-event .list.payment-method .tab-container p {
  text-align: center;
}

.event-container .payment-event .list.payment-method .tab-container p span {
  font-size: 14px;
  color: #bdbdbd;
  margin-bottom: 0px;
}

.event-container .payment-event .list.payment-method .tab-container p strong {
  font-size: 20px;
  color: #777;
}

.event-container .payment-event .list.payment-method .tab-container .not-available {
  color: #f44336;
  font-size: 24px;
  height: 20vh;
  padding-top: 5vh;
}

.event-container .payment-event .list h3.title {
  padding: 8px 15px;
  background: #1e88e5;
  color: #fff;
  padding: 8px 15px;
  font-size: 22px;
}

.event-container .payment-event .list p.head {
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

.event-container .payment-event .list p.cell span {
  display: block;
  height: 18.2px;
  font-size: 14px;
  line-height: 1.3;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.event-container .payment-event .list p.foot {
  padding-top: 8px;
  border-top: 1px solid #ddd;
}

.event-container .payment-event .description {
  background: #ffffff;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 6px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.event-container .payment-event .description .ticket-type {
  margin-bottom: 0;
  margin-left: 8px;
  background: #fff;
  padding: 3px 8px;
  border-radius: 999px !important;
  color: #bdbdbd;
  font-size: 18px;
}

.event-container .payment-event .description .ticket-type:last-child {
  margin-left: 0px;
}

.event-container .payment-event .description .ticket-type span {
  margin-right: 6px;
  font-weight: bold;
  color: #777;
}

.event-container .payment-event .description .title {
  border-bottom: 1px dashed #ddd;
}

.event-container .payment-event .description .title p.iconic {
  font-weight: normal;
  font-size: 14px;
  color: #bdbdbd;
}

.event-container .payment-event .description .title p.iconic i {
  margin-right: 6px;
  vertical-align: middle;
  font-size: 18px;
  color: #999;
}

.event-container .payment-event .description .info {
  padding-top: 15px;
  padding-bottom: 15px;
}

.event-container .payment-event .description .info p {
  font-size: 14px;
}

.event-container .payment-event .description .info h3 strong {
  color: #777;
  font-size: 21px;
}

.event-container .payment-event .description .info h3 strong span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: normal;
  color: #BDBDBD;
}

.event-container .error-statement {
  height: 100vh;
  padding-top: 45vh;
  text-align: center;
  color: #F44336;
  font-weight: bold;
}

.event-container .error-statement i {
  vertical-align: bottom;
  font-size: 40px;
  margin-right: 8px;
}

.event-container .error-statement p {
  margin-top: 15px;
  font-size: 18px;
  color: #BDBDBD;
  font-weight: normal;
}

.event-container .search-bar {
  margin-bottom: 20px;
}

.event-container .search-bar input {
  border-radius: 6px !important;
}

.event-container .loading-text {
  height: 100vh;
  padding-top: 45vh;
  text-align: center;
  vertical-align: middle;
  float: left;
  width: 100%;
  color: #BDBDBD;
}

.event-container .loading-text i {
  font-size: inherit;
  margin-right: 5px;
  color: #1e88e5;
}

.event-container button,
.event-container a.btn {
  border-radius: 6px !important;
  background: #1e88e5 !important;
  color: #fafafa;
}

.event-container button:hover,
.event-container button:active,
.event-container button:focus,
.event-container a.btn:hover,
.event-container a.btn:active,
.event-container a.btn:focus {
  background: #10538d !important;
  color: #fafafa;
}

.event-container button.warning,
.event-container a.btn.warning {
  background: #F44336 !important;
}

.event-container button.warning:hover,
.event-container button.warning:active,
.event-container button.warning:focus,
.event-container a.btn.warning:hover,
.event-container a.btn.warning:active,
.event-container a.btn.warning:focus {
  background: #D32F2F !important;
}

.event-container button.warning i,
.event-container a.btn.warning i {
  font-size: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

.event-container button.warning strong,
.event-container a.btn.warning strong {
  line-height: 1;
  vertical-align: middle;
}

@media (min-width: 992px) {
  #mainCarousel .item {
    min-height: 500px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #mainCarousel .item {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  #mainCarousel .item {
    min-height: 200px;
  }
}

@media (max-width: 543px) {
  #mainCarousel .item {
    min-height: calc(10vh + 50px);
  }
}

.page-header {
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .page-header {
    box-shadow: none;
  }
}

.page-header .search-box-home-wrapper {
  z-index: 2;
}

@media (min-width: 992px) {
  .page-header .search-box-home-wrapper {
    position: absolute;
    max-width: 480px;
    bottom: 0;
  }
}

@media (max-width: 991px) {
  .page-header .search-box-home-wrapper {
    margin-top: 15px;
  }
}

.home-widget .usp-carousel {
  border: 1px solid #ddd;
  border-radius: 6px;
}

.home-widget .usp-carousel .item {
  padding: 15px;
  text-align: center;
}

.home-widget .usp-carousel .item img {
  max-width: 150px;
  display: inline-block;
}

@media (min-width: 768px) {
  .home-widget .usp-carousel .owl-item:not(:last-child) {
    min-height: 280px;
    border-right: 1px solid #ddd;
  }
}

@media (max-width: 767px) {
  .home-widget .usp-carousel .item img,
  .home-widget .usp-carousel .item .content {
    display: inline-block;
    vertical-align: middle;
  }

  .home-widget .usp-carousel .item img {
    width: 29%;
    max-width: 100px;
    margin-bottom: 0 !important;
  }

  .home-widget .usp-carousel .item .content {
    width: 69%;
    text-align: left;
    padding-left: 8px;
  }
}

.home-widget.home-widget-partner ul.list-inline {
  display: table;
  margin: auto;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.home-widget.home-widget-partner ul.list-inline li {
  text-align: center;
  display: table-cell;
}

.home-widget.home-widget-partner ul.list-inline li:not(:last-child) {
  border-right: 1px solid #ddd;
}

@media (min-width: 768px) {
  .home-widget.home-widget-partner ul.list-inline li {
    padding: 25px 15px;
  }

  .home-widget.home-widget-partner ul.list-inline img {
    max-width: 150px;
  }
}

@media (max-width: 767px) {
  .home-widget.home-widget-partner ul.list-inline li {
    padding: 8px;
  }

  .home-widget.home-widget-partner ul.list-inline img {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  .seatCharts-container {
    overflow-y: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .seatCharts-container .seatCharts-row {
    white-space: nowrap;
  }

  .seatCharts-container .seatCharts-row > div {
    display: inline-block;
    float: none;
    white-space: normal;
  }
}

.form-group.has-error {
  position: relative;
}

.form-group.has-error .input-group#divOrigin,
.form-group.has-error .input-group#divDestination {
  border-color: #e92229;
  box-shadow: none;
}

.form-group.has-error .input-group#divOrigin + span.help-block,
.form-group.has-error .input-group#divDestination + span.help-block {
  margin-top: 0px;
  color: #e92229 !important;
}

.form-group.has-error .input-group#divOrigin .input-group-addon i,
.form-group.has-error .input-group#divDestination .input-group-addon i {
  color: #e92229 !important;
}

.form-group.has-error .input-group#divOrigin .form-control,
.form-group.has-error .input-group#divDestination .form-control {
  border-color: #e92229 !important;
}

.twitter-typeahead {
  display: block !important;
}

.twitter-typeahead .tt-menu {
  background: #ffffff;
  top: 34px !important;
  width: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.twitter-typeahead .tt-menu .tt-dataset {
  padding: 4px 4px;
}

.twitter-typeahead .tt-menu .tt-dataset .tt-suggestion {
  padding: 4px 8px;
}

.twitter-typeahead .tt-menu .tt-cursor {
  background: #1e88e5;
  color: #ffffff;
}

.twitter-typeahead .tt-menu .tt-cursor .tt-highlight {
  color: #ffffff;
}

.twitter-typeahead .tt-menu .tt-highlight {
  color: #1e88e5;
}

@media (min-width: 768px) {
  #airportListChooser {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    width: 450px;
  }
}

@media (max-width: 767px) {
  #airportListChooser {
    right: 0;
    height: 100vh;
  }
}

#airportListChooser .airport-binding-input {
  display: none;
}

@media (max-width: 767px) {
  #airportListChooser .airport-binding-input {
    display: block;
    padding: 15px;
    margin-bottom: 0;
  }

  #airportListChooser .airport-binding-input .twitter-typeahead .form-control {
    padding-left: 35px !important;
  }

  #airportListChooser .airport-binding-input .tt-menu.tt-open {
    top: 50px !important;
    bottom: 0;
    left: -15px !important;
    right: -15px;
    height: 100vh;
    width: initial;
    box-shadow: none;
    border-top: 1px solid #eee;
  }
}

#airportListChooser .chooser-title {
  padding: 8px 15px;
  margin: 0px;
  font-weight: bold;
  font-size: 16px;
  border-bottom-width: 4px;
  border-bottom-style: solid;
}

#airportListChooser .chooser-title i#close {
  cursor: pointer;
  float: right;
}

#airportListChooser .btn-tab-container {
  float: left;
}

@media (min-width: 768px) {
  #airportListChooser .btn-tab-container {
    border-right-width: 1px;
    border-right-style: solid;
    width: 33.3333%;
  }
}

@media (max-width: 767px) {
  #airportListChooser .btn-tab-container {
    width: 100%;
  }

  #airportListChooser .btn-tab-container ul {
    margin-bottom: 0;
    overflow-x: auto;
  }

  #airportListChooser .btn-tab-container ul li {
    display: table-cell;
    vertical-align: middle;
  }

  #airportListChooser .btn-tab-container ul li a {
    white-space: nowrap;
  }

  #airportListChooser .btn-tab-container ul li a i {
    display: none;
  }
}

#airportListChooser .btn-tab-container a {
  text-transform: capitalize;
  border-width: 0px;
  border-radius: 0px;
}

#airportListChooser .btn-tab-container a i.fa {
  float: right;
  position: relative;
  line-height: 1.7;
  right: -12px;
}

#airportListChooser .tab-result-container {
  float: left;
}

@media (min-width: 768px) {
  #airportListChooser .tab-result-container {
    width: 66.6666%;
  }
}

@media (max-width: 767px) {
  #airportListChooser .tab-result-container {
    width: 100%;
    overflow-y: auto;
  }
}

#airportListChooser .tab-result-container .airport-container {
  display: none;
}

#airportListChooser .tab-result-container .airport-container.active {
  display: block;
}

#airportListChooser .tab-result-container .airport-container p.airport-list {
  -moz-transition: all ease 0.1s;
  -webkit-transition: all ease 0.1s;
  transition: all ease 0.1s;
  padding: 6px 15px;
  margin: 0px;
  cursor: pointer;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

#airportListChooser .tab-result-container .airport-container p.airport-list span {
  display: block;
}

#airportListChooser .tab-result-container .airport-container p.airport-list span.main {
  font-size: 13px;
}

#airportListChooser .tab-result-container .airport-container p.airport-list span.helper {
  font-size: 11px;
}

@media (min-width: 768px) {
  #airportListChooser .btn-tab-container,
  #airportListChooser .tab-result-container {
    height: 300px;
    overflow-y: auto;
  }
}

#airportListChooser {
  background: #ffffff;
}

#airportListChooser .chooser-title {
  border-bottom-color: #82c4f8;
  color: #2196f3;
}

#airportListChooser .chooser-title i#close {
  color: #e92229;
}

#airportListChooser .btn-tab-container {
  background: #e0e0e0;
  border-right-color: #2196f3;
}

#airportListChooser .btn-tab-container li.active a {
  background-color: #2196f3;
  color: #ffffff;
}

#airportListChooser .btn-tab-container li a {
  color: #2196f3;
}

#airportListChooser .tab-result-container {
  background: #ffffff;
}

#airportListChooser .tab-result-container p.airport-list {
  border-bottom-color: #e0e0e0;
}

#airportListChooser .tab-result-container p.airport-list:hover {
  background: #f5f5f5;
}

#airportListChooser .tab-result-container p.airport-list:hover .main {
  color: black;
  background: #f5f5f5;
}

#airportListChooser .tab-result-container p.airport-list:hover .helper {
  color: #4d4d4d;
}

#airportListChooser .tab-result-container p.airport-list.cursor {
  background: #2196f3;
}

#airportListChooser .tab-result-container p.airport-list.cursor .main {
  color: #ffffff;
}

#airportListChooser .tab-result-container p.airport-list.cursor .helper {
  color: #f2f2f2;
}

#airportListChooser .tab-result-container p.airport-list .main {
  color: #4d4d4d;
}

#airportListChooser .tab-result-container p.airport-list .helper {
  color: #999;
}

.btn-exchange-wrapper {
  padding-top: 8px;
  position: relative;
}

.btn-exchange-wrapper #btnExchangeDest {
  position: absolute;
  top: -20px;
  left: calc(50% - 16px);
  padding: 0;
  height: 32px;
  width: 32px;
  border-radius: 999px;
  line-height: 1;
  text-align: center;
  z-index: 1;
}

#DivRefineSearch .btn-exchange-wrapper {
  padding: 0;
}

#DivRefineSearch .btn-exchange-wrapper #btnExchangeDest {
  top: -11px;
}

.btn-group-devided label#LblOneway,
.btn-group-devided label#LblReturn {
  background: #0b76cc;
  color: #ffffff;
}

.btn-group-devided label#LblOneway.active,
.btn-group-devided label#LblReturn.active {
  background: #6ab8f7;
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.daterangepicker {
  border-color: #ffffff;
}

.daterangepicker.dropdown-menu {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.daterangepicker:before,
.daterangepicker:after {
  display: none !important;
}

.daterangepicker .calendar-table:before {
  border-top-left-radius: 6px !important;
  border-top-right-radius: 6px !important;
  background: #2196f3;
}

.daterangepicker table th {
  color: #ffffff;
}

.daterangepicker table th.prev.available:hover,
.daterangepicker table th.next.available:hover {
  background: #ffffff;
  color: #2196f3;
}

.daterangepicker table td.disabled {
  color: #e3e3e3;
}

.daterangepicker table td.active {
  background-color: #1e88e5;
}

.daterangepicker table td.active.start-date {
  border-radius: 6px !important;
}

.daterangepicker table td.active.off {
  background: none;
}

.daterangepicker table td.active:hover {
  background-color: #166dba;
}

.daterangepicker {
  border-width: 2px;
}

@media (min-width: 768px) {
  .daterangepicker .calendar.right {
    display: block !important;
  }

  .daterangepicker .calendar.left table thead th.next.available {
    display: none;
  }
}

.daterangepicker .calendar .calendar-table {
  border: none;
}

.daterangepicker .calendar .calendar-table:before {
  content: "";
  display: block;
  position: absolute;
  height: 72px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.daterangepicker .calendar .calendar-table table {
  position: relative;
  z-index: 2;
}

.daterangepicker .calendar .calendar-table table th.month {
  font-weight: bold;
}

.daterangepicker .calendar .calendar-table table td.active {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.daterangepicker .calendar .calendar-table table td.active.off {
  box-shadow: none;
}

.swal-button {
  border-radius: 6px;
  padding-top: 10px;
  padding-bottom: 10px;
  -moz-transition: all cubic-bezier(0.55, 0, 0.1, 1) 0.2s;
  -webkit-transition: all cubic-bezier(0.55, 0, 0.1, 1) 0.2s;
  transition: all cubic-bezier(0.55, 0, 0.1, 1) 0.2s;
}

.swal-button--confirm {
  background: #2196f3;
  color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.swal-button--confirm:hover,
.swal-button--confirm:focus {
  background: #0c7cd5;
}

html .mt-0 {
  margin-top: 0px !important;
}

html .mb-0 {
  margin-bottom: 0px !important;
}

html .mr-0 {
  margin-right: 0px !important;
}

html .ml-0 {
  margin-left: 0px !important;
}

html .pt-0 {
  padding-top: 0px !important;
}

html .pb-0 {
  padding-bottom: 0px !important;
}

html .pr-0 {
  padding-right: 0px !important;
}

html .pl-0 {
  padding-left: 0px !important;
}

html .mt-5 {
  margin-top: 5px !important;
}

html .mb-5 {
  margin-bottom: 5px !important;
}

html .mr-5 {
  margin-right: 5px !important;
}

html .ml-5 {
  margin-left: 5px !important;
}

html .pt-5 {
  padding-top: 5px !important;
}

html .pb-5 {
  padding-bottom: 5px !important;
}

html .pr-5 {
  padding-right: 5px !important;
}

html .pl-5 {
  padding-left: 5px !important;
}

html .mt-8 {
  margin-top: 8px !important;
}

html .mb-8 {
  margin-bottom: 8px !important;
}

html .mr-8 {
  margin-right: 8px !important;
}

html .ml-8 {
  margin-left: 8px !important;
}

html .pt-8 {
  padding-top: 8px !important;
}

html .pb-8 {
  padding-bottom: 8px !important;
}

html .pr-8 {
  padding-right: 8px !important;
}

html .pl-8 {
  padding-left: 8px !important;
}

html .mt-10 {
  margin-top: 10px !important;
}

html .mb-10 {
  margin-bottom: 10px !important;
}

html .mr-10 {
  margin-right: 10px !important;
}

html .ml-10 {
  margin-left: 10px !important;
}

html .pt-10 {
  padding-top: 10px !important;
}

html .pb-10 {
  padding-bottom: 10px !important;
}

html .pr-10 {
  padding-right: 10px !important;
}

html .pl-10 {
  padding-left: 10px !important;
}

html .mt-15 {
  margin-top: 15px !important;
}

html .mb-15 {
  margin-bottom: 15px !important;
}

html .mr-15 {
  margin-right: 15px !important;
}

html .ml-15 {
  margin-left: 15px !important;
}

html .pt-15 {
  padding-top: 15px !important;
}

html .pb-15 {
  padding-bottom: 15px !important;
}

html .pr-15 {
  padding-right: 15px !important;
}

html .pl-15 {
  padding-left: 15px !important;
}

html .mt-20 {
  margin-top: 20px !important;
}

html .mb-20 {
  margin-bottom: 20px !important;
}

html .mr-20 {
  margin-right: 20px !important;
}

html .ml-20 {
  margin-left: 20px !important;
}

html .pt-20 {
  padding-top: 20px !important;
}

html .pb-20 {
  padding-bottom: 20px !important;
}

html .pr-20 {
  padding-right: 20px !important;
}

html .pl-20 {
  padding-left: 20px !important;
}

html .mt-30 {
  margin-top: 30px !important;
}

html .mb-30 {
  margin-bottom: 30px !important;
}

html .mr-30 {
  margin-right: 30px !important;
}

html .ml-30 {
  margin-left: 30px !important;
}

html .pt-30 {
  padding-top: 30px !important;
}

html .pb-30 {
  padding-bottom: 30px !important;
}

html .pr-30 {
  padding-right: 30px !important;
}

html .pl-30 {
  padding-left: 30px !important;
}

html .mt-35 {
  margin-top: 35px !important;
}

html .mb-35 {
  margin-bottom: 35px !important;
}

html .mr-35 {
  margin-right: 35px !important;
}

html .ml-35 {
  margin-left: 35px !important;
}

html .pt-35 {
  padding-top: 35px !important;
}

html .pb-35 {
  padding-bottom: 35px !important;
}

html .pr-35 {
  padding-right: 35px !important;
}

html .pl-35 {
  padding-left: 35px !important;
}

html .mt-50 {
  margin-top: 50px !important;
}

html .mb-50 {
  margin-bottom: 50px !important;
}

html .mr-50 {
  margin-right: 50px !important;
}

html .ml-50 {
  margin-left: 50px !important;
}

html .pt-50 {
  padding-top: 50px !important;
}

html .pb-50 {
  padding-bottom: 50px !important;
}

html .pr-50 {
  padding-right: 50px !important;
}

html .pl-50 {
  padding-left: 50px !important;
}

html .mt-60 {
  margin-top: 60px !important;
}

html .mb-60 {
  margin-bottom: 60px !important;
}

html .mr-60 {
  margin-right: 60px !important;
}

html .ml-60 {
  margin-left: 60px !important;
}

html .pt-60 {
  padding-top: 60px !important;
}

html .pb-60 {
  padding-bottom: 60px !important;
}

html .pr-60 {
  padding-right: 60px !important;
}

html .pl-60 {
  padding-left: 60px !important;
}

html .mt-80 {
  margin-top: 80px !important;
}

html .mb-80 {
  margin-bottom: 80px !important;
}

html .mr-80 {
  margin-right: 80px !important;
}

html .ml-80 {
  margin-left: 80px !important;
}

html .pt-80 {
  padding-top: 80px !important;
}

html .pb-80 {
  padding-bottom: 80px !important;
}

html .pr-80 {
  padding-right: 80px !important;
}

html .pl-80 {
  padding-left: 80px !important;
}

html .mt-100 {
  margin-top: 100px !important;
}

html .mb-100 {
  margin-bottom: 100px !important;
}

html .mr-100 {
  margin-right: 100px !important;
}

html .ml-100 {
  margin-left: 100px !important;
}

html .pt-100 {
  padding-top: 100px !important;
}

html .pb-100 {
  padding-bottom: 100px !important;
}

html .pr-100 {
  padding-right: 100px !important;
}

html .pl-100 {
  padding-left: 100px !important;
}

html .mt-120 {
  margin-top: 120px !important;
}

html .mb-120 {
  margin-bottom: 120px !important;
}

html .mr-120 {
  margin-right: 120px !important;
}

html .ml-120 {
  margin-left: 120px !important;
}

html .pt-120 {
  padding-top: 120px !important;
}

html .pb-120 {
  padding-bottom: 120px !important;
}

html .pr-120 {
  padding-right: 120px !important;
}

html .pl-120 {
  padding-left: 120px !important;
}

html .mt-130 {
  margin-top: 130px !important;
}

html .mb-130 {
  margin-bottom: 130px !important;
}

html .mr-130 {
  margin-right: 130px !important;
}

html .ml-130 {
  margin-left: 130px !important;
}

html .pt-130 {
  padding-top: 130px !important;
}

html .pb-130 {
  padding-bottom: 130px !important;
}

html .pr-130 {
  padding-right: 130px !important;
}

html .pl-130 {
  padding-left: 130px !important;
}

html .mt-140 {
  margin-top: 140px !important;
}

html .mb-140 {
  margin-bottom: 140px !important;
}

html .mr-140 {
  margin-right: 140px !important;
}

html .ml-140 {
  margin-left: 140px !important;
}

html .pt-140 {
  padding-top: 140px !important;
}

html .pb-140 {
  padding-bottom: 140px !important;
}

html .pr-140 {
  padding-right: 140px !important;
}

html .pl-140 {
  padding-left: 140px !important;
}

html .mt-min-15 {
  margin-top: -15px !important;
}

html .mb-min-15 {
  margin-bottom: -15px !important;
}

html .mr-min-15 {
  margin-right: -15px !important;
}

html .ml-min-15 {
  margin-left: -15px !important;
}

html .mt-min-30 {
  margin-top: -30px !important;
}

html .mb-min-30 {
  margin-bottom: -30px !important;
}

html .mr-min-30 {
  margin-right: -30px !important;
}

html .ml-min-30 {
  margin-left: -30px !important;
}

html .mt-min-50 {
  margin-top: -50px !important;
}

html .mb-min-50 {
  margin-bottom: -50px !important;
}

html .mr-min-50 {
  margin-right: -50px !important;
}

html .ml-min-50 {
  margin-left: -50px !important;
}

html .mt-min-100 {
  margin-top: -100px !important;
}

html .mb-min-100 {
  margin-bottom: -100px !important;
}

html .mr-min-100 {
  margin-right: -100px !important;
}

html .ml-min-100 {
  margin-left: -100px !important;
}

html .fs-10 {
  font-size: 10px !important;
}

html .fs-11 {
  font-size: 11px !important;
}

html .fs-12 {
  font-size: 12px !important;
}

html .fs-13 {
  font-size: 13px !important;
}

html .fs-14 {
  font-size: 14px !important;
}

html .fs-16 {
  font-size: 16px !important;
}

html .fs-18 {
  font-size: 18px !important;
}

html .fs-20 {
  font-size: 20px !important;
}

html .fs-22 {
  font-size: 22px !important;
}

html .fs-24 {
  font-size: 24px !important;
}

html .fs-32 {
  font-size: 32px !important;
}

html .fs-40 {
  font-size: 40px !important;
}

html .fs-100 {
  font-size: 100px !important;
}

html .fs-70 {
  font-size: 70px !important;
}

@media (min-width: 768px) {
  html {
    overflow-x: hidden;
  }
}

html body {
  color: #37474f;
}

html body.menu-active {
  position: fixed;
}

@keyframes opacitychange {
  0%, 100% {
    opacity: 0.3;
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  60% {
    opacity: 1;
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.trave-ui--mykaha .dot-loader {
  width: 73px;
  height: 15px;
  border-radius: 100%;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0.8;
  z-index: 1;
}

.trave-ui--mykaha .dot-loader > span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background-color: #2196f3;
  opacity: 0;
}

.trave-ui--mykaha .dot-loader > span:nth-child(1) {
  animation: opacitychange 1s ease-in-out 0s infinite;
}

.trave-ui--mykaha .dot-loader > span:nth-child(2) {
  animation: opacitychange 1s ease-in-out 0.33s infinite;
}

.trave-ui--mykaha .dot-loader > span:nth-child(3) {
  animation: opacitychange 1s ease-in-out 0.66s infinite;
}

@media (max-width: 991px) {
  .trave-ui--mykaha div.page-wrapper-top .page-header {
    overflow: initial;
  }

  .trave-ui--mykaha div.page-wrapper-top .page-header .page-header-top {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  }
}

.trave-ui--mykaha div.page-wrapper-top .page-header {
  overflow: initial;
}

.trave-ui--mykaha div.page-wrapper-top ul.nav.navbar-nav > li:first-child {
  border-right: 0;
}

@media (min-width: 992px) {
  .trave-ui--mykaha div.page-wrapper-top ul.nav.navbar-nav > li {
    margin-top: 0;
    margin-bottom: 0;
  }

  .trave-ui--mykaha div.page-wrapper-top ul.nav.navbar-nav > li:not(:last-child) > a {
    border-right: 1px solid #aaa;
  }

  .trave-ui--mykaha div.page-wrapper-top ul.nav.navbar-nav > li > a {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.trave-ui--mykaha div.page-wrapper-top ul.nav.navbar-nav > li > a i {
  font-size: 20px;
  vertical-align: bottom;
}

.trave-ui--mykaha div.page-wrapper-top .page-header-top {
  border-top: 3px solid #2196f3;
}

@media (min-width: 992px) {
  .trave-ui--mykaha div.page-wrapper-top .page-header-top {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .trave-ui--mykaha div.page-wrapper-top .page-header-top,
  .trave-ui--mykaha div.page-wrapper-top .page-header-top .page-logo,
  .trave-ui--mykaha div.page-wrapper-top .page-header-top .top-menu .nav.navbar-nav > li.dropdown {
    height: initial;
  }

  .trave-ui--mykaha div.page-wrapper-top .page-header-top .page-logo img {
    margin-top: 0;
    max-height: 37px;
  }
}

@media (max-width: 991px) {
  .trave-ui--mykaha div.page-wrapper-top .page-header-top .page-logo {
    text-align: left;
  }

  .trave-ui--mykaha div.page-wrapper-top .page-header-top .page-logo .menu-toggler {
    float: right;
  }

  .trave-ui--mykaha div.page-wrapper-top .page-header-top .page-logo a img {
    margin-top: 25px;
  }

  .trave-ui--mykaha div.page-wrapper-top .page-header-top a img {
    max-height: 30px;
  }
}

.trave-ui--mykaha div.page-wrapper-top .page-header-top .top-menu {
  margin-top: 8px;
}

.trave-ui--mykaha div.page-wrapper-top .page-header-top .top-menu .nav.navbar-nav > li a i {
  color: #555555;
}

.trave-ui--mykaha div.page-wrapper-top .page-header-top .top-menu .nav.navbar-nav > li.dropdown {
  padding: 0;
}

.trave-ui--mykaha div.page-wrapper-top .page-header-menu {
  border: none;
}

@media (min-width: 992px) {
  .trave-ui--mykaha div.page-wrapper-top .page-header-menu {
    height: initial;
    background: #eee;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .trave-ui--mykaha div.page-wrapper-top .page-header-menu .hor-menu {
    top: initial;
    position: initial;
  }
}

.trave-ui--mykaha div.page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li > a {
  text-transform: capitalize;
  border-bottom: 0;
}

.trave-ui--mykaha div.page-wrapper-top .page-header-menu .top-menu-mobile ul.navbar-nav > li > a,
.trave-ui--mykaha div.page-wrapper-top .page-header-menu .top-menu-mobile ul.navbar-nav > li > a:hover,
.trave-ui--mykaha div.page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li > a,
.trave-ui--mykaha div.page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li > a:hover {
  border-right-color: #c4141a;
  color: #555555;
}

.trave-ui--mykaha div.page-wrapper-top .page-header-menu .top-menu-mobile ul.navbar-nav > li > a i,
.trave-ui--mykaha div.page-wrapper-top .page-header-menu .top-menu-mobile ul.navbar-nav > li > a:hover i,
.trave-ui--mykaha div.page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li > a i,
.trave-ui--mykaha div.page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li > a:hover i {
  color: #555555;
}

@media (max-width: 991px) {
  .trave-ui--mykaha div.page-wrapper-top .page-header-menu {
    background: white;
  }

  .trave-ui--mykaha div.page-wrapper-top .page-header-menu .top-menu-mobile {
    width: 100%;
  }

  .trave-ui--mykaha div.page-wrapper-top .page-header-menu .top-menu-mobile > ul.navbar-nav > li > a {
    font-weight: bold;
  }

  .trave-ui--mykaha div.page-wrapper-top .page-header-menu .top-menu-mobile > ul.navbar-nav,
  .trave-ui--mykaha div.page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav {
    margin: 0;
  }

  .trave-ui--mykaha div.page-wrapper-top .page-header-menu .top-menu-mobile > ul.navbar-nav > li,
  .trave-ui--mykaha div.page-wrapper-top .page-header-menu .hor-menu > ul.navbar-nav > li {
    border-bottom: 1px solid #eee;
  }
}

.trave-ui--mykaha [data-schedule] p.text.fs-20 {
  color: #2196f3;
}

.trave-ui--mykaha [data-schedule] ul.list-inline a.text.text-italic {
  background: #eee;
  font-style: normal;
  color: #555555;
  padding: 4px 8px;
}

.trave-ui--mykaha [data-schedule] .schedule-detail[style="display: block;"] {
  border-top: 1px solid #eee;
}

.trave-ui--mykaha div#divLoadingBar .meterLoading {
  background: transparent !important;
  background-color: #1e88e5 !important;
  background-image: repeating-linear-gradient(45deg, #90c4f2, #90c4f2 5px, white 15px, white 15px) !important;
}

@media (max-width: 767px) {
  .trave-ui--mykaha .availability-journey-header .availability-journey-title {
    white-space: normal;
    animation: unset;
    text-align: center;
  }
}

.trave-ui--mykaha .btn-theme {
  background: #1e88e5;
}

.trave-ui--mykaha .btn-theme:hover,
.trave-ui--mykaha .btn-theme:focus {
  background: #166dba;
}

.trave-ui--mykaha .btn-theme[disabled] {
  background: #aaa;
  cursor: not-allowed;
}

.trave-ui--mykaha ul.bread-crumb > li:last-child,
.trave-ui--mykaha ul.breadcrumb > li:last-child {
  background: #1e88e5;
}

.trave-ui--mykaha .bread-crumb-dots {
  padding: 0;
}

@media (max-width: 991px) {
  .trave-ui--mykaha .bread-crumb-dots {
    text-align: center;
  }

  .trave-ui--mykaha .bread-crumb-dots li {
    position: relative;
    display: inline-block;
    padding: 0 8px;
    width: 140px;
    white-space: nowrap;
    text-align: center;
  }

  .trave-ui--mykaha .bread-crumb-dots li:before {
    content: "";
    height: 15px;
    width: 15px;
    display: block;
    border-radius: 999px;
    border: 1px solid #aaa;
    margin: auto;
    margin-bottom: 5px;
    background: white;
    position: relative;
    z-index: 2;
  }

  .trave-ui--mykaha .bread-crumb-dots li:after {
    content: "";
    height: 1px;
    width: 100%;
    top: 7px;
    left: 50%;
    display: block;
    position: absolute;
    background: #aaa;
    z-index: 1;
  }

  .trave-ui--mykaha .bread-crumb-dots li:last-child:after {
    display: none;
  }

  .trave-ui--mykaha .bread-crumb-dots li.current:before,
  .trave-ui--mykaha .bread-crumb-dots li.done:before {
    border-color: #1e88e5;
  }

  .trave-ui--mykaha .bread-crumb-dots li.done span:before {
    content: "\F00C";
    font: normal normal normal 14px/1 FontAwesome;
    display: inline-block;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 2px;
    left: calc(50% - 5.5px);
    z-index: 2;
    font-size: 10px;
    color: #1e88e5;
  }

  .trave-ui--mykaha .bread-crumb-dots li.current span:before {
    content: "";
    height: 9px;
    width: 9px;
    display: block;
    border-radius: 999px;
    background: #00bcd4;
    position: absolute;
    top: 3px;
    left: calc(50% - 4px);
    z-index: 3;
  }
}

.trave-ui--mykaha .ti-novalign:before {
  vertical-align: initial;
}

:root {
  --color-1: #1e88e5;
  --color-2: #2196f3;
}
@font-face {
	font-family: "trave-icon-2";
	src: url("/assets/bundle/font/trave-icon-2.eot?55f174c121460e59c61d538a20e3d87d?#iefix") format("embedded-opentype"),
url("/assets/bundle/font/trave-icon-2.woff?a4bf8d505d47c795e9f6e8c7809d1504") format("woff"),
url("/assets/bundle/font/trave-icon-2.ttf?95679787e27d119605c70f5e8c3c6525") format("truetype"),
url("/assets/bundle/font/trave-icon-2.svg?ad9424f7b7b6a30138f5d057baf400bd#trave-icon-2") format("svg");
}

.trave-icon {
	line-height: 1;
}

.trave-icon:before {
	font-family: trave-icon-2 !important;
	font-style: normal;
	font-weight: normal !important;
	vertical-align: top;
}

.ti-train:before {
	content: "\F101";
}
.ti-train-filled:before {
	content: "\F102";
}
.ti-math_greater-or-equal:before {
	content: "\F103";
}
.ti-math_smaler-than:before {
	content: "\F104";
}

