*{
	font-family: "Roboto", sans-serif;
	padding: 0;
	margin:0;
}
body {
    display: flex;
    flex-wrap: wrap;
    background: #f9f9f9;
    align-items: center;
    justify-content: center;
}

.btn-pay {
	background-color: #4CAF50;
	color: white;
	text-align: center;
	border-radius: 5px;
	text-decoration: none;
	display: table;
}
.btn-pay:hover {
	background-color: #45a049;
}

.btn-pay a{
	display: block;
	text-decoration: none;
	padding: 30px 20px;
	font-size: 20px;
	color: #ffffff !important;
}

.countdown {
	margin-left: 10px;
	font-weight: 400;
	border:solid 1px #ffffff;
	width: 40px;
	line-height: 40px;
	border-radius: 50px;
	display: inline-block;
}

.wrap {
    width: 80%;
    max-width: 900px;
    padding: 20px;
    background: #f9f9f9;
    background: #ffffff;
    border-radius: 20px;
    margin:5% 0 0 0;
}

header{
	padding: 20px;
}

header .logo{
	width: 180px;
	margin:0 auto 20px auto;
}

header .logo img{
	width: 100%;
	margin:0 auto -5px auto;
}


header h2{
	font-size: 16px;
	line-height: 25px;
	font-weight: 300;
	color: #555555;
}

/* content */
.content{
	display: flex;
	flex-wrap: wrap;
}

.content .radio{
	display: flex;
	flex-wrap: wrap;
	gap:2%;
}

.content .radio label{
	width: 49%;
	box-shadow: 0 0 0 1px #1f293320;
	border-radius: 10px;
	cursor: pointer;
	transition: all .3s ease;
}

@media(max-width:800px){
	.content .radio label{
		width: 100%;
		margin:10px 0;
	}
}

.content .radio input[type="radio"]{
	display: none;
}

.content .radio input[type="radio"]:checked + label{
	box-shadow: 0 0 0 2px #1f2933;
	background: #1f293309;
}

.content article{
	display: flex;
	gap:2%;
	padding: 2%;
	align-items: center;
}

.content article .icon img{
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 10px;
}

.content article h3{
	font-size: 16px;
	font-weight: 600;
	color: #1f2933;
}

.content article p{
	font-weight: 300;
	font-size: 15px;
	color: #666666;
	margin:10px 0 0 0;
}

.respuestas{
	position: relative;
	width: 100%;
	padding: 0 0 100px 0;
}

.respuesta {
	padding: 30px 5% 100px 5%;
	background: #ffffff;
	width: 90%;
	position: absolute;
	top:20px;
	box-shadow: 0 15px 20px rgba(0,0,0,.1);
	left: 0;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	pointer-events: none;
	border-radius: 10px;
}

.respuesta.show {
	opacity: 1;
	pointer-events: all;
}

form{
	display: flex;
	gap:2%;
	flex-wrap: wrap;
}

form input[type="text"],
form input[type="number"]{
	width: 96%;
	padding: 12px 2%;
	margin:0 0 10px 0;
	outline: none;
	border:solid 1px #99999930;
	font-size: 16px;
	font-weight: 300;
	border-radius: 4px;
}

form button{
	padding: 14px 5%;
	border:none;
	background: #1f2933;
	color: #ffffff;
	outline: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 300;
	border-radius: 4px;
	transition: all .3s ease;
}

form button:hover,
form button:focus{
	opacity: .8;
}

.respuestas h4{
	font-size: 20px;
	text-align: center;
	color: #1f2933;
	margin:0 0 20px 0;
}

.respuestas ul{
	list-style: none;
	max-width: 500px;
	margin:auto;
	background: #ffffff;
	padding: 20px;
	color: #1f2933;
}

.respuestas ul li{
	padding: 10px;
}

.respuestas p{
	max-width: 500px;
	font-weight: 300;
	margin:10px auto 0 auto;
	color: #555555;
}

.resumen-de-pago{
	padding: 80px 0;
	text-align: center;
	width: 100%;
}

.resumen-de-pago h1{
	font-weight: 300;
	font-size: 50px;
}

.resumen-de-pago p{
	display: block;
	font-size: 20px;
	font-weight: 300;
	color: #414141;
	padding: 10px 0;
}