/**
 * BOX HACKING
 */

html {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  }

*,
*:before,
*:after {
	box-sizing: inherit;
	-moz-box-sizing: inherit;
	-webkit-box-sizing: inherit;
  
}

/**
 * CLEAR FLOATS
 * Reference: http://w3bits.com/clearfix
 */

.cf:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * CONTENT WRAPPER
 */

.wrapper {
	margin-left: auto;
	margin-right: auto;
}





/**
 * ICON SYSTEM
 */

.icon {
  height: 1em;
  width: 1em;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

.icon-reverse {
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

/**
 * BUTTONS
 */

.buttons {
  margin: 1.5em 0;
}

.button {
	padding: 1em 1.5em;
	color: rgba(255, 255, 255, .75);
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-color: #036;
    margin-bottom: 40px;
}

.button:hover {
  color: rgba(255, 255, 255, .9);
}

.green-sea {
  background: #16a085;
}

.button.green-sea:hover {
  background: #1abc9c;
}

.belize-hole {
  background: #2980b9;
}

.button.belize-hole:hover {
  background: #3498db;
}

.pomegranate {
  background: #c0392b;
}

.button.pomegranate:hover {
  background: #e74c3c;
}

/**
 * HYPERLINKS
 */

a {
	color: #fff;
}


html.has-lab-nav-top {
  padding-top: 42px;
}

html.has-lab-nav-bottom {
  padding-bottom: 42px;
}

.lab-nav-top,
.lab-nav-bottom {
  width: 100%;
  position: absolute;
  left: 0;
  height: 42px;
}

.lab-nav-top.dark,
.lab-nav-bottom.dark {
  background: rgba(0, 0, 0, .05);
}

.lab-nav-top.light,
.lab-nav-bottom.light {
  background: rgba(255, 255, 255, .05);
}

.lab-nav-top {
  top: 0;
}

.contenedor-menu {

}


.lab-nav-bottom {
  bottom: 0;
}

.article-link,
.share-link {
  display: block;
  width: 50%;
  padding: .75em;
  line-height: 1;
  opacity: .7;
  float: left;
  text-decoration: none;
}

.article-link:hover,
.share-link:hover {
  opacity: 1;
}

.article-link span,
.share-link span {
  font-size: .825em;
  text-transform: uppercase;
}

.share-link {
  text-align: right;
}

/**
 * MEDIA SETTINGS
 */

@media only screen and (min-width: 1024px) {

}

@media only screen and (max-width: 767px) {
  .article-link span,
  .share-link span {
    display: none;
  }

}

@media only screen and (max-width: 1023px) and (min-width: 768px) {


}

@media only screen and (max-width: 767px) {
  .share-link {
    text-align: right;
  }
  
  
  
}
