
.logo-viajaqui {
	max-width: 350px;
	display: inherit;
	margin: 0 auto 1.5em;	
}

.horario-buses table tr td:first-of-type {
	width: 20%;
	padding-bottom: 2em;
}

.horario-buses table {
	margin-bottom: 2em;
	background-color: #fff;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	text-align: left;
}

.horario-buses table tr td,
.horario-buses table tr th {
	padding: .5em;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;

}

.horario-buses table tr th {
	background-color: #eee;
}

.horario-buses table tr td span {
	box-sizing: content-box;
	display: inline-block;
	padding: .2em 1em .3em;
	width:2.5em;
	text-align: center;
	background-color: #ececec;
	margin: 0 .2em .3em 0;
	line-height: 1.5;
	border-radius: .5em;
	font-family: Oswald;
	font-size: .9em;
	border: 1px solid #ccc;
}

.horario-buses table tr td span:nth-of-type(even) {
	background-color: #ddd;
}

.horario-buses .center-content > * {
	text-align: center;
}

.horario-buses .center-content h3 {
	text-align: center;
	margin-bottom: .6em;
}

/* Outer frame */
  .tarifas-wrapper {
	max-width: 400px;
    background: #fff;
    border: 2px solid #000;
    border-radius: .5em;
    display: grid;
    /*  left col fixed ~25%, right col flex 75%  */
    grid-template-columns: 1fr 5fr;
	width: 100%;
	margin: 0 auto 1.5em;
	font-family:  Oswald;
  }

  /* LEFT COLUMN */
  .tarifas-wrapper .side-label {
    border-right: 1px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: 1.6em;
	width: ;
  }

  /* Rotate "TARIFAS" vertical */
  .tarifas-wrapper .side-label span {
    text-transform: uppercase;
    transform: rotate(-90deg);
    white-space: nowrap;
    /* prevent blur in some browsers */
    display: inline-block;
  }

  /* RIGHT SIDE GRID */
  .tarifas-wrapper .main-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
	font-family:  Oswald;
  }

  .tarifas-wrapper .main-top {
    border-bottom: 1px solid #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .tarifas-wrapper .main-top .label {
    font-size: 1em;
    text-transform: uppercase;
  }

  .tarifas-wrapper .main-top .price {
  	font-size: 1.8em;
  }

  .tarifas-wrapper .bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tarifas-wrapper .bottom-cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
	padding: 1em;
  }

  /* Divider between the two bottom cells */
  .tarifas-wrapper .bottom-cell + .bottom-cell {
    border-left: 1px solid #000;
  }

  .tarifas-wrapper .bottom-cell .label {
    text-transform: uppercase;
  }
  
  .tarifas-wrapper .price {
    white-space: nowrap;
	font-size: 1.5em;
	font-weight: 400;
  }
  
  .tarifas-wrapper .price:before {
  	content: "$";
  	font-size: .8em;
  	margin-right: .2em;
  }
