table{border-collapse:collapse}
div{border-collapse:collapse}
input{border-collapse:collapse}
label{border-collapse:collapse}
.span_tit_submenu {
    display: inline-block;
    flex-grow: 1;
    overflow: hidden;
    font-size: 13px;
    text-align: left;
    color: #000;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.input_editar_monto_cuotero {
   width: 100%;
    height: auto;
    border: none;
    outline: none;background-color:transparent;text-align: center;height: 20px;border-radius: 0px 8px 8px 0px;border:none;font-size: 11px;font-weight: bold;padding: 7px 8px 7px;
}
.tit_submenu1 {
    /* border-style: double; */
    background: #9e9e9e12;
    /* border-radius: 10px; */
    /* align-items: center; */
    /* width: 200px; */
    color: #949292;
    /* text-align: center; */
    padding-left: 13px;
    /* border: solid 3px #fff; */
    /* -webkit-border-radius: 200px 200px 200px 200px; */
    /* border: 6px double rgb(255, 255, 255); */
    /* align-items: center; */
    line-height: normal;
    display: flex;
    flex-grow: 1;
    font-weight: 400;
    font-size: 14px;
    line-height: 27px;
    overflow: hidden;
}
/* Contenedor principal */
.loteamiento-card-container {
  width: 100%;
  margin-bottom: 2rem;
}

/* Wrapper de la tarjeta */
.loteamiento-card-wrapper {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  height: 250px;
  display: flex;
  align-items: flex-end;
  background: #000;
  transition: all 0.5s ease;
}

.loteamiento-card-wrapper:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

/* Contenedor de imagen */
.loteamiento-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.loteamiento-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-in-out;
}

.loteamiento-card-wrapper:hover .loteamiento-card-img {
  transform: scale(1.1);
}

/* Overlay de gradiente */
.loteamiento-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.loteamiento-card-wrapper:hover .loteamiento-card-overlay {
  opacity: 0.9;
}

/* Contenido de la tarjeta */
.loteamiento-card-content {
  position: relative;
  z-index: 10;
  padding: 1.5rem;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

/* Botón personalizado */
.loteamiento-card-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: #2563eb;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  float: right;
}

.loteamiento-card-button:hover {
  background: #1d4ed8;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(37, 99, 235, 0.4);
}

/* Icono del botón */
.loteamiento-card-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.loteamiento-card-button:hover .loteamiento-card-icon {
  transform: translateX(2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .loteamiento-card-wrapper {
    height: 20rem;
    border-radius: 1rem;
  }
  
  .loteamiento-card-content {
    padding: 1rem;
  }
  
  .loteamiento-card-button {
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .loteamiento-card-wrapper {
    height: 18rem;
  }
  
  .loteamiento-card-button {
    width: 100%;
    justify-content: center;
  }
}

/* Efectos de animación adicionales */
@keyframes loteamientoCardAppear {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.loteamiento-card-container {
  animation: loteamientoCardAppear 0.6s ease-out;
}



.text-primary-700{
        text-decoration: underline;
    --tw-text-opacity: 1;
    color: rgb(0 114 117 / var(--tw-text-opacity, 1));
}


.text-green-600 {
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}

.text-amber-800 {
    --tw-text-opacity: 1;
    color: rgb(146 64 14 / var(--tw-text-opacity, 1));
}
.font-semibold {
    font-weight: 600;
}
.px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.bg-amber-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}


@media (min-width: 768px) {
    .md\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}


.gap-6 {
    gap: 1.5rem;
}

.grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid {
    display: grid
;
}

.mb-6 {
    margin: 1.5rem;
}

.duration-300 {
    transition-duration: 300ms;
}


.transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: 
cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.bg-gray-100
 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.rounded-lg {
    border-radius: 0.5rem;
}
.text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-gray-700{
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}


.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}
.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.p-2 {
    padding: 0.2rem;
}
.mb-2 {
    margin-bottom: 0.5rem;
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.p-4 {
    padding: 1rem;
}


.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.flex-col {
    flex-direction: column;
}



.h-40 {
    height: 10rem;
}

.flex {
    display: flex;
}
.text-amber-800 {
    --tw-text-opacity: 1;
    color: rgb(146 64 14 / var(--tw-text-opacity, 1));
}
.text-green-800 {
    --tw-text-opacity: 1;
    color: rgb(22 101 52 / var(--tw-text-opacity, 1));
}
.boton_dasa{
    border: 1px solid transparent;color: #ffffff;font-family: -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;text-align: center;font-weight: bold;cursor: pointer;height: auto;padding:5px;outline: none;box-shadow: 1px 1px 7px #0000001f;border-radius: 7px;border-style: inherit;
}
.bg-green-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
}
.leading-5
{
    line-height: 1.25rem;
}
.font-semibold {
    font-weight: 600;
}
.bg-amber-100
 {
    --tw-bg-opacity: 1;
    background-color: rgb(254 243 199 / var(--tw-bg-opacity, 1));
}
.bg-blue-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
}
.text-blue-800 {
    --tw-text-opacity: 1;
    color: rgb(30 64 175 / var(--tw-text-opacity, 1));
}
.rounded-full {
    border-radius: 9999px;
}
.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.object-cover {
    object-fit: contain;
}




.h-40 {
    height: 10rem;
}
.h-40 {
    height: 10rem;
}

img, video {
    max-width: 100%;
    height: auto;
}

audio, canvas, embed, iframe, img, object, svg, video {
    display: block;
    vertical-align: middle;
}


.input_clave{
    background:transparent;
   border: 1px solid #adadad;
   border-radius: 8px;
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
   color: #262626;
   font-size: 14px;
   padding: 9px 8px 7px;
   width: 100%;
  
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }
        .input_clave:focus{
            border: 1px solid var(--color_info);
            outline:none;
        }
        .input_clave::-webkit-input-placeholder{
            color:#999;
            font-weight:300;
            opacity:1;
        }

.input_clave_error{
    background:transparent;
   border: 1px solid red;
   border-radius: 8px;
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
   color: #262626;
   font-size: 14px;
   padding: 9px 8px 7px;
   width: 100%;
  
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }
        .input_clave_error:focus{
            border: 1px solid red;
            outline:none;
        }
        .input_clave_error::-webkit-input-placeholder{
            color:#999;
            font-weight:300;
            opacity:1;
        }


.progress {
    height: 35px;
    width: 100%;
    border: 1px solid #dededf;
    border-radius: 5px;
    background-color: #e6f3fa;
    margin-bottom: 15px;
}
 
.progress-bar {
    height: 100%;
    background: #4caf50;
    
    float:left;
    align-items: center;
    transition: width 0.25s;
    border-radius: 5px;
}
 
.progress-bar-text {
    margin-left: 10px;
    font-weight: bold;
    color: #cce7f5;
}
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}
.input_editar {
    border: none;
	outline:none;
    cursor: pointer;
    color: white;
    border-radius: 2px;
    font-size: 12px;
	-webkit-box-shadow: 1px 1px 7px #0000001f;
    box-shadow: 1px 1px 7px #0000001f;
   background: #55acee;
   border-radius:50%;
    outline: none;
       height: 35px;
    width: 35px;
	float:right;
	margin-right:15px;
	 position: relative;
  overflow: hidden;
}
.input_editar:after {
content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 30px;
    height: 30px;
    background: url(../icono/ver_pago.png) no-repeat;
    background-size: 14px;

}
.tooltip .tooltiptext {
  visibility: hidden;
width: 120px;
    background-color: #795548;
    color: #fff;
    margin: -29% 0% 0% 150%;
    text-align: center;
    border-radius: 6px;
    padding: 5px 5px;
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
	.table_blanco_reporte {
    width: 100%;
    height: 20px;
    background-color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #212529;
    font-weight: bold;
    text-align: center;
    border-left: solid 1px #cecece;
    border-right: solid 1px #cecece;
    border-bottom: solid 1px #cecece;
    border-top: solid 1px #cecece;
    cursor: pointer;
}	
	.table_gris_reporte {
    width: 100%;
    height: 20px;
    background-color: rgba(0,0,0,0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #212529;
    font-weight: bold;
    text-align: center;
    border-left: solid 1px #cecece;
    border-right: solid 1px #cecece;
    border-bottom: solid 1px #cecece;
    border-top: solid 1px #cecece;
    cursor: pointer;
}	
.div_td_desc{
	width: 100%;
    height: 100%;
    align-items: center;
    display: grid;
    outline: none;
}
@import url(http://fonts.googleapis.com/css?family=Raleway:400,500,700);
/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 20px;
 
  cursor: pointer;
  font-size: 15px;
  font-weight:bold;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.input_file {
    padding: 15px;
    opacity: 0;
    position: relative;
    cursor: pointer;
    left: -120px;
    z-index: 1;
}
.container_input1 {
    margin: 0 auto;
    border: solid 1px #CCC;
    overflow: hidden;
}
a{
    color: -webkit-link;
    cursor: pointer;
    text-decoration: underline;
}

a:hover {
    color:#f44336;
}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.img_icon {
    width: 20px;
    height: 20px;
}
/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color:var(--colorbotonmas);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  background: white;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
 	top: 3.5px;
    left: 3.7px;
    width: 7.5px;
    height: 7.5px;
    border-radius: 50%;
    background: white;
}






/* Create a custom radio button */
.checkmark1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark1 {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark1 {
  background-color:var(--colorbotonmas);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark1:after {
  content: "";
  position: absolute;
  display: none;
  background: white;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark1:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark1:after {
 	top: 3.5px;
    left: 3.7px;
    width: 7.5px;
    height: 7.5px;
    border-radius: 50%;
    background: white;
}

@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: 'codropsicons';
	src:url('../fonts/codropsicons/codropsicons.eot');
	src:url('../fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'),
		url('../fonts/codropsicons/codropsicons.woff') format('woff'),
		url('../fonts/codropsicons/codropsicons.ttf') format('truetype'),
		url('../fonts/codropsicons/codropsicons.svg#codropsicons') format('svg');
}

.text_descrip{
    background-color: var(--coloracceso);
    width: 40%;
        padding: 7px;
    border-radius: 10px;
    color: #fff;
    font-family:Segoe UI,Helvetica Neue,Helvetica,Lucida Grande,Arial,Ubuntu,Cantarell,Fira Sans,sans-serif; 
}
.table_filtro{
        height: 35px;
    width: 60%;
    margin-top: 10px;
    margin-left: 10px;
    float: left;
    background: var(--colorcabezera_menu);
    border-radius: 8px;
    color: #fff;
    font-size: 10px;
}
 .ancho_tabladetalles{
		width:34cm;
	}

.table_titulo_gral {
	width: 100%;
    height: 20px;
    background-color:var(--colorcabezera_menu);
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
	font-weight:bold;
	text-align:center;
	border-left:solid 1px #cecece;
	border-right:solid 1px #cecece;
	border-bottom:solid 1px #cecece;
	border-top:solid 1px #cecece;

		}
		
		.table_titulo_gral_azul {
	width: 100%;
    height: 20px;
    background-color:#2196f3;
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
	font-weight:bold;
	text-align:center;
	border-left:solid 1px #cecece;
	border-right:solid 1px #cecece;
	border-bottom:solid 1px #cecece;
	border-top:solid 1px #cecece;

		}
		
		.table_titulo_gral_rojo {
	width: 100%;
    height: 20px;
    background-color:#f44336;
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
	font-weight:bold;
	text-align:center;
	border-left:solid 1px #cecece;
	border-right:solid 1px #cecece;
	border-bottom:solid 1px #cecece;
	border-top:solid 1px #cecece;

		}
		
		
		
		
	.icono_schot_td{
	float: right;
   
}
	.table_titulo {
	width: 100%;
    font-size: 12px;
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
	font-weight:bold;
	text-align:center;
	cursor:pointer;
		}
.cnt_det_1 {
    width: 98%;
    margin-left: 2px;
    margin-right: 2px;
    float: left;
}
.table_buscador{
	width: 100%; margin: auto;padding-top: 2%;
}
.cnt_opciones_busqueda{
	width: 90%; margin: auto;
}
.mapa_menu_style {
position: absolute;
background: #fff;
padding: 10px;
font-family: 'Open Sans', sans-serif;
}
.detalles_mapa{
	    float:left;
        position: relative;
        margin-left: 2%;
        padding: 5px;
        border: none;
        font-size: 9px;
		font-family:Segoe UI,Helvetica Neue,Helvetica,Lucida Grande,Arial,Ubuntu,Cantarell,Fira Sans,sans-serif; 
        color:#333333;
        border-radius: 4px;
        background: #fff;
}
.marker {
display: block;
border: none;
border-radius: 50%;
cursor: pointer;
padding: 0;
}
.texto_marker{    
   text-align: center;
    margin-right: 15%;
    margin-top: 27%;
    font-weight: 900;
	}
	.texto_marker1{    
  width: 300px;
    font-size: 19px;
    height: 100px;
    -webkit-text-stroke: 1px #ffffff;
    position: absolute;
    text-align: -webkit-center;
    top: -30px;
    left: -124px;
    color: #000000;
    font-weight: 900;
	}
.cnt_forms{
    width: 68.4%;
    height: 100%;
    top: 0px;
    margin-left: 30.2%;
    float: right;
    position: absolute;
}
.i1{
/* 	background-position: 0 -324px;
    background-size: auto;
    background-repeat: no-repeat;
    display: inline-block;
    height: 20px;
    width: 20px;
	font-style: italic;cursor: pointer;
list-style: none;vertical-align: -0.25em; */
}
.div_icon_explorer{
	height: 38px; width: 38px;top: 110px;justify-content: center;box-shadow: 0 2px 4px #65676b;-webkit-box-shadow:0 2px 4px #65676b; margin-top:50px;border-radius: 50%;align-self: center;display: flex;background-color:#ffffff;align-items: center;cursor: pointer;text-align: inherit;
}
.div_text_explorer{
	font-family: inherit;justify-content: center;box-sizing: border-box;font-size: 9pt;text-align: center;font-weight: bold;color:#ffffff;
	margin-top:5px;width: 100%;display: flex;top: 120px;
}
.cnt_det{
	width:56%; margin-left: auto; margin-right: auto;
}
.cnt_detx{
	width:49%; margin-left: 2px; margin-right: 2px;float:left;
}
.cnt_det1{
	width:56%; margin-left: auto; margin-right: auto;padding-bottom:15%;
}
.div_cnt_photo{
	background: rgb(98,66,237);
	background: linear-gradient(107deg, rgba(98,66,237,1) 2%, rgba(132,187,244,1) 98%);
	background-size: contain;
    background-repeat: no-repeat;
	background-position: center;
	border-radius: 8px;
	display: inline-block; 
	height: 300px;
	width: 200px;
	list-style: none;
	cursor: pointer;
	text-align: inherit;
	align-items: center;
flex-direction: column;
border: solid 1px #cecece;
    touch-action: manipulation;
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
}
.DivPrincipal{
	top:0px;
	left:0px;
	width:100%;
	height:100%;
    background-size: 500px auto;
	background-image: url("../img/fondosistema.png");
	 background-repeat: no-repeat;
  background-position: 70% 30%;
	    font-family: Segoe UI Historic, Segoe UI, Helvetica, Arial, sans-serif;
}
.menuprincipal{
	top:0;
	left:0;
	right:0;
	display: block;
    width:29%;
}
.menu_m{
   
	font-family: inherit;
	box-sizing: border-box;
	position: relative;
	display: flex;
	z-index: 0;
	flex-direction: column;
	-webkit-font-smoothing: antialiased;
}
.cnt_v_lotead{
	width:33%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased;
}
.a_v_lotead{
	display: block; background-color: #fff; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.13); margin-bottom: 20px;cursor: pointer;text-decoration: none;overflow: hidden;border-radius: 3px;height: 200px;
}
.cnt_a_v_lotead{
	width: 100%;height: 100%;overflow: hidden; position: relative;box-sizing: border-box;display: block;
}
.cnt_img_lot{
	    width: 100%; height: 100%;position: relative;display: block;background-size: cover;background-position: 50% 50%;background-repeat: no-repeat;box-sizing: border-box;
	}
	
.cnt_text_lot{
position: absolute;width: 100%;top: 0;left: 0;bottom: 0;right: 0;z-index: 1;
}
.cnt_text_lot_sep{
	font-size: 30px;line-height: 30px;position: absolute;z-index: 5;top: 25%;left: 20%;right: 20%;color: #fff;text-align: center;width: 60%;letter-spacing: -1px;border-bottom: 1px solid rgba(255,255,255,0.5);overflow: hidden;padding-bottom: 5px;
}
.cnt_text_lot_bot{
	background-color: var(--colorcabezera);font-size: 10px;line-height: 11px;color: #fff;padding: 2px 4px;border-radius: 2px;position: absolute;top: 15px;left: 50%;text-transform: uppercase;z-index: 3;-webkit-transform: translateX(-50%);transform: translateX(-50%);
}

.cnt_text_lot_bot1{
	background-color: #09c7a0;font-size: 10px;line-height: 11px;color: #fff;padding: 2px 4px;border-radius: 2px;top: 15px;left: 50%;text-transform: uppercase;z-index: 3;
}
.cnt_text_lot_h3{
	font-size: 18px !important;line-height: 22px !important;font-weight: normal !important;margin: 0;padding: 0 !important;margin: 0 0 0 10% !important;position: absolute;z-index: 3;top: 48%;left: 0;color: #fff;text-align: center;width: 80%;white-space: nowrap;overflow: hidden;
}
.cnt_text_lot_ubic{
	font-size: 11px;font-style: italic;padding-top: 2px;position: absolute;bottom: 30%;left: 0;width: 100%;text-align: center;z-index: 4;color: #fff;
}
.menu_cabezera{
	position:absolute;
	background:var(--colorcabezera);
	width:100%;
	height:55px;
	display:flex;
	align-items:center;
	-webkit-box-shadow:1px 1px 7px #00000052;
    box-shadow:1px 1px 7px #00000052;
}

.cont_sub_menu{
	width:30%;
	    min-height: calc(100vh - 55px);
    height: 500px;
	margin-top:55px;
	overflow-y:scroll;
	background-image: url(../img/fondomenu.png);
	overflow-x:none;
	background-color:#cecece;
}
.con_tit_submenu{
    border-bottom: 1px solid #f2f2f2;
    flex-grow: 1;
    flex-basis: auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.con_tit_submenu1{
	/*padding-right: 15px; */
    border-top: 1px solid #f2f2f2; 
    flex-grow: 1;
    flex-basis: auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: cente
}
.con_tit_submenu2{
	/*padding-right: 15px; */
   
    flex-grow: 1;
    flex-basis: auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: cente
}
.tit_submenu{
	text-align: left;
	align-items: center;
    line-height: normal;
    display: flex;
	color: #333333;
   
    flex-grow: 1;
    font-weight: 400;
    font-size: 17px;
    line-height: 21px;
    overflow: hidden;
}
.span_tit_submenu_1{
	    display: inline-block;
		flex-grow: 1;
    overflow: hidden;
	text-align:left;
	color:#ccb880;
	font-weight:bold;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.tit_submenu1{
	/*border-style: double; */
    background: #9e9e9e12;
    /* border-radius: 10px; */
    /* align-items: center; */
    /* width: 200px; */
    color: #949292;
    /* text-align: center; */
    padding-left: 13px;
    /* border: solid 3px #fff; */
    /* -webkit-border-radius: 200px 200px 200px 200px; */
    /* border: 6px double rgb(255, 255, 255); */
    /* align-items: center; */
    line-height: normal;
    display: flex;
    flex-grow: 1;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    overflow: hidden;
}
.span_tit_submenu{
	    display: inline-block;
		flex-grow: 1;
    overflow: hidden;
	text-align:left;
	color:#000;
	font-weight:bold;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.span_tit_submenu1{
	display: inline-block;
    text-align: center;
	flex-grow: 1;
    overflow: hidden;
	font-weight:bold;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.span_titulo_vistalistado{
	display: inline-block;
	padding-left:15px;
	color:#fff;
	flex-grow: 1;
    font-size: 18px; 
   
	font-weight:bold;
	font-family: "Roboto", "Helvetica", "Arial", sans-serif;
}
.submenu{
	background-color:#fff;
    cursor: pointer;
	display: flex;
    flex-direction: row;
    height: 65px;
    pointer-events: all;
    /*position: relative;*/
	font: inherit;
    vertical-align: initial;
    outline: none;
    margin: 0;
    padding: 0;
    border: 0;
}

 .submenu:hover {
 background-color:var(--colorcabezera);
 transform: scale(1.05);
 transition: background-color 1s;
  
}
 .submenu:active {
 background-color:var(--colorcabezera);

}

 .submenu:focus {
 background-color:var(--colorcabezera);

}
.submenu1{
	background-color:#fff;
	display: flex;
    flex-direction: row;
    height: 30px;
    
    /*position: relative;*/
	color:#333333;
	font: inherit;
    font-size: 11px;
    
    outline: none;
    margin: 0;
    padding: 0;
    border: 0;
	flex: none;
    align-items: center;
}
.submenu2{
	background-color:#fff;
	display: flex;
    flex-direction: row;
    height: 40px;
	font: inherit;
    font-size: 10px;
    vertical-align: initial;
    outline: none;
    margin: 0;
    padding: 0;
    border: 0;
}
.con_ic_submenu{
	
	padding: 0 15px 0 13px;
	flex: none;
    display: flex;
    align-items: center;
	
	
}
.con_img_submenu{
	    height: 49px;
    width: 49px;
	border-radius: 50%;
    background-color:#e6e6e6;
    overflow: hidden;
}
.ic_img_submenu{
	visibility: visible;
   
    opacity: 1;
    display: block;
    transition: opacity .15s ease-out;
   width: 30px;
    height: 30px;
    padding: 10px;
    z-index: 100;
    overflow: hidden;
    -webkit-user-drag: none;
}

.ic_menu_img{
	width: 36px;
    padding: 2px;
    outline: none;
    cursor: pointer;
    margin-top: 5px;
    margin-left: 5px;
    border-radius: 50px;
    border: solid 3px  var(--colorfondoblanco);
    height: 36px;
    /* filter: hue-rotate(556deg);  */
}

.ic_menu_img1{
	width: 36px;
    padding: 2px;
    outline: none;
    cursor: pointer;
    margin-left: 5px;
    border-radius: 50px;
    border: solid 3px  var(--colorfondoblanco);
    height: 36px;
    /* filter: hue-rotate(556deg);  */
}
.modalemergente{
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	width:100%;
	height:100%;
	background-color: var(--colorfondoblanco);
	font-family: "Roboto", "Helvetica", "Arial", sans-serif;
    z-index: 1050;
    display: block;
    overflow: hidden;
    outline: 0;
	overflow-x: hidden;
    overflow-y: hidden;
    /* padding-right: 17px; */
}
.modal_body {
	width: 100%;
    height: 100%;
    background-color: var(--colorfondoblanco);
   
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    font-weight: 500;
    font-size: 14px;
}
.modal_header{
    
   -webkit-box-shadow:1px 1px 7px #00000052;
    box-shadow:1px 1px 7px #00000052;
    width: 100%;
    height: 55px;
	position:absolute;
	background-color:var(--colorcabezera);
	text-align: left;
	align-items: center;
    line-height: normal;
    display: flex;
}
.content_emergente_p{

}



.input_atras {
    border: none;
	outline:none;
    cursor: pointer;
    color: white;
    border-radius: 2px;
    font-size: 12px;
   background:var(--colorbotonatras);
   border-radius:50%;
   -webkit-box-shadow: 1px 1px 7px #0000001f;
    box-shadow: 1px 1px 7px #0000001f;
    outline: none;
        height: 35px;
    width: 35px;
	 position: relative;
  overflow: hidden;
}
.modal_body1 {
 width: 100%;
 height: 350px;
       min-height: 650px;
    font-weight: 500;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 14px;
	 background:var(--colorfondoblanco);
}
.input_mas {
    border: none;
	outline:none;
    cursor: pointer;
    color: white;
    border-radius: 2px;
    font-size: 12px;
	 -webkit-box-shadow: 1px 1px 7px #0000001f;
    box-shadow: 1px 1px 7px #0000001f;
   background: var(--colorbotonmas);
   border-radius:50%;
    outline: none;
       height: 35px;
    width: 35px;
	float:right;
	/*  position: relative; */
  overflow: hidden;
}
.input_eliminar {
    border: none;
	outline:none;
    cursor: pointer;
    color: white;
    border-radius: 2px;
    font-size: 12px;
	-webkit-box-shadow: 1px 1px 7px #0000001f;
    box-shadow: 1px 1px 7px #0000001f;
   background: var(--colorbotoneliminar);
   border-radius:50%;
    outline: none;
       height: 35px;
    width: 35px;
	float:right;
	margin-right:15px;
	 position: relative;
  overflow: hidden;
}
.input_photo {
    border: none;
	outline:none;
    cursor: pointer;
    color: white;
    border-radius: 2px;
    font-size: 12px;
	-webkit-box-shadow: 1px 1px 7px #0000001f;
    box-shadow: 1px 1px 7px #0000001f;
   background: var(--colorbotonphoto);
   border-radius:50%;
    outline: none;
       height: 35px;
    width: 35px;
	float:right;
	margin-right:15px;
	 position: relative;
  overflow: hidden;
}
.input_guardar {
    border: none;
    outline: none;
    color: white;
    font-size: 12px;
    -webkit-box-shadow: 1px 1px 7px #0000001f;
    box-shadow: 1px 1px 7px #0000001f;
    background: var(--colorbotonmas);
    border-radius: 30px;
    outline: none;
    height: 36px;
	cursor:pointer;
    width: 46%;
	float:left;
    font-weight: bold;
    text-align: center;
    align-items: center;
    display: grid;
	 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	 -webkit-border-radius: 200px 200px 200px 200px;
    border: 5px double rgb(255, 255, 255);
}



.input_guardar1 {
    border: none;
    outline: none;
    color: white;
    font-size: 12px;
    -webkit-box-shadow: 1px 1px 7px #0000001f;
    box-shadow: 1px 1px 7px #0000001f;
    background: var(--colorbotonmas);
    border-radius: 20px;
    outline: none;
    height: 28px;
	cursor:pointer;
    font-weight: bold;
    text-align: center;
    align-items: center;
    display: grid;
	 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	 -webkit-border-radius: 15px;
    border: 2px double rgb(255, 255, 255);
}


.input_cancelar {
    border: none;
	cursor:pointer;
    outline: none;
    color: white;
    font-size: 12px;
    -webkit-box-shadow: 1px 1px 7px #0000001f;
    box-shadow: 1px 1px 7px #0000001f;
    background: var(--colorbotoncancelar);
    border-radius: 30px;
    outline: none;
    height: 36px;
    width: 46%;
	float:right;
    font-weight: bold;
    text-align: center;
    align-items: center;
    display: grid;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	-webkit-border-radius: 200px 200px 200px 200px;
    border: 5px double rgb(255, 255, 255);
}
.cont_opciones{
	right: 4px;
	outline: none;
	background-color: var(--dropdown-background);
    border-radius: 3px;
    box-shadow: 0 2px 5px 0 rgba(var(--shadow-rgb),.26),0 2px 10px 0 rgba(var(--shadow-rgb),.16);
    padding: 9px 0;
}
.cont_buscador{
	background: aliceblue;
    width: 100%;
    text-align: left;
    height: 35px;
    align-items: center;
    line-height: normal;
    display: flex;
	 outline: none;
    border-radius: 40px;
}

.bus_text{
cursor: text;
    width: 90%;
    border: none;
    background: transparent;
    height: 20px;
    outline: none;
    margin: 0px auto;
    font-size: 15px;
    font-weight: bold;
    padding: 08px 8px 8px 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}




 .input_1_1{
    border: 1px solid #efefef;
    border-radius: 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #262626;
    font-size: 14px;
    padding: 9px 8px 7px;
    width: 100%;
    /* margin-left: 4px; */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
         }
		 .input_1_1:focus{
         	border:1px solid var(--colorcabezera);
         	outline:none;
         }
         .input_1_1::-webkit-input-placeholder{
         	color:#999;
         	font-weight:300;
         	opacity:1;
         }

.ul_opciones{
	padding: 0;
    margin: 0;
	  outline: none;
	list-style: none;
}
.li_opciones{
	opacity: 1;
	position: relative;
	  outline: none;
	  text-align: -webkit-match-parent;
}
.span_opciones{
	margin-left: 82%;
}

.li_div_opciones{
	padding-left: 24px; 
    cursor: pointer;
	padding-left: 24px;
    padding-bottom: 9px;
    padding-top: 9px;
	background-color: var(--dropdown-background);
    font-weight: 700;
	color:#4a4a4a;
	font-weight:700px;
    outline: none;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

     .table_4 {
     border-top-left-radius:6px;
	 border-top-right-radius: 6px;
     width: 98%;
	margin-top:70px;
    height: 20px;
    background-color: #208084;
    font-size: 12px;
     font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	 font-weight:bold;
	text-align:center;
    color: #fff;
    border-radius: 2px;
	
		
		}
		.td_titulo{
			width:33.3%;
			height:35px;
		}
		.td_detalles{
		
				width:33.3%;
			height:35px;
			font-size:11px;
			padding:0px 5px 0px 5px;
		text-align:center;
			vertical-align:middle;
        }
       
				.table_5 {
	width: 100%;
    height: 20px;
    background-color: #fff;
    font-size: 12px;
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #808080;
	font-weight:bold;
	text-align:center;
	border-left:solid 1px #cecece;
	border-right:solid 1px #cecece;
	border-bottom:solid 1px #cecece;
	cursor:pointer;
		}

	
			.table_5_1 {
	width: 100%;
    height: 20px;
    background-color: #fff;
    font-size: 12px;
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #808080;
	font-weight:bold;
	text-align:center;
    border-left: solid 1px #cecece;
    border-right: solid 1px #cecece;
    border-bottom: solid 1px #cecece;
    border-top: solid 1px #cecece;
	cursor:pointer;
		}
				.table_gris {
	width: 100%;
    height: 20px;
    background-color: rgba(0,0,0,0.05);
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #212529;
	font-weight:bold;
	text-align:center;
	border-left:solid 1px #cecece;
	border-right:solid 1px #cecece;
	border-bottom:solid 1px #cecece;
	border-top:solid 1px #cecece;
	cursor:pointer;
		}

		
		.table_gris:hover {
			background-color:#000;
			border-left:solid 1px #cecece;
			border-right:solid 1px #cecece;
			border-bottom:solid 1px #cecece;
			color: #FFF;
		}

		.table_blanco{
	width: 100%;
    height: 20px;
    background-color: #fff;
   font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #212529;
	font-weight:bold;
	text-align:center;
	border-left:solid 1px #cecece;
	border-right:solid 1px #cecece;
	border-bottom:solid 1px #cecece;
	border-top:solid 1px #cecece;
	cursor:pointer;
		}
		

		.table_blanco:hover {
			background-color:#000;
			border-left:solid 1px #cecece;
			border-right:solid 1px #cecece;
			border-bottom:solid 1px #cecece;
			color: #FFF;
		}
		 .contenedor_tabla{
		    width:98%;
		    height: 400px;
    overflow: auto;
			/* min-height:500px; */
			background-color:#cecece;
			/* overflow-y:scroll; */
			border-bottom: 1px solid #cecece;
		 }
		
.li_div_opciones:hover{
	background-color: var(--colorhover);
}
.cont_emergente_alert{
		width: 30%;
    height: 135px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 3px 4px 4px var(--shadow_emergente_alert);
    border-radius: 3px;
    /* border-top-left-radius: 4px; */
    /* border-top-right-radius: 4px; */
    background-color: #fdfdfd;
	}
	
@media screen and (max-height:768px) {
   
}
@media screen and (max-width:2560px) {
    .inp_consulta_cliente {
    margin-top: 12px;
    width: 342px;
    border-style: double;
    background: var(--colorbotoneliminar);
    align-items: center;
    font-family: "Roboto", sans-serif;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 40px;
    padding: 1px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    display: grid;
}
    .tit_contacto{
        color:#fff;font-size: 13px;font-weight: bold;right: 20px;position: relative;
    }
	.cnt_opciones_busqueda {
    width: 50%;
    margin: auto;
	}
	.search-panel {
	height: 180px;
}

.span_opciones{
	margin-left: 62%;
}
.cont_emergente_alert{
	width: 13%;
    height: 135px;
}
.cont_sub_menu{
	width:30%;
	/*height: 665px;*/
	    min-height: calc(100vh - 55px);
	height:500px;
	margin-top:55px;
	overflow-y:scroll;
}
.menuprincipal{
    width:30%;
}
.cnt_forms{
    width: 69.7%;
    height: 100%;
    top: 0px;
    margin-left: 30.0%;
    float: right;
    position: absolute;
}
.cnt_det{
	width:56%; margin-left: auto; margin-right: auto;
}
.cnt_det2{
width: 24%;
    padding: 5px;
    float: left;
  
    margin-right: auto;
}
.cnt_det1{
	width:56%; margin-left: auto; margin-right: auto;padding-bottom:15%;
}
.cnt_v_lotead{
	width:25%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased; 
}
}



@media screen and (max-width:1300px) {
    .inp_consulta_cliente {
    margin-top: 23px;
    width: 342px;
    border-style: double;
    background: var(--colorbotoneliminar);
    align-items: center;
    font-family: "Roboto", sans-serif;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 40px;
    padding: 1px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    display: grid;
}
    .tit_contacto{
        color:#fff;font-size: 13px;font-weight: bold;right: 20px;position: relative;
    }
	.cnt_detx{
	width:49%; margin-left: 2px; margin-right: 2px;float:left;
}

	.cnt_opciones_busqueda {
    width: 60%;
    margin: auto;
	}
.search-panel {
	height: 180px;
}
	.cnt_v_lotead{
	width:33%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased;
}
.span_opciones{
	margin-left: 57%;
}
.cont_emergente_alert{
	width: 22%;
    height: 135px;
}
.cont_sub_menu{
	width:30%;
	       min-height: calc(100vh - 55px);
	    height: 500px;
	margin-top:55px;
	overflow-y:scroll;
}

.menuprincipal{
    width:30%;
}
.cnt_forms{
    width: 69.7%;
    height: 100%;
    top: 0px;
    margin-left: 30.2%;
    float: right;
    position: absolute;
}
.cnt_det{
	width:56%; margin-left: auto; margin-right: auto;
}
.cnt_det2{
	width:25%;float: left;     margin-right: auto;
}
.cnt_det1{
	width:56%; margin-left: auto; margin-right: auto;padding-bottom:15%;
}
}
@media screen and (max-width:1024px) {
    .inp_consulta_cliente {
    margin-top: 23px;
    width: 342px;
    border-style: double;
    background: var(--colorbotoneliminar);
    align-items: center;
    font-family: "Roboto", sans-serif;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 40px;
    padding: 1px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    display: grid;
}
    .tit_contacto{
        color:#fff;font-size: 13px;font-weight: bold;right: 8px;position: relative;
    }
		.cnt_detx{
	width:49%; margin-left: 2px; margin-right: 2px;float:left;
}
	.cnt_opciones_busqueda {
    width: 70%;
    margin: auto;
	}
.search-panel {
	height: 180px;
}
.cnt_v_lotead{
	width:50%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased;
}
.span_opciones{
	margin-left: 52%;
}
.cont_emergente_alert{
	width: 30%;
    height: 135px;
}
.cont_sub_menu{
	width:30%;
	    min-height: calc(100vh - 55px);
	    height: 500px;
	margin-top:55px;
	overflow-y:scroll;
}
.menuprincipal{
    width:30%;
}
.cnt_forms{
   width: 69.7%;
    height: 100%;
    top: 0px;
    margin-left: 30.2%;
    float: right;
    position: absolute;
}
.cnt_det{
	width:56%; margin-left: auto; margin-right: auto;
}
.cnt_det2{
	width: 48%;
    padding: 5px;
    float: left;
    margin-left: auto;
    margin-right: auto;
}
.cnt_det1{
	width:56%; margin-left: auto; margin-right: auto;padding-bottom:15%;
}
}
@media screen and (max-width:768px) {
     .inp_consulta_cliente {
    margin-top: 23px;
    width: 329px;
    border-style: double;
    background: var(--colorbotoneliminar);
    align-items: center;
    font-family: "Roboto", sans-serif;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 40px;
    padding: 1px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    display: grid;
    }
    .tit_contacto{
        color:#fff;font-size: 11px;font-weight: bold;right: 4px;position: relative;
    }
	.cnt_detx{
	width:49%; margin-left: 2px; margin-right: 2px;float:left;
}
	.cnt_opciones_busqueda{
	width: 90%; margin: auto;
}
.search-panel {
	height: 180px;
}
	.cnt_v_lotead{
	width:50%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased;
}
.span_opciones{
	margin-left: 77%;
}

.cont_emergente_alert{
    width: 43%;
    height: 133px;
}
.cont_sub_menu{
	width:100%;
	    min-height: calc(100vh - 55px);
	height: 500px;
	margin-top:55px;
	overflow-y:scroll;
}
.menuprincipal{
    width:100%;
}
.cnt_forms{
    width: 100%;
    height: 100%;
    top: 0px;
    margin-left:0%;
    float: right;
    position: absolute;
}
.cnt_det{
	width:90%; margin-left: auto; margin-right: auto;
}
.cnt_det2{
	    width: 38%;
    float: left;
    margin-left: 50px; margin-right: auto;
}
.cnt_det1{
	width:90%; margin-left: auto; margin-right: auto;padding-bottom:30%;
}
}
@media screen and (max-width: 489px) {
     .inp_consulta_cliente {
    margin-top: 23px;
    width: 244px;
    border-style: double;
    background: var(--colorbotoneliminar);
    align-items: center;
    font-family: "Roboto", sans-serif;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 40px;
    padding: 1px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    display: grid;
    }
     .tit_contacto{
        color:#fff;font-size: 11px;font-weight: bold;right: 4px;position: relative;
    }
	.cnt_detx{
	width:49%; margin-left: 2px; margin-right: 2px;float:left;
}
	.cnt_opciones_busqueda{
	width: 90%; margin: auto;
}
.search-panel {
	height: 180px;
}
	.cnt_v_lotead{
	width:100%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased;
}
.span_opciones{
	    margin-left: 64%;
}

.cont_emergente_alert{
    width: 70%;
    height: 133px;
}
.cont_sub_menu{
	width:100%;
	    min-height: calc(100vh - 55px);
	height: 500px;
	margin-top:55px;
	overflow-y:scroll;
}
.menuprincipal{
    width:100%;
}
.cnt_forms{
    width: 100%;
    height: 100%;
    top: 0px;
    margin-left:0%;
    float: right;
    position: absolute;
}
.cnt_det{
	width:90%; margin-left: auto; margin-right: auto;
}
.cnt_det2{
	width:90%;float: none; margin-left: auto; margin-right: auto;
}
.cnt_det1{
	width:90%; margin-left: auto; margin-right: auto;padding-bottom:30%;
}
}
@media screen and (max-width: 425px) {
     .inp_consulta_cliente {
    margin-top: 23px;
    width: 244px;
    border-style: double;
    background: var(--colorbotoneliminar);
    align-items: center;
    font-family: "Roboto", sans-serif;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 40px;
    padding: 1px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    display: grid;
    }
       .tit_contacto{
     color: #fff;
    font-size: 10px;
    font-weight: bold;
    right: 4px;
    position: relative;
    }
	.cnt_opciones_busqueda{
	width: 90%; margin: auto;
}
.cnt_detx {
    width: 98%;
    margin-left: 2px;
    margin-right: 2px;
    float: left;
}
.search-panel {
	height: 220px;
}
	.cnt_v_lotead{
	width:100%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased;
}
.span_opciones{
	    margin-left: 59%;
}
.cont_emergente_alert{
    width: 87%;
    height: 133px;
}
.cont_sub_menu{
	width:100%;
	    min-height: calc(100vh - 55px);
	height: 500px;
	margin-top:55px;
	overflow-y:scroll;
}
.menuprincipal{
    width:100%;
}
.cnt_forms{
    width: 100%;
    height: 100%;
    top: 0px;
    margin-left:0%;
    float: right;
    position: absolute;
}
.cnt_det{
	width:90%; margin-left: auto; margin-right: auto;
}
.cnt_det2{
	width:90%;float: none; margin-left: auto; margin-right: auto;
}
.cnt_det1{
	width:90%; margin-left: auto; margin-right: auto;padding-bottom:30%;
}	
}
@media screen and (max-width: 375px) {
     .inp_consulta_cliente {
    margin-top: 23px;
    width: 244px;
    border-style: double;
    background: var(--colorbotoneliminar);
    align-items: center;
    font-family: "Roboto", sans-serif;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 40px;
    padding: 1px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    display: grid;
    }
     .tit_contacto{
     color: #fff;
    font-size: 10px;
    font-weight: bold;
    right: 4px;
    position: relative;
    }
			.cnt_detx {
    width: 98%;
    margin-left: 2px;
    margin-right: 2px;
    float: left;
}
		.cnt_opciones_busqueda{
	width: 90%; margin: auto;
}
.search-panel {
	height: 220px;
}
	.cnt_v_lotead{
	width:100%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased;
}
.span_opciones{
	    margin-left: 51%;
}
.cont_emergente_alert{
    width: 87%;
    height: 133px;
}
	.input_TEXT{
	  font-size: 12px;
    padding-top: 12px;
	}
	
	.input_progress{
	  font-size: 10px;
	}
	.input_ok{
	  font-size: 10px;
	  height: 20px;
    width: 27px;
	}
	.cont_sub_menu{
	width:100%;
	    min-height: calc(100vh - 55px);
	height: 500px;
	margin-top:55px;
	overflow-y:scroll;
}
.menuprincipal{
    width:100%;
}
.cnt_forms{
    width: 100%;
    height: 100%;
    top: 0px;
    margin-left:0%;
    float: right;
    position: absolute;
}
.cnt_det{
	width:90%; margin-left: auto; margin-right: auto;
}
.cnt_det2{
	width:90%;float: none; margin-left: auto; margin-right: auto;
}
.cnt_det1{
	width:90%; margin-left: auto; margin-right: auto;padding-bottom:30%;
}
}
@media screen and (max-width: 320px) {
    .inp_consulta_cliente {
    margin-top: 23px;
    width: 244px;
    border-style: double;
    background: var(--colorbotoneliminar);
    align-items: center;
    font-family: "Roboto", sans-serif;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .3rem;
    height: 40px;
    padding: 1px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    -webkit-font-smoothing: antialiased;
    display: grid;
    }
     .tit_contacto{
     color: #fff;
    font-size: 10px;
    font-weight: bold;
    right: 4px;
    position: relative;
    }
	.cnt_detx{
	width:49%; margin-left: 2px; margin-right: 2px;float:left;
}
			.cnt_detx {
    width: 98%;
    margin-left: 2px;
    margin-right: 2px;
    float: left;
}
		.cnt_opciones_busqueda{
	width: 90%; margin: auto;
}
.search-panel {
	height: 220px;
}
	.cnt_v_lotead{
	width:100%;float: left;position: relative;min-height: 1px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;-webkit-font-smoothing: antialiased;
}
.span_opciones{
	    margin-left: 45%;
}
.cont_emergente_alert{
    width: 87%;
    height: 133px;
}
	.input_TEXT{
	  font-size: 12px;
    padding-top: 12px;
	}
	
	.input_progress{
	  font-size: 10px;
	}
	.input_ok{
	  font-size: 10px;
	  height: 20px;
    width: 27px;
	}
	.cont_sub_menu{
	width:100%;
	    min-height: calc(100vh - 55px);
	height: 500px;
	margin-top:55px;
	overflow-y:scroll;
}
.menuprincipal{
    width:100%;
}
.cnt_forms{
    width: 100%;
    height: 100%;
    top: 0px;
    margin-left:0%;
    float: right;
    position: absolute;
}
.cnt_det{
	width:90%; margin-left: auto; margin-right: auto;
}
.cnt_det2{
	width:90%;float: none; margin-left: auto; margin-right: auto;
}
.cnt_det1{
	width:90%; margin-left: auto; margin-right: auto;padding-bottom:30%;
}
}

:root {
  --colorcabezera:#f28235;
  --input_fondo_color1:#f3efcf;
  --colorcabezera_menu:#293a4a;
  --coloracceso:#6a7071;
  --color_emergente_cabezera:#fff;
  --colorfondoblanco:#fff; 
  --colorbotonmas:#FF9800;
  --colorbotonatras:#e4e6eb;
  --colorbotoncancelar:#9E9E9E;
  --colorbotoneliminar:#ff5722;
   --colorbotonphoto:#2196f3;
  --colorfondoemergente:#0000005c;
  --colorhover:#f0f0f0;
  --dropdown-background: #fff;
  --shadow-rgb: 0,0,0;
  --shadow_emergente_alert: #4a484836;
}