/*!
 * OBE Input Reset v1.1.1
 * A lightweight and easy to customize jQuery plugin to add a clickable character to input elements
 * with click functionality to clear the input value, and focus the input.
 *
 * Licensed GPLv3 for open source use
 * Copyright (C) Matt McT Designs 2017
 * 
*/

.obe-input-reset-wrapper {
	height: 0px;
	width: 100%;
	position: relative;
}

.obe-input-reset {
	display: inline-block;
	position: relative;
	opacity: 0.5;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.obe-input-reset:hover {
	opacity: 1;
	cursor: pointer;
}