/* ==========================================================
   CUSTOM CSS FLUENT FORMS
   ========================================================== */

/*****FORM CARDS*****/
.form-cards .ff-el-input--content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-cards .ff-el-form-check {
    display: flex;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 18px;
    height: 100%;
    transition: all .2s ease;
}

.form-cards .ff-el-form-check:hover {
    background: #fafafa;
    border-color: #d2d2d2;
}

.form-cards .ff-el-form-check-label {
    display: grid;
    grid-template-columns: 22px 1fr;
    column-gap: 12px;
    align-items: start;
    width: 100%;
}

.form-cards .ff-el-form-check-input {
    margin-top: 4px;
    flex-shrink: 0;
}

.form-cards .ff-el-form-check-label > span {
    display: block;
}

.form-cards strong {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.form-cards .incident-description {
    display: block;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    font-weight: 400;
}

/* Mobile */
@media only screen and (max-width: 767px) {

    .form-cards .ff-el-input--content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .form-cards .ff-el-form-check {
        width: 100% !important;
    }

}