/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

.light-style .menu .app-brand.demo {
  height: 64px;
}

.dark-style .menu .app-brand.demo {
  height: 64px;
}

.app-brand-logo.demo {
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -ms-flexbox;
  display: flex;
  width: 34px;
  height: 24px;
}

.app-brand-logo.demo svg {
  width: 35px;
  height: 24px;
}

.app-brand-text.demo {
  font-size: 1.375rem;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  padding-top: 78px !important;
}
/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks > * {
  display: block !important;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir='rtl'] .rtl-only {
  display: block !important;
}

/* Dropdown buttons going out of small screens */
@media (max-width: 576px) {
  #dropdown-variation-demo .btn-group .text-truncate {
    width: 254px;
    position: relative;
  }
  #dropdown-variation-demo .btn-group .text-truncate::after {
    position: absolute;
    top: 45%;
    right: 0.65rem;
  }
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1rem;
}
.layout-demo-placeholder img {
  width: 900px;
}
.layout-demo-info {
  text-align: center;
  margin-top: 1rem;
}

.order-now-link {
  width: 143px;
  border: 1px solid #45a526;
  border-radius: 23px;
}
.order-now-link:hover {
  background-color: #45a526;
}
.order-now-link a:hover {
  color: #fff !important;
}

#booking-map {
  height: 68vh !important;
}

.top-global-menus .nav-item a i{
  border: 1px solid;
  border-radius: 12px;
  padding: 2px;
}
.top-global-menus .nav-item.active a i{
  color: #7367f0 !important;
}

.visible-hidden {
  visibility: hidden;
}

.booking-list-navigation button span.badge {
  margin: 0 10px;
}

.location-type .card-icon span {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-type-select-wrapper {
  position: absolute;
  width: 200px;
  margin: 11px auto;
  left: 0;
  right: 0;
}

#loader-list {
    width: 100%;
    position: relative;
}

.animated-background.animated-background-facebook {
    height: 200px;
}
.animated-background.animated-background-small {
    height: 100px;
}
.animated-background.animated-background-tiny {
    height: 50px;
}
@-webkit-keyframes placeHolderShimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

@keyframes placeHolderShimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 200px 0;
    }
}

#loader-list .timeline-item {
    background: #fff;
    border: 1px solid #434968;
    border-radius: 0;
    padding: 0;
    width: 100%;
    margin-bottom: 5px;
}

/*#loader-list .timeline-item .animated-background {*/
/*    -webkit-animation-duration: 2s;*/
/*    animation-duration: 2s;*/
/*    -webkit-animation-fill-mode: forwards;*/
/*    animation-fill-mode: forwards;*/
/*    -webkit-animation-iteration-count: infinite;*/
/*    animation-iteration-count: infinite;*/
/*    -webkit-animation-name: placeHolderShimmer;*/
/*    animation-name: placeHolderShimmer;*/
/*    -webkit-animation-timing-function: linear;*/
/*    animation-timing-function: linear;*/
/*    background: #2f3249;*/
/*    background: -webkit-gradient(*/
/*        linear,*/
/*        left top,*/
/*        right top,*/
/*        color-stop(8%, #2f3249),*/
/*        color-stop(18%, #505577),*/
/*        color-stop(33%, #2f3249)*/
/*    );*/
/*    background: -webkit-linear-gradient(*/
/*        left,*/
/*        #2f3249 8%,*/
/*        #505577 18%,*/
/*        #2f3249 33%*/
/*    );*/
/*    !*background: linear-gradient(to right, #2f3249 8%, #505577 18%, #2f3249 33%);*!*/
/*    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);*/
/*    -webkit-background-size: 800px 104px;*/
/*    background-size: 800px 104px;*/
/*    width: 100%;*/
/*    position: relative;*/
/*}*/


#loader-list .timeline-item .animated-background .content-mask {
    width: 100%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#loader-list .timeline-item .animated-background .content-mask .mask-1 {
    border: 10px solid #fff;
    width: 100%;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#loader-list .timeline-item .animated-background .content-mask .mask-3 {
    height: 150px;
    width: 100%;
    border: 10px solid #fff;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#loader-list .timeline-item .animated-background .content-mask .mask-111 {
    height: 150px;
    width: 100%;
    float: left;
    background: #fff;
}
#loader-list .timeline-item .animated-background .content-mask .mask-222 {
    height: 50px;
    width: 100%;
    float: left;
    background: #fff;
}

#loader-list .timeline-item .animated-background .content-mask .mask-2 {
    height: 50px;
    width: 100%;
    border: 8px solid #fff;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.fleet-list img {
    height: 6rem;
    float: right;
}

.rate-zone-list {
    position: relative;
}
.rate-zone-list .rate-zone-image {
    position: absolute;
    width: 100%;
    opacity: 0.8;
}

.tg {
    border-collapse: collapse;
    border-spacing: 0;
    border-color: #ccc;
    margin: 5px;
}
.dark-style .tg {
    border-color: #3b3a3a;
}
.tg tr {
    border-bottom: 1px solid #ddd;
}
.dark-style .tg tr {
    border-bottom: 1px solid #3b3a3a;
}

.tg td {
    font-family: Arial, sans-serif;
    font-size: 14px;
    padding: 10px 5px;
    border-style: solid;
    border-width: 0px;
    overflow: hidden;
    word-break: normal;
    border-color: #ccc;
    color: #333;
    background-color: #fff;
}

.dark-style .tg td {
    border-color: #3b3a3a;
    color: #fff;
    background-color: #2e2e2e;
}

.tg th {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    padding: 10px 5px;
    border-style: solid;
    border-width: 0px;
    overflow: hidden;
    word-break: normal;
    border-color: #ccc;
    color: #333;
}

.dark-style .tg th {
    border-color: #3b3a3a;
    color: #fff;
}


.line {
    float: left;
    width: 19vh;
    height: 30px;
    margin-top: 12px;
    border-radius: 7px;
    background-image: linear-gradient(90deg, #f4f4f4 0px, rgba(229, 229, 229, 0.8) 40px, #f4f4f4 80px);
    background-size: 600px;
    animation: shine-lines 2s infinite ease-out;
}

.dark-style .line {
    background-image: linear-gradient(90deg, #3f4044 0px, rgba(35, 33, 33, 0.8) 40px, #3f4044 80px);
}
@keyframes shine-lines {
    0% {
        background-position: -100px;
    }
    40%, 100% {
        background-position: 140px;
    }
}

.hourly-rate-table-header-2 th{
    font-size: 11px;
    text-transform: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.hourly-rate-table-body tr td {
    padding: 0.5rem 5px !important;
}
.hourly-rate-table-body tr td input {
    width: 100%;
    display: block;
    font-size: 14px;
    padding: 5px 5px;
    font-weight: 400;
    line-height: 1.5;
    color: #6f6b7d;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border: var(--bs-border-width) solid #dbdade;
    border-radius: var(--bs-border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.border-right {
    border-right: 1px solid #000 !important;
}

.pa-right {
    position: absolute !important;
    z-index: 6;
    right: 3%;
    margin: 5px 10px;
}

.iti {
    width: 100%;
}
.form-group {
    padding: 10px 5px;
}

.card-display-item h5 {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    padding: 0 !important;
    margin: 0 !important;
    margin-bottom: 20px !important;
    font-size: 17px !important;
    color: #000 !important;
}

.card-display-item {
    background: #ececec;
    margin-bottom: 10px;
}

.card-display-item span strong {
    color: #000;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.card-display-item .form-row .col-sm-6:nth-child(2) {
    text-align: right;
}

.card-display-item span {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    color: #808080;
    margin-top: 5px;
}

.card-display-item h5 {
    margin-top: 8px;
}

.card-display-item article img {
    width: 50px;
}

.select-card .modal-dialog {
    max-width: 540px !important;
}

.select-card-form .form-group {
    display: flex;
    align-items: center;
}

.select-card-form label {
    font-size: 16px;
}

.select-card .card-display-item {
    margin-bottom: 12px;
}
.info-card {
    /*background: #fff;*/
    padding: 15px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 25px 0 rgba(18, 41, 60, 0.2);
    color: #3c3c3c;
    font-weight: 600;
}

.info-card h3 {
    font-weight: 700;
    color: #313131;
}
.info-card a.nav-link.active,
.info-card a.nav-link.active h3 {
    color: #3c3c3c;
}
.info-card a.nav-link {
    color: #313131;
}
.info-card a.nav-link h3 {
    color: #313131;
}
.info-card h6 {
    /*color: #fff;*/
    font-weight: 600;
}
/*.info-card h6 span {*/
/*    color: #525252;*/
/*}*/

.editable-text:after{
    top: 0;
    content: "";
    position: absolute;
    z-index: -1;
}

.editable-text:after,
.editable-text:focus:after,
.editable-text:hover:after{
    width: 2px;
    height: 100%;
}

.editable-text:after {
    left: 50%;
}

.editable-text:hover:after {
    left: 0;
}

span.editable-text {
    display: inline;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color 1s ease;
}
span.editable-text {
    -webkit-transition: color 1s ease;
    -moz-transition: color 1s ease;
    -ms-transition: color 1s ease;
    -o-transition: color 1s ease;
    cursor: pointer;
}
span.editable-text {
    position: relative;
    z-index: 2;
    text-decoration: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    padding: 0 5px;
    overflow: hidden;
}

span.editable-text:focus,
span.editable-text:hover {
    outline: 0;
    color: #1b98e0 !important;
    -webkit-transition: color 1s ease;
    -moz-transition: color 1s ease;
    -ms-transition: color 1s ease;
    -o-transition: color 1s ease;
    transition: color 1s ease;
    cursor: pointer;
}

span.editable-text:after,
span.editable-text:before {
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

span.editable-text:focus:after,
span.editable-text:focus:before,
span.editable-text:hover:after,
span.editable-text:hover:before {
    outline: 0;
    background-color: #1b98e0;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
}

.booking-edit-loader {
    position: absolute;
    right: 15px;
    top: 45px;
}
.booking-edit-form {
    position: relative;
    border-radius: .375rem;
    border: 1px dashed #4a154b;
    padding: .5rem;
    margin-top: .5rem;
    margin-bottom: 1rem;
}

#card-element{
    border: 1px solid #ccc;
    height: 40px;
    padding: 12px 8px;
}
.StripeElement--invalid{
    border: 1px solid red !important;
}
.list-group-item-action.active, .list-group-item-action.active:hover, .list-group-item-action.active:focus {
    background-color: #5a5877d9;
}

.w-150-px .select2-container {
    width: 150px !important;
    z-index: 9999;
}

.select2-selection__arrow i.fa-spinner {
    margin-top: 10px;
}

#bookings-datatable .select2-container {
    z-index: inherit !important;
}

#booking-detail-map {
    height: 250px;
}

.booking-modal-action {
    width: auto;
    padding: 0 13px;
}

.link-primary {
    margin-left: 20px;
    font-size: 14px;
}

#date-range {
    position: absolute;
    left: 370px;
    display: inline-block;
    width: 170px;
    z-index: 999;
    top: 10px;
    text-align: right;
}

#passenger-select {
    position: absolute;
    left: 550px;
    display: inline-block;
    width: inherit;
    z-index: 999;
    top: 10px;
}

#driver-select {
    position: absolute;
    left: 710px;
    display: inline-block;
    width: inherit;
    z-index: 999;
    top: 10px;
}

span.editable-text {
    position: relative;
    overflow: inherit !important;
}

/* .booking-edit-form {
    position: absolute !important;
    background: #fff;
    z-index: 99;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.22);
    top: 100%;
} */
/*
        .booking-edit-form:before {
            content: '';
            position: absolute;
            left: 10px;
            top: -10px;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 10px solid black;
        } */

span.editable-text::before {
    position: absolute;
    content: '\ea98';
    top: -3px;
    font-family: "tabler-icons" !important;
    left: calc(100% + -2px);
    z-index: 9;
    color: #4138c3;
    background-color: transparent !important;
    font-size: 13px;
}

.table-responsive {
    position: relative;
}

.w-190 {
    width: 190px !important;
}
.w-px-155 {
    width: 155px !important;
}
.w-px-55 {
    width: 55px !important;
}
.w-px-70 {
    width: 70px !important;
}
.w-px-80 {
    width: 80px !important;
}
.w-px-130 {
    width: 130px !important;
}
#bookings-datatable.table > :not(caption) > * > * {
    padding: 0.75rem .25rem;
}
#bookings-datatable.table th {
    text-wrap: nowrap;
}
#bookings-datatable.table .btn-group button {
    margin-right: 5px;
}
.table-input-wrapper {
    position: relative;
}
.table-input-group-wrapper {
    position: relative;
}
.table-input-wrapper .form-control {
    position: absolute;
    top: 0;
}
.table-input-group-wrapper .input-group{
    position: absolute;
    top: 0;
}
.table-input-group-wrapper .form-control.loading {
    background: transparent;
}
.input-loader-div {
    width: 100%;
    height: 38px;
    opacity: 0.8;
    border: 2px solid slategrey;
    border-radius: 7px;
    background: linear-gradient(
            to right,
            #fff 20%,
            #cbe9ff 40%,
            #94c9e9 55%,
            #cbe9ff 70%,
            #fff 100%
    );
    background-size: 200% auto;
    animation: load 2s linear infinite;
}

@keyframes load {
    to {
        background-position: -200% center;
    }
}

td.dataTables_empty {
    text-align: center !important;
}

.rate-table tr th {
    color: #fff !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.stripe-card-detail article span {
    display: inline-block;
    width: 90%;
}
.stripe-card-detail article span strong {
    float: right;
}
.card-display-item.info-card.active {
    border-bottom: 5px solid #c74559;
}

.disabled-div {
    pointer-events: none !important;
    opacity: 0.6 !important;
    position: relative;
}
.disabled-div .overlap-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 99;
    text-align: center;
    background: #eeeeee61;
    font-size: 30px;
    color: #ff0000;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.input-group select.small-select {
    border: var(--bs-border-width) solid #dbdade;
}
