/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    
}

.fieldset-contenedor {
width:75%;
text-align:center;
padding-top: 1%;
}
/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 2px solid red;
    text-align:center;
    width: 50%; /* Could be more or less, depending on screen size */
    border-radius: 25px 25px 25px 25px;
    -moz-border-radius: 25px 25px 25px 25px;
    -webkit-border-radius: 25px 25px 25px 25px;
}

/* animacion */

.parpadea {
  
  animation-name: parpadeo;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  -webkit-animation-name:parpadeo;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo{  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@-webkit-keyframes parpadeo {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
   100% { opacity: 1.0; }
}

@keyframes parpadeo {  
  0% { opacity: 1.0; }
   50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

/* {animacion}       */

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.input-campo {
    position: relative;
    margin-top: 1rem;
    /* display: inline-block; */
}

body 
{
	width: 90%;
	margin-left: 5%;
  	margin-right: 5%;
}

header{
  text-align: center;
}

header h1{
  background-color: #0C629D;
  color: white;
  margin-top: 0;
  border-radius: 10px;
  font-family: 'Quicksand', sans-serif
}

header img{
  max-height: 130px;
  max-width: 150px;
}

header h2{
    font-size: 32px;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif
}

#contenido{
  text-align: center;
}

.editar {
	display:inline-block;
	width: 100%;
}
.editar label{
	display: block;
	position: relative;
	margin-left: 80%;
}





#datos{
	display: inline-block;
	width: 100%;
}


.mensaje{
  color: #0C629D;
  font-family: 'Comfortaa', cursive;
  font-size: 35px;
}

.error{
  font-size: 25px;
  margin-bottom: 250px;
}


footer {
	font-size: 0.8em;
	border-top: solid 2px #0C629D;
	padding-top: 10px;
	margin-top: 15px;
	text-align: center;
	padding-top: 1vw;
	margin-top: 1vw;
}

.ContHotel {
width:50%;
display:inline-block;
}

.ContRest {
width:50%;
display:inline-block;
}

.rowt{
  width:95%;
  /*display:inline-block;*/
  padding: 2%;
}

.radios 
{
display:flex;
text-align:center;
width:100%;
}


.Cabecera {
    display:block;
    width:100%;
}

#option{
display:inline-block;
text-align: center;
}

/* Hide the browser's default radio button */
.lb-radios input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width:10%;
}


/* The container */
.lb-radios {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    font-family: 'Quicksand', sans-serif
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-left: 35px;
}

/* Hide the browser's default radio button */
.lb-radios input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.lb-radios:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.lb-radios input:checked ~ .checkmark {
    background-color: #E34542;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.lb-radios input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.lb-radios .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

    input[type="search"],
	input[type="email"],
	input[type="text"],
	input[type="number"],
	input[type="password"],
	input[type="tel"],
	input[type="url"],
	input[type="date"],
	textarea,
	select
	{
	border: none;
    border-bottom: 1px solid #9e9e9e; 
    font-size: 1rem; 
    height: 3rem; 
    margin: 0 0 20px 0; 
    padding: 0; 
    box-shadow: none;
    transition: all 0.3s;
	}


#tabla-Datos, #Table1 {
    /*font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;*/
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 15px;
    margin: auto;
}
    #totales,#totales2 {
    text-align:right;
    }

/*#Table1 td, #Table1 th {
    border: 1px solid #ddd;
    padding: 2px;
    padding-top: 2px;
    padding-bottom: 2px;*/
}

/*#tabla-Datos tr:nth-child(even), #Table1 tr:nth-child(even){background-color: #f2f2f2;}

#tabla-Datos tr:hover,#Table1 tr:hover {background-color: #ddd;}*/

#tabla-Datos th , #Table1 th {
    padding-top: 6px;
    padding-bottom: 6px;
    text-align: left;
    background-color: #333;
    /*color: white;*/
    height: 10px;
}

#Hotel,
#Restaurante,
#tab,
#RFCdis,
#btnSiguiente,
#frmPartidoPolitico,
#frmDetalles
{
  display: none;
}

#Div_rfc {
display:block
}

@media (max-width: 1395px) {

 .container {
    width: 80%;
    margin-left: 15%;
    margin-right: 15%;
  }

	
	input[type="search"],
	input[type="email"],
	input[type="text"],
	input[type="number"],
	input[type="password"],
	input[type="tel"],
	input[type="url"],
	input[type="date"],
	textarea,
	select
	{
	border: none;
    border-bottom: 1px solid #9e9e9e; 
    outline: none;
    height: 3rem; 
    width: 100%;
    font-size: 1rem; 
    margin: 0 0 20px 0; 
    padding: 0; 
    box-shadow: none;
    transition: all 0.3s;
	}


	#option{
	display:inline-block;
	text-align: center;
	}

	/* Hide the browser's default radio button */
	.lb-radios input {
	    position: absolute;
	    opacity: 0;
	    cursor: pointer;
			width: 100%;
			}

}

.os {
text-align:center;
}

.os .c1 {
	margin: 0;
    width: 100%;
	/*display: flex;*/
	flex-flow: row wrap;
}

.os .c2 {
	width: 45%;
	margin: auto;
}
.os .c2 label{
  display: block;
  margin-top: 3%;
}

.os .c3 {
	width: 45%;
	margin: auto;
    margin-top:3.5%;
}
.os .c3 label{
  display: block;
  margin-top: 3%;
}

.os div label {
  /*width: 20%;*/
  float: left;
	font-family: 'Quicksand', sans-serif;
	text-align: left;
}

.os .a {
	width: 65%;
}

.os .fila{

}

.os .btn{
  float: right;
  margin-left:  1%;
  margin-right: 3%;
  margin-bottom:1%;
}

.os .contenido_facturas{
	width:100%;
	display:flex;
	flex-flow: row wrap;
	margin-top:10px;
    padding:4%;
}

.os .tabla{
width:100%;
margin: 0% 10% 1% 10%;
}
.os .tabla2{
	width: 29%;
    margin-left: auto;
    margin-right: 10%;
    text-align: right;
}

@media (max-width: 900px) {


	.os label {

	  margin: .5em 0 0 0;
	}
	.os div {
	  margin: .4em 0;
	}
	.os div label {
	  width: 100%;

	}
	.os .a {
		width: 95%;

	}
	.os .c2 {
		width: 100%;
	}
	.os .c3 {
		width: 100%;
	}

	.os .tabla{
		width:100%;
		border:1%;
		margin-right: 0px;
	}
	.os .tabla2{
		width:100%;
		border:1%;
		position:relative;
		/*left:50%;*/
	}

	footer{
		position:relative;
		width:100%
	}

.os .row .col.s1 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
}
.os .row .col.s2 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
}
.os .row .col.s3 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
}
.os .row .col.s4 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
}
.os .row .col.s5 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
}
.os .row .col.s6 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
}
.os .row .col.s7 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
}
.os .row .col.s8 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
}
.os .row .col.s9 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
}
.os .row .col.s10 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
}
.os .row .col.s11 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
}
.os .row .col.s12 {
    width: 100%;
    margin-left: auto;
    left: auto;
    right: auto;
}
    
.rowt{
  width:95%;
  display:inline-block;
  padding: 2%;
}

}

@media (max-width:710px)
{

.fieldset-contenedor {
width:100%;
text-align:center;
}
.radios 
{
display:inline-block;
text-align:center;
width:100%;
}
.radios label
{
display:block;
text-align:left;
width:100%;
margin: 2% 2% 2% 2%;
}

.lb-radios input {
    position: relative;
    opacity: 0;
    cursor: pointer;
}

  
#datos input,
#datos_restaurante input,
select,
#RFCdis input
{
        display: inline-block;
	    box-sizing: border-box;
        margin:3% 1% 3% 1%;
        border: 0px;
        height: 45px;
        border-radius: 2px;
        padding: 0px 10px;
        box-sizing: border-box;
        font-size: 14px;
        border: 1px solid #efefef;
}

/*#RFCdis input{ 
	box-sizing: border-box;
    display:block;
    margin:3% 1% 3% 1%;
}*/


}

