.contenedor-tabla{
    width: 100%;
    overflow-x: auto;

}
.tabla-guias{
    width: 100%;
    border-collapse: collapse;
    table-layout: auto | fixed;
    font-size: 13px;
}
.tabla-guias thead th{
    font-weight: bold;
    text-align: left;
    padding: 12px 15px;
    border-bottom: 2px solid #e5e5e5;

}
.tabla-guias tbody td{
    padding: 10px 15px;
    vertical-align: top;
}
.tabla-guias tbody tr{
    cursor: pointer;
}
.tabla-guias tbody tr:hover{
    background: #f8f8f8;
}
.tabla-guias th:nth-child(1),
.tabla-guias td:nth-child(1){
    width: 10%;
}
.tabla-guias th:nth-child(2),
.tabla-guias td:nth-child(2){
    width: 15%;
}
.tabla-guias th:nth-child(3),
.tabla-guias td:nth-child(3){
    width: 35%;
}
.tabla-guias th:nth-child(4),
.tabla-guias td:nth-child(4){
    width: 10%;
}
.tabla-guias th:nth-child(5),
.tabla-guias td:nth-child(5){
    width: 30%;
}
#mapa{
    width: 100%;
    height: 400px;
    border: 1px solid #d9d9d9;
    margin-top: 10px;
    margin-bottom: 20px;
}
.modal-header-guia {
    background-color: #343a40;
    color: white;
    text-align: center;
    justify-content: center;
    position: relative;
}

.modal-header-guia .modal-title {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

.modal-header-guia .close {
    position: absolute;
    right: 15px;
    color: white;
    opacity: 1;
}

/* CUERPO DEL MODAL */
.modal-body {
    padding: 30px;
    text-align: left;
    direction: ltr;
}

/* NOMBRE */
.nombre-guia {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
}

/* CONTENEDOR DE DATOS */
.datos-guia {
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 15px;
    text-align: left;
}

/* CADA DATO */
.dato-guia {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.dato-guia:last-child {
    border-bottom: none;
}

/* ETIQUETAS */
.dato-guia small {
    display: block;
    color: #888;
    margin-bottom: 3px;
    text-align: left;
}

/* VALORES */
.dato-guia strong {
    display: block;
    color: #444;
    text-align: left;
}

/* CAMPOS DEL FORMULARIO */
.modal-body label {
    display: block;
    text-align: left !important;
    margin-bottom: 5px;
}

/* INPUTS */
.modal-body input,
.modal-body textarea,
.modal-body select {
    width: 100%;
    text-align: left;
}

/* PLACEHOLDER */
.modal-body textarea::placeholder,
.modal-body input::placeholder {
    text-align: left;
}

/* FOOTER */
.modal-footer {
    justify-content: flex-end;
    border-top: 1px solid #eee;
}

/* BOTÓN */
.btn-enviar {
    background-color: #650026;
    border: 1px solid #650026;
    color: white;
}

.btn-enviar:hover {
    background-color: #4e001d;
    color: white;
}

.texto-obligatorio {
    color: #999;
    font-size: 13px;
}

.modal-content {
    border-radius: 0;
}
