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

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

    font-weight: 600;

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

        color: #fff !important;
    }
    .btn-default:disabled:hover {
        background: #000;

        color: #fff !important;
    }

.btn-red {
    background: #d31722;

    color: #fff;
}
    .btn-red:hover {
        background: #ab121b;

        color: #fff;
    }

.btn-white {
    background: #ffffff;

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

        color: #333 !important;
    }

.btn-black {
    background: #000;

    color: #fff !important;
}
    .btn-black:hover {
        background: #000;

        color: #fff !important;
    }

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

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

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

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

    padding: 8px 20px;
}
