.content-location-container {
    padding: 50px 0px;
}

.content-location-inner {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    padding: 20px;
    border-radius: var(--siteRadius);
}

    .content-location-inner img {
        border-radius: var(--siteRadius);
    }

.content-location-title {
    position: relative;
    font-size: 1.6666666667rem;
    line-height: 2.2rem;
    font-family: montserrat-bold;
    color: #1e1e1e;
    text-align: center;
}

.content-location-title::after {
    width: 75px;
    height: 5px;
    background-color: #E27006;
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}


.app-bar {
    z-index: 20;
    bottom: 0;
    width: 100%;
    position: fixed;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/* Modal CSS */
.modal {
    display: none;
    /*display: flex;*/
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 5000;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    width: 400px;
}

.modal-content p {
    margin-bottom: 0;
}

/* Button CSS */
.open-modal-btn {
    padding: 10px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}



@media screen and (min-width:1240px) {
    .location {
        height: 50vh;
        background-image: linear-gradient( 35deg, hsl(0deg 0% 12%) 0%, hsl(344deg 0% 31%) 9%, hsl(344deg 0% 54%) 18%, hsl(344deg 0% 78%) 27%, hsl(344deg 0% 95%) 36%, hsl(344deg 0% 95%) 45%, hsl(344deg 0% 95%) 54%, hsl(344deg 0% 95%) 63%, hsl(344deg 0% 78%) 73%, hsl(344deg 0% 54%) 82%, hsl(344deg 0% 31%) 91%, hsl(0deg 0% 12%) 100% );
    }

    .location-reservation{
        top: 200px
    }

    .content_faq {
        padding: 120px 0;
    }
}


/* 15.01.2024 */


.hidden {
    display: none;
}

.rental-point-button {
    height: 36px;
    min-width: 64px;
    padding: 0 16px;
    background: #e27006;
    border-radius: 4px;
    color: white;
    letter-spacing: 1px;
}

.rental-point-button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.find-new-car {
    text-align: center;
    margin-bottom: 50px;
}

    .find-new-car p, .hints p {
        font-size: 1rem;
        line-height: 1.5333333333rem;
        font-family: montserrat-bold;
        color: #1e1e1e;
        text-align: center;
    }

.find-new-car-box {
    width: 100%;
    border: 1px solid var(--borderColor);
    padding: 50px;
    border-radius: 4px;
}

.find-new-car::after {
    width: 75px;
    height: 5px;
    background-color: #e27006;
    content: '';
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-bottom: 50px;
}

.hints {
    background: #f5f6fa;
    border-radius: 10px;
    padding: 50px;
}

.hints ul {
    list-style: disc;
}

.hints ul li {
    padding: 5px;
}

@media screen and (max-width: 1239px) {
    .hidden-mobile {
        display: none !important;
    }

    .find-new-car-box, .hints {
        padding: 20px;
    }
}

/* 15.01.2024 */