/**
 * =============================================================================
 * Buttons
 * =============================================================================
 *
 * This file deals with:
 *  * Buttons
 *  * Contained button
 */

.button {
  display: block;
  vertical-align: middle;
  border: none;
  color: #1e1e1e;
  position: relative;
  padding-right: 30px;
}
.button:hover {
  background: transparent;
  color: #1e1e1e;
}
a.button {
  cursor: pointer;
}

.button-contained {
  background: #cf1c6d;
  color: #fff;
  display: inline-block;
  border: 2px solid #fff;
  padding: 0 40px 0 13px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.3);
  -webkit-transition: background .3s ease;
     -moz-transition: background .3s ease;
      -ms-transition: background .3s ease;
          transition: background .3s ease;
  /* medium size button */
  font-size: 21px;
  line-height: 33px;
  border-radius: 17px;
}

.button-icon-left {
  padding: 0 13px 0 40px;
}

.button > .icon {
  content: " ";
  display: block;
  background-color: #cf1c6d;
  position: absolute;
  right: 5px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 14px;
  border: 2px solid #fff;
}

.button-icon-left > .icon {
  right: auto;
  left: 5px;
}

.button-contained > .icon {
  background-color: transparent;
  border: 0;
}

.button-contained:hover,
.button-contained:focus {
  background-color: #1e1e1e;
  color: #fff;
}

.button-contained:active {
  top: 1px;
  left: 1px;
  box-shadow: none;
}

.button-contained.disabled {
  background: #63676B;
  color: #B1B3B5;
  cursor: not-allowed;
}

.button-smallest {
  font-size: 14px;
  line-height: 27px;
  border-radius: 14px;
}

.button-small {
  font-size: 18px;
  line-height: 30px;
  border-radius: 25px;
}

.button-large {
  font-size: 24px;
  line-height: 39px;
  border-radius: 19px;
}

.button-largest {
  font-size: 30px;
  line-height: 45px;
  border-radius: 23px;
}


.button-align-right {
  float: right;
}