@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::after,
*::before {
    padding: 0;
    margin: 0;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.lm-location-info-body{
    height: auto;
    width: 98vw;
    display: flex;
    flex-direction: column;
}

#googleMap{
    width: 100%; 
    height: 400px;
}

/* info */
.lm-location-info-container{
    max-width: 1400px;
    margin: auto;
    width: 90%;
}
.lm-location-info-header-container{
    display: flex;
    justify-content: space-between;

    margin-top: 40px;
    margin-bottom: 40px;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #d5d5d5 ;
}
/* title */
.lm-location-info-header-title {
    color: #434B53;
    font-size: 40px;
    flex: 1;
    font-weight: 600;
}


.lm-location-info-header-short-open-close {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lm-location-info-header-short-open,
.lm-location-info-header-short-close {
    padding-bottom: 6px;
}
/* info-img */
.lm-location-info-left-right-container{
    display: flex;
    margin-top: 80px;
    /* justify-content: space-between; */
    gap: 20vw;  
}
.lm-location-info-left-info-dates{
    max-width: 400px;
    width: 100%;

}
.lm-location-info-about-this-container {
    margin-bottom: 30px;
}


.lm-location-info-about-this-container p {
    padding: 5px;
    font-size: 16px;
    color: #676e74;
    user-select: none;
    font-weight: 500;
}


#lm-location-info-about-this-title {
    font-size: 16px;
    font-weight: bold;
    color: #434b53;
    margin-bottom: 10px;
}


.lm-location-info-left-container-days {
    display: flex;
    border-top: 1px solid #d5d5d5;
    padding-top: 30px;

}

.lm-location-info-left-container-days li {
    display: flex;
    justify-content: space-between;
    padding: 8px;
    font-size: 14px;
    color: #676e74;
    user-select: none;
    font-weight: 500;
}

#lm-location-info-list-wrapper {
    padding-left: 0;
    width: 100%;
  }
  li{
    list-style: none !important;

  }
  .lm-location-info-day-active {
    background-color: #ed1d24;
    color: #fff !important;
    font-weight: bold;
}

.lm-location-info-has-atm {
    margin-top: 20px;
}

.lm-location-info-right-container img {
   flex: 1;
  
}

/* comments */
.lm-location-info-container-comments a {
    color: #ed1d24 !important;
}

.lm-location-info-container-comments a:hover {
    color: #ed1d24bf !important;
    cursor: pointer;
}

/* responsive */
@media (min-width: 1440px) {
    /* #googleMap {
        width: 117vw !important;
        
      } */

      /* .lm-location-info-left-right-container {
        gap: 200px;
    } */

    /* .lm-location-info-left-right-container {
        gap: 200px;
    } */
}





@media (max-width: 1024px) {
    .lm-location-info-left-right-container {
        gap:10vw;
    }

    .lm-location-info-header-title {
        font-size: 28px;

    }
}


/* for the single-pages */

.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 90%; 
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    overflow: hidden; /* Prevent overflow */
}

.close, .close-success {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}   

.close:hover, .close-success:hover,
.close:focus, .close-success:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.rating {
    display: flex;
    margin: 10px 0 30px 0;
}

.star {
    font-size: 30px;
    cursor: pointer;
    color: #ccc; /* Unselected star color */
}

.star.selected {
    color: #ED1D24; /* Selected star color */
}

input[type="submit"] {
    background-color: #ED1D24;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #ed1d24bd;
}

@media (max-width: 600px) {

    .modal-content {
        margin: 5% auto; /* Adjust margin for small screens */
        padding: 15px; /* Adjust padding for small screens */
    }
    .star {
        font-size: 24px; /* Smaller star size for small screens */
    }
    .modal-content-success{
        
        width: 300px;
    }
}

@media (max-width: 768px) {
    .lm-location-info-left-right-container,.lm-location-info-header-container{
        flex-direction: column;
        width: 100%;
        display: block;
    }
    .lm-location-info-right-container img {
        margin-top: 35px;
       
     }
}