/**
 * @file
 * base.css
 * 
 * The basic styles and shorthand codes
 * 
 * -------------------------------------------------
 * Updated: Alberni Design Jr - 2019-03-04
 * 
 * Attached thru `.libraries.yml`
 *
 ============================================================================ */
 
/*=======================================
   Shorthand Classes
  =======================================*/
  
/*----------------------------
   Button
  ----------------------------*/
.buttons a,
.btn {
  padding: .7em 1em;
  display: inline-block;
  vertical-align: bottom;
  font: 500 1em Roboto, sans-serif;
  background: #1D3F6B;
  color: #fff;
  border: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  letter-spacing: 1px;
  outline: 0;
}

.buttons a:hover,
.btn:hover {
  background-color: #16355d;
  color: #aaa;
}

.buttons a:focus,
.btn:focus {
  color: #ccc;
  -webkit-box-shadow: inset .05em .05em .1em rgba(0,0,0,.5);
  box-shadow: inset .05em .05em .1em rgba(0,0,0,.5);
}

.buttons--small a,
.btn--small {
	font-size: .9em;
  padding: .6em .9em;
}

/*----------------------------
   Outline
  ----------------------------*/
.buttons--outline a,
.btn--outline {
  font: .95em Roboto, sans-serif;
  background: rgba(0,0,0,0);
  border: 2px solid currentColor;
}

.buttons--outline a:hover,
.btn--outline:hover {
  background-color: #aaa;
  color: #333;
  border-color: #aaa;
}