
.notification-box {
    background-color: white;
    padding: 16px;
    display: -ms-flexbox !important;
    display: flex !important;
    margin-bottom: 16px;
    color: #595959;
}

    .notification-box .icon-holder {
        display: inline-block;
        height: 100%;
        width: 24px;
        min-width: 24px;
        margin-right: 12px;
        border-radius: 12px;
    }


    .notification-box.success-box {
        border: 1px solid #008F5C;
    }

    .notification-box.error-box {
        border: 1px solid #D15A40
    }

    .notification-box.warning-box {
        border: 1px solid #FFAB40;
    }

    .notification-box.success-box .icon-holder {
        background-color: #008F5C;
    }

    .notification-box.error-box .icon-holder {
        background-color: #D15A40;
    }

    .notification-box.warning-box .icon-holder {
        background-color: #FFAB40;
    }

    .notification-box .icon-holder .icon {
        background-repeat: no-repeat;
        background-position: right 6px bottom 6px;
        width: 24px;
        height: 24px;
    }

        .notification-box .icon-holder .icon.secure-icon {
            background-image: url(/Content/images/icons/Secure.svg);
            background-position: right 6px bottom 5px;
        }

        .notification-box .icon-holder .icon.validate-icon {
            background-image: url(/Content/images/icons/Validate.svg);
            background-position: right 5px bottom 4px;
        }

        .notification-box .icon-holder .icon.error-icon {
            background-image: url(/Content/images/icons/Error.svg);
            background-position: right 6px bottom 6px;
        }

        .notification-box .icon-holder .icon.success-icon {
            background-image: url(/Content/images/icons/Success.svg);
            background-position: right 4px bottom 6px;
        }

    .notification-box span {
        font-style: normal;
        font-weight: 300;
        font-size: 16px;
        line-height: 24px;
        color: #595959;
        display: inline-block;
        margin-top: 2px;
        letter-spacing: 0.25px;
    }

.fds-help-box {
    background: #F7F9FA;
    padding: 24px;
}

.fds-help-box .s-heading {
    color: #00818F;
}