
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #EFEFEF;
	color: #363639;
    font-family: 'Work Sans', sans-serif;
}



/* ? ----- PORTADA ----- */
.portada {
	width: 100%;
	background: #EFEFEF;

	min-height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: .5s ease-out all;
}

.portada.oculta {
	transform: translateY(100%);
}

.portada .header {
	margin-bottom: 100px;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.portada .header .logotipo {
	font-size: 50px;
	font-size: 900;
	margin-bottom: 20px;
}

.portada .header .mensaje {
	font-size: 30px;
	font-weight: 600;
}



/* ? ----- MAIN ----- */
main {
	max-width: 1000px;
	margin: auto;
	width: 90%;
	padding: 60px 0;
	font-size: 18px;
	line-height: 28px;
	text-align: left;
}



/* ? ----- Cuenta Regresiva ----- */
.caduca{
display: flex;
justify-content: center;
margin-top: 100px;
}
#cuenta {
	/*display: flex;*/
	/*display: block ruby;*/
	display: inline-flex;
	justify-content: center;
	margin-bottom: 20px;
}

.simply-section {
	background: #fff;
/*
	width: 180px;
	height: 180px;
*/
	width: 80px;
	height: 80px;
/* margin: 0 20px;*/
	margin: 0 0px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.simply-amount {
	display: block;
	/*font-size: 50px;*/
	font-size: 20px;
	font-weight: 700;
}

.simply-word {
	font-weight: 300;
	/*font-size: 30px;*/
	font-size: 10px;
}

.TokenOK{
	display:inline-block;
	position:relative;
}

.TokenOK a{
/*background: url("../img/Yes.png") no-repeat;*/
position: absolute;
bottom:6.5em;
right:4.5em;
background-color:#2AC813;
border-radius:1.5em;
color:white;
text-transform:uppercase;
padding:1em 1.5em;
}

#FondoCell{
	background-size: 100%;
	height: 170px;
	width: 300px;
	background: url("../img/fondo_cell.png") no-repeat;
}

/*@media only screen and (max-width: 575px){*/
@media (min-width: 320px) and (max-width: 480px) {
    .TokenOK{
	display:inline-block;
	margin-bottom:2em;
	}
	.TokenOK a{
	position:relative;
	/*
	bottom:0em;
	right:-2em;
	*/
	bottom:9.5em;
	right:-4.5em;
	
	background-color:#2AC813;
	color:white;
	font-size:1em;
	padding:1em 1.5em;
	text-transform:uppercase;
	border-color:white;
	border-radius:1.5em;
	}

	.TokenOK a:hover{
	background-color:red;
	cursor:pointer;
	color:white;
	}
	#FondoCell{
	//background-color:red;
	background: url(" ") no-repeat;
	}
    
}


@import "compass/css3";

// More practical CSS...
// using mobile first method (IE8,7 requires respond.js polyfill https://github.com/scottjehl/Respond)

$breakpoint-alpha: 480px; // adjust to your needs

.rwd-table {
  margin: 1em 0;
  min-width: 300px; // adjust to your needs
  
  tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  
  th {
    display: none; // for accessibility, use a visually hidden method here instead! Thanks, reddit!   
  }
  
  td {
    display: block; 
    
    &:first-child {
      padding-top: .5em;
    }
    &:last-child {
      padding-bottom: .5em;
    }

    &:before {
      content: attr(data-th)": "; // who knew you could do this? The internet, that's who.
      font-weight: bold;

      // optional stuff to make it look nicer
      width: 6.5em; // magic number :( adjust according to your own content
      display: inline-block;
      // end options
      
      @media (min-width: $breakpoint-alpha) {
        display: none;
      }
    }
  }
  
  th, td {
    text-align: left;
    
    @media (min-width: $breakpoint-alpha) {
      display: table-cell;
      padding: .25em .5em;
      
      &:first-child {
        padding-left: 0;
      }
      
      &:last-child {
        padding-right: 0;
      }
    }

  }
  
  
}


// presentational styling

@import 'https://fonts.googleapis.com/css?family=Montserrat:300,400,700';

body {
  padding: 0 2em;
  font-family: Montserrat, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: #444;
  background: #eee;
}

h1 {
  font-weight: normal;
  letter-spacing: -1px;
  color: #34495E;
}

.rwd-table {
  background: #34495E;
  color: #fff;
  border-radius: .4em;
  overflow: hidden;
  tr {
    border-color: lighten(#34495E, 10%);
  }
  th, td {
    margin: .5em 1em;
    @media (min-width: $breakpoint-alpha) { 
      padding: 1em !important; 
    }
  }
  th, td:before {
    color: #dd5;
  }
}

.modal-dialog {
  max-width: 300px;
  margin: 30px auto;
}

.modal-title{
	float:center;
}


.form2{
  width: 100%;
  max-width: 100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 }

 .btn-block {
  display: block;
  width: 50%;
}
#filtrar{
	display: block;
}