.flex-item {
    font-family: 'Nunito Sans';
    font-style: normal;
    padding: 20px 0px;
    color: #575756;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.style-container {
    /* font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px; */
    width: 100%;
    color: #575756;
}

.style-icons {
    /* font-family: 'Nunito Sans'; */
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #575756;
}

/* CSS code to style the button */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--bravoauto-blue);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 15px;
    width: 50%;
    text-align: center;
}

    /* Optional: Hover effect to change background color on hover */
    .button:hover {
        color: white;
    }

a {
    color: #575756;
}

.storePopupForm {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#formContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 331px;
    height: 90vh;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

    .form-group label {
        color: var(--bravoauto-mid-gray);
    }

    .form-group input,
    .form-group select {
        padding: 5px;
        border: 1px solid #ccc;
        border-radius: 50px;
        color: #575756;
    }

.checkbox-container {
    display: flex;
    align-items: center;
}

    .checkbox-container input[type="checkbox"] {
        margin-right: 10px;
    }

    .checkbox-container label {
        font-size: 11px !important;
    }

form button {
    width: 100%;
    border-radius: 50px;
    background-color: var(--bravoauto-blue);
    color: white;
    border: 1px solid var(--bravoauto-blue);
    padding: 10px;
    font-size: 18px;
}

.closeBtn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 15px;
    height: 15px;
}

.closeBtn:hover {
    color: red;
}

.map {
    height: 640px;
}

.map iframe {
    width: 100%;
    height: 100%;
}

.info-details {
    padding: 20px 60px;
}

.text-information .text-info-title {
    height: 50px;
    padding: 0;
}

@media screen and (max-width: 992px) {

    #text {
        text-align: left;
    }

    .button {
        width: auto;
    }
 
}

@media screen and (min-width: 992px) {

    #text {
        /*  padding-left: 4rem;*/
        text-align: left;
    }

    .button {
        width: auto;
    }
   
}

@media screen and (max-width: 992px) {

    .map {
        /* height: 120vh; */
    }
    .no-wrap {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.text-information {
    padding: 15px;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
/*    justify-content: center;*/
    /* align-items: center; */
}

@media screen and (max-width: 575px) {

    .map {
        height: 100vw;
        width: 100vw;
        margin-bottom: 10px;
    }

    .info-details {
        padding: 0;
    }

    .text-information strong {
        font-size: 1.8rem !important;
        padding: 0;
    }
}

@media screen and (min-width: 576px) and (max-width: 992px) {

    .text-information {
        padding-top: 0px;
        padding-left: 15px;
        padding-right: 30px;
        padding-bottom: 0px;
    }

    .text-information strong {
        font-size: 2rem !important;
        padding: 0;
    }

    .info-details {
        padding: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1366px) {

    .map {
        height: auto;
    }

    .text-information strong {
        font-size: 2rem !important;
        padding: 0;
    }

    .info-details {
        padding: 20px;
    }

    .text-information {
        padding-top: 0px;
        padding-left: 15px;
        padding-right: 30px;
        padding-bottom: 60px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1120px) {

    .text-information {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
    }
    
}