@font-face {
  font-family: 'DINPro-Bold';
  src: url('../../fonts/DINPro-Bold_13934.woff');
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: 'Myriad-Pro-Light';
  font-style: normal;
  font-weight: normal;
  src: url('../../fonts/Myriad-Pro-Light.otf') format('truetype');
}

header{
background-color: grey;

  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 60px !important;
  display: flex;
  justify-content: space-between;
  visibility: visible;
  transition: 0.5s;
}

.cabezera{
  height: 100%;
  overflow: hidden;
}

.header1, .header3{
  width: 25%;
}

.header2{
  width: 50%;
}

.header1{
  display: flex;
  justify-content: flex-end;
  vertical-align: center;
}

.header1 img{
  height: 35px;
  text-align: right;
  margin-top:10px;
  margin-right: 15px;
}

.header2{
  display: flex;
  justify-content: space-between;
}

.header2 .btn-menuSeg{
	background-color: transparent;
	color: white;
	font-size: 18px;
	font-weight: bold;
	border: none;
}

.header2 .menu{
  padding: 0;
  height: 100%;
}

.header2 .menu nav{
	display: inline-block;
}

.menu li{
  display: inline-block;
  height: 60px;
  padding: 15px 25px;
  cursor: pointer;
  padding-top: 25px;
}

.header2 .menu li a{
  display: block;
  text-decoration: none;
  font-family: 'Myriad-Pro-Light';
  font-size: 14px;
  font-weight: bold;
  color: white;
}

.header2 .busqueda{
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: white;
  margin: 5px 30px 0 0;
}

/*.header3 .btn-registrate,
.header3 .btn-ingresa{
	width: 130px;
	font-size: 14px;
	border-radius: 30px;
	margin-top: 15px;
}*/

.header3 .sesion{
	width: 100%;
	height: 100%;
}

.header3 .sesion{
	display: flex;
	justify-content: space-between;
}

.header3 .sesion .nombre{
	height: 100%;
	display: flex;
	align-items: center;
	margin-left: 50px;
}

.header3 .sesion .nombre .usuario{
	font-size: 14px;
}

.header3 .sesion .toggle-btn{
		height: 100%;
}

.header3 .sesion .toggle-btn button{
	background-color: transparent;
	border: none;
	height: 100%;
	width: 60px;
}

.header3 .sesion .toggle-btn button span{
	font-size: 40px;
	font-weight: bold;
	background-color: transparent;
	border: none;
	margin-top: -4px;
}
/********FIN DE HEADER********/


/********MENU SERVICIOS********/
.menuServicios{
	position: fixed;
	top: 60px;
	width: 100%;
	background-color: black;
	z-index: 100;
	display: none;
}

.menuSerciciosActive{
	display: block;
}

.menuServicios ul{
	display: flex;
	justify-content: space-around;
	padding: 10px 0 0 0;
	margin: 0;
}

.menuServicios ul li{
	list-style: none;
}

.menuServicios ul li a{
	text-align: center;
}

.menuServicios ul li div{
	/*border: 1px solid white;
	width: 4rem;
	height: 4rem;
	border-radius: 10px;*/
}

.menuServicios ul li label{
	display: block;
	color: white;
}
/********FIN DE HEADER********/

/********CERRAR SESION********/
.cerrarSesion{
    
/*	position: fixed;
	height: calc(100% - 60px);
	top: 60px;
	right: 0px;
	background-color: rgba(255, 255, 255);
	z-index: 1000;
	width: 0%;
	transition: 0.6s;*/
}

.cerrarSesion .menuContenedor,
.cerrarSesion .textoLogin{
	height: 45%;
	max-height: 45%;
	overflow: auto;
}

.cerrarSesion .btn-cerrar{
	height: 10%;
	max-height: 10%;
	border-top: 1px solid rgba(211, 211, 211);
}

.cerrarSesion .textoLogin img{
	width: 30%;
}

.cerrarSesion .btn-cerrar button{
	width: 100%;
	height: 100%;
	border: none;
	background-color: rgba(255, 255, 255);
	color: rgba(218, 41, 28);
	font-size: 16px;
	font-weight: bold;
}

.cerrarAncho{
	width: 25%;
	transition: 0.6s;
}
/********FIN DE CERRAR SESION********/

/*******************************************************************************************************************/
/******************************************      PORTRAIT     ******************************************************/
/*******************************************************************************************************************/
/***********************PORTRAIT DISPOSITIVO MOVIL CELULAR**********************************************************/
@media only screen and (max-width: 320px) and (orientation: portrait){

	header .header1{
		/*display: none;*/
	}

	header .header2{
		width: auto;
	}

	.header2 .btn-menuSeg{
		font-size: 12px;
	}

	.menu li {
		padding: 17px 15px;
	}

	header .header2 .menuResponsivo{
		position: fixed;
		top: 60px;
		left: 0px;
		flex-direction: column;
		width: 100%;
		display: none;
	}

	header .header2 .menuResponsivoActive{
		display: block;
		height: auto;
	}

	.menuResponsivo li{
		width: 100%;
		border-bottom: 2px solid white;
		display: flex;
		align-items: center;
		justify-content: center;
		height: auto;
	}

	.header2 .menu li a {
		text-decoration: none;
		font-size: 12px;
		font-weight: bold;
		color: rgb(255, 255, 255);
	}

	.menuServicios{
		top: 60px;
		width: 100%;
		height: calc(100% - 60px);
		overflow: auto;
	}

	.menuServicios ul{
		flex-direction: column;
	}

	.menuServicios ul li{
		display: flex;
		justify-content: center;
		border-bottom: 2px solid white;
		padding-top: 5px;
	}

  .header3{
    width: auto;
  }

  .header3 .btn-registrate,
  .header3 .btn-ingresa{
  	width: 80px;
  	font-size: 10px;
  }

	.header3 .sesion .nombre {
		display: none;
	}
}
@media only screen and (min-width: 321px) and (max-width: 424px) and (orientation: portrait){
	header .header1{
		/*display: none;*/
	}

	header .header2{
		width: 90%;
	}

	.header2 .btn-menuSeg{
		font-size: 12px;
	}

	.menu li {
		padding: 17px 15px;
	}

	header .header2 .menuResponsivo{
		position: fixed;
		top: 60px;
		left: 0px;
		flex-direction: column;
		width: 100%;
		display: none;
	}

	header .header2 .menuResponsivoActive{
		display: block;
		height: auto;
	}

	.menuResponsivo li{
		width: 100%;
		border-bottom: 2px solid white;
		display: flex;
		align-items: center;
		justify-content: center;
		height: auto;
	}

	.header2 .menu li a {
		text-decoration: none;
		font-size: 12px;
		font-weight: bold;
		color: rgb(255, 255, 255);
	}

	.menuServicios{
		top: 60px;
		width: 100%;
		height: calc(100% - 60px);
		overflow: auto;
	}

	.menuServicios ul{
		flex-direction: column;
	}

	.menuServicios ul li{
		display: flex;
		justify-content: center;
		border-bottom: 2px solid white;
		padding-top: 5px;
	}

	.header3 .sesion .nombre {
		display: none;
	}
}
/***********************PORTRAIT DISPOSITIVO MOVIL TABLET***********************************************************/
@media only screen and (min-width: 425px) and (max-width: 600px) and (orientation: portrait){
	/*header .header1{
		display: none;
	}*/

	header .header2{
		width: 90%;
	}

	.header2 .btn-menuSeg{
		font-size: 12px;
	}

	.menu li {
		padding: 17px 15px;
	}

	header .header2 .menuResponsivo{
		position: fixed;
		top: 60px;
		left: 0px;
		flex-direction: column;
		width: 100%;
		display: none;
	}

	header .header2 .menuResponsivoActive{
		display: block;
		height: auto;
	}

	.menuResponsivo li{
		width: 100%;
		border-bottom: 2px solid white;
		display: flex;
		align-items: center;
		justify-content: center;
		height: auto;
	}

	.header2 .menu li a {
		text-decoration: none;
		font-size: 12px;
		font-weight: bold;
		color: rgb(255, 255, 255);
	}

	.menuServicios{
		top: 60px;
		width: 100%;
		height: calc(100% - 60px);
		overflow: auto;
	}

	.menuServicios ul{
		flex-direction: column;
	}

	.menuServicios ul li{
		display: flex;
		justify-content: center;
		border-bottom: 2px solid white;
		padding-top: 5px;
	}

	.header3 .sesion .nombre {
		display: none;
	}
}
@media only screen and (min-width: 601px) and (max-width: 679px) and (orientation: portrait){
}
@media only screen and (min-width: 680px) and (max-width: 767px) and (orientation: portrait){
}
/*******************************IPAD USADA EN LA EMPRESA************************************************************/
@media only screen and (min-width: 768px) and (max-width: 820px) and (orientation: portrait){
}
/***********************PORTRAIT DISPOSITIVO MOVIL LAPTOP***********************************************************/
@media only screen and (min-width: 821px) and (max-width: 991px) and (orientation: portrait){
}
@media only screen and (min-width: 992px) and (max-width: 1150px) and (orientation: portrait){
}
/***********************PORTRAIT DISPOSITIVO PC ESCRITORIO***********************************************************/
@media only screen and (min-width: 1151px) and (max-width: 1199px) and (orientation: portrait){
}
@media only screen and (min-width: 1200px) and (max-width:3000px) and (orientation: portrait){
	  .header2 .btn-menuSeg{
    display: none;
  }
}
/*******************************************************************************************************************/
/******************************************      LANDSCAPE      ****************************************************/
/*******************************************************************************************************************/
/*********************LANDSCAPE DISPOSITIVO MOVIL CELULAR***********************************************************/
@media only screen and (max-width: 424px) and (orientation: landscape){
}
@media only screen and (min-width: 425px) and (max-width: 600px) and (orientation: landscape){
}
@media only screen and (min-width: 601px) and (max-width: 679px) and (orientation: landscape){
}
@media only screen and (min-width: 680px) and (max-width: 767px) and (orientation: landscape){
}
@media only screen and (min-width: 768px) and (max-width: 820px) and (orientation : landscape){
        .header2 .btn-menuSeg{
		display: none;
	}
}
/*********************LANDSCAPE DISPOSITIVO MOVIL TABLET***********************************************************/
@media only screen and (min-width: 821px) and (max-width: 991px) and (orientation : landscape){
        .header2 .btn-menuSeg{
		display: none;
	}
}
@media only screen and (min-width: 992px) and (max-width: 1150px) and (orientation: landscape){
	.header2 .btn-menuSeg{
		display: none;
	}
}
/*********************LANDSCAPE DISPOSITIVO MOVIL LAPTOP***********************************************************/
@media only screen and (min-width: 1151px) and (max-width: 1199px) and (orientation: landscape){
	.header2 .btn-menuSeg{
		display: none;
	}
}
@media only screen and (min-width: 1200px) and (max-width: 1360px) and (orientation: landscape){
	.header2 .btn-menuSeg{
		display: none;
	}
}
/*********************LANDSCAPE DISPOSITIVO PC ESCRITORIO***********************************************************/
/*patalla de escritorio utilizado en la empresa*/
@media only screen and (min-width: 1361px) and (max-width: 1899px) and (orientation : landscape){
	.header2 .btn-menuSeg{
		display: none;
	}
}
@media only screen and (min-width: 1900px) and (max-width: 2299px) and (orientation : landscape){
	.header2 .btn-menuSeg{
		display: none;
	}
}
@media only screen and (min-width: 2300px) and (max-width: 2599px) and (orientation : landscape){
	.header2 .btn-menuSeg{
		display: none;
	}
}
@media only screen and (min-width: 2600px) and (max-width: 3599px) and (orientation : landscape){
	.header2 .btn-menuSeg{
		display: none;
	}
}





/*/////sweetAlert*/
.swal2-popup {
    display: flex; margin: 0; padding: 0; border-radius:10px;     background: #40474f;
}
.swal2-popup .swal2-header{
    background: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.swal2-toast .swal2-header{
    background: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

}

.swal2-popup .swal2-title{
    display: flex;
    width: 90%;
    font: 13px arial;
    color: rgb(47, 47, 47);
    margin: 5px;
}
.swal2-toast .swal2-title{
    display: flex;
    width: 90%;
    font: 13px arial;
    color: white;
    margin: 5px;
}

.swal2-popup .swal2-actions{
    width: 100%;
    display:flex;
    z-index: 0; 
}

.swal2-popup .swal2-styled.swal2-confirm {
    width:40%;
    background:#dc3545;
    border-radius:15px;
    height:25px;
    margin:15px;
    padding:0;
}
.swal2-popup .swal2-styled.swal2-cancel {
    width:40%;background:#93939;border-radius:15px;height:25px;margin:15px;padding:0;
}
.sweetAlTextLabel{
    color: #ffffff;
    font: bold 13px arial;
    margin-top: 25px;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    text-align: justify;
}


.sweetalrtTitle{
    font-size: 1.2em;
    margin: 0;
    text-align: left;
    font-style: inherit;
    font-family: sans-serif;
    padding: 0.2em;
    padding-top: 0.5em;
    padding-bottom: 1em;
    color: white;
}
.sweetalrt{
    display: -webkit-box;
    font-size: 1.1em;
    margin: 0;
    text-align: left;
    font-style: inherit;
    font-family: sans-serif;
    margin-top: 0.5em;
    margin-bottom: -0.4em;
    font-weight: bold;
    color: #fe8201;
}
.swalInput{
    color: white;
    border: none;
    box-shadow: none;
    border-bottom: solid 2px white;
    border-radius: 0;
}

.swal2-inputTxtA{
    margin: 1em auto;
    width: 100%;
    transition: border-color .3s,box-shadow .3s;
    border: 1px solid #d9d9d9;
    border-radius: .1875em;
    font-size: 1.125em;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.06);
    box-sizing: border-box;
}
/*/////sweetAlert*/