:root {
  --alert-color: #ff2f08;
  --base-color: #3c6382;
  --body-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  --msger-bg: #fff;
  --border: 2px solid #ddd;
  --left-msg-bg: #ececec;
  --right-msg-bg: #579ffb;
  --secondary-color: #ec8134; /*#ec8134;*/
  --secondary-color-hover: #d16111;/*#f0740e;*/
}
html {
  scroll-behavior: smooth;
}

.hide {
  display: none;
}

#DivIdToPrint .e-ticket-data.p-d-none {
  display: none;
}

.nav > li > a:focus,
.nav > li > a:hover {
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 5px;
}
.nav > li {
  display: inline-block;
  margin-top: 10px;
}
.nav .glyphicon {
  top: 3px;
}
.currency-dropdown {
  padding: 5px;
  z-index: 1;
}

.float-button {
  margin-top: 11px;
}
.floating {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 30px;
  left: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
.back-to-top {
  display: none;
  position: fixed;
  bottom: 35px;
  right: 50%;
  z-index: 99;
  text-decoration: none;
  cursor: pointer;
}

.back-to-top {
  cursor: pointer;
}

.hide {
  display: none;
}

/**
* Errors
 */
.error {
  border-color: red;
}
.error-message {
  color: red;
  margin-bottom: 1em;
  font-size: 12px;
}

/*Support message*/

.msger {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 867px;
  margin: 10px;
  height: auto;
  border: var(--border);
  border-radius: 5px;
  background: var(--msger-bg);
  box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0.2);
  background: #fcfcfe;
}

.msger-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: var(--border);
  background: #016bc8;
  color: #fff;
}

.msger-chat {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  margin-bottom: 10px;
  max-height: 300px;
}

.msger-chat::-webkit-scrollbar {
  width: 6px;
}

.msger-chat::-webkit-scrollbar-track {
  background: #ddd;
}

.msger-chat::-webkit-scrollbar-thumb {
  background: #bdbdbd;
}

.msg {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}

.msg:last-of-type {
  margin: 0;
}

.msg-img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  background: #ddd;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}

.msg-bubble {
  max-width: 450px;
  padding: 15px;
  border-radius: 15px;
  background: var(--left-msg-bg);
}

.msg-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.left-msg .msg-bubble {
  border-bottom-left-radius: 0;
}

.right-msg {
  flex-direction: row-reverse;
}

.right-msg .msg-bubble {
  background: var(--right-msg-bg);
  color: #fff;
  border-bottom-right-radius: 0;
}

.right-msg .msg-img {
  margin: 0 0 0 10px;
}

.msger-inputarea {
  display: flex;
  padding: 10px;
  border-top: var(--border);
  background: #eee;
  margin-bottom: 0;
}

.msger-inputarea * {
  padding: 10px;
  border: none;
  border-radius: 3px;
  font-size: 1em;
}

.msger-input {
  flex: 1;
  background: #ddd;
}

.msger-send-btn {
  margin-left: 10px;
  background: rgb(0, 196, 65);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.23s;
}

.msger-send-btn:hover {
  background: rgb(0, 180, 50);
}

.msger-chat {
  background-color: #fcfcfe;
}

.app-succ {
  margin-top: 10px;
  background: #1f7511;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  margin-top: 5px;
  font-size: 12px;
  font-family: Arial;
  padding-top: 7px;
  padding-left: 9px;
  padding-bottom: 5px;
  color: var(--primary-text-color);
  position: relative;
}

.app-succ .succ-close {
  position: absolute;
  right: 5px;
  color: #fff;
  opacity: 1;
  font-size: 15px;
  top: 6px;
  box-shadow: none;
}

.ap-err {
  margin-top: 10px;
  background: var(--secondary-color);
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  margin-top: 5px;
  font-size: 12px;
  font-family: Arial;
  padding-top: 7px;
  padding-left: 9px;
  padding-bottom: 5px;
  color: var(--primary-text-color);
  position: relative;
}

.ap-err .err-close {
  position: absolute;
  right: 5px;
  color: #fff;
  opacity: 1;
  font-size: 15px;
  top: 6px;
  box-shadow: none;
}

/*Support message*/

.text-danger-red {
  color: var(--alert-color);
}

.help-block {
  color: var(--alert-color);
  font-size: 11px;
  /*position: absolute !important;
     top: 37px !important; */
}

.panel-warning > .panel-heading {
  color: #fff;
  background-color: var(--base-color);
  border-color: var(--base-color);
}

.state-active {
  color: #fff !important;
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.country_code,
.country_code_d {
  width: 45px !important;
  position: absolute !important;
  top: 1px !important;
  border: none !important;
  height: 32px !important;
  margin-left: 3px !important;
}

.phone_cus {
  padding-left: 48px !important;
}

.single_details > p {
  margin-bottom: 0px !important;
}

.alert-danger-cus {
  background: var(--alert-color) !important;
  color: #fff;
}

.custom-close {
  color: #fff !important;
  opacity: 1 !important;
}

.asdf > li > a {
  padding: 0;
}

.fd-tabs {
  display: flex;
  justify-content: space-evenly;
  align-items: end;
  color: #fff;
  background: #000;
  padding: 10px 10px 2px 10px;
  font-size: 10px;
  width: 200px;
}

.mytabActive {
  background: var(--third-color);
}
.fd-tabs-img-plane {
  width: 13px;
  vertical-align: middle;
  margin-bottom: 10px;
}
.panel-info > .panel-heading {
  color: #fff !important;
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.usbaBookNow,
.usbaBookNow:hover,
.usbaBookNow:active {
  background: var(--secondary-color);
  color: #fff;
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  font-size: 12px;
  text-decoration: none;
}

.font-13 {
  font-size: 13px;
}

.method-of-payment {
  margin-bottom: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  background: #f7f0d7 !important;
}

.payment-method-hr {
  border-top: 1px solid #000;
}

.method-of-payment .bank-payments-info {
  font-size: 150%;
  background-color: #ffff00;
  color: #000;
  font-size: 26px;
  margin-top: 20px;
}

.click-here-to-bank-details {
  color: #000;
  font-weight: bold;
}

.payment-option-alert {
  font-size: 14px;
  display: none;
}

.pb-50 {
  margin-bottom: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-100 {
  margin-bottom: 100px;
}

.absolute-footer.dark {
  color: rgba(255, 255, 255, 0.5);
}
.absolute-footer {
  background-color: #0a3d62;
  color: rgba(0, 0, 0, 0.5);
  padding: 10px 0 15px;
  font-size: 0.9em;
}
.fare-discount {
  color: red;
}

.print-btn {
  margin-bottom: 20px;
  margin-left: 5px;
  background-color: var(--secondary-color);
  border: var(--secondary-color);
}

.issue-request-btn {
  margin-left: 5px;
  padding: 6px;
}
.issue-request-alert,
.cancel-request-alert {
  display: none;
}

#logo-txt {
  color: #000;
  margin-top: 7px;
}
#logo-txt > a {
  font-size: 32px;
  color: #000;
  font-weight: bolder;
  margin-top: 15px;
  padding-top: 15px;
}
#logo-txt > a:link,
#logo-txt > a:visited,
#logo-txt > a:hover,
#logo-txt > a:active {
  text-decoration: none;
}
/*
.bii {
   top: 37px !important;
     right: -5px !important; 
}
*/
h4 {
  font-size: 16px;
}
h4.final-fare {
  margin-top: 5px;
  margin-bottom: 5px;
}
.finalFare {
  display: none;
}
.text-del {
  -webkit-text-decoration-line: line-through; /* Safari */
  text-decoration-line: line-through;
} /* action-request-btn == arb*/
div.action-button-holder {
  margin: 5px 0px;
  padding: 5px 0;
}
button.a-r-b {
  margin: 5px;
}

/*
Button Outline CSS

//  custom-btn cb
*/
.c-b {
  border: 2px solid black;
  background-color: white;
  color: black;
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
}

/* Green custom-success */
.c-s {
  border-color: #0c4273;
  color: #0c4273;
}

.custom-success:hover {
  background-color: #0c4273;
  color: white;
}

.ui-datepicker {
  margin-top: 102px;
}
.currency-dropdown {
  padding: 5px;
  z-index: 1;
}
.user-profile__my-booking .table td {
  padding: 3px 10px;
  font-size: 12px;
}
.e-ticket-data table th,
.e-ticket-data table td {
  font-size: 13px;
}
.steps {
  margin-top: 15px;
  margin-bottom: 10px;
}

.auth button {
  margin-top: 15px;
}
.mb {
  margin-bottom: 25px;
}
.auth .auth-login {
  min-height: 50px;
  line-height: 30px;
}

.user-profile__license {
  padding-top: 20px;
}
#header {
  z-index: 1001;
}
.result-container {
  padding-top: 50px;
  background-color: #fff;
}

.bottom-line {
  border-bottom: 1px solid #c1c1c1;
}
.mt-50 {
  margin-top: 40px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-20 {
  margin-top: 20px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.insufficientFund {
  display: none;
}
.btn-coupon {
  color: #fff;
  background-color: var(--base-color) !important;
  border-color: var(--base-color) !important;
}
.alert-coupon,
.alert-coupon-success,
.alert-coupon-after-success-message {
  padding: 5px 10px;
  margin-bottom: 0px;
}
#passenger_one .row {
  margin-bottom: 15px;
}

span.getCancelTime {
  color: #016bc8;
  cursor: pointer;
}
span.getCancelTime:hover {
  text-decoration-line: underline;
  /*text-decoration-style: solid;*/
  color: #333;
}
span.getCancelTime::after {
  color: #333;
}

div.dtp-actual-num,
div.dtp-buttons,
div.dtp div.dtp-date > div:nth-child(3) {
  display: none;
}

div.dtp > .dtp-content > .dtp-date-view > header.dtp-header {
  background: var(--secondary-color-hover) !important;
}
div.dtp div.dtp-date,
.dtp div.dtp-time,
div.dtp table.dtp-picker-days tr > td > a.selected {
  background: var(--secondary-color) !important;
}
.dtp .p10 > a > i {
  color: var(--msger-bg) !important;
}
.year-picker-item.active,
.year-picker-item:hover {
  color: var(--secondary-color) !important;
}
/********pikaday start   **********
dark-theme .is-selected .pika-button
***/

.is-selected .pika-button, .has-event .pika-button{
  color: #fff !important;
  font-weight: bold !important;
  background: var(--secondary-color) !important;
}
.is-today .pika-button {
  /*color: var(--secondary-color) !important;*/
  font-weight: bold !important;
}

.pika-title, .pika-label {
  background: var(--secondary-color) !important;
}
.pika-prev, .pika-next,.pika-title, .pika-label{
  color: #fff !important;
}
.pika-table th{
  color: #000;
}
.pika-button {
  background: #fff;
}
.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
  color: #fff;
  background: var(--secondary-color);
  box-shadow: none;
}
 
/******** pikaday end   *************/

form#form-hotel-booking,
form#passenger_one,
form#form-api3-booking {
  font-size: 12px;
}
.form-control {
  font-size: 12px;
}

.form-control-input-group {
  border-radius: 0px 5px 5px 0px !important;
}

/* #form-control-input-group{
    border: 0px 5px 5px 0px !important;
} */
#passenger_one .form-group {
  margin-bottom: 0px;
}

.page-top {
  padding: 20px 0;
}

/* Custom */

.back-to-top {
  display: none;
  position: fixed;
  bottom: 35px;
  right: 50%;
  z-index: 99;
  text-decoration: none;
  cursor: pointer;
}
.fp-box {
  border: 1px solid rgba(236, 129, 52, 0.1);
  width: 100%;
  display: block;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 5px 10px;
  transition: all 0.3s ease-in-out;
  color: #676664;
}
.fp-box:hover {
  box-shadow: 2px 2px 5px rgba(236, 129, 52, 0.6);
  text-decoration: none;
  color: #337ab7;
}
.fp-price {
  margin-left: 43px;
  margin-top: -8px;
  font-size: 12px;
}
.fp-price > b {
  font-size: 13px;
  font-weight: 900;
}
.fp-box:hover .fp-price > b {
  color: #6a6967;
}
.fp-icon {
  max-width: 35px;
  top: 13px;
  position: relative;
  margin-right: 2px;
}

.ta-icon {
  max-width: 40px;
  margin-right: 8px;
}
.zooColor {
  color: var(--secondary-color);
}
.text-deals-price {
  color: #fff;
  background: var(--secondary-color);
  line-height: 25px;
  padding-left: 10px;
  border-radius: 0 40px 40px 0;
  width: fit-content;
  padding-right: 10px;
  font-size: 12px;
  font-weight: 700;
}

.img-responsive.cstm-thumb {
  border-radius: 20px;
}

.nav > li {
  display: inline-block;
  margin-top: 10px;
}

.nav > li > a:focus,
.nav > li > a:hover {
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 5px;
}
.currency-dropdown {
  padding: 5px 10px;
  z-index: 1;
}

.float-button {
  margin-top: 11px;
}

.floating {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 30px;
  left: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

#autho {
  text-align: center;
}

#autho-img {
  display: inline-flex;
  text-align: center;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background: var(--secondary-color);
  z-index: 1002;
}
.dots .dot {
  background: #fff;
}
#ps-submit {
  background-color: var(--secondary-color);
  box-shadow: 1px 1px 5px #b1b0b0;
  border: 1px solid var(--secondary-color);
  border-radius: 4px;
  cursor: pointer;
  color: var(--primary-text-color);
  padding: 4px 10px;
  width: 200px;
  height: 45px;
  font-weight: 500;
  font-size: 19px;
  text-transform: uppercase;
}
.cancel-page{
  padding-bottom: 100px;
}
.tooltip-inner {
  max-width: 300px !important;
}

.dot-via {
  height: 5px;
  position: relative;
  display: inline-block;
  width: 5px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  margin: 0;
  text-align: center;
}

.layover_indicator {
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  display: inline-block;
  width: 120px;
  overflow: hidden;
  font-size: 10px;
}

.via-layover {
  text-align: center;
  margin-top: 10px;
}
