.content_activity {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content_activity img {
    width: 100%;
    height: auto;
}

.banner_options {
    padding: 10px 0px;
    background-color: hsla(0, 0%, 95%, 0.6);
    border-radius: 8px;
    border: 2px dashed #016D38;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    min-height: 100px;
}

.element_option {
    margin-left: 20px;
    margin-right: 20px;
}

.element_option:hover {
    cursor: grab;
}

.element_option_1 {
    width: 75px;
}

.element_option_2 {
    width: 45px;
}

.element_option_3 {
    width: 50px;
}



.sceneWrapper {
    display: inline-block;
    position: relative;
}

.content_destination {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.element_destination {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.element_destination_1 {
    top: 28.7%;
    left: 12.3%;
    width: 9%;
    height: 11.8%;
}

.element_destination_2 {
    top: 82.1%;
    left: 52.9%;
    width: 5%;
    height: 14.5%;
}

.element_destination_3 {
    top: 40%;
    left: 62.8%;
    width: 6%;
    height: 16.4%;
}



/* Modal */

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

.modal-dialog {
    margin: 15% auto;
    width: 600px;
    max-width: 90%;
}

.modal-content {
    position: relative;
    border-radius: 10px;
    border: 3px dashed #016D38;
    padding: 20px 30px;
    border-radius: 10px;
    background-color: #FADC5D;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-body {
    font-size: 24px;
    text-align: center;
}

.close {
    background: #016D38;
    color: #fff;
    font-size: 26px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(30%, -30%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

/* Estilos para el modal final */
#modal_redi_final .modal-content {
    border: 3px dashed #FADC5D;
    background-color: #016D38;
    color: #fff;
}

#modal_redi_final .close {
    background: #FADC5D;
    color: #016D38;
}