/*!
 * 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-element {
  &.wpsf-field-spacing {
    .wpsf-element {
      border: none;

      &.wpsf-field-select {
        vertical-align: top;
        position: relative;
        select {
          margin: 0;
        }
      }

    }
  }

  &.wpsf-spacing {
    &:before {
      content: "\f034";
      position: absolute;
      top: 1px;
      left: 0;
      height: 28px;
      width: 25px;
      font-family: 'FontAwesome';
      line-height: 2;
      text-align: center;
      background-color: #ededed;
      display: block;
    }

    &.small-input input {
      width: 60px;
      margin-left: 25px;
    }

    &.wpsf-spacing-top:before {
      content: "\f062";
    }

    &.wpsf-spacing-bottom:before {
      content: "\f063";
    }

    &.wpsf-spacing-left:before {
      content: "\f060";
    }

    &.wpsf-spacing-right:before {
      content: "\f061";
    }

  }
}