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

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

    font-weight: 600;

    transition: 0.2s;
}
    .btn-default:hover {
        transition: 0.2s;
    }
    .btn-default:disabled {
        background: #e9ecef;
    }
    .btn-default:disabled:hover {
        background: #e9ecef;
    }

.btn-purple {
    background: #7209b7;

    color: #fff;
}
    .btn-purple:hover {
        background: #510783;

        color: #fff;
    }

.btn-green {
    background: #44AC8E;

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

        color: #fff;
    }

.btn-red {
    background: #ce4257;

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

        color: #fff;
    }

.btn-white {
    background: #fff;

    color: #43525b;
}
    .btn-white:hover {
        background: #f0f2f5;

        color: #43525b;
    }

.btn-black {
    background: #43525b;

    color: #fff;
}
    .btn-black:hover {
        background: #2b363c;

        color: #fff;
    }

.btn-grey {
    background: #f0f2f5;

    color: #43525b;
}
    .btn-grey:hover {
        background: #e5e9ef;

        color: #43525b;
    }

.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: 8px 20px;
}

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

    font-weight: 600;
    color: #fff;
    text-transform: uppercase;

    position: relative;
    top: -72px;

    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: #7209b7;

        transition: 0.2s;
    }

/* Sweet Alert Buttons */
.swal-button-container button {
    border-radius: 4px;

    font-size: 14px;
    font-weight: 600;

    padding: 8px 20px;
}


.swal-button-container .btn-purple {
    background: #7209b7;
    border: none;

    color: #fff;
}
    .swal-button-container .btn-purple:hover {
        background: #510783;

        color: #fff;
    }
