﻿/*------------------------------------*\
    Buttons
\*------------------------------------*/

#button-list li {
  margin: 10px;
}

button {
  border: none;
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  text-transform: capitalize;
  transition: all 0.18s ease-in-out;
}

button:hover {
  transition: all 0.18s ease-in-out;
  box-shadow: 0 2px 6px rgba(21, 52, 79, 0.5);
}
button:active {
  box-shadow: none;
}
button:active,
button:focus {
  outline: none;
}
button:disabled {
  box-shadow: none;
  cursor:default;
  opacity:.4;
}
button.blue-btn:disabled {
  background: #3396cc;
}
button.green-btn:disabled {
  background: #39b54a;
}
button.red-btn:disabled {
  background: #f85359;
}
button.grey-btn:disabled {
  background: #99abbb;
}


button.huge-btn {
  font-size: 18px;
  font-weight: 500;
  line-height: 60px;
  height: 60px;
  padding: 0 45px;
}

button.large-btn {
  font-size: 18px;
  font-weight: 400;
  line-height: 46px;
  height: 46px;
  padding: 0 25px;
}

button.medium-btn {
  font-size: 14px;
  font-weight: 400;
  line-height: 36px;
  height: 36px;
  padding: 0 25px;
}
button.small-btn {
  font-size: 13px;
  font-weight: 300;
  line-height: 30px;
  height: 30px;
  padding: 0 25px;
}
button.extra-small-btn {
  font-size: 12px;
  font-weight: 300;
  line-height: 26px;
  height: 25px;
  padding: 0 15px;
}

/* icon buttons using inline svg  */
button svg {
  float: left;
}
.huge-btn svg {
  height: 24px;
  margin: 18px 10px 0 -5px;
}
.large-btn svg {
  height: 24px;
  margin: 10px 8px 0 -5px;
}
.medium-btn svg {
  height: 20px;
  margin: 8px 5px 0 -5px;
}
.small-btn svg {
  height: 16px;
  margin: 7px 5px 0 -5px;
}
.extra-small-btn svg {
  height: 14px;
  margin: 5px 5px 0 -3px;
}

/* blue button */
.blue-btn {
  background: #3396cc;
}
.blue-btn:hover, .blue-btn:active  {
  background: #2177a6;
}
/* green button */
.green-btn {
  background: #39b54a;
}
.green-btn:hover, .green-btn:active {
  background: #018f14;
}
/* red button */
.red-btn {
  background: #f85359;
}
.red-btn:hover, .red-btn:active {
  background: #f72027;
}
/* grey button */
.grey-btn {
  background: #99abbb;
}
.grey-btn:hover, .grey-btn:active {
  background: #7399ba;
}

/*------------------------------------*\
    Style Guide Misc Styles
\*------------------------------------*/

button {
  margin-right: 10px;
  margin-bottom: 5px;
}
