.map_container {
    max-height: 100%;
    height: auto;
    position: relative;
    background-color: #74bfd2;
}

.img_background_container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;


    & img {
        width: 100%;
        max-height: 100%;
        object-fit: cover;
        height: 100%;
    }
}


.parent_map {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.div1 {
    grid-area: 1 / 1 / 6 / 2;
}

.div2 {
    grid-area: 1 / 2 / 6 / 5;
}

.div3 {
    grid-area: 3 / 2 / 6 / 4;
}

.container_map {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    max-width: 100%;
}

.position_base_map {
    width: auto;
    display: block;
    background-size: contain;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
}

.position_map {
    position: absolute;
    width: 100%;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
}

.hidden_map {
    display: none;
}

.container_cards {
    display: flex;
    gap: 10px;
    flex-direction: column;
    position: relative;
    z-index: 999;
    top: 0;
    background-color: #4d8d9d;
    height: 100%;

    & h3 {
        z-index: 99;
        position: relative;
        color: #ffffff !important;
        font-weight: bold;
        font-size: 1.5rem;
    }
}

.cards_ceibas {
    position: relative;
    width: auto;
    height: 100%;
    transition: all 0.5s;
    background-color: #ffffff00;
    z-index: 99;
    cursor: pointer;
    border: none;

    & .card-body {
        padding: 0 0 0 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    & .container_img {
        width: 100%;
        height: auto;
        position: relative;

        & img {
            width: 100%;
            height: 150px;
            object-fit: contain;
            position: relative;
            top: 0;
            left: 0;
            filter: drop-shadow(2px 0 0 white) drop-shadow(0 2px 2px gray) drop-shadow(-2px 0 0 white) drop-shadow(0 -2px 0 white);
        }

        & h5 {
            z-index: 99;
            position: relative;
            color: #ffffff !important;
            font-weight: bold;
            font-size: 1rem;
        }
    }

    & .content_cards {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        min-height: 200px;
        padding: 20px;
        opacity: 0;
        transition: all 0.5s;
        display: none;
    }
}

.cards_ceibas:hover {
    background-color: #ffffffad;

    & h5 {
        color: #4d733e !important;
    }
}

.color-button-cards-ceibas {
    color: #fff;
    background: #28a745;
    border: 2px solid transparent;
}

.color-button-cards-ceibas:hover {
    background: #FFFFFF;
    color: #28a745 !important;
    border: 2px solid #28a745;
}

.container_title-ceibas {
    height: 100px;
    display: flex;

    & .container-title {
        height: 100%;
        display: flex;
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 2rem;
        justify-content: space-between;
    }

    & img {
        height: 100%;
    }

    & p {
        color: #4d733e !important;
    }
}

.modal-fullscreen {
    max-width: 80%;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 3rem;
    justify-self: center;

    & .modal-content {
        height: auto;
        border-radius: 0;

        & .modal-body {
            padding: 0;
        }
    }
}

.container_buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
    z-index: 999;
    top: 0;
    left: 0;
    position: relative;

    & h3 {
        z-index: 99;
        position: relative;
        color: #ffffff !important;
        font-weight: bold;
        font-size: 1.5rem;
        margin: 0;
    }
}

.button_class {
    height: 25%;
    width: 25%;
    border: none;
    border-radius: 50%;
    background-color: #ffffff9c;

    & img {
        filter: drop-shadow(2px 0 0 white) drop-shadow(0 2px 0 white) drop-shadow(-2px 0 0 white) drop-shadow(0 -2px 0 white);
    }
}

.button_class:hover {
    background-color: #FFFFFF;
    border-radius: 50%;
    color: #10603A;
    border: 2px solid #ffffff9c;
}

.button_class[data-sel='1'] {
    background-color: #7093c1;

    & img {
        filter: drop-shadow(2px 0 0 #2f673b) drop-shadow(0 2px 0 #296736) drop-shadow(-2px 0 0 #296736) drop-shadow(0 -2px 0 #296736);
    }
}

.button_class_flex {
    display: flex;
    gap: 1rem;
}

.svg_button {
    width: 30px;
}

.container_img_header {
    bottom: 60%;
    position: absolute;
    left: 0;
    z-index: 99;
}

.tooltip_button {
    position: relative;
    display: inline-block;
}

.tooltip_button .tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 5px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 120%;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip_buttons:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.container_cards_ceibas {
    position: relative;
    width: 80%;
    top: 15%;
    right: 10%;
    height: 80%;
    border-radius: 3%;
    border: none;
}

.size_card-ceibas {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: auto;
    border-radius: 3%;
    background: #ffffff;
    border: none;
    box-shadow: 2px 2px 2px 2px #62626259;


    & p {
        font-size: .875rem;
    }
}

.size_card-ceibas ol li {
    font-size: .875rem;
}

.size_card-ceibas::-webkit-scrollbar,
.size_card-ceibas::-webkit-scrollbar-thumb {
    width: 26px;
    border-radius: 13px;
    background-clip: padding-box;
    border: 10px solid transparent;
    color: #9f9f9f;
}

.size_card-ceibas::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 0 10px;
}