/*!
 * 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-image_select {

  label {
    display: inline-block;
    margin: 5px;

    img {
      max-width: 100%;
      vertical-align: bottom;
      background-color: #fff;
      border: 2px solid #eee;
      opacity: 0.75;
      transition: all 0.15s ease-out;
    }
  }

  input {
    display: none;

    &:checked ~ img {
      border-color: #333;
      opacity: 1;
    }
  }
}