body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    height: 100vh;
    display: flex;
    padding: 0;
    flex-direction: column;
    background-color: #f2f4f8 !important;
    border-radius: 10px;


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 13px !important;
    transition: none;
    /* Απενεργοποιεί τη μετάβαση */
    font-family: "K2D", sans-serif;
    font-weight: bold;
    max-width: 1000px;


}


input[type="text"],
input[type="number"],
select,
input[type="date"],
input[type="time"] {
    width: 100%;
    height: 40px;
    padding: 10px;
    font-size: 13px;


    background-color: #fff;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);

}



input[type="text"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea[type="text"]:focus,
select:focus,
input[type="date"]:focus,
input[type="time"]:focus {
    outline: none;
    border: 2px solid #3366ff;
    border-bottom: 2px solid #3366ff !important;

}

.dropdown-input {
    padding-left: 100px;
}

.fa-map-marker-alt {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.custom-span {
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: ;
    color: #000000;
}

.gmnoprint a,
.gmnoprint span,
.gm-style-cc {
    display: none;
}

.gm-style .gm-style-cc {
    display: none;
}

.gmnoprint .gm-style-cc {
    display: none;
}

.pac-container {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 13px !important;
    background-color: #fafafafa;
    border: 0px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;

    white-space: normal !important; /* επιτρέπει αναδίπλωση */
    word-wrap: break-word !important; /* σπάει μακριές λέξεις */
    overflow-wrap: break-word !important; /* πιο σύγχρονη εκδοχή */
}


.pac-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.pac-item:hover {
    background-color: #009900;
}

.pac-icon {
    display: non;
}



#googleMap {
    width: 100%;
    height: 250px;
    flex-shrink: 0;
    background: #fffff;
    z-index: 1;
    margin-bottom: 35px;
    border-radius: 10px 10px 0px 0px;
    border: 3px solid #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    display: non;


}









.location-marker {
    width: 20px;
    height: 18px;
    border-radius: 50%;
    background: black;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}


/* Container for the car options */
.fare-container {
    display: flex;
    gap: 7px;
    padding: 0px;
    overflow-x: auto;
    /* Horizontal scrolling */
    flex-shrink: 0;
    width: 100%;
    margin-top: 5px;


}

/* Each car option container */
.fare-option {
    flex-shrink: 0;
    width: 45%;
    /* Set fixed width */
    height: 43px;
    /* Set fixed height */
    background: #fff;
    border: 0px solid #fff;
    border-radius: 3px;
    padding: 9px;
    text-align: center;
    cursor: pointer;
    display: flex;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    /* Ensure content is spaced properly */
    position: relative;
    /* Add relative positioning */
    transition: transform 0.3s ease;
    margin-bottom: 10px;
}

/* When the fare option is selected */
.fare-option.selected {
    border: 1.5px solid #000080 !important;
    background-color: #none;
    transform: scale(1.0);
    /* Slight scaling when selected */
}

/* Container for the image and text (flexbox layout) */
.fare-option-content {
    display: flex;
    flex-direction: row;
    /* Horizontally align the image and text */
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.fare-option img {
    width: 50x;
    height: 34px;
    margin-left: -7px !important;
    margin-top: -5px;
}

.fare-option h3 {
    font-size: 13px;
    color: #333;
    margin: 0;
    margin-top: -30px;
}

/* Fare price absolutely positioned to the right */
.fare-price {
    font-size: 13px;
    font-weight: bold;
    color: #000080;
    position: absolute;
    /* Absolute positioning */
    bottom: 10px;
    /* Position it 10px from the bottom of the container */
    right: 10px;
    /* Position it 10px from the right edge */
}

#price4,
.submit-button {
    background: #000080;
    color: white;
    border: none;
    border-radius: 4px;
    width: 100%;
    font-size: 16px !important;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 40px;
}



.marquee {
    width: 100%;
    margin-top: -30px;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.marquee span {
    display: inline-block;
    padding-left: 0%;
    animation: marquee 9999s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}




h3 {
    font-weight: 550 !important;
    font-size: 11px !important;
}


.active-field {
    position: fixed;
    top: 40px !important;
    /* Adjusted position from top */
    left: 50%;
    transform: translateX(-50%);
    width: 90% !important;
    background-color: white;
    border: 0px solid #3366ff;
    border-radius: 8px;
    padding: 10px;
    z-index: 1001;
    background-color: rgba(250, 250, 250);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.active-field-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 2;
}



.phonea {
    width: 100%;
    height: 240px;
    background: #F2F4F8;
    border-radius: 0px;

    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screena {
    width: 100%;
    height: 240px;

    background: #F2F4F8;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.mapa {
    width: 100%;
    height: 100%;
    background: #F2F4F8;
    position: absolute;
    background-image: url('https://via.placeholder.com/260x540');
    /* Replace with map grid */
    background-size: cover;
    z-index: 1;
}

.radara {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(123, 97, 255, 0.2);
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: 2;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.texta {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #000080;
}

.texta h1 {
    font-size: 17px;
    margin: 0;
}

.texta p {
    font-size: 14px;
    font-weight: 400 !important;
    margin: 5px 0 15px 0;
}

.buttona {
    background-color: #000080;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
}

.confirmationa {

    width: 100%;
    height: 240px;

    background-color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.confirmationa h1 {
    color: #000080;
    font-size: 17px;
}

.confirmationa p {
    color: #000080;
    font-size: 14px;
    font-weight: 400 !important;
    margin: 10px 0;
}

.confirmationa button {
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 14px;
    margin-top: 10px;
    cursor: pointer;
}

.confirmationa .secondarya {
    background-color: transparent;
    border: 2px solid #007BFF;
    color: #007BFF;
}






.circle-checka {
    width: 80px;
    height: 80px;
    background-color: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.circle-checka svg {
    width: 50px;
    height: 50px;
    color: white;
}

/* Προσθήκη στο υπάρχον CSS */
.container {
    position: relative;
    /* Για να λειτουργήσει το absolute positioning του κουμπιού */
}

.close-btn {
    position: absolute;
    top: 20px;
    /* Ρύθμισε την απόσταση από πάνω */
    left: 20px;
    /* Ρύθμισε την απόσταση από δεξιά */
    z-index: 100;
    /* Για να είναι πάνω από τον χάρτη */
    background: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.close-btn i {
    font-size: 16px;
    color: #333;
}

.close-btn:hover {
    background: #f5f5f5;
}


.route-btn {
    position: absolute;
    bottom: 40px;
    /* Ρύθμισε την απόσταση από πάνω */
    right: 20px;
    /* Ρύθμισε την απόσταση από δεξιά */
    z-index: 100;
    /* Για να είναι πάνω από τον χάρτη */
    background: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.route-btn img {
    width: 16px;
    height: 16px;
}

.route-btn:hover {
    background: #f5f5f5;
}

.flight-input-container {
    flex: 1;
}

.date-time-containerr {
    display: flex;
    margin-bottom: 0px;
    justify-content: space-between;
    gap: 5px;

}

.section-title3 {
    display: flex;
    align-items: center;
    font-size: 15px;
    background-color: #d8edff;
    color: #000;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.section-title3 img {
    margin-right: 10px;
}

.input-group1 {
    margin-bottom: 16px;
}


.form {
    height: 60px !important;
	padding: 1%;
}



.hidden {
    display: none !important;
}

.input-field100 {
    width: 80% !important;
    padding: 1px;
    border: 0px solid #ccc;
    border-radius: 1px;
    margin-top: 5px;
    height: 30px !important;
    background: none;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.0);

}

.input-field011 {
    width: 100%;
    padding: 1px;
    border: 0px solid #000;
    border-radius: 1px;
    margin-top: 10px;
    margin-bottom: 15px;
    height: 40px !important;
    background: #000;
    border-radius: 5px;
    color: #fff;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.location-input,
.input-field1 {
    width: 100%;
    padding: 1px;
    border: 0px solid #000;
    border-radius: 1px;
    margin-top: 5px;
    height: 40px !important;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;

}

#exitFullscreenButton {
    z-index: ;
    display: none;
    width: 130px;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 5px;
    margin-bottom: 5px;
    color: #000;
    background: none;
    font-size: 11px;
    height: 25px;
    text-align: center;
    border: 4px solid #000;
    margin-left: 10px;
}

#exitFullscreenButton p {
    margin-top: -10px !important;
}

::placeholder {
    color: #000000;
    font-size: 13px;
    opacity: 1;
    padding: 10px !important;
}

#pickup {
    border-bottom: 3px solid #ccc;
    height: 43px !important;
    border-radius: 8px 8px 0px 0px;

}

#destination {
    border-radius: 0px 0px 8px 8px;
}

.input-container {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Απόσταση μεταξύ εικονιδίου και select */
}

.input-container i {
    margin-left: 5px;
    color: #333;
    /* Χρώμα του εικονιδίου */
    font-size: 16px;
}

#fareContainer {
    display: none;
}

.section3 {
    margin-top: 00px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: #F2F4F8;
    border-radius: 10px;
    padding: 8px;
}

.section4 {
    margin-top: 00px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #F2F4F8;
    border-radius: 0px 0px 10px 10px;
    padding: 8px;
}

#tripType,
#serviceType {
    padding-left: 0px !important;
}

.containermap {

    display: flex;
    justify-content: center;
    align-items: center;
}

.selected-fare-display {
    display: none;
}

.fare-option {
    display: flex;
    /* Άλλα στυλ αν χρειάζεσαι */
}

.fare-option.hidden {
    display: none;
}

.close-btn {
    position: fixed;
    top: 0;
    /* Τοποθετεί το κουμπί στην κορυφή */
    left: 50%;
    /* Τοποθετεί το κουμπί στο κέντρο του άξονα X */
    transform: translateX(-50%);
    /* Κεντράρει το κουμπί ακριβώς */
    padding: 15px 2px;
    font-size: 13px;
    background-color: #none;
    color: #000;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.0);
    cursor: pointer;
    z-index: 10000;
    /* Βεβαιωνόμαστε ότι το κουμπί είναι πάνω από το overlay */
}

.close-btn:hover {
    background-color: #fff;
}



/* Στυλ για το κοντέινερ των εκδρομών */
.scrollable-container {
  display: flex;
  overflow-x: auto;
  flex-direction: row;
  gap: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0;
  margin-top: 0px;
}

/* Κάρτα (card) για τις εκδρομές */
.card {
  flex: 0 0 auto;
  width: 220px;
  height: 150px;
  background: #ffffff;
  border-radius: 15px 1px;
  scroll-snap-align: start;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.card-img-top {
  width: 100%;
  height: 94px;
  object-fit: cover;
  border: 2.5px solid #fff;
  border-radius: 15px 1px;
  margin-bottom: -18px;
}

.card-body {
  text-align: center;
  padding: 0.5rem 1rem;
  position: relative;
  padding-bottom: 50px;
}

.card-title {
  position: absolute;
  left: 0;
  margin-left: 5px;
  font-size: 13px;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
}
.btn-add,
.btn-primary {
  font-size: 12px;
  border: none;
  border-radius: 4px;
  background: #f2f4f6;
  color: #3366ff;
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 30%;
  margin-right: 10px;
}

.btn-show-more {
  position: absolute;
  bottom: 0px;
  left: 0;
  margin-left:5px;
  width: 30%;
  background: none;
  border: none;
  color: #007bff;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover,
.btn-show-more:hover {
  color: #0056b3;
}

/* Στυλ για το Modal */
.modal {
  display: none; /* Κρυφό από προεπιλογή */
  position: fixed; /* Σταθερή θέση στην οθόνη */
  z-index: 1; /* Το modal θα είναι πάνω από τα υπόλοιπα στοιχεία */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Ημιδιαφανές μαύρο φόντο */
  padding-top: 60px; /* Απόσταση από την κορυφή της οθόνης */
}

/* Στυλ για το περιεχόμενο του Modal */
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 15px;
  width: 80%;
  max-width: 500px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Στυλ για το κουμπί Κλείσιμο (×) */
.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
}

/* Στυλ για το κουμπί Κλείσιμο όταν περνάς τον δείκτη πάνω του */
.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Στυλ για το σώμα του Modal */
.modal-header {
  border-bottom: none;
}

.modal-body {
  padding: 15px;
}

/* Στυλ για την εικόνα στο Modal */
#modal-image {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
}

/* Στυλ για την περιγραφή του Modal */
#modal-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* Στυλ για το κουμπί στο Modal */
#modal-button-container {
  text-align: center;
}

#modal-button-container .btn {
  padding: 10px 20px;
  font-size: 14px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

#modal-button-container .btn:hover {
  background-color: #0056b3;
}

/* Στυλ για το κουμπί κλεισίματος του Modal */
#modal-close {
  padding: 10px 20px;
  font-size: 14px;
  background-color: #f2f4f6;
  color: #3366ff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 15px;
  width: 100%;
}

#modal-close:hover {
  background-color: #0056b3;
  color: #fff;
}


.view-selector {
  margin-top: 5px;
  margin-bottom: -10px;
  width: 100%;
  max-width: 200px;
}

#view-type {
  width: 100%;
  padding: 8px 10px;
  border-radius: 6px;
  border: 0px solid #ddd;
  font-size: 14px;
  color: #333;
  background-color: #ffffff;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


  @font-face {
    font-family: 'kd2';
    src: url('kd2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  .buttons-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  	margin-bottom: 10px !important;
    position: relative;
  }
.whatsapp-button {
    background-color: #009900;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 37px;
    width: 45%;
    border-radius: 4px;
	border: 0px solid #000;
    font-family: 'kd2', Arial, sans-serif;
    text-decoration: none;
    font-size: 14px;
    position: relative;
  }

  .viber-button {
    background-color: #000080;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 37px;
    width: 45%;
    border-radius: 4px;
  	border: 0px solid #000;
    font-family: 'kd2', Arial, sans-serif;
    text-decoration: none;
    font-size: 14px;
    position: relative;
  }
.whatsapp-button img,
  .viber-button img {
    height: 26px;
    position: absolute;
    left: 2px;
  }

  .viber-text {
    margin: 0 auto;
  	margin-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
    text-align: center;
  }

  .viber-text span:first-child {
    font-size: 11px;
    font-weight: bold;
  }

  .viber-text span:last-child {
    font-weight: bold;
    font-size: 18px;
  }









