/* =========== Google Fonts ============ */
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

/* =============== Globals ============== */
* {
  font-family: "Urbanist", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
 
  --white: #fff;
  --gray: #F5F5F5;
  --black1: #222;
  --black2: #999;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #F5F5F5;
}

.dashbord-area .container {
    position: relative;
    width: 100%;
    max-width: 1600px;
    padding: 0;
}

/* =============== Navigation ================ */
.dashbord-area {
    padding: 0px 8px;
    height: 100vh;
    box-sizing: border-box;
}

.navigation {
    position: fixed;
    width: 250px;
    height: 98%;
    background: rgb(129,59,240);
    background: linear-gradient(180deg, rgba(129,59,240,1) 0%, rgba(53,36,161,1) 100%);
    border-left: 10px solid var(--blue);
    transition: 0.5s;
    overflow: hidden;
    border-radius: 24px;
    top: 1%;
}
.navigation.active {
  width: 80px;
}
.sidebar-menu {
    padding: 0 16px;
}
.sidebar .list-group-item.active {
    z-index: 2;
    color: #fff;
    border-bottom: none!important;
    border-top: none;
    border-left: none;
    background: rgb(209,111,165);
    background: linear-gradient(57deg, rgba(209,111,165,1) 0%, rgba(255,209,137,1) 100%);
    box-shadow: inset 0px 4px 10px rgb(0 0 0 / 12%);
    border-radius: 30px;
}
.sidebar .list-group-item.active:after{
  content: "";
}
.sidebar .list-group-item {
    display: flex;
    padding: 9px 18px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    border-right: none;
    position: relative;
    border-bottom: none;
    line-height: 30px;
    border: none;
    margin-top: 10px;
}
.sidebar .list-group-item {
    color: #ffffff;
    background-color: transparent;
    border: none;
}
.sidebar .dropdown-menu-are{position: relative;}
.sidebar .dropdown-menu-are .downarrow {
    right: 0px;
    position: absolute;
    z-index: 9;
    width: 34px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.collapsed.bi-chevron-down:before{
     transform: rotate(0deg);
     transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -khtml-transition: all ease-in-out 0.5s;
}
.bi-chevron-down::before {
    transform: rotate(180deg);
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
    -ms-transition: all ease-in-out 0.5s;
    -khtml-transition: all ease-in-out 0.5s;
}
.sidebar .submenu .list-group-item {
    font-size: 14px;
    padding-left: 50px;
    color: #000;
    box-shadow: none;
    position: relative;
    border-radius: 0;
    padding-top: 6px;
    padding-bottom: 6px;
}
.sidebar .submenu .list-group-item:after {
    content: "\f101";
    position: absolute;
    left: 34px;
    font-size: 10px;
    font-family: "FontAwesome";
    top: 6px;
}
.sidebar .submenu .list-group-item.active{
    color: #127165;
    background-color: #fff;
    border-color: rgb(43 127 117 / 10%);
    border-bottom: 1px solid rgb(43 127 117 / 10%)!important;
}
.sidebar .list-group-item span.icon {
    min-width: 40px;
    max-width: 40px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
}
.sidebar .list-group-item span.icon img{
  width: 24px;
}
.sidebar .list-group-item.active span.icon{}

/*.navigation ul {
    position: absolute;
    top: 0;
    left: 15px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.navigation ul li {
  position: relative;
  width: 100%;
  list-style: none;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.navigation ul li:hover,
.navigation ul li.hovered {
  background-color: var(--white);
}

.navigation ul li:nth-child(1) {
  margin-bottom: 40px;
  pointer-events: none;
}

.navigation ul li a {
  position: relative;
  display: block;
  width: 100%;
  display: flex;
  text-decoration: none;
  color: var(--white);
}
.navigation ul li:hover a,
.navigation ul li.hovered a {
  color: var(--blue);
}

.navigation ul li a .icon {
  position: relative;
  display: block;
  min-width: 60px;
  height: 60px;
  line-height: 75px;
  text-align: center;
}
.navigation ul li a .icon ion-icon {
  font-size: 1.75rem;
}

.navigation ul li a .title {
  position: relative;
  display: block;
  padding: 0 10px;
  height: 60px;
  line-height: 60px;
  text-align: start;
  white-space: nowrap;
}


.navigation ul li:hover a::before,
.navigation ul li.hovered a::before {
  content: "";
  position: absolute;
  right: 0;
  top: -50px;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 35px 35px 0 10px var(--white);
  pointer-events: none;
}
.navigation ul li:hover a::after,
.navigation ul li.hovered a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 50px;
  height: 50px;
  background-color: transparent;
  border-radius: 50%;
  box-shadow: 35px -35px 0 10px var(--white);
  pointer-events: none;
}

.navigation-head .icon{}
.navigation-head .icon img{width: 100%;}*/

.datatables thead {
    background: rgb(147,85,240);
    background: linear-gradient(280deg, rgba(147,85,240,1) 0%, rgba(233,125,184,1) 100%);
    color: #fff;
    box-shadow: inset 0px 4px 22px rgb(0 0 0 / 10%), 0px 2px 10px rgb(106 92 186 / 40%);
}
table.dataTable {
    padding-left: 6px;
    padding-right: 6px;
}
.datatables.table>:not(caption)>*>* {
    padding: 6px 4px;
    font-size: 14px;
    font-weight: 500;
}
table.datatables.tbody.td,
table.datatables.tbody.th {
  height: 40px !important;
  border: hidden !important;
}
table.dataTable.table-striped>tbody>tr.odd>* {
    box-shadow: none;
}
table.dataTable.table-striped>tbody>tr a{
  font-weight: 600;
  text-decoration: none;
}
.table>:not(caption)>*>* {
    border-bottom-width: 1px;
}

/* top-left border-radius */
table thead tr:first-child th:first-child {
  border-top-left-radius: 8px;
}

/* top-right border-radius */
table thead tr:first-child th:last-child {
  border-top-right-radius: 8px;
}

/* bottom-left border-radius */
table thead tr:last-child th:first-child {
  border-bottom-left-radius: 8px;
}

/* bottom-right border-radius */
table thead tr:last-child th:last-child {
  border-bottom-right-radius: 8px;
}

/* ===================== Main ===================== */
.main {
    position: absolute;
    width: calc(100% - 250px);
    left: 250px;
    min-height: 100vh;
    background: var(--gray);
    transition: 0.5s;
    box-sizing: border-box;
    padding: 15px 30px;
}
.main.active {
  width: calc(100% - 80px);
  left: 80px;
}

.topbar {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid rgb(0 0 0 / 8%);
    padding-bottom: 15px;
}
.topbar h1 {
    font-size: 24px;
    color: #000000;
    font-weight: 600;
    margin: 0;
}
.topbar h1 span{margin-left: 5px}

.topbar .admin {
    background-color: #fff;
    padding: 5px 5px;
    border-radius: 30px;
    box-shadow: 0px 2px 6px rgb(0 0 0 / 13%);
    display: flex;
    align-items: center;
}
.topbar .admin span {
    display: inline-block;
    margin-right: 6px;
    max-width: 40px;
}
.topbar .admin span img{
  width: 100%;
}
.topbar .admin h5 {
    margin: 0;
    font-size: 15px;
    padding-right: 14px;
}
.topbar .notification {
    min-width: 50px;
    max-width: 50px;
    height: 50px;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: #fff;
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-right: 10px;
}
.topbar .serchbox {
    min-width: 50px;
    max-width: 50px;
    height: 50px;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: #fff;
    justify-content: center;
    display: flex;
    align-items: center;
    font-size: 20px;
    margin-right: 10px;
}

.toggle {
    position: relative;
    width: 54px;
    height: 50px;
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 1.8rem;
    cursor: pointer;
}

.user {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}

.user img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======================= Cards ====================== */


/* ================== Order Details List ============== */


.inbox {
    box-shadow: 0px 4px 18px rgb(0 0 0 / 5%), inset 0px 4px 20px rgb(0 0 0 / 10%);
    width: 100%;
    height: auto;
    border-radius: 20px;
    background-color: #fff;
    border: 4px solid rgb(255 255 255 / 43%);
    margin-top: 24px;
    box-sizing: border-box;
    padding: 24px;
}
.inbox h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-left: 5px;
}

.details {
  position: relative;
  width: 100%;
}

.details .recentOrders {
  position: relative;
  display: grid;
  min-height: 500px;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
}

.details .heading-body {
    padding: 24px 0 0px;
}
.details .heading-body h2 {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
}

.myprofit {
    max-width: 94%;
    margin-left: auto;
}
.myenquiries .card{
  border: none;
}
.card .percent-text {
    text-align: center;
    margin: 26px 0;
}
.card .percent-text h5 {
    color: #4F4F4F;
    font-size: 16px;
    line-height: 24px;
}
.card .percent-text h5 strong{
  display: block;
  font-size: 24px;
  color: #000000;
}
.card .percent {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 34px;
}
.card .percent .outerbox {
    width: 190px;
    height: 190px;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: #F8F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card .percent .outerbox .inner {
    width: 89%;
    height: 89%;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: inset 0px 0px 22px rgb(106 92 186 / 13%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.card .percent .outerbox .inner .parsen {
    width: 80%;
    height: 80%;
    box-sizing: border-box;
    border-radius: 50%;
    background: linear-gradient(136deg, #fff 0%, #F3F4F8 100%);
    display: flex;
    font-size: 30px;
    color: #6A5CBA;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 8px 19px rgb(0 0 0 / 11%);
}
.card svg {
  position: absolute;
  width: 210px;
  height: 210px;
  transform: rotate(-90deg);
}

.card svg circle {
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 12;
  stroke-linecap: round;
  z-index: 1;
  animation: anim 2s linear forwards;
}

.card svg circle:last-of-type {
  stroke-dasharray: 615px;
  stroke-dashoffset:615px;
/*  stroke-dashoffset: calc(615px - (615px * var(--percent)) / 100);*/
/*  stroke: #3498db; */
}

@keyframes anim{
  100%{
    stroke-dashoffset:123;
  }
}

.btn-defults {
    background: rgb(155,66,232);
    background: linear-gradient(57deg, rgba(155,66,232,1) 0%, rgba(62,125,217,1) 74%, rgba(34,171,233,1) 100%);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 10px;
    display: block;
    border-radius: 10px;
    border: none;
    width: 100%;
    margin-top: 20px;
    color: #fff;
    text-align: center;
    box-shadow: inset 0px 4px 15px rgb(0 0 0 / 25%), 0px 4px 18px rgb(106 92 186 / 30%);
}
.text-primary  img {
    width: 100%;
    max-width: 200px;
}
.card .number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card .number h3 {
  font-weight: 200;
  font-size: 3.5rem;
}

.card .number h3 span {
  font-size: 2rem;
}

.card .title h2 {
  margin: 25px 0 0;
}

.customermodal .modal-dialog {
    max-width: 780px;
    box-shadow:0px 4px 15px #636669;
    
}
.customermodal .modal-content {
    border-radius: 15px;
    border: none;
}
.customermodal .modal-body {
    padding: 40px;
}
.customermodal .modal-body.signinrightbox input.form-control {
    background-image: linear-gradient(#ffffff, #ffffff, #ffffff), linear-gradient(to right, #9C27B0, #fbb7b7, #ff6161);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    height: 52px;
    font-size: 15px;
}
.customermodal .signinrightbox .form-label {
    font-size: 16px;
}
.customermodal .btn-defults {
    font-size: 16px;
    padding: 12px 24px;
    margin-top: 20px;
}
.customermodal .modal-header {
    padding: 20px 36px;
}
.customermodal .modal-header h5{
  color: #6A5CBA;
  font-size: 22px;
  font-weight: 600;
}
.createcustomer .signinrightbox{
  padding: 0 24px;
}
.inbox.createcustomer {
    max-width: 970px;
}
.createcustomer .signinrightbox input.form-control {
    border-radius: 8px;
    background-image: linear-gradient(#ffffff, #ffffff, #ffffff), linear-gradient(to right, #D270A7, #F5C378, #D270A7);
}
.createcustomer .signinrightbox select.form-control {
    padding: 0.9rem;
    border: double 1px transparent;
    border-radius: 8px;
    background-image: linear-gradient(#fff, #fff, #fff), linear-gradient(to right, #D270A7, #F5C378, #D270A7);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    height: 64px;
    font-size: 17px;
    font-weight: 500;
    box-shadow: none;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 5%);
    position: relative;
}
.createcustomer .signinrightbox .selectbox:after {
    content: "\f078";
    font-family: "FontAwesome";
    position: absolute;
    right: 27px;
    font-size: 16px;
    z-index: 2;
    color: #000;
    bottom: 20px;
    pointer-events: none;
}
.createcustomer .btn-defults {
    padding: 13px 40px;
    margin-top: 0;
    font-size: 18px;
}

/* ================== Login page ============== */

.min-h-screen {
    min-height: 100vh;
}
.w-full {
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    align-items: center;
    display: flex;
    padding: 60px 0px;
}
.w-full:after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/shape1.png);
  max-width: 638px;
  width: 100%;
  height: 80%;
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  z-index: -1;
}
.w-full:before{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../images/shape2.png);
  max-width: 470px;
  width: 100%;
  height: 60%;
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  z-index: -1;
}

.signinleftbox {
    background: rgb(244,196,119);
    background: linear-gradient(209deg, rgba(244,196,119,1) 0%, rgba(209,111,165,1) 100%);
    width: 100%;
    height: 600px;
    max-width: 540px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-sizing: border-box;
    padding: 34px;
}
.signinleftbox .logo{
  margin-bottom: 30px;
}
.signinleftbox h1 {
    font-size: 80px;
    font-weight: 900;
    line-height: 80px;
    color: #fff;
    text-shadow: 0px 4px 5px rgb(0 0 0 / 10%);
    margin-top: 110px;
}
.signinleftbox:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/shape3.png);
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
    background-repeat: no-repeat;
}
.w-85{
  max-width: 90%;
}
.signinrightbox {
    box-sizing: border-box;
    padding: 15px 70px;
}
.signinrightbox .headingtext{
  margin-bottom: 24px;
}
.signinrightbox .headingtext h4 {
    font-size: 54px;
    color: #6A5CBA;
    font-weight: 600;
    margin-bottom: 10px;
}
.signinrightbox .headingtext p {
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 0;
}

.signinrightbox .form-label{
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.signinrightbox input.form-control {
    padding: 0.9rem;
    border: double 1px transparent;
    border-radius: 8px;
    background-image: linear-gradient(#faf5ef, #fcf4ec, #fbf3eb), linear-gradient(to right, #383838, #383838, #383838);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    height: 64px;
    font-size: 17px;
    font-weight: 500;
    box-shadow: none;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 5%);
}
.signinrightbox label.form-check-label {
    color: #000;
    font-weight: 500;
    font-size: 17px;
}
.signinrightbox .form-check-input:checked {
  background-color: #D270A7;
  border-color: #D270A7;
  box-shadow: none;
}
.signinrightbox .form-check-input {
  border: var(--bs-border-width) solid #989ea4;
}
.signinrightbox input.form-control::-ms-input-placeholder {
  color:#383838;
}
.signinrightbox input.form-control::placeholder {
  color:#383838;
}
.signinrightbox input.form-control:focus{
  background-image: linear-gradient(#fff, #fff, #fff), 
                    linear-gradient(to right, #D270A7, #F5C378, #D270A7);
}
.signinrightbox .btn-link {
    font-size: 16px;
    color: #794AD1;
    font-weight: 600;
    text-decoration: none;
    padding: 0;
}
.signinrightbox .btn.btn-primary {
    border: none;
    width: 100%;
    background: rgb(155,66,232);
    background: linear-gradient(86deg, rgba(155,66,232,1) 7%, rgba(20,151,210,1) 60%, rgba(34,171,233,1) 100%);
    font-size: 20px;
    font-weight: 600;
    padding: 13px 15px;
    box-shadow: inset 0px 4px 15px rgb(0 0 0 / 15%), 0px 4px 18px rgb(106 92 186 / 30%);
}
.signinrightbox .btn.btn-primary:hover{
  background: linear-gradient(86deg, rgba(34,171,233,1) 7%, rgba(20,151,210,1) 60%, rgba(155,66,232,1) 100%);
}

.signinrightbox button.toggle-password {
    background-color: transparent;
    border: none;
    position: absolute;
    right: 24px;
    top: 57px;
    color: #8E8D8D;
    font-size: 16px;
    z-index: 1;
}
.forgetbgarea {
    max-width: 580px;
    margin-left: auto;
    margin-right: -20px;
}
.forgetbgarea img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*-- css 15.05.2024 start --*/
.airport-search__results {
    position: absolute;
    width: 100%;
    z-index: 99;
    box-sizing: border-box;
    overflow-y:auto;
    overflow-x: hidden;
    height: 250px;
}
.airport-search__results::-webkit-scrollbar-track
{
	background-color: #F5F5F5;
}

.airport-search__results::-webkit-scrollbar
{
	width: 5px;
	background-color: #F5F5F5;
}

.airport-search__results::-webkit-scrollbar-thumb
{
	background-color: #803bef;
}
.airport-search__result {
    padding: 9px 20px;
    background: rgb(55, 37, 163);
    cursor: pointer;
}
.airport-search__result:nth-of-type(2n) {
    background: rgb(209, 111, 165);
    background: linear-gradient(57deg, rgba(209, 111, 165, 1) 0%, rgba(255, 209, 137, 1) 100%);
}
.airport-search__result .airport__id {
	display: flex;
	align-items: flex-start;
	top: 0px;
	position: relative;
}
.airport-search__result .airport__id .airport__iata {
    background-color: #fff;
    min-width: 45px;
    height: 32px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    border-radius: 5px;
    margin-right: 14px;
    font-size: 13px;
    color: #3725a3;
    letter-spacing: normal;
    text-transform: uppercase;
}
.airport-search__result .airport__id h3.airport__name {
    font-size: 20px;
    color: #fff;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 5px;
}
.airport-search__result .airport__location {
    padding-left: 62px;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
}
/*-- css 15.05.2024 stop --*/

/* // 30.05.2024 // */

.customeraddrea .col-form-label {
  font-weight: 600;
  font-size: 18px;
  min-width: 160px;
}
.customeraddrea .customerrow {
  margin-bottom: 5px;
  border-bottom: 1px solid #e9e9e9;
  padding: 8px 0;
}
.customeraddrea .customerrow .form-control {
  min-width: 260px;
  height: 34px;
}
.customeraddrea  .addboxrow {
  margin-bottom: 5px;
  min-width: 220px;
  max-width: 220px;
  gap: 5px;
}
.customeraddrea  .addboxrow .addbutton {
  box-sizing: border-box;
  padding: 6px 6px;
  border: none;
  background: rgb(147, 85, 240);
  background: linear-gradient(280deg, rgba(147, 85, 240, 1) 0%, rgba(233, 125, 184, 1) 100%);
  color: #fff;
  box-shadow: inset 0px 4px 22px rgb(0 0 0 / 10%), 0px 2px 10px rgb(106 92 186 / 40%);
  border-radius: 6px;
  outline: none;
}
.customeraddrea .addboxrow .removebtn {
  box-sizing: border-box;
  padding: 5px 14px;
  border: none;
  background: rgb(147, 85, 240);
  background: linear-gradient(280deg, #E91E63 0%, #E91E63 100%);
  color: #fff;
  box-shadow: inset 0px 4px 22px rgb(0 0 0 / 10%), 0px 2px 10px rgb(106 92 186 / 40%);
  border-radius: 6px;
  outline: none;
}

.customeraddrea  table.dataTable thead>tr>th.sorting{
    white-space: nowrap;
}

.customeraddrea  table.dataTable.table-striped>tbody>tr.odd>* span {
    display: block;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    font-size: 16px;
    line-height: 20px;
}
.customeraddrea  table.dataTable.table-striped>tbody>tr.even>* span {
    display: block;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    font-size: 16px;
    line-height: 20px;
}

.customeraddrea  table.dataTable.table-striped a.btn.btn-danger {
    min-width: 24px;
    max-width: 24px;
    height: 24px;
    padding: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    position: absolute;
    right: 5px;
    font-size: 11px;
    background-color: #E91E63;
}

/*05062024*/
.pipeline-box .nav-tabs .nav-link {
  margin-bottom: -1px;
  background: 0 0;
  border: 1px solid #dddddd;
  background-color: #f8f9fa;
  margin: 0 10px;
  padding: 10px 50px;
  font-size: 20px;
  color: #000;
  font-weight: 700;
  box-shadow: 0px 0px 10px 0px #ddd;
  border-radius: 5px;
}

.pipeline-box .nav-tabs .nav-item.show .nav-link, .pipeline-box .nav-tabs .nav-link.active, .pipeline-box .nav-tabs .nav-link:hover{
  color: #ffffff;
  background-color: #6e35dc;
  border-color: #6e35dc #6e35dc #6e35dc;
}

.pipeline-box .nav-tabs {
  border-bottom: 0px solid #dee2e6;
}

.pipeline-area .signinrightbox {
  box-sizing: border-box;
  padding: 0px 15px;
}

.pipeline-area .signinrightbox input.form-control {
  padding: 0.9rem;
  border: double 1px transparent;
  border-radius: 8px;
  background-image: linear-gradient(#ffffff, #ffffff, #ffffff), linear-gradient(to right, #D270A7, #F5C378, #D270A7);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  height: 64px;
  font-size: 17px;
  font-weight: 500;
  box-shadow: none;
  box-shadow: 0px 4px 10px rgb(0 0 0 / 5%);
}

.pipeline-area .signinrightbox textarea.form-control {
  padding: 0.9rem;
  border: double 1px transparent;
  border-radius: 8px;
  background-image: linear-gradient(#ffffff, #ffffff, #ffffff), linear-gradient(to right, #D270A7, #F5C378, #D270A7);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  font-size: 17px;
  font-weight: 500;
  box-shadow: none;
  box-shadow: 0px 4px 10px rgb(0 0 0 / 5%);
}



/*26.06.2024*/

.passenger-area {
    border: 1px solid #f9c48d;
    box-sizing: border-box;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}
.passenger-area table thead {
    background-color: #f5f5f5;
}
.passenger-area table thead th {
    padding: 13px 15px;
    font-size: 16px;
}

.passenger-area table thead tr:last-child th:first-child {
    border-bottom-left-radius: 0px;
}
.passenger-area table thead tr:first-child th:first-child {
    border-top-left-radius: 0px;
}
.passenger-area table thead tr:last-child th:last-child {
    border-bottom-right-radius: 0px;
}
.passenger-area table thead tr:first-child th:last-child {
    border-top-right-radius: 0px;
}

.passenger-area .table>:not(:first-child) {
    border-top: 0px solid currentColor;
}
.passenger-area .table>:not(caption)>*>* {
    border-bottom-width: 0;
}
.passenger-area .success {
    background: rgb(209, 111, 165);
    background: linear-gradient(57deg, rgba(209, 111, 165, 1) 0%, rgba(255, 209, 137, 1) 100%);
    box-shadow: inset 0px 4px 10px rgb(0 0 0 / 12%);
    border: none;
    box-sizing: border-box;
    padding: 6px 8px;
    color: #000;
    font-weight: 600;
    margin-bottom: 8px;
    border-radius: 6px;
    font-size: 14px;
}
.passenger-area .badge-danger {
    background: rgb(209, 111, 165);
    background: linear-gradient(57deg, rgb(255 0 57) 0%, rgb(255 35 0) 100%);
    box-shadow: inset 0px 4px 10px rgb(0 0 0 / 12%);
    border: none;
    box-sizing: border-box;
    padding: 6px 8px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    border-radius: 6px;
    font-size: 14px;
}
.Passengertable p {
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.Passengertable p span {
    font-size: 14px;
    color: #c1c1c1;
}
.Passengertable input {
    box-sizing: border-box;
    padding: 2px 6px;
    width: 100%;
    font-size: 14px;
}
.passenger-area h2 {
    box-sizing: border-box;
    padding: 15px;
    font-weight: 600;
    font-size: 18px;
    background-color: #f9c48d;
}
.passenger-area .passenger-boby {
    box-sizing: border-box;
    padding: 13px 18px;
}
.passenger-area .flightbox {
    box-sizing: border-box;
    padding: 10px 15px;
}
.passangerdetailsbody .flightbox h5 {
    margin: 0;
    padding: 13px 15px;
    color: #ffffff;
    font-size: 18px;
    background: rgb(215 124 161);
}
.passenger-area.passangerdetailsbody input.input1 {
    width: 80px;
    border: none;
    font-size: 14px;
}
.passenger-area.passangerdetailsbody textarea {
    width: 90px;
    border: none;
    font-size: 14px;
    padding: 3px;
    resize: none;
    height: 200px;
}

/* ====================== Responsive Design ========================== */
@media (max-width: 991px) {
  .navigation {
    left: -300px;
  }
  .navigation.active {
    width: 300px;
    left: 0;
  }
  .main {
    width: 100%;
    left: 0;
  }
  .main.active {
    left: 300px;
  }
  .cardBox {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .details {
    grid-template-columns: 1fr;
  }
  .recentOrders {
    overflow-x: auto;
  }
  .status.inProgress {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .cardBox {
    grid-template-columns: repeat(1, 1fr);
  }
  .cardHeader h2 {
    font-size: 20px;
  }
  .user {
    min-width: 40px;
  }
  .navigation {
    width: 100%;
    left: -100%;
    z-index: 1000;
  }
  .navigation.active {
    width: 100%;
    left: 0;
  }
  .toggle {
    z-index: 10001;
  }
  .main.active .toggle {
    color: #fff;
    position: fixed;
    right: 0;
    left: initial;
  }
}

.summery-box .show {
  border-radius: 5px;
  background-color: #1c8500;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 7px;
  display: inline-block;
  margin-right: 5px;
}
.summery-box .table thead tr{
  border: none;
}
.summery-box .table thead th{
  border: none;
}
.tabarea .nav-link{
  background: rgb(129,59,240);
  background: linear-gradient(180deg, rgba(129,59,240,1) 0%, rgba(53,36,161,1) 100%);
}
.tabarea .nav-pills{
  width: 100%;
  max-width: 250px;
}
.tabarea .nav-pills .nav-link {
  border-radius: 30px;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  transition: 0.5s;
}
.tabarea .nav-pills .nav-link.active{
  background: rgb(209,111,165);
  background: linear-gradient(57deg, rgba(209,111,165,1) 0%, rgba(255,209,137,1) 100%);
}
.tabarea .form-group {
  width: 100%;
  max-width: 120px;
}
.tabarea .form-group label {
  font-size: 11px;
  color: #000000;
  font-weight: 600;
}
.tabarea .form-group .form-control{
  border-radius: 5px;
  border: 1px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-image: linear-gradient(#ffffff, #ffffff, #ffffff), linear-gradient(to right, #D270A7, #F5C378, #D270A7);
  font-size: 12px;
}
.tabarea .form-group .form-control:focus{
  box-shadow: none;
}
.scroll_area {
  overflow-x: auto;
  box-sizing: border-box;
}
.scroll_area ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  overflow: auto;
}
.scroll_area ul li {
 flex-shrink: 0;
  list-style: none;
  padding: 5px;
}

.atolareatotal {
    flex-direction: column;
    align-items: center;
}
.atolarea{margin-bottom: 10px;justify-content: space-between;}
.atolarea h6 {
    margin-right: 10px;
    width: 133px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}
.atolarea h6 span {
    color: #bd0101;
    font-size: 20px;
}
.atolarea .btn-defults {
    margin: 0px 5px 0px 5px;
    line-height: 20px;
    text-align: center;
    padding: 10px 10px;
    font-size: 14px;
    white-space: nowrap;
}
/*searchboxtop*/

.searchboxtop {
    box-sizing: border-box;
    background-color: #fff;
    padding: 5px;
    border-radius: 30px;
    margin-top: 8px;
    border: 2px solid#fff;
}
.searchboxtop .form-control {
    border-radius: 30px 0 0 30px;
}
.searchboxtop .btn-defults {
    margin: 0;
    border-radius: 0px 30px 30px 0;
}
.d-flex.btngrouptall.g-1 {
    gap: 2px;
}

.btngrouptall .btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    white-space: nowrap;
}
.eles {
    width: 100px;
    height: 38px;
    padding: 0;
    border: none;
    resize: auto;
    overflow: hidden;
}
.eles p{
    display: -webkit-box;
  -webkit-line-clamp: var(--line-clamp, 9999);
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  outline: none;
}
div.dataTables_wrapper div.dataTables_info {
    font-size: 12px;
}