*, *:after, *:before{
	border: 0;
	/* Evitar que mis cajas engorden*/
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
a{
	color: #DF767D;
	text-decoration: none;
	transition: all .7s;
}
a:hover{
	color: #DF767D;
	/*padding-left: .5em;*/
}
audio,iframe,img,video{
  /*margin-bottom: 0;*/
  max-width: 100%;
  vertical-align: bottom;
}
body{
	background-color: #a2b45a;
	color: #7c925b;
	font-family: "Great Vibes", cursive;
	font-optical-sizing: auto;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
}
h1,h2,h3,h4,h5,h6{
	color: #a2b45a;
	font-family: "Great Vibes", cursive;
	font-weight: normal;
	font-size: 1.7em;
	font-style: normal;
}
h1{
	font-size: 1.8em;
}
p{
    font-size: 1.5em;
	margin-bottom: .5em;
}
main{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}
/*VIDEO PERSONALIZADO..........................................................................*/
.thevideo{
	margin: 0;
	position: relative;
}
.thevideo .txt-cont{
	background-color: rgba(0, 0, 0, .5);
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.thevideo .txt-video{
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%, -50%);
	text-align:center;
}
.thevideo h1, .thevideo p{
	color:white;
}
.thevideo .txt-video button{
	background-color: transparent;
	border:2px solid #fff;
	border-radius: 50px;
	color: white;
	font-size: 30px;
	padding: 5px 40px;
	transition: .5s;
}
.thevideo .txt-video button:hover{
	background-color: rgba(213, 155, 154, .5);
	border-radius: 50px;
	cursor: pointer;
}
/*------------------------------------------------------------------*/
.fondo-img{
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 2.5em;
	max-width: 1080px;
	position: relative;
	width: 100%;
}
/*INFO--------------------------------------------------------------*/
.fondo-img img{
	margin-top: 1em;
	z-index: 1;
}
.info{
	position: absolute;
	text-align: center;
	width: 90%;
	z-index: 2;
}
.fecha{
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: auto;
	max-width: 200px;
}
.dia-title{
	border-bottom: 1px solid #7c925b;
	font-family: serif;
	font-size: 2em;
}
p.dia-title{
	margin-bottom: 0;
}
.dia-mes-ano{
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}
.dia{
	font-size: 2.5em;
	margin: 0;
}
.mes-ano p{
	margin-bottom: 0;
}
/*CONTADOR REGRESIVO....................................................*/
.container{
    width: 100%;
    /*min-height: 100vh;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(255, 255, 255, .5);
}
.countdown{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    flex-wrap: wrap;
}
.countdown div{
    display: grid;
    place-items: center;
    padding: 10px;
}
.container h2{
    text-align: center;
    font-size: 1.5em;
    padding: .25em 0 0 0;
}
.countdown p{
    display: grid;
    place-items: center;
    border: solid 1px #fff;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    background-color: #a2b45a;
    margin-bottom: 0;
}
.countdown span{
    display: block;
    padding: 10px;
    text-align: center;
    color: #7c925b;
    font-size: 1em;
    font-weight: 400;
}
.final-sms{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: grid;
    place-items: center;
    transform: translateY(-100%);
    transition: ease-in-out 0.5s;
    background-color: #333;
}
.final-sms h2{
    text-align: center;
    font-size: 2em;
    color: #fff;
}
.botones{
	border: 1px solid #DF767D;
	border-radius: 1em;
	color: #DF767D;
	font-size: 1.35em;
	padding: .15em 2em;
}