:root{
    --font-default: "Rubik-Regular";
    --font-primary: "Rubik-Medium";
    --font-secondary: "Rubik-SemiBold";
    --font-bold: "Rubik-Bold";
    --font-primary2: "Roboto-Medium";

    --color-default: rgba(0, 0, 0, 0.5);
    /* --color-primary: #08b3d1; */
    --secondary-color: #84BC42;
    --secondary-color-rgb:240 80 56;
    /*--header-color:#002542;*/
    /*--header-text-color:#892680;*/

    scroll-behavior: smooth;


    --bs-blue: #0d6efd;
    --bs-darkblue: rgba(0, 0, 0, 0.73);
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #84BC42;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #07B3D2;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-white: #fff;
    --bs-dark: #212529;
}
body{
    font-family: var(--font-default);
    color: var(--color-secondary);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
a{
    /*color: var(--color-primary);*/
    text-decoration: none;
}
a:hover,a:focus {
    /*color: var(--bs-black);*/
    text-decoration: none;
    outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  margin: 0px;
}
p{
    margin: 0px;
}
ul{
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}
label{
    margin: 0px;
}
button,button:focus{
  outline: none;
}
svg{
  vertical-align: middle;
}
input[type='radio']{
  accent-color: var(--secondary-color);
  margin-top: 0;
  vertical-align: middle;
}

:-webkit-autofill,
:-webkit-autofill:hover,
:-webkit-autofill:focus,
:-webkit-autofill:active {

    transition: all 5000s ease-in-out 0s;
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    -webkit-text-fill-color: #000;
}

.hidden{
  display: none !important;
}
.section-bg {
    background-color: #fff;
}
.section-header {
    text-align: center;
    padding-bottom: 30px;
}
.section-header h2 {
    font: 22/24px var(--font-secondary);
    color: #7f7f90;
}
.section-header p {
    font: 16/20px var(--font-primary);
}
.container-fluid{
    width: 95%;
    max-width: 1750px;
    margin-left: auto;
    margin-right: auto;
}
section{
  max-width: 1990px;
  margin: auto;
}
.block-box{
    display: block !important;
}
.full-height{
    height: 100vh;
}
.col-12{
  width: 100% !important;
}
.padz{
  padding: 0;
}

/*Buttons*/
.primary-butn{
  padding: 16px 30px;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 12px;
  font-size: 20px;
  font-family: var(--font-primary);
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}
.sec-btn{
  min-width: 120px;
  background-color: #fff;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  font-size: 16px;
  font-family: var(--font-primary);
  cursor: pointer;
}

.btn-text {
  color: var(--color-primary);
  font-family: var(--font-primary);
  cursor: pointer;
}

.close-modal {
	width: 34px;
	padding: 8px;
	border-radius: 24px;
	background-color: var(--color-primary);
  cursor: pointer;
}

/*custom form radio input*/
.form_input-radio{
  display: none;
}
.form_radio-label{
  position: relative;
  padding-left: 20px;
}
.form_radio-label:before{
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  outline:1px solid rgba(0,0,0,.5);
  background-color: transparent;
  outline-offset: 2px;
}
.form_input-radio:checked + .form_radio-label:before{
  background-color: var(--secondary-color);
  outline:1px solid var(--secondary-color);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  display: flex;
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  margin-top: 30px;
}
.breadcrumbs li{
  margin-right: 20px;
  position: relative;
}
.breadcrumbs li:after{
  content: '';
  position: absolute;
  top: 7px;
  right: -13px;
  width: 6px;
  height: 6px;
  border-width: 0px 1px 1px 0px;
  border-style: solid;
  border-color: #7f7f7f;
  background: transparent;
  transform: rotate(312deg);
}
.breadcrumbs li:last-child::after{
  content: '';
  border: none;
}
.breadcrumbs li:last-child{
  margin-right: 0px;
}
.breadcrumbs li a{
  font: 22/24px var(--font-secondary);
  letter-spacing: -.5px;
  color: #7f7f7f;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#loading {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
  }
  
  #loading:before,
  #loading:after {
    content: "";
    position: absolute;
    border: 4px solid var(--color-primary);
    border-radius: 50%;
    -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  }
  
  #loading:after {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
  }
  
  @-webkit-keyframes animate-preloader {
    0% {
      width: 10px;
      height: 10px;
      top: calc(50% - 5px);
      left: calc(50% - 5px);
      opacity: 1;
    }
  
    100% {
      width: 72px;
      height: 72px;
      top: calc(50% - 36px);
      left: calc(50% - 36px);
      opacity: 0;
    }
  }
  
  @keyframes animate-preloader {
    0% {
      width: 10px;
      height: 10px;
      top: calc(50% - 5px);
      left: calc(50% - 5px);
      opacity: 1;
    }
  
    100% {
      width: 72px;
      height: 72px;
      top: calc(50% - 36px);
      left: calc(50% - 36px);
      opacity: 0;
    }
  }
/* --------------------------- */
/* input */
/* --------------------------- */
  input{
    border: none;
    border-radius: 0px;
    padding: 0px;
    outline: none;
  }
  textarea{
    width: 100%;
    outline: none;
    appearance: none;
    border: 1px solid #EAEAEA;
    border-radius: 14px;
    padding: 20px;
    resize: none;
  }
  .input-box-set textarea{
    padding: 0;
    border:none;
    border-radius: 0;
  }

  /* Date */
  input[type="date"]::-webkit-inner-spin-button,
  input[type="date"]::-webkit-calendar-picker-indicator {
      display: none;
      -webkit-appearance: none;
  }
  /* Time */

  input[type="time"]::-webkit-inner-spin-button,
  input[type="time"]::-webkit-calendar-picker-indicator {
      display: none;
      -webkit-appearance: none;
  }
  /* animation */
  .input-animation{

  }
  .label-animation{
    position: absolute;
    transform: translateY(-17px);
    transition: .5s;
  }
  .input-animation:focus ~ label, 
  .input-animation:-webkit-autofill ~ label, 
  .input-animation:valid ~ label, 
  .input-animation:not(:placeholder-shown).input-animation:not(:focus) ~ label{
    transform: translateY(-33px);
  }
/* --------------------------- */
    /* Custom Button */
/* --------------------------- */
.cust-btn{
    font: 15px/18px var(--font-primary);
    border: 1px solid transparent;
    background-color: transparent;
    padding: 10px 50px;
    border-radius: 10px;
    white-space: nowrap;
    cursor: pointer;
}
.btn-green{
    background-color: var(--color-primary);
    color: var(--bs-white);
}
.btn-darkblue{
  font: 20px/26px var(--font-primary) !important;
  letter-spacing: -0.555556px;
  background-color: var(--bs-darkblue);
  color: var(--bs-white);
  height: 100%;
  padding: 16px 25px !important;
  margin-top: 20px;
}
.cust-btn-md{
  padding: 10px 35px;
  font: 16px/18px var(--font-primary);
}

.primary-butn{
  width: 100%;
  color: #fff;
}

.flex {
  display: flex;
}
.fl-align-center {
  align-items: center;
}


/* --------------------------- */
/* drop down */
/* --------------------------- */
.drop-down-set{
    display: flex;
    flex-direction: column;
    position: relative;
}
.drop-down-set p{
    font: 14px/16px var(--font-default);
    letter-spacing: -0.4375px;
    color: var(--bs-white);
    position: relative;
    cursor: pointer;
}
.drop-down-set p:after{
    content: '';
    position: absolute;
    top: 2px;
    right: -12px;
    width: 6px;
    height: 6px;
    border-width: 0px 1px 1px 0px;
    border-style: solid;
    border-color: #fff;
    background: transparent;
    transform: rotate(45deg);
}
.drop-down-list{
    display: none;
}
.drop-down-list.active,
.profile-settings{
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    background: #fff;
    width: 150px;
    height: auto;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0px -1px 14px #34343429;
    z-index: 2;
    margin-top: 35px;
}   
.drop-down-list ul li{
    border-bottom: 1px solid #f2f2f2;
    padding: 6px 0px;
} 
.drop-down-list ul li:last-child{
    border-bottom: none;
}
.drop-down-list ul li a{
    color: var(--bs-gray-800);
}
.payment-btn-set{
  width: 100%;
  text-align: center;
}
.payment-btn{
  width: 360px;
  height: 60px;
  background-color: #84BC42;
  white-space: nowrap;
  color: #fff;
  font: 20px/22px var(--font-primary);
  letter-spacing: -0.625px;
  border: 1px solid transparent;
  padding: 10px 50px;
  border-radius: 14px;
  margin-top: 40px;
}
.airport-details-list .bootstrap-datetimepicker-widget{
  position:sticky;
  top: 0;
}

.close.close-modal {
  opacity: 1;
}


/*SVG DYNAMIC COLORS*/
#flight_icon,#saved-passenger-icon,#user-icon,
#user-circle1,#user-circle2,.tick-solid,#success,#profile_icon,
#copy-icon, #message_icon, #tick-icon
{
  fill:var(--secondary-color);
}
#user-icon-sm,
#user-circle1-sm,#user-circle2-sm{
  fill:var(--secondary-color);
}
#gst-icon, 
#mybooking_icon{
  stroke: var(--secondary-color);
}
#down-arrow, #download-icon, #edit-icon, #logout_icon, #logout_outline{
  fill:var(--secondary-color);
  stroke: var(--secondary-color);
}
#cart-color{
  fill: var(--header-text-color);
}

.modal-content{
  border-radius: 20px;
}

/*CHAT BOX*/
.chat-btn{
  cursor: pointer;
}
.chat-box{
  position: fixed;
  bottom: -475px;
  right: 14%;
  max-width: 385px;
  width: 100%;
  height: 475px;
  background-color: #f9fafc;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 4px 10px 5px #d9d9d9;
  overflow: hidden;
  transition: .2s;
}
.chat-box.show{
  bottom: 0;
}
.chat-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 20px 0px;
  height: 17%;
  /* background-image: linear-gradient(to bottom, #01b6d7, #07d0a4); */
  background-color: var(--color-primary);
  color: #fff;
}
.chat-header p:first-child{
  font: 16px var(--font-primary);
  margin-bottom: 4px;
}
.chat-header p:nth-child(2){
  font-size: 12px;
  opacity: .8;
}
.close-chat img{
  width: 18px;
  cursor: pointer;
}
.chat-field {
  display: flex;
  flex-direction: column;
  height: 83%;
}
.chat-body{
  padding: 24px 20px; 
  /* height:58%; */
  flex: 1;
  overflow-y: auto;
}
.chat-body::-webkit-scrollbar,
.chat-area::-webkit-scrollbar,
.suggested_text_list::-webkit-scrollbar{
  display: none;
}

/*Chat messages */
.chat-area{
  overflow-y: auto;
}
.msg-textbox:not(:last-child){
  margin-bottom: 16px;
}
.sent-msg-textbox{
  text-align: right;
}
.msg{
  display: inline-block;
  max-width: 80%;
  min-width: 30%;
  border-radius: 12px;
  padding: 12px;
  text-align: left;
  position: relative;
}
.sent-msg{
  background-color: var(--color-primary);
  border:1px solid var(--color-primary);
  color: #fff;
  margin-left: auto;
}
.sent-msg::before {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border-bottom-right-radius: 10%;
  background-color: var(--color-primary);
  transform: rotate(13deg);
}
.sent-msg::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -2px;
  width: 9px;
  height: 17px;
  border-radius: 50%;
  background-color: #f9fafc;
  z-index: 1;
  transform: rotate(356deg);
}
.received-msg{
  background-color: #fff;
  border:2px solid #f5f5f5;
}
.received-msg::before {
  content: "";
  position: absolute;
  left: -8px;
  bottom: -3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border-bottom-right-radius: 10%;
  background-color: #fff;
  border: 2px solid #f5f5f5;
  border-top: none;
  border-left: none;
  border-bottom: none;
  transform: rotate(80deg);
}
.received-msg::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: -3px;
  width: 9px;
  height: 17px;
  border-radius: 50%;
  background-color: #f9fafc;
  z-index: 1;
  border-right: 2px solid #f5f5f5;
  transform: rotate(24deg);
}
.chat-time{
  font-size: 11px;
  text-align: right;
  margin-top: 10px;
}
.received-msg .chat-time{
  color: #989898;
}


.chat-footer{
  /* height:25%; */
}
.suggested_text_list {
  display: flex;
  align-items: center;
  gap:8px;
  max-width: 100%;
  overflow-x: auto;
  margin: 12px 0;
  padding: 0 20px;
}
.suggested_text_list li{
  background-color: #f3f3f3;
  border:2px solid #efefef;
  padding: 5px 12px;
  border-radius: 8px;
  white-space: nowrap;
}
.messaging-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 12px;
}
.messaging-container .message-box{
  width: 80%;
  border: 1px solid #eaeaea;
  border-radius: 12px;
}
.messaging-container .message-box input{
  height: 48px;
  width: 87%;
  padding: 12px;
}
.attach-tool--camera {
  cursor: pointer;
}
.attach-tool--camera img {
  width: 20px;
}
.send-msg-btn{
  padding: 12px 18px;
  border-radius: 12px;
  background-color: var(--secondary-color);
  border: none;
}
.send-msg-btn img{
  width: 24px;
}

.message__attachments {
  padding: 10px 0 0; 
  display: flex;
  gap: 10px;
  overflow-x: auto;
  justify-content: flex-end;
}
.attachments_img-box {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
}
.attachments_img-box:hover img {
  filter: brightness(.7);
}
.attachments_img-box img {
  object-fit: cover;
}
.remove-attachment {
  font-size: 16px;
  display: inline-block;
  line-height: 1;
  background: #626262;
  color: white;
  padding: 1px 4px;
  border-radius: 30px;
  position: absolute;
  right: -5px;
  top: -5px;
  border: 1px solid #fff;
  visibility: hidden;
}
.attachments_img-box:hover .remove-attachment {
  visibility: visible;
}

/*SWAL DYNAMIC COLORS*/

.swal-text {
  text-align: center;
}

/*SWAL BUTTON*/
.swal-button,
.swal-button:not([disabled]):hover {
  background-color: var(--color-primary);
}

/* Info icon */
.swal-icon--warning {
  border-color: var(--color-primary);
}

.swal-icon--warning__body,
.swal-icon--warning__dot {
  background-color: var(--color-primary);
}
@keyframes pulseWarning {
  0% {
    border-color: #eee;
  }
  100% {
    border-color: var(--color-primary);
  }
}

@media screen and (max-width: 475px) {
  .chat-box {
    right: 0;
  }
}

