/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  /*background: #f5f6f8;*/
  background: #ebeef1;
  color: #444444;
}

a {
  color: #ff7014;
  text-decoration: none;
}

a:hover {
  color: #222222;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

.form-select, .form-control {
  font-size: 14px;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-top: 70px;
  padding: 20px 30px;
  transition: all 0.3s;
  min-height: 500px;
}

@media (max-width: 1199px) {
  #main {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #012970;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4154f1;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  -webkit-animation-name: dropdown-animate;
  animation-name: dropdown-animate;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@-webkit-keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header/*,
.card-footer*/ {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #012970;
  font-family: "Poppins", sans-serif;
}

/*.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}*/

.card-body {
  padding: 0 20px 20px 20px;
}

.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 50%;
  font-size: 20px;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #012970;
  background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
  font-weight: 600;
  color: #ff7014;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  font-weight: 600;
  color: #ff7014;
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #212529;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  color: #899bbd;
  font-weight: 600;
}

.breadcrumb a {
  color: #899bbd;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

.breadcrumb .active {
  color: #51678f;
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #4154f1;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #4154f1;
  border-bottom: 2px solid #4154f1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

@media (min-width: 1200px) {
  /*.logo {
    width: 280px;
  }*/
}

.logo img {
  /*max-height: 26px;*/
  margin-right: 6px;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  font-family: "Nunito", sans-serif;
}

.header {
  /*transition: all 0.5s;*/
  z-index: 997;
  height: auto;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  padding: 0px 15px;
  /* Toggle Sidebar Button */
  /* Search Bar */
}

.header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 10px;
  cursor: pointer;
  color: #012970;
}

.header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
}

.header .search-form {
  width: 100%;
}

.header .search-form input {
  border: 0;
  font-size: 14px;
  color: #012970;
  border: 1px solid rgba(1, 41, 112, 0.2);
  padding: 7px 38px 7px 8px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.header .search-form button i {
  color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: #012970;
  margin-right: 25px;
  position: relative;
  text-align: center;
}

.header-nav .nav-profile {
  color: #012970;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  /*inset: -2px -5px auto auto;*/
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 996;
  transition: all 0.3s;
  padding: 20px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #aab7cf transparent;
  box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
}

@media (max-width: 1199px) {
  .sidebar {
    left: -300px;
  }
}

.sidebar::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
  background-color: #aab7cf;
}

@media (min-width: 1200px) {

  /*#main,
  #footer {
    margin-left: 300px;
  }*/
}

@media (max-width: 1199px) {
  .toggle-sidebar .sidebar {
    left: 0;
  }
}

@media (min-width: 1200px) {

  .toggle-sidebar #main,
  .toggle-sidebar #footer {
    margin-left: 0;
  }

  .toggle-sidebar .sidebar {
    left: -300px;
  }
}

.sidebar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-item {
  margin-bottom: 5px;
}

.sidebar-nav .nav-heading {
  font-size: 11px;
  text-transform: uppercase;
  color: #899bbd;
  font-weight: 600;
  margin: 10px 0 5px 15px;
}

.sidebar-nav .nav-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #4154f1;
  transition: 0.3;
  background: #f6f9ff;
  padding: 10px 15px;
  border-radius: 4px;
}

.sidebar-nav .nav-link i {
  font-size: 16px;
  margin-right: 10px;
  color: #4154f1;
}

.sidebar-nav .nav-link.collapsed {
  color: #012970;
  background: #fff;
}

.sidebar-nav .nav-link.collapsed i {
  color: #899bbd;
}

.sidebar-nav .nav-link:hover {
  color: #4154f1;
  background: #f6f9ff;
}

.sidebar-nav .nav-link:hover i {
  color: #4154f1;
}

.sidebar-nav .nav-link .bi-chevron-down {
  margin-right: 0;
  transition: transform 0.2s ease-in-out;
}

.sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
  transform: rotate(180deg);
}

.sidebar-nav .nav-content {
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
}

.sidebar-nav .nav-content a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  transition: 0.3;
  padding: 10px 0 10px 40px;
  transition: 0.3s;
}

.sidebar-nav .nav-content a i {
  font-size: 6px;
  margin-right: 8px;
  line-height: 0;
  border-radius: 50%;
}

.sidebar-nav .nav-content a:hover,
.sidebar-nav .nav-content a.active {
  color: #4154f1;
}

.sidebar-nav .nav-content a.active i {
  background-color: #4154f1;
}

/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #4154f1;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
}

.dashboard .info-card h6 {
  font-size: 28px;
  color: #012970;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: #4154f1;
  background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

.dashboard .customers-card-1 .card-icon {
  color: #f0ad4e;
  background: rgb(240 173 78 / 20%);
}

.dashboard .customers-card-2 .card-icon {
  color: #9bc8de;
  background: rgb(217 237 247 / 70%);
}

.dashboard .customers-card-3 .card-icon {
  color: #d28686;
  background: rgb(247 217 217 / 70%);
}

.dashboard .customers-card-4 .card-icon {
  color: #db4e4e;
  background: rgb(255 159 159 / 70%);
}

.dashboard .customers-card-5 .card-icon {
  color: #db4e4e;
  background: rgb(255 159 159 / 70%);
}

/* Activity */
.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/* News & Updates */
.dashboard .news .post-item {
  margin-top: 15px;
  background: #f8fcff;
}
.dashboard .news .post-item+.post-item {
  margin-top: 15px;
  background: #f8fcff;
}

.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .news h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard .news h4 a {
  color: #012970;
  transition: 0.3s;
}

.dashboard .news h4 a:hover {
  color: #4154f1;
}

.dashboard .news p {
  font-size: 14px;
  color: #777777;
  margin-left: 95px;
  margin-bottom: 0px;
}

/* Recent Sales */
.dashboard .recent-sales {
  font-size: 14px;
}

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
  font-size: 14px;
}

.dashboard .top-selling .table thead {
  background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
  border: 0;
}

.dashboard .top-selling .table tbody td {
  vertical-align: middle;
}

.dashboard .top-selling img {
  border-radius: 5px;
  max-width: 60px;
}

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 15px;
}

.iconslist .icon {
  background-color: #fff;
  border-radius: 0.25rem;
  text-align: center;
  color: #012970;
  padding: 15px 0;
}

.iconslist i {
  margin: 0.25rem;
  font-size: 2.5rem;
}

.iconslist .label {
  font-family: var(--bs-font-monospace);
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 0.25rem;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #012970;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #012970;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
  font-size: 18px;
  font-weight: 600;
  color: #4154f1;
}

.faq .basic p {
  color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #4154f1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5969f3;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #4154f1;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #212529;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 15px;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}

.footer .copyright {
  text-align: center;
  color: #012970;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 10px 0 10px 20px; /* change 31012023 05:55 pm (padding: 10px 0 10px 30px)*/
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar a i,
.navbar a:focus i {
  /*font-size: 18px;*/
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ff7014;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 10px 25px;
  margin-left: 30px;
  border-radius: 4px;
  line-height: 1;
  color: #5f687b;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #cdd1d9;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #206bfb;
  color: #fff;
  border-color: #206bfb;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 0px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  color: #212529;
}

.navbar .dropdown ul .a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  color: #212529;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: start;
  justify-content: start;
}

.navbar .dropdown ul a i {
  font-size: 16px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ff7014;
}

/*.navbar .dropdown ul li > a:hover > i {
  text-decoration: underline;
  transform: rotate(-90deg);
} */

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
  /*min-height: calc(85vh - 80px);
  overflow-x: hidden;
  overflow-y: scroll;*/
}
/*.navbar .dropdown .dropdown ul:nth-child(3n+1) {
  height: 100% !important;
  overflow-x: hidden;
  overflow-y: scroll;
}*/
.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #5f687b;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
@media (max-width: 1024px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(73, 80, 94, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #5f687b;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #16df7e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  padding: 10px 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 0px 0px;
  padding: 0px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #16df7e;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
/* Navbar End */

.login-page-bg {width:100%;min-height:100vh;display:-webkit-box;display:-webkit-flex;display:-moz-box;display:-ms-flexbox;display:flex;flex-wrap:wrap;justify-content:center;align-items:center;background-repeat:no-repeat;background-position:center;background-size:cover;position:relative;z-index:1}
/*.login-page-bg::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(204 204 204 / 42%);
}*/
.wrap-login-box-2 {
  border-radius: 20px;
}
.box .inputBox {
  position: relative;
}

.box .inputBox input, .box .inputBox select {
  display: block;
  width: 100%;
  padding: 0.625rem 2.5rem 0.625rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  /*-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;*/
  border-radius: 0.375rem;
  margin-bottom: 1rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.box .inputBox label {
  position: absolute;
  top: 0;
  left: 10px;
  padding: 0.625rem 0;
  font-size: 1rem;
  color: #444444;
  pointer-events: none;
  transition: 0.5s;
}

.box .inputBox input:focus ~ label,
.box .inputBox input:valid ~ label,
.box .inputBox input:not([value=""]) ~ label {
  top: -2.2rem;
  left: 10px;
  color: #333333;
  font-size: 14px;
  font-weight:600;
}

.box .inputBox select:focus ~ label,
.box .inputBox select:not([value=""]):valid ~ label,
.box .inputBox select:not([value=""]):invalid ~ label,
.box .inputBox select:not([multiple]):not([size]) {
  top: -2.2rem;
  left: 10px;
  color: #333333;
  font-size: 14px;
  font-weight:600;
}


.box input[type="submit"] {
  border: none;
  outline: none;
  color: #ffffff;
  background-color: #ff7014;
  padding: 0.625rem 1.25rem;
  cursor: pointer;
  border-radius: 0.312rem;
  font-size: 1rem;
}

.box input[type="submit"]:hover {
  background-color: #c9302c;
}
.fa-iconinput {
  position: absolute;
  right: 15px;
  top: 10px;
  color: #b1b1b1;
}
.fs-9{font-size:9px}.fs-10{font-size:10px}.fs-11{font-size:11px}.fs-12{font-size:12px}.fs-13{font-size:13px}.fs-14{font-size:14px !important}.fs-15{font-size:15px}.fs-16{font-size:16px}.fs-17{font-size:17px}.fs-18{font-size:18px}.fs-19{font-size:19px}.fs-20{font-size:20px}.fs-21{font-size:21px}.fs-22{font-size:22px}.fs-23{font-size:23px}.fs-24{font-size:24px}.fs-25{font-size:25px}.fs-26{font-size:26px}.fs-27{font-size:27px}.fs-28{font-size:28px}.fs-29{font-size:29px}.fs-30{font-size:30px}.fs-31{font-size:31px}.fs-32{font-size:32px}.fs-33{font-size:33px}.fs-34{font-size:34px}.fs-35{font-size:35px}.fs-36{font-size:36px}.fs-37{font-size:37px}.fs-38{font-size:38px}.fs-39{font-size:39px}.fs-40{font-size:40px}.fs-41{font-size:41px}.fs-42{font-size:42px}.fs-43{font-size:43px}.fs-44{font-size:44px}.fs-45{font-size:45px}.fs-46{font-size:46px}.fs-47{font-size:47px}.fs-48{font-size:48px}.fs-49{font-size:49px}
.verification-code-inputs input[type=text] {
  border: 2px solid #e1e1e1;
  width: 46px;
  height: 46px;
  padding: 10px;
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
}
.otp-form .otp-field {
  display: inline-block;
  width: 3.2rem;
  height: 4rem;
  font-size: 2rem;
  line-height: 4rem;
  text-align: center;
  border: none;
  border: 1px solid var(--bs-secondary);
  outline: none;
  border-radius: 10px;
  margin-right: 3px;
}

.otp-form .otp-field:focus {
	border-bottom-color: var(--bs-dark);
}
.input-group-text {
  background-color: transparent;
}
.news {
  height: 310px;
  overflow-y: auto;
}
.news:active::-webkit-scrollbar-thumb,
.news:focus::-webkit-scrollbar-thumb,
.news:hover::-webkit-scrollbar-thumb {
    visibility: visible;
}
.news::-webkit-scrollbar-thumb {
    background-color: #16df7e;
    visibility: hidden;
}
.news::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.marquee {
  position: relative;
  box-sizing: border-box;
  animation: marquee 30s linear infinite;
  margin: 0 auto;
  color: #ffffff;
}
@keyframes marquee {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-80%);
  }
}
.marquee:hover {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}
.full-screen {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh !important;
  opacity:1;
}
.full-screen::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 50%);
}
.login-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.ul-icon {
  margin: 0;
  padding: 0;
}
.ul-icon li {
  list-style-type: none;
  display:inline-block;
}
.ul-icon li .icon {
  background-color: #fff;
  border-radius: 0.25rem;
  text-align: start;
  color: #012970;
  padding: 5px 0;
  position: relative;
}
.ul-icon li i {
  margin: 0.25rem;
  font-size: 1.2rem;
}
.ul-icon li .label {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}
.ul-icon li .badge-number {
  position: absolute;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
  /*right: 10px;*/
}
.navbar .badge-number {
  position: absolute;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
  right: -17px;
  top: 0px;
}
.cp-logo {
  height:52px;
  width:auto;
}
.text-blue {
  color: #012970 !important;
}
/* Slider Range (jQuery UI) */
.ui-slider-horizontal {
  height: .2em;
  margin-left: 11px;
  margin-right: 11px;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.7em;
  margin-left: -.7em;
  border-radius: 100%;
  background: #fff;
  width: 1.5em;
  height: 1.5em;
}

.ui-slider.ui-widget.ui-widget-content {
  border: none;
  background: #eee;
  margin-bottom: 15px;
}

.ui-slider .ui-widget-header {
  background: #0071cc;
}

.ui-menu.ui-widget.ui-widget-content {
  -webkit-box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.176);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.176);
  border: none;
  overflow: hidden;
  overflow-y: auto;
  max-height: 50vh;
  border-radius: 4px;
}

.ui-menu .ui-menu-item-wrapper {
  padding: 6px .75rem 6px .9rem;
}

ui-widget-content .ui-state-active {
  border-color: #0071cc;
}

.ui-menu .ui-menu-divider {
  display: none;
}
.ui-slider-horizontal {
  height: 0.3em !important;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -0.5em !important;
  margin-left: -0.6em;
}
.flight-list .flight-item, .train-list .train-item, .bus-list .bus-item {
  position: relative;
  border-bottom: 1px solid #e9e9e9;
}

.flight-list .flight-item .flight-details .time-info small {
  line-height: 15px;
}

.flight-list.round-trip .flight-item .company-info span, .flight-list.round-trip .flight-item .time-info small {
  line-height: 15px;
}

.round-trip-fare small {
  line-height: 14px;
}

.round-trip-fare .company-info img {
  min-width: 26px;
}

.confirm-details .company-info {
  line-height: 15px;
}

.confirm-details .company-info img {
  min-width: 26px;
}

.confirm-details .time-info small {
  line-height: 15px;
}

.promo-code {
  max-height: 150px;
  padding-left: 30px;
  overflow-y: scroll;
}

.promo-code li {
  margin-bottom: 10px;
}

/* Text Size */
.text-0 {
  font-size: 11px !important;
  font-size: 0.6875rem !important;
}

.text-1 {
  font-size: 12px !important;
  font-size: 0.75rem !important;
}

.text-2 {
  font-size: 14px !important;
  font-size: 0.875rem !important;
}

.text-3 {
  font-size: 16px !important;
  font-size: 1rem !important;
}

.text-4 {
  font-size: 18px !important;
  font-size: 1.125rem !important;
}

.text-5 {
  font-size: 21px !important;
  font-size: 1.3125rem !important;
}

.text-6 {
  font-size: 24px !important;
  font-size: 1.50rem !important;
}

.text-7 {
  font-size: 28px !important;
  font-size: 1.75rem !important;
}

.text-8 {
  font-size: 32px !important;
  font-size: 2rem !important;
}

.text-9 {
  font-size: 36px !important;
  font-size: 2.25rem !important;
}

.text-10 {
  font-size: 40px !important;
  font-size: 2.50rem !important;
}

.text-11 {
  font-size: calc(1.4rem + 1.8vw) !important;
}

@media (min-width: 1200px) {
  .text-11 {
    font-size: 2.75rem !important;
  }
}

.text-12 {
  font-size: calc(1.425rem + 2.1vw) !important;
}

@media (min-width: 1200px) {
  .text-12 {
    font-size: 3rem !important;
  }
}

.text-13 {
  font-size: calc(1.45rem + 2.4vw) !important;
}

@media (min-width: 1200px) {
  .text-13 {
    font-size: 3.25rem !important;
  }
}

.text-14 {
  font-size: calc(1.475rem + 2.7vw) !important;
}

@media (min-width: 1200px) {
  .text-14 {
    font-size: 3.5rem !important;
  }
}

.text-15 {
  font-size: calc(1.5rem + 3vw) !important;
}

@media (min-width: 1200px) {
  .text-15 {
    font-size: 3.75rem !important;
  }
}

.text-16 {
  font-size: calc(1.525rem + 3.3vw) !important;
}

@media (min-width: 1200px) {
  .text-16 {
    font-size: 4rem !important;
  }
}

.text-17 {
  font-size: calc(1.575rem + 3.9vw) !important;
}

@media (min-width: 1200px) {
  .text-17 {
    font-size: 4.5rem !important;
  }
}

.text-18 {
  font-size: calc(1.625rem + 4.5vw) !important;
}

@media (min-width: 1200px) {
  .text-18 {
    font-size: 5rem !important;
  }
}

.text-19 {
  font-size: calc(1.65rem + 4.8vw) !important;
}

@media (min-width: 1200px) {
  .text-19 {
    font-size: 5.25rem !important;
  }
}

.text-20 {
  font-size: calc(1.7rem + 5.4vw) !important;
}

@media (min-width: 1200px) {
  .text-20 {
    font-size: 5.75rem !important;
  }
}

.text-21 {
  font-size: calc(1.775rem + 6.3vw) !important;
}

@media (min-width: 1200px) {
  .text-21 {
    font-size: 6.5rem !important;
  }
}

.text-22 {
  font-size: calc(1.825rem + 6.9vw) !important;
}

@media (min-width: 1200px) {
  .text-22 {
    font-size: 7rem !important;
  }
}

.text-23 {
  font-size: calc(1.9rem + 7.8vw) !important;
}

@media (min-width: 1200px) {
  .text-23 {
    font-size: 7.75rem !important;
  }
}

.text-24 {
  font-size: calc(1.95rem + 8.4vw) !important;
}

@media (min-width: 1200px) {
  .text-24 {
    font-size: 8.25rem !important;
  }
}

.text-25 {
  font-size: calc(2.025rem + 9.3vw) !important;
}

@media (min-width: 1200px) {
  .text-25 {
    font-size: 9rem !important;
  }
}

.text-11, .text-12, .text-13, .text-14, .text-15, .text-16, .text-17, .text-18, .text-19, .text-20, .text-21, .text-22, .text-23, .text-24, .text-25 {
  line-height: 1.3;
}

/* Font Weight */
.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

/* Opacity */
.opacity-0 {
  opacity: 0;
}

.opacity-1 {
  opacity: 0.1;
}

.opacity-2 {
  opacity: 0.2;
}

.opacity-3 {
  opacity: 0.3;
}

.opacity-4 {
  opacity: 0.4;
}

.opacity-5 {
  opacity: 0.5;
}

.opacity-6 {
  opacity: 0.6;
}

.opacity-7 {
  opacity: 0.7;
}

.opacity-8 {
  opacity: 0.8;
}

.opacity-9 {
  opacity: 0.9;
}

.opacity-10 {
  opacity: 1;
}

/* Background light */
.bg-light-1 {
  background-color: #f9f9fb !important;
}

.bg-light-2 {
  background-color: #f8f8fa !important;
}

.bg-light-3 {
  background-color: #f5f5f5 !important;
}

.bg-light-4 {
  background-color: #eff0f2 !important;
}

.bg-light-5 {
  background-color: #ececec !important;
}

/* Background Dark */
.bg-dark {
  background-color: #111418 !important;
}

.bg-dark-1 {
  background-color: #191f24 !important;
}

.bg-dark-2 {
  background-color: #232a31 !important;
}

.bg-dark-3 {
  background-color: #2b343c !important;
}

.bg-dark-4 {
  background-color: #38434f !important;
}

.bg-dark-5 {
  background-color: #435161 !important;
}

hr {
  opacity: 0.15;
}
.mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}
.mt-n3 {
  margin-top: -1rem !important;
}
.timeSlotsOuter {
  display: flex;
  justify-content: flex-start;
}

.filterTimeSlots {
  cursor: pointer;
  width: 60px;
  /*height: 64px;*/
  border-radius: 4px;
  border: 0.7px solid #dfdfdf;
  background-color: #fff;
  text-align: center;
  color: #000;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0px 0;
  align-items: center;
  margin-right: 5px;
  transition: all .3s ease;
}

.checkBlockIcon {
  width: 50px;
  height: 40px;
  display: inline-block;
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
}

.filterTimeSlots:hover {
  box-shadow: 0 5px 8px 0 rgb(0 0 0 / 20%);
  transform: translateY(-10%);
  -moz-transform: translateY(-10%);
  background: #fff3cd;
  border-color: #deb42e;
}
.filterTimeSlots.active {
  background: #fff3cd;
  border-color: #deb42e;
}
.fs-9{font-size:9px}.fs-10{font-size:10px}.fs-11{font-size:11px}.fs-12{font-size:12px}.fs-13{font-size:13px}.fs-14{font-size:14px !important}.fs-15{font-size:15px}.fs-16{font-size:16px}.fs-17{font-size:17px}.fs-18{font-size:18px}.fs-19{font-size:19px}.fs-20{font-size:20px}.fs-21{font-size:21px}.fs-22{font-size:22px}.fs-23{font-size:23px}.fs-24{font-size:24px}.fs-25{font-size:25px}.fs-26{font-size:26px}.fs-27{font-size:27px}.fs-28{font-size:28px}.fs-29{font-size:29px}.fs-30{font-size:30px}.fs-31{font-size:31px}.fs-32{font-size:32px}.fs-33{font-size:33px}.fs-34{font-size:34px}.fs-35{font-size:35px}.fs-36{font-size:36px}.fs-37{font-size:37px}.fs-38{font-size:38px}.fs-39{font-size:39px}.fs-40{font-size:40px}.fs-41{font-size:41px}.fs-42{font-size:42px}.fs-43{font-size:43px}.fs-44{font-size:44px}.fs-45{font-size:45px}.fs-46{font-size:46px}.fs-47{font-size:47px}.fs-48{font-size:48px}.fs-49{font-size:49px}
.fw-600 {
  font-weight: 600 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.airline-matrix {
    box-sizing: border-box;
    clear: both;
    padding-left: 135px;
    position: relative;
}
@media only screen and (max-width: 1000px) {
    .airline-matrix {
        margin-left: 0;
        width: 100% !important;
    }
}
/*.airline-matrix .matrix-link {
    min-height: 50px;
    padding: 10px 10px 10px 40px;
    position: relative;
}*/
.tabs-link p {
    line-height: 17px;
    margin:0;
    display:block;
}

.airline-matrix .matrix-link .matrix-label {
    opacity: 1;
}
.airline-matrix .matrix-link .matrix-label:last-child {
    /*font-size: 0.857em;*/
    opacity: 1;
}
/*.airline-matrix .matrix-slide {
		width: 16.66%;
}*/
.airline-matrix .save-msg {
    color: #04e83f;
    font-size: 10px;
}
.airline-matrix .save-msg::before {
    background: #04e83f none repeat scroll 0 0;
    color: #fff;
    content: attr(data-tag);
    float: left;
    font-size: 9px;
    left: 8px;
    padding: 0 1px;
    position: absolute;
    text-align: center;
    top: 40px;
    width: 26px;
}
.airline-matrix .save-msg::after {
    border-bottom: 5px solid transparent;
    border-left: 6px solid #04e83f;
    border-top: 6px solid transparent;
    content: "";
    float: left;
    height: 0;
    left: 36px;
    position: absolute;
    top: 40px;
    width: 0;
}
.matrix-airline-logo {
    background: #fff none repeat scroll 0 0;
    /*float: left !important;*/
    height: 28px;
    /*left: 8px;
    position: absolute;
    top: 10px;*/
    width: 28px;
    display: inline-block;
    vertical-align: super;
}
.matrix-all-airline {
    float: left;
    left: 15px;
    position: absolute;
    top: 12px;
    width: 120px;
    font-size: 18px;
}
.matrix-wrapper ul {
    margin-bottom: 0 !important;
}
.matrix-all-airline .matrix-link {
    padding: 0 !important;
}
@media only screen and (max-width: 1000px) {
    .airline-matrix .matrix-slide {
        display: none !important;
        width: 25%;
    }
    .airline-matrix .show-slide:nth-child(1), .airline-matrix .show-slide:nth-child(2), .airline-matrix .show-slide:nth-child(3), .airline-matrix .show-slide:nth-child(4) {
        display: block !important;
    }
}
@media only screen and (max-width: 768px) {
    .airline-matrix {
        padding-left: 120px;
    }
    .matrix-all-airline {
        left: 0;
    }
}
@media only screen and (max-width: 640px) {
    .airline-matrix.mt10, .airline-matrix.mt20 {
        margin-top: 0;
    }
    .airline-matrix .matrix-slide-wrapper.matrix-small-screen {
        height: 50px;
        overflow-x: scroll;
        overflow-y: hidden;
        padding: 0;
    }
    .airline-matrix .matrix-slide-wrapper.matrix-small-screen .prev, .airline-matrix .matrix-slide-wrapper.matrix-small-screen .next {
        display: none;
    }
    .airline-matrix .matrix-slide-wrapper.matrix-small-screen .matrix-slide-list {
        min-width: 1400px;
    }
    .airline-matrix .matrix-slide-wrapper.matrix-small-screen .matrix-slide-list .matrix-slide.show-slide {
        max-width: 115px;
        width: 100%;
    }
}

.airline-matrix .matrix-slide-wrapper {
    overflow: hidden;
}
.airline-matrix .matrix-slide-wrapper .matrix-slide-list {
    max-height: 50px;
    /*max-height: inherit;*/
    overflow: hidden;
    white-space: nowrap;
}
.airline-matrix .matrix-slide-wrapper .matrix-slide-list .matrix-slide {
    display: inline-block !important;
    float: none; /* Default float none*/
    width: 130px; /*Default max-width: 150px;*/
    /*max-width: 115px;*/ /*to show complete price*/
}
@media only screen and (max-width: 640px) {
    .airline-matrix .matrix-slide-wrapper .matrix-slide-list .matrix-slide {
        display: inline-block !important;
        float: left;
    }
}
.airline-matrix .matrix-slide-wrapper .matrix-slide-list .matrix-slide .tabs-link.active::before {
    top: 0;
}
@media only screen and (max-width: 768px) {
    .airline-matrix .matrix-slide-wrapper .matrix-slide-list .matrix-slide .tabs-link.active::before {
        height: 2px;
    }
}
/*.airline-matrix .matrix-slide-wrapper .matrix-nav-link {
	z-index: 99;
}*/
@media only screen and (max-width: 736px) {
    .airline-matrix .matrix-slide-wrapper .matrix-nav-link {
        z-index: 9;
    }
}
.airline-matrix .matrix-all-airline .tabs-link.active::before {
    top: 0;
}
@media only screen and (max-width: 768px) {
    .airline-matrix .matrix-all-airline .tabs-link.active::before {
        height: 2px;
    }
}
.nudge-arrow-x {
    animation-delay: 2s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-iteration-count: 6;
    animation-name: nudge-dir-x;
    animation-timing-function: linear;
    backface-visibility: hidden;
}
.nudge-arrow-x {
    color: #f34747;
    font-size: 32px;
    position: absolute;
    right: 10px;
    top: 5px;
    z-index: -1;
}
.nudge-arrow-x::after {
    content: "";
}
@media only screen and (max-width: 640px) {
    .nudge-arrow-x::after {
        content: "«";
    }
}
.itinerary-overlay {
    width: 800px;
}
@media only screen and (max-width: 800px) {
    .itinerary-overlay {
        float: left;
        left: 0;
        margin: 0;
        max-width: 100%;
        top: 0;
        width: 100%;
    }
}
.matrix-slide-wrapper {
    position: relative;
}
.matrix-nav-link {
    background: #f2f2f2 none repeat scroll 0 0;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
    display: none;
    float: left;
    height: 42px;
    margin: -21px 0 0;
    opacity: 0.8;
    position: absolute;
    top: 50%;
    width: 32px;
}
.matrix-nav-link::before {
    border: 10px solid transparent;
    content: " ";
    height: 0;
    margin: -10px 0 0 -1px;
    pointer-events: none;
    position: absolute;
    top: 50%;
    width: 0;
}
.matrix-nav-link.prev {
    left: 6px;
}
.matrix-nav-link.prev::before {
    border-right-color: #666;
    left: 0;
}
.matrix-nav-link.next {
    right: 6px;
}
.matrix-nav-link.next::before {
    border-left-color: #666;
    right: 0;
}
.matrix-nav-link.disabled::before {
    opacity: 0.6;
}
.matrix-nav-link.disabled.prev::before {
    border-right-color: #999;
}
.matrix-nav-link.disabled.next::before {
    border-left-color: #999;
}
.has-next-prev {
    /*padding-left: 45px;
	padding-right: 45px;*/
}
.has-next-prev .matrix-slide-list {
    border-right: 1px solid #e8e7ec;
}
.has-next-prev .matrix-nav-link {
    display: block;
}
@media only screen and (min-width: 1025px) {
    .matrix-slide-list .tabs-link:hover::before, .matrix-slide-list .tabs-link:focus::before {
        display: block;
    }
}
@media only screen and (max-width: 1024px) {
    .matrix-slide-list .tabs-link:hover::before, .matrix-slide-list .tabs-link:focus::before {
        display: none;
    }
}
@media only screen and (max-width: 1024px) {
    .matrix-slide-list .tabs-link.active::before {
        display: block;
    }
}
.matrix-slide-list li {
    border-left: 1px solid #e8e7ec;
    display: none;
    float: left;
    position: relative;
}
.matrix-slide-list .show-slide {
    display: block;
}
.matrix-link {
    padding: 20px 10px 1px 1px;
}
.flight-name {
    white-space: nowrap;
    display: inline-block;
    width: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 16px;
    padding-top: 4px;
}
@media only screen and (min-width: 1025px) {
    .matrix-link:hover, .matrix-link:focus {
        background: #fff none repeat scroll 0 0;
    }
}
.matrix-link.active {
    background: #eee none repeat scroll 0 0;
}
.matrix-label {
    color: #666;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
@media only screen and (min-width: 1025px) {
    .matrix-link:hover .matrix-label, .matrix-link:focus .matrix-label {
        color: #666;
    }
}
.matrix-link.active .matrix-label {
    color: #666;
}
.matrix-link.active .matrix-label:last-child {
    color: #333;
}

.matrix-price.text-success-light {
    color: #f34f4f !important;
}
.matrix-label {
    width: auto;
    float: none;
    display: inline-block;
}
ol, ul {
    list-style: none;
}
.intAirLogo {
    display: inline-block;
    vertical-align: middle;
    float: none;
}
.LegInfo_stopLine {
  position: relative;
  display: block;
  width: 90%;
  height: 1px;
  margin: 0.375rem auto;
  padding: 0;
  border-radius: 0.375rem;
  border-color: #6c757d;
  line-height: 0;
  text-align: center;
  border-style: dashed;
  border-width: thin;
}

.LegInfo_planeEnd {
  position: absolute;
  top: 50%;
  right: -0.375rem;
  display: block;
  width: 1rem;
  height: 1rem;
  margin-top: -0.5rem;
  padding-left: 0.25rem;
  background-color: transparent;
  color: #6c757d;
}
.v-line {
  margin: 5px 15px 0;
  background: #ddd;
  width: 1px;
  height: 35px;
}
.my-n3 {
  margin-top: -0.3rem !important;
  margin-bottom: -0.5rem !important;
}
.hide-part, .hide-part-4, .hide-part-3 {
  display: none;
  transition: all 0.3s;
}
.show-part, .show-part-3, .show-part-4 {
  display: block;
  transition: all 0.3s;
}
.hide-part-d {
  display: none;
  transition: all 0.3s;
}
.show-part-b {
  display: block;
}
.nav-tabs .nav-link {
  border: 0;
  margin-bottom: 0;
  color: #6c757d;
  font-size: 14px;
  font-weight: 600;
}
.nav-tabs .nav-link.active {
  border-bottom: 3px solid #06c;
  color: #06c;
}
.flight-modify {
  margin-top: 70px;
  background: #fff;
  padding: 5px 15px;
}
.has-overlay {
  z-index: 999;
  transition: all 0.3s;
}
.has-overlay::after {
  content: "";
  display: block;
  position: fixed;
  padding: 100px 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(0 0 0 / 30%);
  z-index: -1;
  transition: all 0.3s;
}
#overlay {
  background: rgba(0,0,0,0.4);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  bottom: 0
}
.expose {
  position: relative;
}
.a-underline {
  text-decoration: none;
  transition: all .5s ease;
  cursor: pointer;
  position: relative;
}
.a-underline::after {
  content: "";
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  position: absolute;
  background: #d32f2f;
  transition: all .5s ease;
}
.a-underline:hover {
  color: #d32f2f;
}
.a-underline:hover::after {
  width: 100%;
}
.information {
  color: #ff7014;
  font-size: 13px;
  font-weight: 400;
  display: block;
  margin: 8px 0 5px;
  padding-left: 45px;
  position: relative;
}
.information .span {
  display: inline-block;
  background: #ff7014;
  height: 20px;
  padding: 0 5px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 20px;
  vertical-align: middle;
  text-transform: uppercase;
  margin-right: 15px;
  position: absolute;
  left: 0;
  top: -2px;
}
.information .span::after {
  content: "";
  position: absolute;
  right: -8px;
  border-right: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 8px solid #ff7014;
  top: 0;
}
.information span {
  color: #212529
}
.red-information {
  color: #ff7014;
  font-size: 13px;
  font-weight: 400;
  display: block;
  margin: 8px 0 5px;
  padding-left: 53px;
  position: relative;
}
.red-information .span {
  display: inline-block;
  background: #ff7014;
  height: 20px;
  padding: 0 5px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 20px;
  vertical-align: middle;
  text-transform: uppercase;
  margin-right: 15px;
  position: absolute;
  left: 0;
  top: -2px;
}
.red-information .span::after {
  content: "";
  position: absolute;
  right: -8px;
  border-right: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 8px solid #ff7014;
  top: 0;
}
.red-information span {
  color: #212529
}
.rules {
  margin:0;
  padding:0;
}
.rules li {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 20px;
  font-size: 14px;
  line-height: 24px;
}
.rules li a {
  text-decoration: underline;
}
.addon-services {
  margin: 10px 0;
  -moz-column-gap: 15px;
  column-gap: 15px;
  list-style-type: none;
}
.addon-services {
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, #06c, #198754) border-box;
  border: 2px solid transparent;
  box-sizing: border-box;
  position: relative;
  border-radius: 7px;
  cursor: pointer;
}
.addon-services:hover {
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, #198754, #06c) border-box;
  cursor: pointer;
}
.addon-services img,.addon-services svg {
  width:18px;
}
/*.addon-services::before {
  position: absolute;
  left: 1px;
  top: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #fff;
  border-radius: 6px;
  z-index: 0;
  content: "";
  transition: all .5s ease;
}*/
/*.addon-services i,.addon-services svg {
  position: relative;
  z-index: 10;
  background: -webkit-linear-gradient(#d92727,#19478a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 38px;
}
.fa-gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(#f00), to(#333));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}*/
.addon-services span {
  font-size: 16px;
  color: #363636;
  font-weight: 600;
  line-height: 20px;
  position: relative;
  margin-left:5px;
  z-index: 10;
  transition: color .5s ease;
}
@media print {
  .noPrint {
    display: none;
  }
}
.star-rating-star {
  color: #f2b600;
  font-size: 1rem;
  padding: 0;
  cursor: pointer;
}
.hotel-area {
  position: relative
}
.hotel-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 5px;
  box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}
.hotel-img {
  border-radius: 12px;
  position: relative;
  /*max-height: 500px;
  overflow: hidden;*/
}
.hotel-img img {
  border-radius: 12px;
  width: 100%;
  height: 250px;
  /*display: table;*/
}
.hotel-img .badge {
  background: #23bcb9;
  border-radius: 50px;
  padding: 8px 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
  position: absolute;
  right: 20px;
  top: -15px
}
.hotel-img .badge-discount {
  background: #f96768
}
.hotel-img .add-wishlist {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #7167ff;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  position: absolute;
  left: 10px;
  top: 10px
}
.hotel-img .add-wishlist:hover {
  background: #f96768;
  color: #fff
}
/*.hotel-content {
  padding: 20px 15px 10px
}*/
.hotel-title {
  font-size: 22px;
  font-weight: 600;
  margin: 10px 0 5px 0;
}
.hotel-content p {
  margin: 5px 0;
  color: #4f4b8b;
  font-weight: 500
}
.hotel-rate .badge {
  background: #ffa903;
  font-size: 13px
}
.hotel-rate-type {
  color: #7167ff;
  font-weight: 500;
  margin: 0 5px
}
.hotel-rate-review {
  color: #4f4b8b;
  font-weight: 500
}
.hotel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*border-top: 1px solid rgba(0, 0, 0, .05);
  margin-top: 15px;*/
  padding-top: 10px
}
.hotel-price-amount {
  color: #ff7014;
  font-weight: 700;
  font-size: 18px;
  margin: 10px 0 10px 0;
  display: block;
}
.hotel-price-type {
  font-size: 14px;
  font-weight: 500;
  color: #4f4b8b
}
.hotel-text-btn a {
  color: #4f4b8b;
  font-weight: 500
}
.hotel-text-btn a i {
  font-size: 14px
}
.hotel-text-btn a:hover {
  color: #7167ff
}
.hotel-slider .hotel-item {
  margin-top: 10px;
  margin-bottom: 10px;
  box-shadow: none
}
.hotel-slider.owl-theme .owl-nav {
  margin-top: 0
}
.hotel-slider.owl-theme .owl-nav button {
  color: #7167ff;
  font-size: 20px;
  margin: 0;
  padding: 0;
  background: #fff;
  display: inline-block;
  cursor: pointer;
  height: 45px;
  width: 45px;
  border-radius: 50px;
  line-height: 45px;
  text-align: center;
  box-shadow: 0 3px 24px rgb(0 0 0/10%);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: all .5s ease-in-out
}
.hotel-slider.owl-theme .owl-nav button:hover {
  background: #7167ff;
  color: #fff
}
.hotel-slider.owl-theme .owl-nav .owl-prev {
  left: -25px
}
.hotel-slider.owl-theme .owl-nav .owl-next {
  right: -25px
}
.hotel-slider .owl-dots {
  text-align: center;
  margin-top: 30px
}
.hotel-slider .owl-dots .owl-dot span {
  background: 0 0;
  margin: 5px;
  border: 2px solid #7167ff;
  border-radius: 50px;
  width: 12px;
  height: 12px;
  display: inline-block;
  transition: all .5s ease-in-out
}
.hotel-slider .owl-dots .owl-dot.active span {
  background: #7167ff
}
.hotel-list .hotel-item {
  display: flex;
  align-items: center;
  gap: 20px
}
/*.hotel-list .hotel-img {
  width: 350px
}*/
.hotel-list .hotel-content {
  flex: 1
}
@media all and (max-width:767px) {
  .hotel-slider.owl-theme .owl-nav {
    display: none
  }
  .hotel-list .hotel-item {
    display: block
  }
  .hotel-list .hotel-img {
    width: 100%
  }
}
/*.room-type-item {
  position: relative;
  margin-bottom: 25px
}
.room-type-item::before {
  content: "";
  position: absolute;
  background: rgba(13, 35, 62, .2);
  width: 100%;
  height: 100%;
  border-radius: 12px;
  left: 0;
  top: 0
}
.room-type-item img {
  border-radius: 12px
}
.room-type-item .theme-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  color: #4f4b8b;
  transform: translate(-50%, -50%)
}
.room-type-item .theme-btn:hover {
  color: #fff
}
.room-area {
  position: relative
}
.room-item {
  background: #fff;
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 25px;
  box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}
.room-img {
  border-radius: 12px;
  position: relative
}
.room-img img {
  border-radius: 12px
}
.room-img .badge {
  background: #23bcb9;
  border-radius: 50px;
  padding: 8px 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 40px 5px rgb(0 0 0/5%);
  position: absolute;
  right: 20px;
  top: -15px
}
.room-img .badge-discount {
  background: #f96768
}
.room-img .add-wishlist {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: #7167ff;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  position: absolute;
  left: 10px;
  top: 10px
}
.room-img .add-wishlist:hover {
  background: #f96768;
  color: #fff
}
.room-content {
  padding: 20px 15px 10px
}
.room-title a:hover {
  color: #7167ff
}
.room-content p {
  margin: 8px 0;
  color: #4f4b8b;
  font-weight: 500
}
.room-rate .badge {
  background: #ffa903;
  font-size: 13px
}
.room-rate-type {
  color: #7167ff;
  font-weight: 500;
  margin: 0 5px
}
.room-rate-review {
  color: #4f4b8b;
  font-weight: 500
}
.room-info-list {
  margin-top: 10px
}
.room-info-list li {
  display: inline-block;
  margin-right: 15px;
  margin-top: 8px
}
.room-info-list i {
  color: #7167ff;
  margin-right: 6px
}
.room-detail-btn a {
  margin-top: 8px;
  text-decoration: underline;
  color: #7167ff
}
.room-detail-btn a:hover {
  color: #f96768
}
.room-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, .05);
  margin-top: 20px;
  padding-top: 13px
}
.room-price-amount {
  color: #f96768;
  font-weight: 700;
  font-size: 19px
}
.room-price-type {
  font-size: 14px;
  font-weight: 500;
  color: #4f4b8b
}
.room-text-btn a {
  color: #4f4b8b;
  font-weight: 500
}
.room-text-btn a i {
  font-size: 14px
}
.room-text-btn a:hover {
  color: #7167ff
}
.room-select-btn {
  background: #f96768;
  border-radius: 8px;
  padding: 5px 12px;
  box-shadow: 0 0 40px 5px rgb(0 0 0/5%)
}
.room-select-btn .form-check-input {
  margin-top: 7px;
  box-shadow: none;
  border: none
}
.room-select-btn .form-check-label {
  color: #fff;
  font-weight: 500
}
.room-list .room-item {
  display: flex;
  align-items: center;
  gap: 20px
}
.room-list .room-img {
  width: 350px
}
.room-list .room-content {
  flex: 1
}
.room-list .room-info-list {
  width: 400px
}
@media all and (max-width:767px) {
  .room-list .room-item {
    display: block
  }
  .room-list .room-img {
    width: 100%
  }
  .room-list .room-info-list {
    width: 100%
  }
}*/
.text-ellipses {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.facilities {
  padding: 0;
  margin: 0;
}
.facilities li {
  list-style-type: none;
  display: inline-block;
  margin-right: 12px;
  font-size: 12px;
  font-weight: 800;
}

.main-nav {
  position: sticky; /* modern browsers */
  top: 83px;
  transition: background-color 250ms linear;
  width: 100%;
  z-index: 2;
}
.is-fixed { /* JS will apply this for IE11 / Edge 15 */
  position: fixed;
}
.main-nav ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px 25px;
  display: block;
  transition: all 150ms linear;
  border-radius: 5px;
  margin-right: 1px;
}
.main-nav a:hover,
.main-nav a:focus {
  background-color: #ff7014;
  color: #fff;
}
.main-nav a.active {
  background-color: #ff7014;
  color: #fff;
}

/* Gallery Start */
.galleryGrid.-type-1 {
  display: grid;
  grid-template-columns: .52fr .24fr .24fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px
}
@media (max-width:991px) {
  .galleryGrid.-type-1 {
    grid-template-columns: 1fr 1fr 1fr
  }
}
@media (max-width:767px) {
  .galleryGrid.-type-1 {
    grid-template-columns: 1fr 1fr
  }
}
@media (max-width:575px) {
  .galleryGrid.-type-1 {
    grid-template-columns: 1fr
  }
}
.galleryGrid.-type-1 > :first-child {
  grid-row: 2 span
}
@media (max-width:991px) {
  .galleryGrid.-type-1 > :first-child {
    grid-row: 1
  }
}
.galleryGrid.-type-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
@media (max-width:991px) {
  .galleryGrid.-type-1 img {
    width: 100%
  }
}
.galleryGrid.-type-2 {
  display: grid;
  grid-template-columns: .6fr .2fr .2fr;
  grid-template-rows: .4fr .6fr;
  gap: 10px
}
@media (max-width:991px) {
  .galleryGrid.-type-2 {
    grid-template-columns: 1fr 1fr 1fr
  }
  .amenities-icon li {
    width: 100%;
  }
}
@media (max-width:767px) {
  .galleryGrid.-type-2 {
    grid-template-columns: 1fr 1fr
  }
  .amenities-icon li {
    width: 100%;
  }
}
@media (max-width:575px) {
  .galleryGrid.-type-2 {
    grid-template-columns: 1fr
  }
}
.galleryGrid.-type-2 > :first-child {
  grid-row: 2 span
}
.galleryGrid.-type-2 > :nth-child(4) {
  grid-column: 2 span
}
.galleryGrid.-type-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
@media (max-width:991px) {
  .galleryGrid.-type-2 img {
    width: 100%
  }
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.items-end {
  align-items: flex-end !important;
}
.justify-between {
  justify-content: space-between !important;
}
.justify-end {
  justify-content: flex-end !important;
}
.h-full {
  height: 100% !important;
}
/* Gallery END */
.facilities-icon {
  flex-flow: row wrap;
  box-sizing: border-box;
  display: flex;
  place-content: stretch flex-start;
  align-items: stretch;
  padding:0;
  margin-bottom:0;
}
.facilities-icon li {
  flex-direction: row;
  box-sizing: border-box;
  display: flex;
  place-content: center flex-start;
  align-items: center;
  color: #5e5e5e;
  font-size: 13px;
  font-weight: 400;
  width: 50%;
  margin: 0 0 5px;
  padding: 0 0 0 0px;
}
.amenities-icon {
  padding: 0;
  margin-bottom: 0;
  width: 100%;
  -moz-columns: 4;
  columns: 4;
  margin: 0 0 5px;
  -moz-column-fill: balance;
  column-fill: balance;
}
.amenities-icon li {
  flex-direction: row;
  box-sizing: border-box;
  display: flex;
  place-content: center flex-start;
  align-items: center;
  color: #5e5e5e;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  margin: 0 0 10px;
  padding: 0 0 0 0px;
}
@media (max-width:991px) {
  .amenities-icon {
    -moz-columns: 2;
    columns: 2;
  }
}

@media (max-width:767px) {
  .amenities-icon {
    -moz-columns: 1;
    columns: 1;
  }
}
.insurance-list {
  padding:0 0 0 20px;
  margin: 10px 0;
}
.insurance-list li {
  list-style-type: disc;
  list-style-position: outside;
}
/*.text-blue {
  color: #ff7014 !important;
}*/

/* In Policy */
.border-success-2 {
  border: 1px solid #198754 !important;
}
.border-danger-2 {
  border: 1px solid #ff7014 !important;
}
/*.in-policy {
  background: rgb(41 153 4 / 60%) !important;
}
.in-policy .card-header {
  background-color: rgb(41 153 4 / 50%) !important;
  border-color: rgba(156,170,179,.28);
}
.in-policy .border-end {
  border-right: 1px solid rgba(156,170,179,.28) !important;
}

.out-of-policy {
  background: rgb(249 218 218 / 30%) !important;
}
.out-of-policy .card-header {
  background-color: rgb(249 218 218 / 30%) !important;
  border-color: #f6d3d3;
}
.out-of-policy .border-end {
  border-right: 1px solid #f6d3d3 !important;
}*/
.carousel-inner-img img {
  max-height: 250px;
  height: 100%;
}
.carousel-caption {
  padding: 1rem;
  background: rgb(0 0 0 / 50%);
  border-radius: 5px;
}

.my-check {
  margin-bottom: 15px;
  display: inline-block;
}
.my-check input[type="radio"], .my-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-right: 10px;
  vertical-align: middle;
}
.my-check input[type="radio"] + label, .my-check input[type="checkbox"] + label {
  margin-right: 10px;
  vertical-align: middle;
  display: inline;
}
.form-group label, .form-group span {
  margin-bottom: 0.5rem;
  display: inline-block;
}
.input-group .btn {
  z-index: 1;
}
/*.form-floating > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity .1s ease-in-out,transform .1s ease-in-out;
}
@media (prefers-reduced-motion:reduce) {
	.form-floating>span {
		transition: none
	}
}*/
/*.form-floating>.form-select~span {
  opacity: .65;
  transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}
.form-floating>.form-control:not(:placeholder-shown)~span {
  opacity: .65;
  transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}*/
.form-floating>span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 1rem .75rem;
	overflow: hidden;
	text-align: start;
	text-overflow: ellipsis;
	white-space: nowrap;
	pointer-events: none;
	border: 1px solid transparent;
	transform-origin: 0 0;
	transition: opacity .1s ease-in-out, transform .1s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
	.form-floating>span {
		transition: none
	}
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext {
	padding: 1rem .75rem
}

.form-floating>.form-control-plaintext::-moz-placeholder,
.form-floating>.form-control::-moz-placeholder {
	color: transparent
}

.form-floating>.form-control-plaintext::placeholder,
.form-floating>.form-control::placeholder {
	color: transparent
}

.form-floating>.form-control-plaintext:not(:-moz-placeholder-shown),
.form-floating>.form-control:not(:-moz-placeholder-shown) {
	padding-top: 1.625rem;
	padding-bottom: .625rem
}

.form-floating>.form-control-plaintext:focus,
.form-floating>.form-control-plaintext:not(:placeholder-shown),
.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
	padding-top: 1.625rem;
	padding-bottom: .625rem
}

.form-floating>.form-control-plaintext:-webkit-autofill,
.form-floating>.form-control:-webkit-autofill {
	padding-top: 1.625rem;
	padding-bottom: .625rem
}

.form-floating>.form-select {
	padding-top: 1.625rem;
	padding-bottom: .625rem
}

.form-floating>.form-control:not(:-moz-placeholder-shown)~span {
	opacity: .65;
	transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-floating>.form-control-plaintext~span,
.form-floating>.form-control:focus~span,
.form-floating>.form-control:not(:placeholder-shown)~span,
.form-floating>.form-select~span {
	opacity: .65;
	transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-floating>.form-control:-webkit-autofill~span {
	opacity: .65;
	transform: scale(.85) translateY(-.5rem) translateX(.15rem)
}

.form-floating>.form-control-plaintext~span {
	border-width: 1px 0
}

.hidden, .hide {
  display: none !important;
}
.flight-filter-table thead > tr > th, .flight-filter-table tbody > tr > th, .flight-filter-table tbody > tr > td, .flight-filter-table tbody > tr > th {
  padding:2px 0px;
  font-weight: 500;
}
.flight-filter-table .my-check {
  margin-bottom: 0;
}
.flight-price-table thead > tr > th, .flight-price-table tbody > tr > th, .flight-price-table tbody > tr > td, .flight-price-table tbody > tr > th {
  background-color: transparent !important;
}

@media (max-width:991px) {
}

@media (max-width: 768px) {
}

@media (max-width:767px) {
  .flight-price-table-domestic tbody > tr > td {
    width: 100%;
  }
}

@media (max-width:575px) {
  .flight-price-table-domestic tbody > tr > td {
    width: 100%;
  }
}
/*.flight-price-table-domestic .td-space {
  width: 95% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-direction: column !important;
  gap: 10px;
}
.flight-price-table-domestic:last-child.td-space {
  width: 100% !important;
}*/

/*.td-space {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex: 1 1 auto;
}
.td-space>* {
  flex: 1 1 80px;
}*/
.td-space:not(:last-child) {
  margin-right: 10px;
}
.field {
  border: 1px solid #3fc4d8;
  margin: 0 15px;
  border-radius: 5px;
  padding: 5px;
}
.legend {
  background: #3fc4d8;
  color: #fff;
  width: auto;
  padding: 2px 10px;
  font-size: 11px;
  margin: 0 5px;
  border-radius: 3px;
}
#rules-li li {
  list-style: outside;
}
.activebox {
  border: 3px solid #ff7014;
  border-radius: 5px;
}
.pagination-ys {
	display: block;
	padding-left: 0;
	margin: 20px 0;
	border-radius: 4px;
}
.pagination-ys table > tbody > tr > td {
	display: inline;
}
.pagination-ys table > tbody > tr > td > a,
.pagination-ys table > tbody > tr > td > span {
	position: relative;
	float: left;
	padding: 8px 12px;
	line-height: 1.42857143;
	text-decoration: none;
	color: #333333;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	margin-left: -1px;
}
.pagination-ys table > tbody > tr > td > span {
  position: relative;
  float: left;
  padding: 8px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  margin-left: -1px;
  z-index: 2;
  color: #ffffff;
  background-color: #ff7014;
  border-color: #dddddd;
  cursor: default;
}
.pagination-ys table > tbody > tr > td:first-child > a,
.pagination-ys table > tbody > tr > td:first-child > span {
	margin-left: 0;
	border-bottom-left-radius: 4px;
	border-top-left-radius: 4px;
}
.pagination-ys table > tbody > tr > td:last-child > a,
.pagination-ys table > tbody > tr > td:last-child > span {
	border-bottom-right-radius: 4px;
	border-top-right-radius: 4px;
}
.pagination-ys table > tbody > tr > td > a:hover,
.pagination-ys table > tbody > tr > td > span:hover,
.pagination-ys table > tbody > tr > td > a:focus,
.pagination-ys table > tbody > tr > td > span:focus {
	color: #ffffff;
  background-color: #ff7014;
	border-color: #dddddd;
}
/*#range-slider {max-width: 80%; margin: 0 auto; padding-top: 50px; }
#slider-range { background-color: #D4D4D4; }*/
.ui-slider-horizontal .ui-slider-range {
  background: #ff7014;
  background: -webkit-linear-gradient(0deg, #ff7014 0%, #ad6868 100%);
  background: linear-gradient(0deg, #ff7014 0%, #ad6868 100%);
}
.ui-state-default, .ui-widget-content .ui-state-default:hover, .ui-state-default, .ui-widget-content .ui-state-default:focus {
  /*background: #fff !important;*/
  border: 1px solid #cccccc !important;
}
.ui-slider .ui-slider-handle {
  box-shadow: 0 0 5px 0 rgba(0,0,0,0.20);
  border-radius: 50%;
  height:20px;
  width:20px;
}
.border-primary {
  border: 1px solid rgb(13,110,253) !important;
}
.border-secondary {
  border: 1px solid #6c757d !important;
}
.border-success {
  border: 1px solid #198754 !important;
}
.text-ellipses-line-count {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
/*.gvwRooms tbody > tr > td:first-child {
  display: none;
}*/
.SelectPassengerBtn a:hover {
  color: #fff !important;
}

.loader {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.car__body {
  -webkit-animation: shake 0.2s ease-in-out infinite alternate;
          animation: shake 0.2s ease-in-out infinite alternate;
}
.car__line {
  transform-origin: center right;
  stroke-dasharray: 22;
  -webkit-animation: line 0.8s ease-in-out infinite;
          animation: line 0.8s ease-in-out infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.car__line--top {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.car__line--middle {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.car__line--bottom {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes shake {
  0% {
    transform: translateY(-1%);
  }
  100% {
    transform: translateY(3%);
  }
}

@keyframes shake {
  0% {
    transform: translateY(-1%);
  }
  100% {
    transform: translateY(3%);
  }
}
@-webkit-keyframes line {
  0% {
    stroke-dashoffset: 22;
  }
  25% {
    stroke-dashoffset: 22;
  }
  50% {
    stroke-dashoffset: 0;
  }
  51% {
    stroke-dashoffset: 0;
  }
  80% {
    stroke-dashoffset: -22;
  }
  100% {
    stroke-dashoffset: -22;
  }
}
@keyframes line {
  0% {
    stroke-dashoffset: 22;
  }
  25% {
    stroke-dashoffset: 22;
  }
  50% {
    stroke-dashoffset: 0;
  }
  51% {
    stroke-dashoffset: 0;
  }
  80% {
    stroke-dashoffset: -22;
  }
  100% {
    stroke-dashoffset: -22;
  }
}


/* jQuery Calendar and Dropdown Menu Design Modify START
==================================================================*/
.ui-helper-hidden {
	display: none
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none
}
.ui-helper-clearfix:before, .ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse
}
.ui-helper-clearfix:after {
	clear: both
}
.ui-helper-clearfix {
	min-height: 0
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter: Alpha(Opacity=0)
}
.ui-front {
	z-index: 100
}
.ui-state-disabled {
	cursor: default!important
}
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat
}
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}
.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none
}
.ui-resizable {
	position: relative
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none
}
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
	display: none
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px
}
.ui-selectable {
	-ms-touch-action: none;
	touch-action: none
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black
}
.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	min-height: 0;
	font-size: 100%
}
.ui-accordion .ui-accordion-icons {
	padding-left: 2.2em
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
	padding-left: 2.2em
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
	position: absolute;
	left: .5em;
	top: 50%;
	margin-top: -8px
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default
}
.ui-button {
	display: inline-block;
	position: relative;
	padding: 0;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	overflow: visible
}
.ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active {
	text-decoration: none
}
.ui-button-icon-only {
	width: 2.2em
}
button.ui-button-icon-only {
	width: 2.4em
}
.ui-button-icons-only {
	width: 3.4em
}
button.ui-button-icons-only {
	width: 3.7em
}
.ui-button .ui-button-text {
	display: block;
	line-height: normal
}
.ui-button-text-only .ui-button-text {
	padding: .4em 1em
}
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text {
	padding: .4em;
	text-indent: -9999999px
}
.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text {
	padding: .4em 1em .4em 2.1em
}
.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text {
	padding: .4em 2.1em .4em 1em
}
.ui-button-text-icons .ui-button-text {
	padding-left: 2.1em;
	padding-right: 2.1em
}
input.ui-button {
	padding: .4em 1em
}
.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon {
	position: absolute;
	top: 50%;
	margin-top: -8px
}
.ui-button-icon-only .ui-icon {
	left: 50%;
	margin-left: -8px
}
.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary {
	left: .5em
}
.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary {
	right: .5em
}
.ui-buttonset {
	margin-right: 7px
}
.ui-buttonset .ui-button {
	margin-left: 0;
	margin-right: -.3em
}
input.ui-button::-moz-focus-inner, button.ui-button::-moz-focus-inner {
border:0;
padding:0
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em
}
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
	top: 1px
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px
}
.ui-datepicker .ui-datepicker-next {
	right: 2px
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px
}
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
	width: 45%
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0
}
.ui-datepicker td {
	border: 0;
	padding: 1px
}
.ui-datepicker td span, .ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left
}
.ui-datepicker.ui-datepicker-multi {
	width: auto
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0
}
.ui-datepicker-rtl {
	direction: rtl
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group {
	float: right
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px
}
.ui-dialog {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer
}
.ui-dialog .ui-resizable-se {
	width: 12px;
	height: 12px;
	right: -5px;
	bottom: -5px;
	background-position: 16px 16px
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move
}
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: none
}
.ui-menu .ui-menu {
	position: absolute
}
.ui-menu .ui-menu-item {
	position: relative;
	margin: 0;
	padding: 3px 1em 3px .4em;
	cursor: pointer;
	min-height: 0;
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7")
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0
}
.ui-menu .ui-state-focus, .ui-menu .ui-state-active {
	margin: -1px
}
.ui-menu-icons {
	position: relative
}
.ui-menu-icons .ui-menu-item {
	padding-left: 2em
}
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0
}
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0
}
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%
}
.ui-progressbar .ui-progressbar-overlay {
	background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
	height: 100%;
	filter: alpha(opacity=25);
	opacity: 0.25
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none
}
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	overflow-x: hidden;
	padding-bottom: 1px
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.4em;
	margin: 0.5em 0 0 0;
	height: auto;
	border: 0
}
.ui-selectmenu-open {
	display: block
}
.ui-selectmenu-button {
	display: inline-block;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	cursor: pointer
}
.ui-selectmenu-button span.ui-icon {
	right: 0.5em;
	left: auto;
	margin-top: -8px;
	position: absolute;
	top: 50%
}
.ui-selectmenu-button span.ui-selectmenu-text {
	text-align: left;
	padding: 0.4em 2.1em 0.4em 1em;
	display: block;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}
.ui-slider {
	position: relative;
	text-align: left
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: default;
	-ms-touch-action: none;
	touch-action: none
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0
}
.ui-slider.ui-state-disabled .ui-slider-handle, .ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit
}
.ui-slider-horizontal {
	height: .8em
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0
}
.ui-slider-vertical {
	width: .8em;
	height: 100px
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0
}
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 22px
}
.ui-spinner-button {
	width: 16px;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0
}
.ui-spinner a.ui-spinner-button {
	border-top: none;
	border-bottom: none;
	border-right: none
}
.ui-spinner .ui-icon {
	position: absolute;
	margin-top: -8px;
	top: 50%;
	left: 0
}
.ui-spinner-up {
	top: 0
}
.ui-spinner-down {
	bottom: 0
}
.ui-spinner .ui-icon-triangle-1-s {
	background-position: -65px -16px
}
.ui-tabs {
	position: relative;
	padding: .2em
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
	-webkit-box-shadow: 0 0 5px #aaa;
	box-shadow: 0 0 5px #aaa
}
body .ui-tooltip {
	border-width: 2px
}
.ui-datepicker.ui-datepicker-multi {
    width: auto !important;
		border-radius: 20px;
}
.ui-datepicker-group-last {
    border-left: 1px solid #ddd;
}
.ui-menu {
	padding: 8px 0 10px 0 !important;
	border-radius: 15px;
	box-shadow:0 3px 9px 0 rgba(0, 0, 0, 0.23);
	border: 1px solid transparent !important;
}
.ui-datepicker-group-first {
	padding-right:5px;
}
.ui-datepicker-group-last {
	padding-left:5px;
}

.ui-datepicker {
	background-color: #fff;
	border: 1px solid #dedede;
	padding: 0 0 10px;
	width: 340px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box
}
.ui-datepicker .ui-datepicker-header {
	background-color: transparent;
	border: 0;
	padding: 0;
	border-bottom: 1px solid #dedede;
	position: relative;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next, .ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
	position: absolute;
	width: 35px;
	height: 100%;
	display: block;
	top: 0;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	cursor: pointer
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next:hover, .ui-datepicker .ui-datepicker-header .ui-datepicker-prev:hover {
	background-color: transparent;
  border: 0;
  box-shadow: none;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next span, .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span {
	display: none
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
	left: 0;
	background: url(../img/icon-arrow-left-blue.png) 50% 50% no-repeat
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-next {
	right: 0;
	background: url(../img/icon-arrow-blue.png) 50% 50% no-repeat
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
	color: #333;
	font-weight: 600;
	font-size: 14px;
	line-height: 48px;
	margin: 0 35px
}
.ui-datepicker .ui-datepicker-calendar {
	margin: 0
}
.ui-datepicker .ui-datepicker-calendar th {
	font-weight: 600;
	font-size: 14px;
	padding: 5px 3px 5px;
}
.ui-datepicker .ui-datepicker-calendar td {
	text-align: center
}
.ui-datepicker .ui-datepicker-calendar td a, .ui-datepicker .ui-datepicker-calendar td span {
	margin: 1px 0;
	display: inline-block;
	border: 1px solid #aeaeb3;
	width: 30px;
	height: 30px;
	padding: 0;
	line-height: 28px;
	text-align: center;
	color: #333;
	font-size: 13px;
	font-weight: 300;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear
}
.ui-datepicker .ui-datepicker-calendar td.ui-datepicker-today a, .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-today.ui-datepicker-current-day a {
	background-color: #ff7014;
	border-width: 0;
	color: #fff
}
.ui-datepicker .ui-datepicker-calendar td.ui-datepicker-current-day a {
	border-width: 0;
	background-color: #ff7014;
	color: #fff
}
.ui-datepicker .ui-datepicker-calendar td.ui-datepicker-other-month a {
	border-width: 0;
	color: #999
}
/* jQuery Calendar and Dropdown Menu Design Modify END
==================================================================*/
.imgCorporateLogo img {
  /*width: 140px;*/
  height: 82px;
}
.flight-exchange {
  position: absolute;
  left: auto;
  top: 10px;
  font-size: 18px;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  right: -30px;
  border-radius: 100% !important;
  padding: 5px 10px;
  color: #ff7014;
  opacity: 1;
  z-index: 9;
  -webkit-transition: 300ms ease all;
  -moz-transition: 300ms ease all;
  -o-transition: 300ms ease all;
  transition: 300ms ease all;
  border: 1px solid #ced4da;
  background: #fff;
  outline: none;
}
.flight-exchange:hover {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
  border: 1px solid #ced4da;
	-webkit-transition: 300ms ease all;
	-moz-transition: 300ms ease all;
	-o-transition: 300ms ease all;
	transition: 300ms ease all;
}

/* Loader Start */
#fountainG {
  position: relative;
  width: 234px;
  height: 28px;
  margin: auto;
}
.fountainG {
  position: absolute;
  top: 0;
  background: #ff7014;
  background: -webkit-linear-gradient(0deg, #ff7014 0%, #ad6868 100%);
  background: linear-gradient(0deg, #ff7014 0%, #ad6868 100%);
  width: 28px;
  height: 28px;
  animation-name: bounce_fountainG;
  -o-animation-name: bounce_fountainG;
  -ms-animation-name: bounce_fountainG;
  -webkit-animation-name: bounce_fountainG;
  -moz-animation-name: bounce_fountainG;
  animation-duration: 1.5s;
  -o-animation-duration: 1.5s;
  -ms-animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  -moz-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-direction: normal;
  -o-animation-direction: normal;
  -ms-animation-direction: normal;
  -webkit-animation-direction: normal;
  -moz-animation-direction: normal;
  transform: scale(.3);
  -o-transform: scale(.3);
  -ms-transform: scale(.3);
  -webkit-transform: scale(.3);
  -moz-transform: scale(.3);
  border-radius: 19px;
  -o-border-radius: 19px;
  -ms-border-radius: 19px;
  -webkit-border-radius: 19px;
  -moz-border-radius: 19px;
}
#fountainG_1 {
  left: 0;
  animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
}
#fountainG_2 {
  left: 29px;
  animation-delay: 0.75s;
  -o-animation-delay: 0.75s;
  -ms-animation-delay: 0.75s;
  -webkit-animation-delay: 0.75s;
  -moz-animation-delay: 0.75s;
}
#fountainG_3 {
  left: 58px;
  animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
}
#fountainG_4 {
  left: 88px;
  animation-delay: 1.05s;
  -o-animation-delay: 1.05s;
  -ms-animation-delay: 1.05s;
  -webkit-animation-delay: 1.05s;
  -moz-animation-delay: 1.05s;
}
#fountainG_5 {
  left: 117px;
  animation-delay: 1.2s;
  -o-animation-delay: 1.2s;
  -ms-animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
}
#fountainG_6 {
  left: 146px;
  animation-delay: 1.35s;
  -o-animation-delay: 1.35s;
  -ms-animation-delay: 1.35s;
  -webkit-animation-delay: 1.35s;
  -moz-animation-delay: 1.35s;
}
#fountainG_7 {
  left: 175px;
  animation-delay: 1.5s;
  -o-animation-delay: 1.5s;
  -ms-animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
}
#fountainG_8 {
  left: 205px;
  animation-delay: 1.64s;
  -o-animation-delay: 1.64s;
  -ms-animation-delay: 1.64s;
  -webkit-animation-delay: 1.64s;
  -moz-animation-delay: 1.64s;
}
@keyframes bounce_fountainG {
  0% {
    transform: scale(1);
    background-color: rgb(2, 178, 204);
  }
  100% {
    transform: scale(.3);
    background-color: rgb(255,255,255);
  }
}
@-o-keyframes bounce_fountainG {
  0% {
    -o-transform: scale(1);
    background-color: rgb(2, 178, 204);
  }
  100% {
    -o-transform: scale(.3);
    background-color: rgb(255,255,255);
  }
}
@-ms-keyframes bounce_fountainG {
  0% {
    -ms-transform: scale(1);
    background-color: rgb(2, 178, 204);
  }
  100% {
    -ms-transform: scale(.3);
    background-color: rgb(255,255,255);
  }
}
@-webkit-keyframes bounce_fountainG {
  0% {
    -webkit-transform: scale(1);
    background-color: rgb(2, 178, 204);
  }
  100% {
    -webkit-transform: scale(.3);
    background-color: rgb(255,255,255);
  }
}
@-moz-keyframes bounce_fountainG {
  0% {
    -moz-transform: scale(1);
    background-color: rgb(2, 178, 204);
  }
  100% {
    -moz-transform: scale(.3);
    background-color: rgb(255,255,255);
  }
}
/* Loader END*/
.cs-nav .cs-nav-item.active, .cs-nav .cs-nav-item.active a {
  background: #ff7014;
  background: -webkit-linear-gradient(0deg, #ff7014 0%, #ad6868 100%);
  background: linear-gradient(0deg, #ff7014 0%, #ad6868 100%);
  color: #fff;
  border-radius: 3px;
}
.cs-nav .cs-nav-item, .cs-nav .cs-nav-item a {
  background: #f1f1f1;
  color: #333333;
  border-radius: 3px;
}
.flight-bottom-sticky {
  box-shadow: 0px 0px 11px 0px rgb(0 0 0 / 63%);
}
.white-space {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.admbtn {
  -moz-user-select: none;
  background: #ff7014;
  border: 1px solid #ff7014;
  border-radius: 0.375rem;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  line-height: 1.42857;
  margin-bottom: 0;
  margin: 1px 0;
  padding: 5px 10px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-decoration: none;
}
.admbtn:hover {
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
  background: #222222;
  border: 1px solid #222222;
}
.admbtn:visited, .admbtn.focus {
		color: #fff;
		text-decoration: none !important;
		background: #222222;
    border: 1px solid #222222;
}

/* jQuery Css Modify Start */
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
  font-family: 'Poppins' !important;
  font-size: 0.978em;
  padding: 6px 6px 5px 6px;
  border-radius: 0.375rem;
  border: 1px solid #9d9d9d;
  margin: 2px;
}
.ui-widget input[type="radio"] {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
  margin: 0 2px 0px 4px;
}
/* jQuery Css Modify End */
.autocomplete_CompletionListElement {
  width: 100%;
  height: inherit;
  overflow: auto;
  text-align: left;
  border: 1px solid #dddddd;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  list-style-type: none;
  line-height: 28px;
  padding: 0;
  background: #6c757d;
  color: #fff;
  cursor: pointer;
  z-Index: 999;
  position: absolute;
}
.autoExtenderListItems {
  border: 1px solid #dddddd;
  cursor: pointer;
  color: #ffffff;
  padding: 5px;
}
.autoExtenderHighlightListItems {
  color: #ffffff !important;
  border: 1px solid #dddddd;
  background-color: #8c9192 !important;
  cursor: pointer !important;
  padding: 5px;
}

/* Hotel Css START */
.irs {
	position: relative;
	display: block;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.irs-line {
	position: relative;
	display: block;
	overflow: hidden;
	outline: none!important;
}
.irs-line-left, .irs-line-mid, .irs-line-right {
	position: absolute;
	display: block;
	top: 0;
}
.irs-line-left {
	left: 0;
	width: 11%;
}
.irs-line-mid {
	left: 9%;
	width: 82%;
}
.irs-line-right {
	right: 0;
	width: 11%;
}
.irs-bar {
	position: absolute;
	display: block;
	left: 0;
	width: 0;
}
.irs-bar-edge {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
}
.irs-shadow {
	position: absolute;
	display: none;
	left: 0;
	width: 0;
}
.irs-slider {
	position: absolute;
	display: block;
	cursor: default;
	z-index: 1;
}
.irs-slider.type_last {
	z-index: 2;
}
.irs-min {
	position: absolute;
	display: block;
	left: 0;
	cursor: default;
}
.irs-max {
	position: absolute;
	display: block;
	right: 0;
	cursor: default;
}
.irs-from, .irs-to, .irs-single {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	cursor: default;
	white-space: nowrap;
}
.irs-grid {
	position: absolute;
	display: none;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20px;
}
.irs-with-grid .irs-grid {
	display: block;
}
.irs-grid-pol {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 8px;
	background: #000;
}
.irs-grid-pol.small {
	height: 4px;
}
.irs-grid-text {
	position: absolute;
	bottom: 0;
	left: 0;
	white-space: nowrap;
	text-align: center;
	font-size: 9px;
	line-height: 9px;
	padding: 0 3px;
	color: #000;
}
.irs-disable-mask {
	position: absolute;
	display: block;
	top: 0;
	left: -1%;
	width: 102%;
	height: 100%;
	cursor: default;
	background: rgba(0, 0, 0, 0.0);
	z-index: 2;
}
.irs-disabled {
	opacity: .4;
}
.lt-ie9 .irs-disabled {
	filter: alpha(opacity=40);
}
.irs-hidden-input {
	position: absolute!important;
	display: block!important;
	top: 0!important;
	left: 0!important;
	width: 0!important;
	height: 0!important;
	font-size: 0!important;
	line-height: 0!important;
	padding: 0!important;
	margin: 0!important;
	outline: none!important;
	z-index: -9999!important;
	background: none!important;
	border-style: solid!important;
	border-color: transparent!important;
}
.irs {
	height: 40px;
}
.irs-with-grid {
	height: 60px;
}
.irs-line {
	height: 4px;
	top: 25px;
}
.irs-line-left {
	height: 4px;
	background: #DFE2E3;
	border-radius: 0;
}
.irs-line-mid {
	height: 4px;
	background: #DFE2E3;
}
.irs-line-right {
	height: 4px;
	background: #DFE2E3;
	border-radius: 0;
}
.irs-bar {
	height: 4px;
	top: 25px;
	background: #ff7014;
}
.irs-bar-edge {
	top: 25px;
	height: 4px;
	width: 14px;
	background: #005294;
	border-radius: 0;
}
.irs-shadow {
	height: 1px;
	top: 34px;
	background: #000;
	opacity: .75;
}
.lt-ie9 .irs-shadow {
	filter: alpha(opacity=75);
}
.irs-slider {
	width: 12px;
	height: 12px;
	border-radius: 12px;
	top: 22px;
	background: #FFF;
	border: 1px solid #00566f;
	-webkit-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
	transition: box-shadow 0.3s ease;
	-webkit-transition: box-shadow 0.3s ease;
	-moz-transition: box-shadow 0.3s ease;
}
.irs-slider.state_hover, .irs-slider:hover {
	background: #FFF;
	cursor: pointer;
	box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.45);
}
.irs-min, .irs-max {
	color: #c0c0c0;
	font-size: 10px;
	line-height: 1.333;
	text-shadow: none;
	top: 0;
	padding: 1px 3px;
	background: none;
	-moz-border-radius: 0;
	border-radius: 0;
}
.lt-ie9 .irs-min, .lt-ie9 .irs-max {
	background: #3654b0;
}
.irs-from, .irs-to, .irs-single {
	color: #555656;
	font-size: 10px;
	line-height: 1.333;
	text-shadow: none;
	padding: 1px 5px;
	background: #EDEDED;
	-moz-border-radius: 0;
	border-radius: 0;
}
.lt-ie9 .irs-from, .lt-ie9 .irs-to, .lt-ie9 .irs-single {
	background: #d8dff3;
}
.irs-grid-pol {
	background: #E5E5E5;
}
.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 10px 0 10px 0;
  border-radius: 4px;
}
.pagination > li {
  display: inline;
}
.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  line-height: 1.42857143;
  text-decoration: none;
  color: #337ab7;
  background-color: #fff;
  border: 1px solid #ddd;
  margin-left: -1px;
}
.pagination > li:first-child > a, .pagination > li:first-child > span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a, .pagination > li:last-child > span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  background-color: #337ab7;
  border-color: #337ab7;
  cursor: default;
}
.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
  color: #777777;
  background-color: #fff;
  border-color: #ddd;
  cursor: not-allowed;
}
.pagination-lg > li > a, .pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.pagination-sm > li > a, .pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
  border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
}
.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
  border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
}
.star-rating {
  margin: 0;
  padding: 0;
  display: inline-block;
}
.star-rating .star {
  padding: 1px;
  color: #ddd;
  font-size: 0.8rem;
  text-shadow: .05em .05em #aaa;
  list-style-type: none;
  display: inline-block;
  cursor: pointer;
  margin-top: 2px;
}
.star-rating .star.filled {
  color: #d9920b;
}
.star-rating.readonly .star.filled {
  color: #666;
}
/* END */

.results-active {
  background: #e3e3e3;
  color: #333;
}
.flight-results-non-active {
  min-height: 128px;
}

.pricing-table {
  background: #fff;
  box-shadow: 0px 1px 4px 2px rgba(0, 0, 0, .15);
  padding: 1rem;
  border-radius: 4px;
  transition: .3s;
  margin-bottom: 1rem;
}

.pricing-table:hover {
	box-shadow: 0px 1px 10px 6px rgba(0, 0, 0, .15);
}

.pricing-table .pricing-label {
	border-radius: 2px;
	padding: .25rem .5rem;
	margin-bottom: 10px;
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
}

.pricing-table h2 {
	color: var(--main-color);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}

.pricing-table h5 {
	color: var(--yellow-orange);
	font-size: 14px;
	font-weight: 600;
}

.pricing-table .pricing-features {
  margin-top: 0.8rem;
  max-height: 250px;
  overflow-x: hidden;
  margin-bottom: 20px;
}

.pricing-table .pricing-features:hover {
  overflow-y: auto;
}

.pricing-table .pricing-features::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
  background-color: #36543F;
}

.pricing-table .pricing-features::-webkit-scrollbar {
  width: 5px;
  background-color: #36543F;
}

.pricing-table .pricing-features::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #0f2c52;
}

.pricing-table .pricing-features .feature {
	font-size: 13px;
	color: var(--black-color);
  border-bottom: 1px dashed #ddd;
    padding: 2px 0px;
}

.pricing-table .pricing-features .feature span {
	display: inline-block;
	float: right;
	color: #3b3b3b;
	font-weight: 500;
}

.pricing-table 	.price-tag {
	margin-top: 1rem;
	text-align: center;
	font-weight: 500;
}

.pricing-table .price-tag .symbol {
	font-size: 24px;
}

.pricing-table .price-tag .amount {
	font-size: 26px;
    font-weight: 600;
}

.pricing-table .price-tag .after {
	color: #3b3b3b;
	font-weight: 500;
}

.pricing-table .price-button {
	display: block;
	color: #fff;
	margin-top: 2rem;
	padding: .75rem;
	border-radius: 2px;
	text-align: center;
	font-weight: 500;
	transition: .3s;
}

.pricing-table .price-button:hover {
	text-decoration: none;
}

.purple .pricing-label {
  background: #198754;
  color: #fff;
}

.purple .price-tag {
	color: var(--yellow-orange);
}

.purple .price-button {
	background: #627afe;
}

.purple .price-button:hover {
	background: #546dfe;
}

.turquoise .pricing-label {
	background: #b9edee;
	color: #44cdd2;
}

.turquoise .price-tag {
	color: #44cdd2;
}

.turquoise .price-button {
	background: #44cdd2;
}

.turquoise .price-button:hover {
	background: #2dbcc4;
}

.red .pricing-label {
	background: #ffc4c4;
	color: #ff5e5e;
}

.red .price-tag {
	color: #ff5e5e;
}

.red .price-button {
	background: #ff5e5e;
}

.red .price-button:hover {
	background: #f23c3c;
}
.accordion {
  --bs-accordion-btn-color: #ff7014;
}
.ActiveCreditLimit {
 position: absolute;
 top: 0px;
 right: 34%;
 z-index: 999;
}
.insurance-ul {
	padding-left: 0;
}
.insurance-li {
    margin-bottom: 10px;
}
.insurance-section:first-child {
	font-weight: bold;
    padding-right: 15px;
	color: #ff7014;
}
.insurance-section {
	font-weight: bold;
    padding-right: 10px;
}
.insurance-cover {
	font-weight: bold;
    padding-right: 10px;
}
.insurance-amount {
	font-weight: 600;
    padding-right: 10px;
}
.insurance-excess {
	font-weight: 600;
    padding-right: 10px;
}
.insurance-benefits {
	font-weight: bold;
    padding-right: 10px;
}
.insurance-ul-child {
	margin-bottom: 10px;
}
.insurance-li-child {
    margin-bottom: 10px;
    list-style-type: disc;
    list-style-position: inside;
}
.insurance-section-child {
	font-weight: 600;
    padding-right: 10px;
}
.insurance-cover-child {
	font-weight: 500;
    padding-right: 0px;
}
.insurance-amount-child {
	font-weight: 500;
    padding-right: 10px;
}
.insurance-excess-child {
	font-weight: 500;
    padding-right: 10px;
}
.insurance-benefits-child {
	font-weight: 600;
    padding-right: 10px;
}
.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #ff7014;
  --bs-btn-border-color: #ff7014;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #222222;
  --bs-btn-hover-border-color: #222222;
  --bs-btn-focus-shadow-rgb: 225,83,97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #222222;
  --bs-btn-active-border-color: #222222;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #ff7014;
  --bs-btn-disabled-border-color: #ff7014;
}
.btn-outline-danger {
  --bs-btn-color: #ff7014;
  --bs-btn-border-color: #ff7014;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #ff7014;
  --bs-btn-hover-border-color: #ff7014;
  --bs-btn-focus-shadow-rgb: 220,53,69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #ff7014;
  --bs-btn-active-border-color: #ff7014;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ff7014;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ff7014;
  --bs-gradient: none;
}