@charset "utf-8";

/* Fuentes */
/*@font-face {
    font-family: Public;
    src: url("../fonts/Roboto.ttf");
}*/

/* General */
form, fieldset, #boton-compra 
{
    background-color: #f8f8f8;
    text-align: center;
    border-radius: 5px;
}

#boton-compra 
{
	font-size: 1.1rem;
}

label 
{
    font-weight: 600;
    font-size: 0.9rem;
}

.campos, select, textarea, .boton {
    padding: 8px;
    border: 1px #ccc solid;
    border-radius: 5px;
    background-color: #fff;
    text-align: center;
    outline: none;
}

.campos, select, textarea
{
	color:#09f;
	font-size:1rem;
}


.campos:focus, select:focus, textarea:focus
{
	background-color:#FFFFD9;
	outline: none;
}

#nombre, #concepto
{
	text-transform: uppercase;
}


/* Formulario */
form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
	border: 1px #ddd solid;
	padding: 2px;
}

form legend 
{
	border-radius: 5px;
}

form table, #resultado table 
{
    width: 98%;
    margin: 0 auto;
}

fieldset {
    padding: 0 0 15px;
	border: none;
}

legend {
    width: 100%;
    margin:0 auto;
    padding: 8px 0;
    box-sizing: border-box;
    background-color: #3e77b6;
    background-color: #328399;
    
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
}

.msg-azul 
{
    border-left: #50678C 10px solid;
}

/* Informe */
#informe {
    display: flex;
    flex-flow: row-reverse;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1200px;
    margin: 20px auto 0;
}

#informe-formulario
{
    width: 96%;
    max-width: 380px;
    /*width: 96%;
    max-width: 450px;
    margin: 0 auto;
    border: 1px dotted #1a73e8;*/
}

#informe-contiene {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1.5em;
}


.informe-descripcion 
{
	max-width: 300px;
	margin: 0 auto;
	padding: 8px 0;
    color: #328399 ;
}

.informe-descripcion, .mensaje, .dato, .box-pago 
{
    font-size: 0.9rem;
}

.mensaje 
{
    margin:0 auto;
    margin-top:20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    box-sizing: border-box;
    flex-wrap: nowrap;
    width: 96%;
    max-width: 550px;
    padding:10px;
    border-radius: 5px;
	font-size: 0.9rem;
    line-height: 1.4rem;
}

.mensaje ul 
{
    padding: 0;
}

.mensaje ul li 
{
    list-style-type: none;
}

.importe {
    font-size: 1.8rem;
    font-weight: 700;
    color:#FA4270;
    
    padding: 5px 0;
	line-height: 1.4rem;
}
.importe i 
{
    color:#999;
}

.importe i, .importe del, .informe-descripcion, #resultado table td 
{
    font-weight: 500;
}

.importe del 
{
	font-size: 0.9rem;
}

.boton {
    display: inline-block;
	width: 90%;
    max-width: 220px;
    background-color: #ff6347;
    background-color: #1a73e8;
    background-color: #018FC7;
    background-color: #D99B68;
    
    color: #fff;
    padding: 10px 0px;
    font-size: 1rem;
    font-weight: 500;
	border:none;
}

.boton:hover {
    cursor: pointer;
    background-color: #E06347;
    background-color: #1a73e8;
    background-color: #FA4270;

}

.boton2
{
    border:1px #1790C5 solid;
    border-radius:5px;
    padding:8px;
    color:#1790C5;
}

.boton2:hover
{
    background-color: #1790C5;
    color:#fff;
}

#checkout 
{
	background-color: #f8f8f8;
}

.infocheckout, .legendpago, .box-pago 
{
	width: 98%;
	max-width: 400px;
	background-color: #fff;;
}

.infocheckout
{
	align-items: center;
	margin:0 auto;
	line-height: 20px;
	padding: 10px 0;
	font-size: 16px;
	border: 1px #ddd solid;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	display: inline-block;
}

.legendpago 
{
	color:#fff;
	padding: 10px 0;
	margin: 0 auto;
	border-radius: 5px 5px 0 0;
	font-size: 1.1rem;
}

.box-pago
{
	margin:0 auto;
	margin-top:10px;
	font-size: 1.1rem;
	line-height: 18px;
	text-align: center;
	padding: 8px;
	box-sizing: border-box;
	border:1px #ccc solid;
	flex-wrap: nowrap;
	box-sizing: border-box;
	justify-content: space-between;
	color:#555;
	border-radius: 5px;
}

.box-pago .titulo 
{
	font-size: 1.1rem;
	background-color: #ff6347;
	padding: 14px 10px;
	border-radius: 5px;
	color:#fff;
}

.dato 
{
	font-size: 1rem;
	color:#555;
}

.descripcion-servicio 
{
    font-size: 1.2rem;
}

.detalle-informe 
{
    text-align: left;
}

#servicio 
{
    display: inline-block;
    max-width: 400px;
    box-sizing: border-box;
}

.resultado 
{
    max-width: 400px;
}

/* Media Queries */
@media only screen and (max-width: 976px) {
    #informe {
        flex-direction: column;
    }

    #informe-formulario, #informe-contiene {
        margin-top: 20px;
    }

    .msg-azul {
        border-top: #395F87 10px solid;
        border-left: none;
    }
}
