/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

* {
    --transfer-ride-main: #046095;
    --transfer-ride-main-dark: #072131;
    --transfer-ride-main-dark-accent: #0b5179;
    --transfer-ride-main-hover: #0879ba;
    --transfer-ride-error: #ff6060;
    --transfer-ride-success: #b3d6b6;
    --trasnfer-ride-light-hover: #efefef;
}

.d-none {
    display: none;
}

.no-smooth-scroll{
    scroll-behavior: unset;
}

/* Target autofilled inputs in WebKit browsers (Chrome, Safari, Opera) */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    background-color: transparent !important;
    /* Or your desired background color */
    /* This line removes the default box shadow styling that often simulates the background color */
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
}

.flex {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.flex-1{
    flex:1;
}

.w-10 {
    width: 10%;
}

.w-20 {
    width: 20%;
}

.w-30 {
    width: 30%;
}

.w-40 {
    width: 40%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-70 {
    width: 70%;
}

.w-80 {
    width: 80%;
}

.w-90 {
    width: 90%;
}

.w-100 {
    width: 100%;
}

.grid {
    display: grid;
}

.grid-1-1 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-1-1-1 {
    grid-template-columns: repeat(3, 1fr);
}

.animate-height {
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: 250ms ease-in-out;
}

.animate-height.active {
    grid-template-rows: 1fr;
}

.animate-height>.animated-content {
    min-height: 0;
    transition: visibility 1s;
    visibility: hidden;
}

.animate-height.active>.animated-content {
    visibility: visible;
}

svg {
    height: 100%;
    width: 100%;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-h-align-center {
    align-items: center;
}

.flex-v-sb {
    justify-content: space-between;
}

.flex-v-align-center {
    justify-content: center;
}

.portal-login-wrap>div {
    height: 100%;
    min-height: 100vh;
}

.portal-login-desc {
    width: 40%;
    background: var(--transfer-ride-main);
}

.portal-login-content {
    width: 60%;
    padding-left: 40px;
}

.portal-login-data-wrap h1 {
    margin-bottom: 0px;
}

.tr-input {
    margin-bottom: 10px;
}

.portal-actions {
    margin-top: 10px;
}

.portal-actions .tr-button {
    overflow: hidden;
}

.portal-actions .tr-button:hover {
    color: #fff;
}

.tr-input input,
.tr-input select {
    border: 1px solid #d8d8d8 !important;
    outline: 0 !important;
    padding: 15px 15px;
    font-size: 1em;
}

.tr-input label {
    font-size: 1em;
    margin-bottom: 6px;
}

.tr-input .error {
    display: block;
    color: var(--transfer-ride-error);
}

.tr-input.radio-input input {
    height: 18px;
    width: 18px;
}

.tr-input.radio-input label {
    margin: 0;
    margin-left: 5px;
    vertical-align: top;
}

.tr-button {
    border: 1px solid #222;
    color: #222;
    font-weight: 500;
    transition: 250ms;
    position: relative;
    padding: 10px;
    border-radius: 15px;
    display: inline-block;
}

.tr-button.button {
    padding: 12px 8px;
    display: block;
    width: max-content;
    border-radius: 15px;
    cursor: pointer;
}

.tr-button .loading-animation {
    background: var(--transfer-ride-main);
}

.tr-button.loading {
    border-color: #a9bcbf;
}

.tr-button:hover {
    background: var(--transfer-ride-main);
    color: #222;
    border-color: #a9bcbf;
}

.tr-button.light{
    background: var(--transfer-ride-main);
    color: #fff;
    border: 0;
}

.tr-button.light:hover{
    background: var(--transfer-ride-main-hover);
    color: #fff;
}

.tr-password {
    position: relative;
}

.loading-animation {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 5px;
    display: block;
}

.loading-animation svg {
    transform-origin: center;
    animation: 500ms ease-in-out loading infinite;
    height: 100%;
    width: 100%;
}

.loading-animation svg g {
    fill: #fff;
}

.loading-animation.dark svg g {
    fill: var(--transfer-ride-main);
}

.input-action {
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 10px;
    height: 100%;
    transition: 250ms;
}

.portal-dashboard-header .menu-content {
    height: 60px;
    border-bottom: 1px solid;
    background: #fff;
    border-color: #E8E8E8;
    box-shadow: 0px 1px 10px 1px #E8E8E8;
    padding-left: 370px;
}

.portal-dashboard-header .logo-wrap a {
    line-height: 0;
    height: 100%;
    width: 100%;
    display: block;
}

.portal-dashboard-header .logo-wrap img {
    height: 100%;
    width: auto;
}

body.portal.dashboard {
    background: #F5F6FA;
}

.admin-bar .portal-dashboard-menu {
    top: 32px;
}

.portal-dashboard-menu {
    position: fixed;
    left: 0px;
    height: 100vh;
    width: 350px;
    top: 0px;
    z-index: 0;
    background: #fff;
    border-right: 1px solid;
    border-color: #E8E8E8;
    padding-top: 20px;
}

.portal-dashboard-menu .logo-wrap {
    text-align: center;
}

.portal-dashboard-menu .logo-wrap>a {
    width: 100%;
    display: block;
    height: 100%;
    line-height: 0;
    max-height: 80px;
}

.portal-dashboard-menu .logo-wrap>a img {
    height: 50px;
    width: auto;
}

.portal-links {
    padding: 20px 15px;
}

.portal-links ul {
    list-style: none;
    padding: 0;
}

.portal-links .menu-item{
    text-decoration: none !important;
}

.portal-links .menu-item-name {
    padding: 0px 8px;
}

.portal-links .menu-item-dropwdown-toggle {
    height: 32px;
    width: 32px;
    margin-left: auto;
    cursor: pointer;
}

.dropdown-menu-item-wrap .menu-item-dropwdown-toggle svg {
    transition: 250ms ease-in-out;
    transform: rotate(0deg);
}

.dropdown-menu-item-wrap.active .menu-item-dropwdown-toggle svg {
    transform: rotate(180deg);
}

.portal-links .menu-item .icon {
    height: 32px;
    width: 32px;
}

.portal-links .child.menu-item {
    display: block;
    padding: 10px 0px 8px 32px;
}

.portal-links>ul>li {
    margin-bottom: 20px;
}

.portal-dashboard-content {
    width: 100%;
    height: 100%;
    padding: 10px 10px 30px 360px;
}

.skeleton-portal {
    width: 100%;
    height: calc(100vh - 92px);
}

.portal-dashboard-content .title {
    padding: 10px 30px 20px 10px;
}

.portal-dashboard-content .title h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 500;
}

.portal-dashboard-content .title .button {
    padding: 15px 10px;
    background: #46aaba;
    border-radius: 15px;
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    transition: 500ms;
    text-decoration: none;
}

.portal-dashboard-content .title .button:hover {
    background: #49b3c4;
}

.portal-dashboard-content .title .button .icon {
    height: 100%;
    width: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.portal-dashboard-content .title .button g {
    fill: #fff;
}

.portal-dashboard-content .content {
    background: #fff;
    border-radius: 8px;
}

.portal-dashboard-content .content .single-title {
    flex: 1;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
}

/* Skeleton base style */
.skeleton-loading {
    background-color: #eee;
    position: relative;
    overflow: hidden;
}

.skeleton-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #00000000, rgba(255, 255, 255, 0.6), #ffffff12);
    animation: skeleton-load 1000ms infinite;
}

.single-stop-wrap.skeleton-loading {
    background: #e1e1e1 !important;
}

.single-car-selection.skeleton-loading {
    height: 63px !important;
}

.tr-card.skeleton-loading {
    height: 350px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.content-input .tr-input label {
    display: block;
}

.content-input {
    padding: 20px 10px;
    border-radius: 8px;
    background: #fff;
}

.content-input .grid {
    gap: 20px;
}

.gap-s {
    gap: 10px
}

.content-input .actions {
    margin-top: 20px;
}

.content-input .actions button {
    border-radius: 15px;
    color: #fff;
    font-weight: 500;
    overflow: hidden;
}

.content-input .tr-input input {
    background: #fff !important;
    border-radius: 5px !important;
}

.content-input .actions button .icon {
    height: 100%;
    width: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.content-input .actions button g {
    fill: #fff;
}

.single-data-group>.single-data {
    flex: 1;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    border-top: 1px solid #e4e4e4;
}

.floating-animation.success {
    background: #b3d6b6;
    color: black;
}

.floating-animation.error {
    background: #d29c9c;
    color: black;
}

.floating-animation.dissappear {
    opacity: 0;
}

.floating-animation p {
    margin: 0;
}

.floating-animation {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 20px;
    border-radius: 8px;
    opacity: 1;
    transition: 750ms;
}

.existing-image .image-wrap {
    height: 80px;
    width: 80px;
    border-radius: 8px;
    border: 1px solid #d8d8d8;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.existing-image .image-wrap #preview,
.existing-image .image-wrap #preview img {
    height: 100%;
    width: 100%;
}

.existing-image .image-wrap #preview img {
    object-fit: contain;
}

.existing-image .image-wrap:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background: #51b0bd80;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 750ms;
}

.existing-image .image-wrap:hover:before {
    visibility: visible;
    opacity: 1;
}

.image-action-icon {
    display: block;
    position: absolute;
    height: 32px;
    width: 32px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    transition: 750ms;
}

.existing-image .image-wrap:hover .image-action-icon {
    opacity: 1;
}

.gallery-input .add-images:hover {
    background: #efefef;
}

.gallery-input .add-images {
    width: 150px;
    position: relative;
    height: 150px;
    background: #f3f3f3;
    border-radius: 5px;
    cursor: pointer;
    transition: 250ms;
}

.gallery-input .flex {
    gap: 5px
}

.gallery-input .add-images .icon {
    width: 32px;
    height: 32px;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.existing-images .gallery-image {
    display: inline-block;
    width: 150px;
    height: 150px;
    opacity: 1;
    background: #f3f3f3;
    border-radius: 5px;
    cursor: move;
    position: relative;
    overflow: hidden !important;
}

.gallery-image .remove-gallery-image {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    z-index: 2;
    cursor: pointer;
}

.gallery-image .remove-gallery-image svg g path {
    fill: var(--transfer-ride-error);
}

.existing-images .gallery-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.existing-images .gallery-image.deleted {
    transition: 500ms all, 0s overflow;
    width: 0px;
    height: 0px;
    opacity: 0;
}

.gallery-sort-placeholder {
    border: 1px dashed #ccc;
    background: #f0f0f0;
    width: 150px;
    height: 150px;
    /*animation: animate-placeholder 150ms forwards;*/
}

.repeater-field-placeholder {
    border: 1px dashed #ccc;
    background: #f0f0f0;
    height: 80px;
}

.ui-sortable-helper {
    box-shadow: 0px 2px 15px 2px #dfdfdf;
}

.full-grid-width {
    grid-column: 1 / -1;
}

#map {
    height: 600px;
    width: 100%;
    border-radius: 10px;
    margin: 100px 0px;
}

.leaflet-container svg {
    height: inherit !important;
    width: inherit !important;
}

.tr-input-map-search .map-data {
    height: 350px;
    margin-top: 10px;
    border-radius: 8px;
}

.tr-input-map-search .address-input {
    position: relative;
}

.tr-input-map-search .address-input .loading-animation {
    width: max-content;
    right: 10px;
    left: unset;
    padding: 10px;
}

.header-permalink {
    font-size: 12px;
    line-height: 12px;
    margin-top: 10px;
    display: block;
}

.card {
    position: relative;
    min-height: 300px;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.card .card-content {
    height: 100%;
    width: 100%;
}

.card.desc-content .card-bg {
    background: #ACE17A;
}

.card .card-bg img:hover {
    filter: brightness(1.1);
}

.card .card-bg img {
    transition: 500ms;
}

.card.desc-content .card-main {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    color: #000;
}

.card-bg {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
}

.card .img-link {
    height: 100%;
    width: 100%;
    display: block;
}

.card .card-footer-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #00000057;
    padding: 15px;
    width: 100%;
}

.card .card-footer-content a {
    color: #fff;
    font-size: 24px;
}

.card-bg img {
    height: 100% !important;
    width: 100%;
    object-fit: cover;
}

.map-spec-location {
    height: 500px;
    width: 100%;
    border-radius: 8px;
}

.gallery>div {
    flex: 1;
    width: 100%;
}

.hidden {
    display: none;
}

a.hidden_gallery {
    line-height: 0 !important;
    display: none !important;
}

.gallery a:hover img {
    transition: 250ms;
    filter: brightness(1.05);
}

.gallery a {
    height: 100%;
    width: 100%;
    display: block;
    line-height: 0;
}

.gallery img {
    height: 100% !important;
    width: 100% !important;
    border-radius: 8px !important;
    object-fit: cover;
}

.pswp__button {
    background: unset !important;
    width: 50px !important;
    padding: 0px !important
}

.pswp__img {
    border-radius: 8px !important;
}

.single-repeater-field>div {
    flex: 1;
    max-width: 350px;
}

.advanced-pricing-options {
    background: #f5f6fa;
    padding: 8px;
    border-radius: 8px;
}

.repeater-fields {
    margin-top: 10px;
}

.single-repeater-field .icon.sort {
    width: 34px;
    height: 100%;
    display: block;
    margin-top: auto;
    cursor: move;
}

.single-repeater-field {
    margin-bottom: 10px;
}

.tr-container {
    max-width: 1280px;
    margin: auto;
}

#map-trip-data {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    z-index: 997;
}

.checkout-wrap>div {
    width: 100%;
}

.checkout-wrap>div.trip-details {
    width: 60%;
}

span.single-feature {
    padding: 3px 5px;
    color: var(--transfer-ride-main);
    border: 1px solid var(--transfer-ride-main);
    border-radius: 8px;
}

.single-car-selection {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #dde1e6;
    margin-top: 10px;
    transition: 250ms;
    cursor: pointer;
}

.single-car-selection:hover {
    background: var(--trasnfer-ride-light-hover);
    border-color: var(--transfer-ride-main);
}

.single-car-selection .single-car-image {
    max-width: 64px;
}

.single-car-selection .single-car-data {
    justify-content: space-between;
    width: 100%;
}

.single-car-selection .single-car-data .name {
    font-size: 18px;
    font-weight: 500;
    color: #222;
}

.single-car-selection.selected {
    border-color: var(--transfer-ride-main);
    border-width: 2px;
}

.single-car-selection .single-car-data .price {
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

.single-car-data .selected-car {
    font-size: 12px;
    background: var(--transfer-ride-main);
    border-radius: 15px;
    padding: 2px 8px;
    color: #fff;
    font-weight: 500;
    margin-left: 10px;
    position: relative;
    top: -2px;
    height: 100%;
}

.checkout-header {
    background: #fff;
    padding: 12px 8px;
    margin-bottom: 50px;
}

.checkout-header .logo-wrap {
    max-width: 100px;
}

.checkout-header .logo-wrap img {
    height: 53px;
    object-fit: contain;
}

.step-number {
    height: 24px;
    width: 24px;
    display: block;
    font-size: 12px;
    background: #f3f3f3;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    font-weight: 600;
}

.step-wrap {
    width: 100%;
    padding: 0px 40px;
}

.trip-details>div {
    margin-bottom: 10px;
}

.car-selection-wrap {
    padding: 24px 12px;
    background: #fff;
    border-radius: 8px;
}

.car-selection-wrap .ride-features {
    margin-bottom: 20px;
}

.trip-details-content {
    padding: 8px;
    background: #fff;
    border-radius: 8px;
}

.other-trip-details>div {
    margin-bottom: 10px;
}

.other-trip-details .icon {
    max-width: 32px;
    display: inline-block;
    height: 24px;
    vertical-align: text-bottom;
    margin-right: 5px;
}

.destinations>div {
    margin-bottom: 10px;
}

.destination-origin .name,
.destination-end .name,
.destination-stops .name {
    vertical-align: top;
}

.destination-origin .icon,
.destination-stops .icon,
.destination-end .icon{
    max-width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 5px;
}

.other-trip-details {
    border-top: 1px solid var(--trasnfer-ride-light-hover);
    padding-top: 10px;
}

.checkout-footer-wrap {
    position: fixed;
    bottom: 0px;
    width: 100%;
    border-radius: 8px;
    margin: auto;
    z-index: 998;
}

.checkout-footer-wrap .checkout-footer {
    width: 60%;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px 8px 0px 0px;
}

.checkout-footer-wrap .tr-button {
    padding: 10px;
    border-radius: 8px;
    border-color: var(--trasnfer-ride-light-hover);
    color: #fff;
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.checkout-footer-wrap .tr-button.next-step {
    background: var(--transfer-ride-main);
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    margin-left: auto;
}

.checkout-footer-wrap .tr-button.prev-step {
    background: var(--trasnfer-ride-light-hover);
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    color: #222;
}

.checkout-footer-prewrap {
    width: 100%;
    max-width: 1280px;
    margin: auto;
}

.checkout-footer .next-step .price {
    font-weight: bold;
    margin-left: 5px;
}

.single-stop-footer {
    position: absolute;
    width: 100%;
    bottom: 0px;
    background: linear-gradient(0deg, #000000, transparent);
    align-items: flex-end;
}

.single-stop-footer .step-data {
    margin-bottom: 10px;
}

.stop-data .single-stop-wrap {
    height: 350px;
    width: 100%;
    border-radius: 8px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.stop-data .single-stop-wrap .background-image {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    border-radius: 8px;
    height: 100%;
}

.stop-data .single-stop-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.single-stop-footer>div {
    width: 100%;
}

.checkout-wrap .stop-data .single-stop-wrap {
    margin-bottom: 10px;
}

.single-stop-footer .time-selection {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: var(--transfer-ride-main);
    border-radius: 100px;
    height: 30px;
    align-items: center;
}

.time-selection .add-time:hover,
.time-selection .sub-time:hover {
    background: var(--transfer-ride-main-hover);
}

.time-selection .add-time,
.time-selection .sub-time {
    cursor: pointer;
    text-align: center;
    width: 30px;
    height: 30px;
    padding: 4px;
    border-radius: 50%;
    transition: 250ms;
    background: var(--transfer-ride-main-dark-accent);
}

.time-selection .add-time svg path,
.time-selection .sub-time svg path {
    stroke: #fff;
    fill: #fff;
}

.time-selection .add-time svg,
.time-selection .sub-time svg {
    width: 16px;
    height: 100%;
}

.single-stop-footer>div.actions {
    width: 50%;
    padding: 8px;
}

.single-stop-footer .add-stop {
    color: #fff;
    border: 0;
    border-radius: 8px;
    margin-top: 5px;
    background: unset;
    user-select: none;
    display: block;
    padding: 0;
}

.single-stop-footer .add-trip-stop {
    padding: 8px;
    text-align: center;
    border-radius: 8px;
    background: var(--transfer-ride-main);
    border-color: var(--transfer-ride-main);
    transition: 250ms;
    display: block;
    cursor: pointer;
    user-select: none;
}

.single-stop-footer .add-trip-stop:hover {
    background: var(--transfer-ride-main-hover);
}

.step-data .title h3 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 5px;
    color: #fff;
}

.single-stop-footer .selected-time {
    color: #fff;
    user-select: none;
}

.step-data .desc a {
    color: #fff;
}

.step-data .desc p {
    color: #fff;
    font-size: 12px;
    margin: 0;
}

.single-stop-footer .step-data {
    padding: 10px;
}

.tr-checkout-wrap {
    padding-bottom: 100px;
}

.add-stop .price {
    margin-left: 5px;
    font-weight: 600;
}

.remove-stop .icon {
    height: 100%;
}

.remove-stop {
    padding: 8px 16px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    border-radius: 8px;
    background: var(--transfer-ride-main);
    cursor: pointer;
}

.added .remove-stop {
    opacity: 1;
    visibility: visible;
}

.tr-input.inline-input {
    position: relative;
}

.tr-input.inline-input.active label {
    top: 20%;
    left: 15px;
    font-size: 10px;
    color: #555555;
}

.tr-input.inline-input label {
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translate(0%, -50%);
    margin: 0;
    display: block;
    transition: 250ms;
}

.tr-card.light.notice h3{
    font-weight: 500;
    color: #222;
}

.tr-card.light{
    background: #fff;
}

.tr-card .tr-content {
    background: #fff;
    border-radius: 8px;
}

.tr-card .tr-header,
.tr-card .tr-body {
    border-bottom: 1px solid var(--trasnfer-ride-light-hover);
}

.tr-card .tr-header,
.tr-card .tr-body,
.tr-card .tr-footer {
    padding: 8px 12px;
}

.tr-card .tr-header h3 {
    font-size: 24px;
    margin: 0;
}

.checkout-payment .tr-card {
    margin-bottom: 20px;
}

.step-wrap .step.active .step-number {
    background: var(--transfer-ride-main);
    color: #fff;
}

.tr-modal-wrap {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 5% 0px;
    z-index: 999999;
}

.tr-modal-wrap .tr-modal-overlay {
    background: #00000080;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.tr-modal-wrap .tr-modal {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: auto;
    background: #ffffff;
    border-radius: 8px;
    z-index: 2;
    box-shadow: 0px 0px 10px 0px #0000000a;
    overflow: hidden;
}

.tr-modal-wrap .tr-modal-header {
    border-bottom: 1px solid var(--trasnfer-ride-light-hover);
}

.tr-modal-wrap .tr-modal-header .close-modal {
    width: 42px;
    height: 43px;
    margin-right: 5px;
    cursor: pointer;
}

.tr-modal-wrap .tr-modal-header .title {
    padding: 12px 18px;
    font-size: 21px;
    color: #222;
}

.tr-modal-content .location-data-wrap {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 8px;
    z-index: 99999;
    background: #fff;
    max-width: 400px;
    width: 25%;
    min-width: 200px;
    padding: 12px 18px;
}

.tr-modal .location-input .icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

.tr-modal .save-location {
    margin-top: 20px;
}

.tr-modal .save-location .tr-button {
    width: 100%;
    padding: 12px;
    text-align: center;
    border-radius: 4px;
    border: 0;
    transition: 250ms;
    cursor: pointer;
}

.tr-modal .save-location .tr-button.save {
    background: var(--transfer-ride-success);
}

.tr-modal .save-location .tr-button.cancel {
    background: var(--transfer-ride-error);
}

.tr-modal .tr-modal-content {
    position: relative;
}

.tr-modal .tr-modal-content,
#pickup-point-map {
    width: 100%;
    height: 100%;
}

.special-informations p {
    font-size: 24px;
    margin: 0 !important;
    color: #222;
    line-height: 52px;
}

.special-informations .icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    cursor: pointer;
    stroke: #222;
}

.menu-content .page-name{
    margin: 0;
    font-weight: 600;
    font-size: 21px;
}

.fade-in {
    animation: fadeIn 0.25s ease-in forwards;
}

.other-passanger-actions {
    text-align: right;
    padding: 10px 0px;
}

.other-passanger-actions span {
    color: var(--transfer-ride-main);
    font-weight: 600;
    display: block;
    font-size: 14px;
    cursor: pointer;
    width: max-content;
    margin-left: auto;
}

.search-filter-wrap {
    padding: 5px 5px;
    background: #ededed;
    border-radius: 14px;
    z-index: 5;
    position: relative;
}

.search-filter-wrap .tr-input {
    margin: 0 !important;
}

.search-filter-wrap .tr-input input {
    background: #fff;
    border-color: transparent !important;
}

.shadow-effect {
    background: transparent;
    border-radius: 8px;
    transition: all 250ms, height 0ms, width 0ms;
}

.shadow-effect.active {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 2px #f3f3f3;
}

.shadow-effect.active input {
    border-radius: 8px !important;
}

.search-filter-date {
    position: relative;
}

.time-selection-wrap {
    padding: 20px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--trasnfer-ride-light-hover);
}

.tr-button.close-calendar {
    display: block;
    margin-top: auto;
    padding: 10px;
    background: var(--transfer-ride-main);
    color: #fff;
    border-radius: 8px;
    border-color: var(--transfer-ride-main);
    cursor: pointer;
}

.calendar-wrap>.grid {
    padding: 20px;
}

.calendar-wrap {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: calc(100% + 5px);
    left: 0%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 0px 13px 2px #2222221f;
    z-index: 9999;
    transition: 250ms;
}

.active .calendar-wrap {
    visibility: visible;
    opacity: 1;
}


.search-filter-portal-content input {
    background: unset !important;
    border-color: unset !important;
}


.search-filter-portal-content .search-filter-date {
    width: 100%;
    min-width: 150px;
    height: 50px;
}

.search-filter-portal-content .search-filter-action {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.search-filter-action .tr-button {
    background: var(--transfer-ride-main);
    border-color: var(--transfer-ride-main);
    display: block;
    min-width: 100px;
    width: 100%;
    text-align: center;
    color: #fff;
    line-height: 30px;
    font-weight: 700;
    border-radius: 15px;
    cursor: pointer;
}

.calendar .days,
.calendar .day-names {
    grid-template-columns: repeat(7, 1fr);
    margin: 0;
    padding: 0;
}

.calendar .day-names {
    margin-bottom: 15px;
}

.calendar .days,
.calendar .day-names {
    text-align: center;
}

.calendar .single-day {
    height: 50px;
    width: 50px;
    line-height: 50px;
    transition: 250ms;
    cursor: pointer;
    color: #222;
    font-weight: 600;
    border-radius: 50%;
}

li.single-day.past-date {
    font-weight: 400;
    color: #c1c1c1;
    pointer-events: none;
}

.single-day.na {
    pointer-events: none;
}

.calendar .single-day:hover {
    background: var(--trasnfer-ride-light-hover);
}

.calendar .single-day.selected {
    background: var(--transfer-ride-main);
    color: #fff;
}

.calendar ul {
    list-style: none;
}

.month-action .icon {
    height: 40px;
    width: 40px;
    display: block;
    border-radius: 50%;
    background: var(--trasnfer-ride-light-hover);
    padding: 4px;
    cursor: pointer;
}

.month-action {
    width: 100%;
    margin-bottom: 15px;
}

.time-selection-content {
    position: relative;
    min-width: 180px;
}

.time-selection-content label {
    position: absolute;
    left: 15px;
    top: 4px;
    color: #575757 !important;
    margin: 0;
    font-size: 12px !important;
    pointer-events: none;
}

select.time-selection {
    border-radius: 8px;
    padding: 20px 15px 9px 10px;
}

@supports (-webkit-touch-callout: none) {
    .time-selection-content label {
        left: 10px;
    }
    select.time-selection {
        height: 50px;
    }}


.month-action .current-date {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    line-height: 40px;
}

.month-action .current-date .month {
    margin-right: 6px;
}

.date-selection-data {
    height: 100%;
}

.date-selection-data .value {
    width: 100%;
    padding: 0px 15px 0px 35px;
}

.date-selection-data .value .date {
    color: #878787;
    font-weight: 500;
    font-size: 15px;
}

.date-selection-data .value .date.has-date {
    font-weight: 600;
    color: #222;
}

.date-selection-data .value .time {
    font-size: 13px;
    color: #222;
}

.inline-search-icon {
    position: absolute;
    width: 16px;
    height: 100%;
    left: 8px;
}

.destinations .time {
    display: inline-block;
    margin-left: auto;
    font-weight: 500;
    color: #222;
}

.basic-trip-data .travel-date .icon,
.basic-trip-data .number-of-people .icon {
    width: 24px;
    height: 24px;
    display: inline-block;
}

.basic-trip-data {
    margin-bottom: 20px;
}

.basic-trip-data>div {
    padding: 2px 8px;
    align-items: flex-start;
    border: 1px solid var(--transfer-ride-main);
    border-radius: 8px;
    font-weight: 500;
}

.basic-trip-data .value {
    font-size: 14px;
    line-height: 24px;
    margin-left: 8px;
    color: var(--transfer-ride-main);
}

.basic-trip-data .date-selection-data .time{
    display: none;
}

#route-overview {
    height: 100%;
    width: 100%;
    border-radius: 8px;
    min-height: 500px;
}

.personal-information>div,
.payment-information>div {
    margin-bottom: 10px;
}

.divider {
    margin-top: 10px;
    display: block;
    width: 100%;
    height: 1px;
    background: #e8e8e8;
}

.stop-list {
    padding: 0;
    list-style: none;
}

.stop-list li {
    margin-bottom: 5px;
}

.personal-information .single-personal-data .name,
.trip-details .single-trip-data .name,
.payment-information .single-payment-data .name {
    font-weight: bold;
    color: #515151;
}

.tr-button.remove-data {
    background: var(--transfer-ride-error);
}

.editor-delete-content .tr-modal {
    max-width: 600px;
}

.editor-delete-content .tr-modal .tr-modal-content {
    padding: 20px;
}

.editor-delete-content .tr-modal .tr-modal-footer {
    padding: 20px;
    text-align: center;
}

.portal-login-desc {
    background: var(--transfer-ride-main-dark);
}

.data-section {
    padding: 10px;
    background: #99999914;
    border-radius: 8px;
}

.passanger-contact-information {
    margin: 10px 0px;
}

.data-section h2 {
    font-size: 28px !important;
    line-height: 28px !important;
}

.portal-dashboard #route-overview {
    min-height: 250px;
}

.pickup-dropoff {
    margin: 10px 0px;
}

.manage-reservation-actions {
    margin-top: 10px;
}

.tr-switcher {
    padding: 4px;
    border-radius: 15px;
    background: var(--trasnfer-ride-light-hover);
    width: max-content;
    overflow: hidden;
    gap: 5px;
    position: relative;
}

.tr-switcher .data-switch {
    padding: 10px;
    border-radius: 15px;
    color: #222;
    font-weight: 500;
    flex: 1;
    width: 100px;
    text-align: center;
    cursor: pointer;
    z-index: 2;
    transition: 150ms;
    transition-delay: 150ms;
}

.tr-switcher .data-switch.active {
    color: #fff;
}

.tr-switcher .data-switch p {
    margin: 0;
    font-weight: 600;
}

.slide-switch-wrap {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: calc(50% + 2px);
    padding: 4px;
    z-index: 1;
    transition: 500ms;
    left: 0;
    z-index: 1;
}

.slide-switch {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 15px;
    background: var(--transfer-ride-main);
}

h2.small-heading-section,
.portal-dashboard .stop-data-overview h2 {
    font-size: 24px !important;
    margin: 0;
    color: var(--transfer-ride-main) !important;
}

.payment-method-graphic {
    display: block;
    max-width: 72px;
    vertical-align: top;
}

.portal-dashboard-content .search-filter-wrap {
    margin-bottom: 15px;
    width: max-content;
    background: #fff;
}

.portal-dashboard-content .search-filter-action {
    width: 100%;
}

.forgot-password {
    margin-left: 10px;
}

body.forgot-password {
    margin: 0;
}

form.content-editor>div.grid {
    margin-top: 15px;
}


.tr-button-tooltip {
    padding: 2px 8px;
    align-items: flex-start;
    border: 1px solid var(--transfer-ride-main);
    border-radius: 8px;
    color: var(--transfer-ride-main);
    font-size: 12px;
}

.tr-button-tooltip{
    align-items: center;
}

.tr-button-link {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
    font-weight: 500;
    transition: 250ms;
    position: relative;
    background: #222;
    padding: 15px 35px;
    color: #fff !important;
    display: inline-block;
}

[data-sortby] {
    cursor: pointer;
    transition: 250ms;
}

[data-sortby]:hover {
    color: var(--transfer-ride-main) !important;
}

[data-sortby].active {
    font-weight: 600;
    color: var(--transfer-ride-main);
}

.search-filter-status-wrap {
    padding: 10px 2px;
}

.inline-status-filter {
    cursor: pointer;
    transition: 250ms;
}

.inline-status-filter:hover {
    color: var(--transfer-ride-main);
}

.inline-status-filter.active {
    font-weight: 600;
    color: var(--transfer-ride-main);
}

input[type='time'] {
    width: 100%;
}

.icon.add-start-point {
    max-width: 24px;
    height: 100%;
    cursor: pointer;
}

.icon.add-start-point svg path {
    transition: 250ms;
}

.icon.add-start-point:hover svg path {
    fill: var(--transfer-ride-main);
}


.icon.remove-stop-data {
    max-width: 24px;
    cursor: pointer;
}

.icon.remove-stop-data svg path {
    transition: 250ms;
    fill: var(--transfer-ride-main-dark);
}

.icon.remove-stop-data:hover svg path {
    fill: var(--transfer-ride-error);
}

.stop-data-input .single-repeater-field .sort {
    margin: 0;
    height: unset;
    width: 24px;
}

.stop-data-input .single-repeater-field>div {
    flex: unset;
    max-width: unset;
}

#single-location-selector-map {
    height: 100%;
}

.location-search-actions {
    position: relative;
}

.splitter-circle {
    height: 4px;
    width: 4px;
    background: var(--transfer-ride-main-dark);
    position: relative;
    display: block;
    margin: 0px 4px;
    border-radius: 100%;
    border: 1px solid var(--transfer-ride-main-dark);

}

.read-more-button {
    display: block;
    font-size: 18px;
    color: var(--transfer-ride-main);
    margin-top: 10px;
    transition: 250ms;
    cursor: pointer;
}

.read-more-button:hover {
    color: var(--transfer-ride-main-hover);
}

.clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp.inactive {
    -webkit-line-clamp: unset !important;
}

.clamp-1 {
    -webkit-line-clamp: 1;
}

.clamp-2 {
    -webkit-line-clamp: 2;
}

.clamp-3 {
    -webkit-line-clamp: 3;
}

.clamp-4 {
    -webkit-line-clamp: 4;
}

.clamp-5 {
    -webkit-line-clamp: 5;
}

.clamp-6 {
    -webkit-line-clamp: 6;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.readmore-text {
    margin: 0;
}

.single-expectation .title-wrap .icon {
    height: 21px;
    width: 21px;
    margin-right: 8px;
}

.expectations-wrap {
    margin-top: 10px;
}

.single-expectation .title-wrap .title {
    color: var(--transfer-ride-main-dark);
    font-weight: bold;
    margin: 0;
    font-size: 16px;
    margin-bottom: 8px;
}

.goot-to-know-list-content .icon {
    width: 24px;
    height: 24px;
}

.single-route-content {
    position: relative;
    padding-bottom: 30px;
}

.single-route-content p {
    margin: 0;
}

.single-route-content .icon {
    min-width: 18px;
    min-height: 18px;
    width: 18px;
    height: 24px;
    margin-top: -2px;
    z-index: 2;
    background: #fff;
}

.single-route-content .route-line {
    position: absolute;
    left: 8px;
    width: 2px;
    height: 100%;
    background: var(--transfer-ride-main);
}

.single-route-content p.name {
    color: #222;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.daytrip-route .route-wrap {
    flex: 1;
}

.daytrip-route #route-overview {
    flex: 2;
}

.expectations-content .single-expectation {
    padding-bottom: 15px;
}

.route-content-title h3 {
    font-size: 28px;
}

.booking-header .tr-button-tooltip .icon {
    width: 16px;
    height: 18px;
    margin-right: 8px;
}

.daytrip-booking-wrap {
    padding: 15px;
    border: 1px solid var(--trasnfer-ride-light-hover);
    border-radius: 8px;
    box-shadow: 0px 0px 5px 1px #e9e9e9;
}

.daytrip-booking-wrap .pricing-wrap span {
    font-size: 18px;
    color: #222;
    font-weight: 600;
}

.daytrip-booking-input .search-filter-date {
    border-radius: 8px;
    border-right: 1px solid var(--trasnfer-ride-light-hover);
    margin: 0px;
    width: 70%;
}

.daytrip-booking-input {
    border: 1px solid var(--trasnfer-ride-light-hover);
    border-radius: 8px;
}

.booking-footer {
    margin-top: 20px;
}

.booking-footer .booking-data-actions {
    margin-top: 20px;
}

.tr-button-blue {
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 8px;
    padding: 15px;
    background: var(--transfer-ride-main);
    color: #fff;
    border: 0px;
    cursor: pointer;
    transition: 250ms;
}

.tr-button-blue:hover {
    background: var(--transfer-ride-main-hover);
    color: #fff !important;
}

.booking-data .total {
    margin-top: 5px;
    font-size: 18px;
    color: #222;
    font-weight: 600;
}

.single-car-data .additional-car-data .icon {
    width: 16px;
    height: 16px;
}

.single-car-data .additional-car-data .value {
    margin-left: 5px;
    font-size: 14px;
}

.daytrip-card {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.daytrip-card .featured-image {
    width: 100%;
    position: relative;
}

.daytrip-card .featured-image a {
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
}

.daytrip-card .featured-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.daytrip-card .desc {
    padding: 12px;
}

.daytrip-card .desc h2 {
    font-size: 28px;
    line-height: 28px;
}

.daytrip-card .daytrip-data {
    margin-top: 20px;
}

.daytrip-card .daytrip-data p {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    color: #222;
}

.single-data .tr-button-tooltip {
    display: inline-block;
    margin-left: 10px;
}

.trip-information .tr-button-tooltip {
    display: inline-block;
    margin-left: 10px;
    top: -5px;
    position: relative;
}

.gesture-notice {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 990;
  pointer-events: none;
  display: none;
  text-align: center;
}

/* after you’ve loaded Leaflet’s CSS: */
#map-trip-data.leaflet-container,
#route-overview.leaflet-container,
.map-spec-location.leaflet-container{
  /* allow the browser to handle vertical pan (scroll) */
  touch-action: pan-y !important;
}

.content-input .lang-locked input {
    background: #ababab !important;
    pointer-events: none;
}

.wp-editor-tabs > button{
    border-radius: 8px 8px 0px 0px !important; 
    padding: 10px !important;
}

.mce-tinymce .mce-btn button{
        background: transparent !important;
}
.wp-editor-tabs [aria-pressed="true"] {
    background: var(--transfer-ride-main);
    color: #fff;
}
.wp-editor-tabs [aria-pressed="false"] {
    background: #f6f7f7;
    color: #222;
}
.quicktags-toolbar .ed_button{
    color:#222 !important;
}
.notice.error{
    background: #ff60604a;
}
.notice{
    padding: 10px;
    border-radius: 8px;
    color: #222;
}
.dark-overlay-blocked::after {
    content: '';
    background: #00000040;
    position: fixed;
    top: 0px;
    left: 0px;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 99999999999;
    animation: fadeIn 500ms ease-out forwards;
}
.daytrip-booking-content .booking-content{
    margin-top: 20px;
}

.daytrip-booking-content .booking-content .label > p{
    margin:0;
}

.single-day-trip-data h2 {
    font-size: 42px;
    line-height: 42px;
    font-weight: 500;
}
.single-day-trip-data {
    padding-bottom: 50px;
}
.goot-to-know-list-content .text{
    padding-left: 10px;
}
span.text{
    font-size: 16px;
    line-height: 28px;
}
p.desc{
    font-size: 16px;
    line-height: 28px; 
}

.car-class-desc{
    display: block;
    font-size: 11px;
    font-style: italic;
    padding-bottom: 5px;
}

.short-notice-modal .tr-modal{
    height: unset !important;
}
.short-notice-modal .tr-modal-content{
    padding: 10px;
}

.short-notice-modal .tr-modal-content .modal-actions{
    text-align: center;
    width: 100%;
    margin-top:15px;
}

.short-notice-modal .tr-modal-content p{
    font-size: 16px;
    line-height: 1.5;
}

.status.confirmed .single-status{
    padding: 4px 8px;
    align-items: flex-start;
    border: 1px solid #68c971;
    border-radius: 8px;
    color: #68c971;
    font-size: 14px;
    font-weight: 600;
}

.status.pending .single-status,
.status.payment-pending .single-status,
.status.pending-short-notice .single-status{
    padding: 4px 8px;
    align-items: flex-start;
    border: 1px solid #c9b968;
    border-radius: 8px;
    color: #c9b568;
    font-size: 14px;
    font-weight: 600;
}

.sticky-stop-data{
    position: sticky;
    top:10px
}

.admin-bar .sticky-stop-data{
    position: sticky;
    top:42px
}

.portal-menu-trigger .icon svg path{
    stroke: var(--transfer-ride-main);
}

.portal-menu-trigger-close .icon{
    width: 32px;
    height: 32px;
    display: block;
    position: absolute;
    top: 0px;
    right: 14px;
}

.admin-bar .portal-menu-trigger-close .icon{
    top: 32px;
}

.portal-menu-trigger-close .icon svg path{
    stroke: var(--transfer-ride-error);
}

.menu-footer-actions a.tr-button{
    width: 100%;
    padding: 10px;
    background: #9ccb3e;
    display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ 
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */ 
    display: -ms-flexbox; /* TWEENER - IE 10 */ 
    display: -webkit-flex; /* NEW - Chrome */ 
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */ 
    text-decoration: none;
}

.menu-footer-actions a.tr-button .icon{
    width: 32px;
    height: 32px;
}

.menu-footer-actions a.tr-button .icon svg path:nth-child(2),
.menu-footer-actions a.tr-button .icon svg path:nth-child(1){
    stroke: #fff;
}

.menu-footer-actions a.tr-button .icon svg path:nth-child(3){
    fill: #fff;
}

.menu-footer-actions a.tr-button .desc{
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}

.archive.attraction .card .card-footer-content a,
.archive.day-trip .card .card-footer-content a,
.stop-details .card .card-footer-content a{
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
}

.search-filter-wrap.light{
    background: #fdfdfd;
}

.portal-sidebar-wrap .menu-footer{
    padding: 0px 20px 20px 20px;
}
.portal-sidebar-wrap .menu-footer a{
    border:0;
}

.cta-daytour{
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background: #fff;
    z-index: 99;
    padding: 15px;
    transition: 500ms;
}

.cta-daytour.in-view{
    transform: translateY(100%);
}

.cta-daytour .pricing-wrap span{
    font-size: 21px;
    color: #222;
    font-weight: 600;
}

.cta-daytour a.tr-button{
    color: #fff;
    font-weight: 600;
}

.input-action.show-password {
    width: 20px;
    height: 20px;
}

.single-title .sort-icon{
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 5px;
}
.mobile-menu-content.active{
    overflow: auto;
}

.basic-trip-data .search-filter-date{
    margin-bottom: 0;
}
.basic-trip-data .inline-search-icon{
    height: 24px;
}
.basic-trip-data .date-selection-data .value{
    padding:0px 15px;
}
.dashboard-content .tr-card{
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 12px;
}
.dashboard-user-stats .tr-content {
    font-size: 32px;
    line-height: 48px;
    padding: 10px 15px 0px 15px;
}
.dashboard-user-stats .tr-content .user-stats-icon{
    width: 72px;
    height: 100%;
}

#img_counter{
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #ffffffcc;
    border-radius: 5px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

#img_counter .icon{
    height: 18px;
    width: 18px; 
}

#img_counter .text{
    font-weight: 600;
    font-size: 15px;
}

.input-warning{
    font-size: 14px;
}

.tr-input-content{
    position: relative;
}

.portal-login-data-wrap .back-to-main-site .icon{
    display: block;
    width: 24px;
    height: 24px;
}

.portal-login-data-wrap .back-to-main-site a{
    text-decoration: none;
    align-items: center;
}

.portal-login-data-wrap .back-to-main-site{
    padding-bottom: 20px;
    margin-bottom: 20px;
}

span.required{
    font-size: 16px;
    color: var(--transfer-ride-error);
}

.single-data.canceled .single-status{
    padding: 4px 8px;
    align-items: flex-start;
    border: 1px solid var(--transfer-ride-error);
    border-radius: 8px;
    color: var(--transfer-ride-error);
    font-size: 14px;
    font-weight: 600;
}

.card.modern{
    min-height: unset;
    background: #fff;
    border: 1px solid var(--trasnfer-ride-light-hover);
    border-radius: 8px;
    box-shadow: 0px 0px 5px 1px #e9e9e9;
}

.card.modern .card-main{
    padding: 24px 16px;
}

.card.modern .card-main h3{
    margin: 0px;
    color: var(--e-a-color-txt-accent);
    font-size: 24px;
    font-weight: 500;
}

.card.modern .card-bg{
    position: relative;
    height: 300px;
}

.card-footer-content .prices{
    flex-direction: column;
}

.card-footer-content .from{
    font-size: 14px;
    line-height: 16px;
}

.card-footer-content .price{
    font-size: 21px;
    font-weight: 600;
    color: var(--transfer-ride-main);
}

.card.modern .card-footer-content{
    background: unset;
    border-top: 1px solid var(--trasnfer-ride-light-hover);
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.card.modern .card-footer-content .action .tr-button{
    background: var(--transfer-ride-main);
    font-size: 16px;
    padding: 12px 24px;
    border: 1px solid var(--trasnfer-ride-light-hover);
}

.card.modern .card-footer-content .action .tr-button:hover{
    color: #fff;
    background: var(--transfer-ride-main-hover);
}

.card.modern .card-main-wrap{
    flex-direction: column;
}

.card.modern .card-main{
    flex-direction: column;
}

.additional-daytour-data{
    font-size: 14px;
    margin-bottom: 8px;
}

.card.modern .card-main-content{
    flex:1
}


.card.modern .card-main-wrap,
.card.modern .card-main-wrap .card-main{
    flex:1;
}

.card.modern .card-content{
    flex-direction: column;
}

.card.modern .card-main p{
    margin: 0;
    margin-top: 4px;
}

@keyframes animate-placeholder {
    0% {
        width: 0px;
    }

    100% {
        width: 150px;
    }
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Keyframes for the shimmer animation */
@keyframes skeleton-load {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@media (min-width:769px) {

    .mobile-only {
        display: none !important;
    }

    

    .single-expectation .desc {
        padding-left: 32px;
    }

    .gallery>.grid a:nth-child(1),
    .gallery>.grid a:nth-child(2),
    .gallery>.grid a:nth-child(3),
    .gallery>.grid a:nth-child(4){
        height: 250px;
    }

    .gallery{
        max-height: 510px;
        overflow: hidden;
    }}

@media (max-width:768px) {

    .portal-dashboard .search-filter-wrap{
        width:100%;
    }

    .portal-dashboard .inline-status-filter{
        font-size: 14px;
    }

    .portal-dashboard .content .header{
        display: none;
    }

    .single-data-group>.single-data{
        padding: 5px;
        border-top: unset;
    }

    .portal-dashboard .content .single-data-group{
            flex-wrap: wrap;
    border-bottom: 1px solid #e4e4e4;
    }

    .portal-dashboard-content .content .single-title {
        padding: 5px;
        font-size: 12px;
    }

    .single-car-selection{
        position: relative;
    }

    .single-car-data .selected-car{
        position: absolute;
        bottom: 8px;
        right: 8px;
        height: 21px;
        top: unset;
        line-height: 18px;
    }

    .tr-checkout-wrap .checkout-wrap{
        padding: 0px 5px;
    }

    .prevent-scroll{
        position: fixed;
    }

    .portal-sidebar-wrap .portal-sidebar > .flex{
        min-height: calc((var(--vh, 1vh) * 100) - 70px);
        display: flex;
        justify-content: space-between;
        padding-bottom: 10px;
    }

    .portal-login-content {
        width: 100%;
        padding: 20px;
    }

    .desktop-only{
        display: none;
    }
    .portal-dashboard-header .menu-content{
        padding: 0px 20px;
    }
    .portal-dashboard-content{
        padding:20px;
    }
    
    .portal-dashboard-menu{
        transition: 500ms;
        width: 100%;
        height: 100%;
        overflow: auto;
        left: unset;
        right: -100%;
        z-index: 99;
    }

    .portal-dashboard-menu.active{
        right: 0%;
    }

    .tr-modal-wrap{
        padding: 0;
    }
    .gallery>.grid a:nth-child(1),
    .gallery>.grid a:nth-child(2) {
        height: 150px;
    }
    .gallery{
        max-height: 310px;
        overflow: hidden;
    }
    .animate-height {
        transition: 0ms !important;
    }

    .gallery>.grid a:nth-child(3),
    .gallery>.grid a:nth-child(4) {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .mobile-only.cta-daytour.flex{
        display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */ 
        display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */ 
        display: -ms-flexbox; /* TWEENER - IE 10 */ 
        display: -webkit-flex; /* NEW - Chrome */ 
        display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */    
    }

    .search-filter-wrap {
        z-index: unset;
    }

    .search-filter-date.active {
        z-index: 999999;
    }

    .personal-information .single-personal-data .value,
    .trip-details .single-trip-data .value,
    .payment-information .single-payment-data .value {
        margin-top: 5px;
    }

    .grid-1-1-1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .checkout-wrap .ride-selection h2 {
        margin: 0px;
        font-size: 32px;
        padding: 0px 8px;
        display: none;
    }

    .trip-details-content {
        padding: 8px 12px;
    }

    .checkout-header {
        padding: 0px 8px;
        margin-bottom: 0px;
    }

    .checkout-header .logo-wrap {
        height: 60px;
        padding: 12px;
    }
    .checkout-header .logo-wrap a{
        display: block;
        line-height:0;
    }
    .checkout-header .logo-wrap img{
        height: 100%;
    }

    .checkout-header .step-wrap {
        padding: 10px 10px 5px 10px;
        border-top: 1px solid var(--trasnfer-ride-light-hover);
    }

    .checkout-header .step-wrap .step-text {
        font-size: 12px;
        margin-top: 5px;
    }

    .calendar .single-day {
        height: 30px;
        width: 30px;
        line-height: 30px;
    }

    .search-filter-date .calendar-wrap {
        position: fixed;
        top: 0px;
        height: calc(var(--vh, 1vh) * 100);
        width: 100%;
        left: 0px;
    }

    
    .search-filter-action,
    .search-filter-date {
        width: 100% !important;
    }

    
    .trip-details .search-filter-action,
    .trip-details .search-filter-date {
        width:max-content !important;
    }

    .flex-m-column {
        flex-direction: column;
    }

    .checkout-wrap>div.trip-details {
        width: 100%;
    }

    .checkout-footer-wrap .checkout-footer {
        width: 100%;
    }

    .stop-data {
        padding: 0px 10px;
    }

    .grid-1-1 {
        grid-template-columns: repeat(1, 1fr);
    }}

/* Phone picker — joined pill, site palette */
.tr-input.phone-picker { position: relative; }
.tr-input.phone-picker > label {
    display: block;
    font-size: 1em;
    margin-bottom: 6px;
}
.tr-input.phone-picker .pp-joined {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    min-height: 52px;
    transition: border-color .15s, box-shadow .15s;
}
.tr-input.phone-picker .pp-joined:hover { border-color: #b8b8b8; }
.tr-input.phone-picker.is-active .pp-joined {
    border-color: var(--transfer-ride-main);
    box-shadow: 0 0 0 3px rgba(4, 96, 149, .12);
}
.tr-input.phone-picker .pp-country {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: inherit;
    font: inherit;
}
.tr-input.phone-picker .pp-country:focus-visible {
    outline: 2px solid var(--transfer-ride-main);
    outline-offset: -2px;
}
.tr-input.phone-picker .pp-flag { font-size: 18px; line-height: 1; }
.tr-input.phone-picker .pp-dial {
    font-size: 1em;
    color: #555;
    font-variant-numeric: tabular-nums;
    min-width: 36px;
}
.tr-input.phone-picker .pp-caret { color: #888; transition: transform .15s; }
.tr-input.phone-picker.is-open .pp-caret { transform: rotate(180deg); color: #333; }
.tr-input.phone-picker .pp-joined-sep {
    width: 1px;
    background: #e5e5e5;
    margin: 10px 0;
}
.tr-input.phone-picker input.pp-input {
    border: 0 !important;
    padding: 0 14px !important;
    flex: 1 1 auto;
    min-width: 0;
    background: transparent;
    outline: 0;
    font: inherit;
}

/* Menu */
.tr-input.phone-picker .pp-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 50;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .18);
    max-height: 320px;
    display: flex;
    flex-direction: column;
}
.tr-input.phone-picker .pp-menu[hidden] { display: none; }
.tr-input.phone-picker .pp-search {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 10px 12px;
    border-bottom: 1px solid var(--trasnfer-ride-light-hover);
    color: #888;
}
.tr-input.phone-picker .pp-search-icon {
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.tr-input.phone-picker .pp-search input {
    flex: 1;
    border: 0 !important;
    padding: 0 !important;
    background: transparent;
    outline: 0;
    font: inherit;
    min-width: 0;
}
.tr-input.phone-picker .pp-list {
    overflow-y: auto;
    padding: 6px;
}
.tr-input.phone-picker .pp-row {
    width: 100%;
    display: grid;
    grid-template-columns: 22px 1fr auto 16px;
    gap: 10px;
    align-items: center;
    padding: 8px 10px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    border-radius: 6px;
    font: inherit;
    color: inherit;
}
.tr-input.phone-picker .pp-row.is-active { background: var(--trasnfer-ride-light-hover); }
.tr-input.phone-picker .pp-row .pp-flag { font-size: 18px; }
.tr-input.phone-picker .pp-row .pp-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}
.tr-input.phone-picker .pp-row .pp-row-dial {
    color: #888;
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}
.tr-input.phone-picker .pp-row .pp-check {
    color: var(--transfer-ride-main);
    visibility: hidden;
}
.tr-input.phone-picker .pp-row.is-selected .pp-check { visibility: visible; }
.tr-input.phone-picker .pp-empty {
    padding: 18px;
    text-align: center;
    color: #888;
    font-size: 14px;
}