 /**
 * @file
 * shortcodes.css
 * 
 * Shorthand codes to speed up development
 * 
 * -------------------------------------------------
 * Attached thru `.info.yml`
 *
 ============================================================================ */

/**
 * Image Overlay: Overlay text on a img
  =======================================*/
.hover-over {
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
}

.hover-over__img {  line-height: 0;  }

.hover-over__overlay {
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .35;
  z-index: 10;
}

.hover-over--absolute {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
}

/**
 * Buttons
  =======================================*/
.buttons a,
.btn {
  padding: 1.2em 1.7em;
  display: inline-block;
  vertical-align: bottom;
  font: 700 1em Roboto, sans-serif;
/* background: #dba860; */
  background: #93c90f;
  color: #fff;
/* border: 2px solid #dba860; 
  border: 2px solid #93c90f; */
  text-transform: uppercase;
  -webkit-transition: all .4s;
  transition: all .4s;
  letter-spacing: 2px;
  outline: 0;
}

.buttons a:hover,
.btn:hover {
 /* background-color: #ca9a57; */
  background-color: #9b26b6;
  color: #fff;
}

.buttons a:focus,
.btn:focus {
  color: #fff;
  -webkit-box-shadow: inset .05em .05em .1em rgba(0,0,0,.5);
  box-shadow: inset .05em .05em .1em rgba(0,0,0,.5);
}

/* Other types of buttons */

.buttons--small a,
.small-btn {
  font-size: .9em;
  padding: 0.8em 1.1em;
}

.buttons--big a,
.big-btn {
  padding: 1.3em 2.2em;
}

a.btn--secondary {
  background: none;
 /* color: #dba860; */
  color: #93c90f;
  border: 2px solid #93c90f;
}

/**
 * Menus
  =======================================*/
.menu {
  margin: 0;
  list-style: none;
}

/* Inline
----------------*/
.inline,
.menu {
  list-style: none;
}

.inline li,
.menu li {
  display: inline-block;
  vertical-align: top;
}

.inline a,
.menu a {  color: inherit;  }
