@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-red {
    background: #ce4257;

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

        color: #fff;
    }

.btn-pink {
    background: #e22066;

    color: #fff;
}
    .btn-pink:hover {
        background: #c11e59;

        color: #fff;
    }

.btn-green {
    background: #44AC8E;

    color: #fff;
}
    .btn-green:hover {
        background: #2c8d71;

        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: #353535;

        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: 10px 24px;
}

/* Accordion Buttons */
.btn-accordion {
    background: #000;
    border-radius: 12px 12px 0 0;
    border: none;

    font-weight: 600;
    color: #fff;

    width: auto;
    height: auto;

    padding: 12px 50px;
    margin: 0 0 0 20px;

    transition: 0.2s;
}
.btn-accordion.collapsed {
    background: #fff;

    color: #3C3C4F;

    transition: 0.2s;
}

/* Image Select Buttons */
.form-image .btn-select {
    background: #fff;
    box-shadow: 0 5px 8px #e9e9e9 !important;
    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: #e22066;

        transition: 0.2s;
    }
