@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root {
	--main-color: #DD2F6E;
	--color-dark: #1D2231;
	--text-grey: #8390A2;
	--rojo: #E20D2A;
	--verde: #03C455;
	--naranja: #E2840D;
}

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	list-style-type: none;
	text-decoration: none;
	font-family: 'Poppins', sans-serif;
}


.intermitente {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    
    -moz-animation-name: blinker;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    
    animation-name: blinker;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@-moz-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@-webkit-keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}

@keyframes blinker {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
}


#myBar {
  width: 0%;
  height: 30px;
  background-color: var(--main-color);
  text-align: center; /* To center it horizontally (if you want) */
  line-height: 30px; /* To center it vertically */
  color: white;
}

.sidebar{
	width: 250px;
	position: fixed;
	left: 0;
	top: 0;
    bottom: 0;
	height: 100%;
	background: var(--main-color);
	z-index: 100;
	transition: all 300ms;
    overflow-y: auto;
}

.sidebar-brand{
	height: 90px;
	padding: 1rem 0rem 1rem 2rem;
	color: #fff;
}

.sidebar-brand span{
	display: inline-block;
	padding-right: 1rem;
}

.sidebar-menu{
	margin-top: 1rem;
}
.sidebar-menu li{
	width: 100%;
	padding-left: 1rem;
}

.sidebar-menu a{
	display: block;
	color: #fff;
	font-size: 1.1rem;
	padding: 1rem 0rem 1rem 1rem;
}

ul li.active a, ul li a:hover, ul li a:active{
	background: #fff;
	/*padding-left: 1rem;*/
	color: var(--main-color);
	border-radius: 30px 0px 0px 30px;
}


.sidebar-menu a span:first-child{
	font-size: 1.5rem;
	padding-right: 1rem;
}

#nav-toggle:checked + .sidebar {
	width: 70px;
}

#nav-toggle:checked + .sidebar .sidebar-brand,
#nav-toggle:checked + .sidebar li {
	padding-left: 1rem;
	text-align: center;
}

#nav-toggle:checked + .sidebar li a {
	padding-left: 0rem;
}


#nav-toggle:checked + .sidebar .sidebar-brand h2 span:last-child,
#nav-toggle:checked + .sidebar li a span:last-child {
	display: none;
}

#nav-toggle:checked ~ .main-content{
	margin-left: 70px;
}

#nav-toggle:checked ~ .main-content header{
	width: calc(100% - 70px);
	left: 70px;
}


.main-content{
	transition: all 300ms;
	margin-left: 250px;
}

/*
.contenedor_busqueda_citas{
	display: flex;
	z-index: 100;
}
*/

header{
	background: #fff;
	display: flex;
	justify-content: space-between;
	padding: 1rem 1.5rem;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	position: fixed;
	left: 250px;
	width: calc(100% - 250px);
	top: 0;
	z-index: 100;
	transition: all 300ms;	
}

header h2{
	color: #222;
}

header label span {
	/*font-size: 1.7rem;*/
	padding-right: 1rem;
}

.search-wrapper{
	border: 1px solid #ccc;
	border-radius: 30px;
	height: 50px;
	display: flex;
	align-items: center;	
	overflow-x: hidden;
}

.search-wrapper span{
	display: inline-block;
	padding: 0rem 1rem;
	font-size: 1.5rem;
}

.search-wrapper input{
	height: 100%;
	padding: .5rem;
	border: none;
	outline: none;

}

.user-wrapper{
	display: flex;
	align-items: center;
	cursor: pointer;
}

.user-wrapper .cont_foto{
	margin: auto;
	width: 40px;
	height: 40px;
	position: relative;
	overflow: hidden;
	border-radius: 50%;
	display: flex;
	align-items: center;
	margin-right: 1rem;

}

.user-wrapper img{
	display: inline;
	margin: 0 auto;
	width: 40px;
	height: 40px;
	width: auto;
}

.user-wrapper small{
	display: inline-block;
	color: var(--text-grey);
}

main{
	margin-top: 45px;
	padding: 2rem 1.5rem;
	background: #f1f5f9;
	min-height: calc(100vh - 90px);
}


/*Indice notificacion de seguimientos*/
.notificacion-cont{
	float: right;
	margin-right: 8px;
}

.notificacion-cont #notificacion{
    background: radial-gradient( 5px -9px, circle, white 8%, red 26px );
    background-color: red;
    border-radius: 12px; /* one half of ( (border * 2) + height + padding ) */
    box-shadow: 1px 1px 1px black;
    color: white;
    font: bold 10px/13px Helvetica, Verdana, Tahoma;
    height: 16px; 
    min-width: 14px;
    padding: 4px 3px 3px 3px;
    text-align: center;

}

.cards{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 2rem;
	margin-top: 1rem;
}

.card-single{
	display: flex;
	justify-content: space-between;
	background: #fff;
	padding: 2rem;
	border-radius: 2px;
}

.card-single div:last-child span{
	font-size: 3rem;
	color: var(--main-color);
}

.card-single div:first-child span{
	color: var(--text-grey);
}

.card-single:last-child{
	background: var(--main-color);
}

.card-single:last-child h1,
.card-single:last-child div:first-child span,
.card-single:last-child div:last-child span{
	color: #fff;
}

/*TABLAS*/

.recent-grid{
	margin-top: 3.5rem;
	display: grid;
	grid-gap: 2rem;
	grid-template-columns: 65% auto;
}

.card{
	background: #fff;
	border-radius: 5px;
}

.card-header,
.card-body {
	padding: 1rem;
}

.card-header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #f0f0f0;
}

.card-header button{
	background: var(--main-color);
	border-radius: 10px;
	color: #fff;
	font-size: .8rem;
	padding: .5rem 1rem;
	border: 1px solid var(--main-color);
}

/*	HOVER DESCRIPCION */


.middle {
	transition: .5s ease;
  position: absolute;
	top: -100%;
	left: 50%;
	width: 300px;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
	visibility: collapse;
	display: none;
	z-index: 100;	

}



.descipcion {
	background: rgba(76,76,76,1);
background: -moz-linear-gradient(45deg, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 12%, rgba(102,102,102,1) 25%, rgba(71,71,71,1) 39%, rgba(44,44,44,1) 47%, rgba(52,63,79,1) 61%, rgba(17,17,17,1) 65%, rgba(43,43,43,1) 76%, rgba(18,50,66,1) 91%, rgba(19,19,19,1) 100%);
background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(76,76,76,1)), color-stop(12%, rgba(89,89,89,1)), color-stop(25%, rgba(102,102,102,1)), color-stop(39%, rgba(71,71,71,1)), color-stop(47%, rgba(44,44,44,1)), color-stop(61%, rgba(52,63,79,1)), color-stop(65%, rgba(17,17,17,1)), color-stop(76%, rgba(43,43,43,1)), color-stop(91%, rgba(18,50,66,1)), color-stop(100%, rgba(19,19,19,1)));
background: -webkit-linear-gradient(45deg, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 12%, rgba(102,102,102,1) 25%, rgba(71,71,71,1) 39%, rgba(44,44,44,1) 47%, rgba(52,63,79,1) 61%, rgba(17,17,17,1) 65%, rgba(43,43,43,1) 76%, rgba(18,50,66,1) 91%, rgba(19,19,19,1) 100%);
background: -o-linear-gradient(45deg, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 12%, rgba(102,102,102,1) 25%, rgba(71,71,71,1) 39%, rgba(44,44,44,1) 47%, rgba(52,63,79,1) 61%, rgba(17,17,17,1) 65%, rgba(43,43,43,1) 76%, rgba(18,50,66,1) 91%, rgba(19,19,19,1) 100%);
background: -ms-linear-gradient(45deg, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 12%, rgba(102,102,102,1) 25%, rgba(71,71,71,1) 39%, rgba(44,44,44,1) 47%, rgba(52,63,79,1) 61%, rgba(17,17,17,1) 65%, rgba(43,43,43,1) 76%, rgba(18,50,66,1) 91%, rgba(19,19,19,1) 100%);
background: linear-gradient(45deg, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 12%, rgba(102,102,102,1) 25%, rgba(71,71,71,1) 39%, rgba(44,44,44,1) 47%, rgba(52,63,79,1) 61%, rgba(17,17,17,1) 65%, rgba(43,43,43,1) 76%, rgba(18,50,66,1) 91%, rgba(19,19,19,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313', GradientType=1 );
	
	color: #ebebeb;
	font-size: 16px;
	padding: 16px 32px;
	  border-radius: 0.5em;
}

.titulo_style{
	color: white;

}

.imagenyeah1:hover .middle{
	visibility: visible;
	display: block;
}


.imagenyeah1{
	cursor: pointer;
}


table{
	border-collapse: collapse;
}

thead tr{
	border-top: 1px solid #f0f0f0;
	border-bottom: 2px solid #f0f0f0;
}

thead td{
	font-weight:700;
}

td{
	padding: .5rem 1rem;
	font-size: .9rem;
	color: #222;
}

tbody .por_vencer{
	color: #E2840D;
	font-weight: 700;
}

tbody .vencido{
	color: #F30030;
	font-weight: 700;
}

tbody .vigente{
	color: #00C117;
	font-weight: 700;
}


td a{
	background: var(--main-color);
	color: #fff;
	padding: 5px;
	border-radius: 5px;
}

.table-responsive{
	width: 100%;
	overflow-x: auto;
}

.customer{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: .5rem .7rem;
}

.info{
	display: flex;
	align-items: center;
}

.info img{
	border-radius: 50%;
	margin-right: 1rem;
}

.info h4 {
	font-size: .8rem;
	font-weight: 700;
	color: #222;
}

.info small{
	font-weight: 600;
	color: var(--text-grey);
}

.contact span{
	font-size: 1.2rem;
	display:  inline-block;
	margin-left: .5rem;
	color: var(--main-color);
}

/*Tarjeta Seguimientos*/
.cont_seguimientos{
	background-color: #fff;
	padding: 5px;
	border-radius: 5px;
	border: 2px solid var(--main-color);
	margin-bottom: 5px;
}

.cont_seguimientos .row_head{
	width: 100%;
	display: flex;
	border-bottom: 1px solid #FFB2DD;
}

.cont_seguimientos .row_head span.fecha_seguimiento{
	/*background-color: var(--main-color);*/
	color: #fff;
	padding: 5px 5px 5px 5px;
	border-top-left-radius: 5px;
}

.cont_seguimientos .row_head span:nth-child(2){
	width: 70%;
	border-right: 1px solid #FFB2DD;
	border-left: 1px solid #FFB2DD;
	padding: 5px 0px 5px 10px;
	color: var(--main-color);
}

.cont_seguimientos .row_head a{
	width: 10%;
	font-size: 20px;
	color: var(--main-color);
	cursor: pointer;
	text-align: center;
}

.cont_seguimientos .row_head a:hover{
	background-color: var(--main-color);
	color: #fff;
	border-radius: 0px 5px 0px 0px;
}

.cont_seguimientos .nombre span{
	padding-left: 5px;
	font-weight: 600;
}

/*Ventana Flotante*/

.modal{
  background-color: rgba(0,0,0,.7);
  position:fixed;
  z-index: 100;
  top:0;
  right:0;
  bottom:0;
  left:0;
  transition: all 0.5s;
  opacity:0;
  pointer-events:none;
    overflow-x: hidden;
    overflow-y: auto;

}

.modal-contenido{
	background: #f1f5f9;
    width: 400px;
    margin: 10% auto;
    position: relative;
    border-radius: 5px;
	color: #222;
}

.modal-contenido.amplio{
    width: 850px;
    margin: 10px auto;
}


.modal-contenido .content_eliminar{
	padding: 20px;
	display: -block;
}

.modal-contenido .content_eliminar button{
	float: right;
	margin-left: 10px;
	padding: 3px 5px 3px 5px;
	border-radius: 5px;
	background-color: default;
	cursor: pointer;
  	border: 2px solid #333;
}

.modal-contenido .content_eliminar .eliminar_btn{
	background-color: var(--rojo);
	color: #fff;
  	border: 2px solid var(--rojo);
}

.modal .modal-contenido .cerrar{
	display: inline-block;
	float: right;
	padding: 5px 10px 5px 10px;
	border-radius: 10px;
	color: #333;
	cursor: pointer;
	margin: 5px;
	font-weight: 700;
}

.modal .modal-contenido form{
	padding: 0px 10px 20px 10px;
}

.modal .modal-contenido label{
	font-size: 16px;
}

.modal .modal-contenido input{
	width: 100%;
	padding: 5px;
	border-radius: 5px;
	border-style: none;
    padding: 8px;
}

.modal .modal-contenido input[type="password"],
.modal .modal-contenido input[type="text"],
.modal .modal-contenido input[type="number"],
.modal .modal-contenido input[type="date"],
.modal .modal-contenido input[type="time"],
.modal .modal-contenido input[type="email"],
.modal .modal-contenido input[type="tel"],
.modal .modal-contenido input[type="color"]{
	background: #ccc;
}

.modal .modal-contenido input[type="submit"]{
	background: var(--main-color);
	cursor: pointer;
	color: #fff;
}

.modal .modal-contenido input[type="file"]{
	cursor: pointer;
	margin: 0px 0px 5px 0px;
}


.modal-contenido.amplio input[type="number"],
.modal-contenido.amplio select
{
    width: 60px;
    height: 20px;
    margin: 0px;
    padding: 0px 5px;
}

.modal-contenido.amplio input[type="date"]{
    margin-bottom: 5px !important;
}

.modal-contenido.amplio .cont_perdida{
	width: 100%;
    display: flex;
    margin: 5px 0px 5px 0px;
}

.modal-contenido.amplio .cont_perdida .cont_derecho label,
.modal-contenido.amplio .cont_perdida .cont_izquierdo label{
	display: inline-block;
	width: auto;
}

.modal-contenido.amplio .cont_perdida .cont_derecho{
	width: 50%;
    float: right;
}

.modal-contenido.amplio .cont_perdida .cont_izquierdo{
	width: 50%;
    float: left;
}

.modal-contenido.amplio .cont_perdida input[type="radio"]{
    width: 20px;
    cursor: pointer;

}


.modal-contenido .cont_tipo_contrato{
    padding: 10px;
    
}

.modal-contenido .tipo_contrato{
	width: 100%;
	color: #FFF;  
	border-radius: 5px;
	border: 2px solid var(--main-color);
    margin-top: 10px;
    padding: 10px;
    cursor: pointer;
	transition: all 300ms;
    
}

.modal-contenido .tipo_contrato:hover{
	box-shadow: 5px 5px 5px #999;
	/*transform: scale(1.1);*/
}

.modal-contenido h3{
	color: #222;    
    font-weight: 900;
}

.modal-contenido p{
	color: #222;    
}

/* Elegir serie nueva- Cambio por Garantía*/

.modal-contenido #id_audifono,
.modal-contenido #id_audifono2,
.modal-contenido #id_receptor,
.modal-contenido #id_receptor2{ 
	border: 2px solid rgba(0,0,0,0); 
    margin: 5px 0px 5px 0px;
    border-radius: 5px;
    padding: 10px;  
    cursor: pointer!important;
}

.modal-contenido #id_audifono *,
.modal-contenido #id_audifono2 *,
.modal-contenido #id_receptor *,
.modal-contenido #id_receptor2 *{ 
    cursor: pointer!important;
}

.modal-contenido #id_audifono:hover,
.modal-contenido #id_audifono2:hover,
.modal-contenido #id_receptor:hover,
.modal-contenido #id_receptor2:hover{
	box-shadow: 5px 5px 5px #999;
}

.modal-contenido #value_serie_audifono,
.modal-contenido #value_serie_receptor,
.modal-contenido #value_serie_audifono2,
.modal-contenido #value_serie_receptor2{
	background-color: #ccc;
    padding-left: 10px;
    font-weight: 700;
}


/*CUMPLEAÑOS*/

#cumple_container{
	width: auto;
	margin: 0px 10px;
	box-shadow: 1px 3px 5px rgba(0, 0, 0, .5);
	border-radius: 10px 10px 0px 0px;
	position: fixed;
	bottom: 0;
	right: 15px;
	z-index: 9;
	color: white;
	font-family: '', cursive;
	padding: 5px 20px;
}

#cumple_lottie{
	width: auto;
	margin: 0px 10px;
	position: fixed;
	bottom: 0;
	right: 15px;
	z-index: 9;
	color: white;
	padding: 5px 20px;
}

#cumple_titulo{
	width: auto;
	margin: 0px 10px;
	box-shadow: 1px 3px 5px rgba(0, 0, 0, .5);
	border-radius: 10px 10px 0px 0px;
	background: var(--main-color);
	position: fixed;
	bottom: 0;
	right: 15px;
	z-index: 9;
	color: white;
	font-family: '', cursive;
	padding: 5px 20px;
}


/*CALENDARIO*/

.modal-contenido.medio{
    width: 600px;
    
}

.modal .modal-header{
	background: var(--main-color);
	padding: 15px 10px;
    color: #fff;
    display: flex;
    border-radius: 5px 5px 0px 0px;
    font-size: 20px;
}

.modal .modal-header button{
    position: absolute;
    right: 0;
    padding: 5px;
    margin: 13px;
    top: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 900;
    color: #ccc;
}

.modal .modal-header button:hover{
    color: #fff;
}


.modal .modal-body{
	background: white;
	padding: 10px;
	
}

.modal .modal-contenido input[type="color"]{
	width: 100%;
    padding: 0;
    border-radius: 0px 0px 5px 5px;    
    
}

.modal .modal-footer{
	background: white;
    border-radius: 0px 0px 5px 5px;	
    display: flex;
    margin: 10px;
    
}

.modal .modal-footer button{
    width: 80px;
    padding: 10px;  
    cursor: pointer;
    margin: 10px 5px;
}

/*Buscador de personas*/
#result,#result2,#result3,#result6,#result_doc,#result_edit {
    position: absolute;
    width: 100%;
    max-width:870px;
    cursor: pointer;
    overflow-y: auto;
    max-height: 400px;
    box-sizing: border-box;
    z-index: 1001;
    background-color:#fff;
    border-radius: 3px;
	/*box-shadow: 1px 1px 5px 3px rgba(0,0,0,0.2);*/
}

#result li,
#result2 li,
#result3 li ,
#result6 li,
#result_edit li,
#result_doc li{
    border-bottom: 1px solid #ccc;
    padding: 10px;
}

#busqueda_citas {
    top: 70px;
    position: absolute;
    width: 50%;
    overflow: hidden; 
    max-width: 600px;
    cursor: pointer;
    background-color:#fff;
    z-index: 1001;
    border-radius: 3px;
    box-sizing: border-box;
	/*box-shadow: 1px 1px 5px 3px rgba(0,0,0,0.2);*/
}

#busqueda_citas li {
    border-bottom: 1px solid #ccc;
    width: 100%;
    height: 50px;
    padding: 10px;
    overflow: hidden;
}


.link-class:hover{
    background-color:#f1f1f1;
}


.btn.btn-success{
    background: var(--main-color);
    color: #fff;
    border: none;
    border-radius: 5px; 
    float: right;   
}

.btn.btn-danger{
	border: 2px solid var(--main-color);
    color: var(--rojo);
    border-radius: 5px;    
    float: right;
}

.btn.btn-default{
	border: 2px solid 111;
    color: #111;
    border-radius: 5px;    
    float: right; 
}
.btn.btn-success:hover,
.btn.btn-danger:hover,
.btn.btn-default:hover{
    opacity: 0.9;    
}




.form-row {
    width: 100%;
    display: flex;
}

.form-row .col-mod-6{
    width: 50%;
    margin: 5px 5px;
}

.form-row .col-mod-12{
    width: 100%;
    margin: 5px 5px;
}

/*BLOQUEO DE MAYUSCULAS*/

#nombre,#nacionalidad,#ciudad,#direccion,#profesion,#nombre_facturado,#cotiz_nombre,#molde_nombre,#medida_nombre,#micro_nombre,#nombre_doctor,#txttitle{
	text-transform: uppercase;
}


/*
	 COTIZADOR
*/



.foot_fragment {
	z-index: 10000;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
}

.boton_accion {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: var(--main-color);
  color: #fff;
  padding: 10px 20px;
  border-style: none;
  box-shadow: 2px 2px 3px 1px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px; /* Espacio entre los botones */
  margin-left: 10px;
}

.boton_color_border {
  background: #f1f5f9;
  color: var(--main-color);
  border: solid 2px var(--main-color);
}


.boton_accion i {
  margin-right: 10px; /* Espacio entre el ícono y el texto, ajusta según sea necesario */
  font-size: 24px;
}

.boton_accion:hover {
  cursor: pointer;
}

.desglose{
	text-align: center;
}

.desglose th{
	text-align: center;
}

.desglose tbody tr:last-child {
    border-top: 2px solid #dddddd; /* Puedes ajustar el color y el grosor del borde según tus preferencias */
}

.fondo_azul{
	background: #00B0F0!important;

}

.fondo_verde{
	border-radius: 10px;
	background: #92D050!important;

}

.fondo_amarillo{
	background: #FFFF00!important;

}



#protecciones {
  text-align: center;
}

.cont_protec {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* Ajusta el margen superior según sea necesario */
}

.protec_azul,
.protec_rosa {
	width: 200px;
	height: 200px;
	margin: 0 10px; /* Ajusta el margen entre los cuadros según sea necesario */
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff; /* Ajusta el color de fondo según sea necesario */
	box-shadow: 2px 2px 3px 1px rgba(0, 0, 0, 0.5);
	border-radius: 30px;
	font-weight: 900;
	color: #fff;
}

.protec_azul {
  background-color: #4D97FF; /* Color de fondo para azul */
}

.protec_rosa {
  background-color: #DD2F6E; /* Color de fondo para rosa */
}

@keyframes latido {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.protec_azul:hover,
.protec_rosa:hover {
  cursor: pointer;
  animation: latido 0.5s infinite;
}


#cotizador_check h3{
	text-align: center;
	margin-bottom: 50px;

}

.content_fragment{
	margin: auto;
	max-width: 95%;
	text-align: center;
	align-items: center;
}

.items {
  display: flex;
  flex-direction: row;
  justify-content: space-around; /* Otra opción: space-between; */
  align-items: center;
  margin-top: 10px;
  text-align: center;
}

.items > * {
  margin: 0 5px; /* Margen horizontal de 5px entre los elementos */
}





.items .div_corto {
  width: 110px; 
}

.items .div_corto label,
.items .div_largo label {
  font-size: 10px;
}


.items .div_corto input {
  width: 110px; 
}

.items .cant input{
  width: 80px!important; 
}

.items .div_largo {
  width: 400px; 
}


.content_fragment input{
	width: 100%;
 	font-weight: 900;
	padding: 10px 20px;
	background: #DCDCDC;
	border-radius: 30px;
	border-style: none;
	box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.coti_title {
  display: flex;
  justify-content: space-between; /* Alinear elementos al espacio entre ellos */
  align-items: center; /* Alinear elementos verticalmente en el centro */
}

.coti_title h2 {
	margin: 0px!important;
}

.coti_title #descuento {
	width: 90px;
}

.coti_title select {
	width: 200px;
 	font-weight: 900;
	padding: 10px 20px;	
	background: #DCDCDC;
	border-radius: 30px;
	border-style: none;
	box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.3);
	margin-bottom: 0px!important;
}

.foot_cotizacion_resumen{
	margin-top: 60px;
}

.content_fragment .foot_cotizacion_resumen label{
	font-size: 10px!important;
	float: right;
	text-align: right;
}

.content_fragment .items_all label{
	font-size: 10px!important;
	float: center;
	text-align: center;
}




#iniciar_cotizador{
	display: block;
}
#select_protec{	
	display: none;
}
#select_cross{
	display: none;
}

#select_audifo{
	display: none;
}

#select_accesorios{
	display: none;
}

#recumen_cotizazion{
	display: none;
}

#recumen_cotizazion_servicios{
	display: none;
}

#contenedor_renta{
	display: none;
}






/*Buscador de personas*/
.list-group{
    position: absolute;
    width: 100%;
    max-width:870px;
    cursor: pointer;
    overflow-y: auto;
    max-height: 400px;
    box-sizing: border-box;
    z-index: 1001;
    background-color:#fff;
    border-radius: 3px;
	/*box-shadow: 1px 1px 5px 3px rgba(0,0,0,0.2);*/
}

.list-group li{
    border-bottom: 1px solid #ccc;
    padding: 10px;
}



/*Fin  Ventana Flotante*/
@media only screen and (max-width: 1200px){

	.sidebar {
		width: 70px;
	}

	.sidebar .sidebar-brand,
	.sidebar li {
		padding-left: 1rem;
		text-align: center;
	}

	.sidebar li a {
		padding-left: 0rem;
	}


	.sidebar .sidebar-brand h2 span:last-child,
	.sidebar li a span:last-child {
		display: none;
	}

	.main-content{
		margin-left: 70px;
	}

	.main-content header{
		width: calc(100% - 70px);
		left: 70px;
	}
}


@media only screen and (max-width: 960px){
	.cards{
		grid-template-columns: repeat(3, 1fr);
	}

	.recent-grid{
		grid-template-columns: 60% 40%;
	}
}

@media only screen and (max-width: 768px){

	.modal-contenido.medio{
	    width: 100%;
	}

	.modal-title{
		font-size: 14px!important;
		max-width: 300px;
		max-height: 20px;
		overflow: hidden;
	}

	.modal-contenido.medio label{
	    font-size: 14px;
	}

	.modal-contenido.medio .enviar_what{
	    font-size: 9px;
	}

	.cards{
		grid-template-columns: repeat(2, 1fr);
	}

	.recent-grid{
		grid-template-columns: 100%;
	}

	.search-wrapper{
		display: none;
	}

	.sidebar {
		left: -100% !important;
	}

	header h2{
		display: flex;
		align-items: center;
	}

	header h2 label{
		display: inline-block;
		background: var(--main-color);
		padding-right: 0rem;
		margin-right: 1rem;
		height: 40px;
		width: 40px;
		border-radius: 50%;
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: center !important;
	}

	header h2 span{
		text-align: center;
		padding-right: 0rem;
	}

	header h2{
		font-size: 1.1rem;
	}

	.main-content{
		width: 100%;
		margin-left: 0rem;
	} 

	header{
		width: 100% !important;
		left: 0 !important;
	} 

	#nav-toggle:checked + .sidebar {
		left: 0 !important;
		z-index: 100;
		width: 250px;
	}

	#nav-toggle:checked + .sidebar .sidebar-brand,
	#nav-toggle:checked + .sidebar li {
		padding-left: 2rem;
		text-align: left;
	}

	#nav-toggle:checked + .sidebar li a {
		padding-left: 1rem;
	}


	#nav-toggle:checked + .sidebar .sidebar-brand h2 span:last-child,
	#nav-toggle:checked + .sidebar li a span:last-child {
		display: inline;
	}

	#nav-toggle:checked ~ .main-content {
		margin-left: 0rem !important;
	}


}

@media only screen and (max-width: 560px){
	.cards{
		grid-template-columns: 100%;
	}

	.table-responsive td#movil{
		display: none;

	}

}