/**
 * @version     4.2.0
 * @package     com_gaforsale
 * @copyright   2021 Glenn Arkell
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      Glenn Arkell <glenn@glennarkell.com.au>
 */

/*  this keeps the input fields to the right of the label  */
.form-horizontal .controls {
	margin-top: -20px !important;
	margin-left: 190px !important;
}

/* this keeps the label with text floating right */
.control-label label {
    margin-right: 10px;
    text-align: right;
    width: 170px !important;
}
 */

.form-control::placeholder {
	opacity: 0.5 !important;
}

.form-control.input-small {
    max-width:75%;
    float: left;
}

/* reduce the size of the label area on small screens */
@media only screen and (max-width: 480px) {
    .form-horizontal .controls {
        margin-left: 60px !important;
    }
    .control-label label {
        width: 55px !important;
    }
}

