@charset "utf-8";
/* CSS Document */

/* Styled Button */
.btn-default {
    border-radius: 4px;
    border: none;

    font-weight: 700;

    transition: 0.3s;
}
    .btn-default:hover {
        transition: 0.3s;
    }
    .btn-default:disabled {
        background: #f8d7da;

        color: #721c24 !important;
    }
    .btn-default:disabled:hover {
        background: #f8d7da;

        color: #721c24 !important;
    }

.btn-grey {
    background: #353535;

    color: #fff;
}
    .btn-grey:hover {
        background: #000000;

        color: #fff;
    }

.btn-white {
    background: #ffffff;

    color: #353535 !important;
}
    .btn-white:hover {
        background: #f5f5f5;

        color: #353535 !important;
    }

.btn-red {
    background: #b72961;

    color: #fff !important;
}
    .btn-red:hover {
        background: #951145;

        color: #fff !important;
    }

.btn-green {
    background: #44AC8E;

    color: #fff !important;
}
    .btn-green:hover {
        background: #2f9779;

        color: #fff !important;
    }

.btn-xlarge {
    font-size: 18px;

    padding: 14px 40px;
}
.btn-large {
    font-size: 16px;

    padding: 14px 40px;
}
.btn-medium {
    font-size: 16px;

    padding: 12px 40px;
}
.btn-small {
    font-size: 14px;

    padding: 6px 20px;
}

/* Image Select Buttons */
.form-image .btn-select {
    background: #fff;
    border: 1px solid #eaedf2;
    border-radius: 12px;

    font-size: 28px;

    width: 150px;
    height: 150px;

    display: table-cell;
    vertical-align: middle;
    text-align: center;

    cursor: pointer;

    transition: 0.2s;
}
    .form-image .btn-select:hover {
        color: #44AC8E;

        transition: 0.2s;
    }
