/**
 * Buttons
 */
.button {
    width: auto;
    background: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    padding:15px 20px;
    margin-bottom: 1.5em;
    color: #ffffff !important;
    text-decoration: none;
    position: relative;
    z-index: 999;
    cursor: pointer;
    border-radius: 0px;
    -webkit-transition: 250ms linear all;
    -moz-transition: 250ms linear all;
    transition: 250ms linear all;
}

a.button {
    color: #ffffff !important;
}

.small.button {
    font-size: 13px;
}

.medium.button {
    font-size: 14px;
    line-height: 1;
}

.large.button {
    font-size: 15px;
    padding:15px 30px;
}

.rounded.button {
    border-radius: 25px;
}

/**
 * Pink
 */
.pink.button {
    border-color: #fe57a1 !important;
    color: #fe57a1 !important;
}

/**
 * Green
 */
.green.button {
    border-color: #60bfb1 !important;
    color: #60bfb1 !important;
}

/**
 * Blue
 */
.blue.button {
    border-color: #2daebf !important;
    color: #2daebf !important;
}

/**
 * Red
 */
.red.button {
    border-color: #ff0000 !important;
    color: #ff0000 !important;
}

/**
 * Magenta
 */
.magenta.button {
    border-color: #a9014b !important;
    color: #a9014b !important;
}

/**
 * Orange
 */
.orange.button {
    border-color: #F16863 !important;
    color: #F16863 !important;
}

/**
 * Yellow
 */
.yellow.button {
    border-color: #ffb515 !important;
    color: #ffb515 !important;
}

/* states */
.button:hover {
    background: #111111 !important;
    color: #ffffff !important;
}

.button:active {
    top: 1px;
}