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

body {
    margin: 0;
}

a {
    text-decoration: none !important;
}

#marker-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    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 {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0);
}

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

.marker-address {
    color: #888;
}

.marker-telefono {
    font-weight: 500;
}
.marker-telefono i {
    font-size: 11px;
}

.marker-list {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    background: #fff;
    border-radius: 0px;
    flex-direction: column;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.marker-info {
    flex: 1;
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.marker-type{
    letter-spacing: 5px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.marker-name {
    color: #00857c;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700!important;
    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: 0.875rem;
}

.marker-url a {
    border-radius: 0px;
    border-bottom: 2px solid #5450E4;
    color: #5450E4;
}

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

.pagination .page-item .page-link {
    color: #5450E4;
    border: 1px solid #5450E4;
    margin: 0 2px;
    padding: 4px 8px;
    border-radius: 4px;
}

.pagination .page-item.active .page-link {
    background-color: #5450E4;
    color: white;
    border: 1px solid #5450E4;
}

@media (max-width: 1200px) {
    #marker-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@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;
        align-items: flex-start;
    }

    .marker-info {
        order: initial;
    }

    #marker-list {
        grid-template-columns: 1fr;
    }

    .container-fluid {
        display: flex;
        flex-direction: column;
    }

    .cont-data-marker {
        order: 2;
    }

    #market-list {
        max-height: 80vh;
    }

    .btn-verde-outline {
        line-height: 20px;
        padding: 12px 40px;
        margin-left: 32px;
        margin-right: 32px;
    }
}