h2#firstHeading {
    font-size: 20px;
}

body {
    margin: 0;
}

a {
    text-decoration: none !important;
}

#map {
    position: fixed;
    top: 0;
    left: 0;
    height: 919px;
}

.custom-map-control-button {
    appearance: button;
    background-color: #fff;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgb(0 0 0 / 30%);
    cursor: pointer;
    margin: 10px;
    padding: 0 0.5em;
    height: 40px;
    font: 400 18px Roboto, Arial, sans-serif;
    overflow: hidden;
}

#marker-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    top: 10px;
    right: 10px;
    height: 919px;
    overflow-y: auto;
    text-align: left;
}

#marker-list::-webkit-scrollbar {
    width: 1.125rem;
    border-radius: 5px;
    background-color: #f1f1f1;
}

#marker-list::-webkit-scrollbar-thumb {
    background-color: #00535e;
    border-radius: .625rem
}

#marker-list::-webkit-scrollbar-track {
    background-color: #00535e68;
    border-radius: 0
}

#marker-list li {
    padding: 18px;
}

#marker-list li:last-child {
    border-bottom: none;
}

.marker-list:hover,
#marker-list li.active {
    background-color: #e4e4e4;
}

.marker-title {
    font-weight: bold;
}

.marker-address {
    color: #888;
}

.marker-phone {
    font-weight: 700;
}

.call-button {
    background-color: #00857c;
    color: #fff;
    font-weight: bold;
    border: none;
    width: 115px;
    height: 45px;
    padding: 5px 10px;
    order: 2;
    margin-top: 14px;
}

.url-button {
    margin-left: 5px;
}

.marker-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #F2F2F2;
    border: 1px solid #DDDDDD;
    border-radius: 0px;
    flex-direction: row-reverse;
}

.marker-info {
    flex: 1;
    order: 1;
}

.marker-name {
    color: #00857c;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 23px;
    text-transform: uppercase;
    text-align: left;
}

.marker-address,
.marker-type {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    color: #4A4A4A;
    font-size: 1rem;
}

.marker-type {
    text-transform: uppercase;
}

.cont-data-marker {
    padding-right: 0;
    padding-left: 0;
}

@media (max-width: 768px) {
    .more-link {
        display: inline-block;
        background-color: #f0f0f0;
        padding: 5px 10px;
        text-decoration: none;
        color: #333;
        cursor: pointer;
    }
    .hidden-content {
        display: none;
        padding: 0px;
    }
    .container.expanded .more-link {
        display: none;
        /* Ocultar el enlace "más" cuando el contenedor tiene la clase "expanded" */
    }
    .container.expanded .hidden-content {
        display: block;
        /* Mostrar el contenido oculto solo en modo responsive cuando el contenedor tiene la clase "expanded" */
    }
    .marker-list {
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
    }
    .marker-info,
    .call-button {
        order: initial;
    }
    #marker-list {
        max-height: 80vh;
    }
    .container-fluid {
        display: flex;
        flex-direction: column;
    }
    .cont-data-marker {
        order: 2;
    }
    #map {
        order: 1;
        max-height: 80vh;
    }
    #market-list {
        max-height: 80vh;
    }
    .btn-verde-outline {
        line-height: 20px;
        padding: 12px 40px;
        margin-left: 32px;
        margin-right: 32px;
    }
}