/*!
 * This file is part of the WPSF package.
 * This package is Open Source Software. For the full copyright and license
 * information, please view the LICENSE file which was distributed with this
 * source code.
 *
 * @package    WPSF
 * @author     Varun Sridharan <varunsridharan23@gmail.com>
 */

.wpsf-field-notice {
  padding: 0 !important;
  border: 0 !important;

  + .wpsf-element {
    border-top: 0;
  }

  .wpsf-notice {
    font-size: 12px;
    padding: 17px 30px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
  }

  .wpsf-success {
    color: #3c763d;
    border-color: #d6e9c6;
    background-color: #dff0d8;
  }

  .wpsf-info {
    color: #31708f;
    border-color: #bce8f1;
    background-color: #d9edf7;
  }

  .wpsf-warning {
    color: #8a6d3b;
    border-color: #faebcc;
    background-color: #fcf8e3;
  }

  .wpsf-danger {
    color: #a94442;
    border-color: #ebccd1;
    background-color: #f2dede;
  }

}