/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

.horizontal-energy-form {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.horizontal-energy-form .form-fields {
    display: flex;
    flex: 1;
    margin-right: 10px;
}

.horizontal-energy-form .field-group {
    flex: 1;
    padding: 0 15px;
    position: relative;
    text-align: left;
}

.horizontal-energy-form label {
    display: block;
    margin-bottom: 5px;
	font-weight:500;
}

.horizontal-energy-form input,
.horizontal-energy-form select {
    width: 100%;
    padding: 8px 10px;
    border: none;
    background-color: white;
    color: #757575;
    appearance: none;
	border-radius:8px;
	height:55px;
		border:2px solid #eee;
}

.horizontal-energy-form .input-wrapper {
    display: flex;
    align-items: center;
}

.horizontal-energy-form .icon {
    margin-right: 5px;
    color: #757575;
}

.horizontal-energy-form select {
    background-size: 12px;
    padding-right: 20px;
}

.horizontal-energy-form input:focus,
.horizontal-energy-form select:focus {
    outline: none;
    border-bottom-color: #FB8C00;
}

.horizontal-energy-form .compare-button {
    background-color: #FF7621;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
	font-weight:700;
}

.horizontal-energy-form .compare-button:hover {
    background-color: #F57C00;
}

@media (max-width: 768px) {
    .horizontal-energy-form {
        flex-direction: column;
    }
    .horizontal-energy-form .form-fields {
        flex-direction: column;
        width: 100%;
    }
    .horizontal-energy-form .field-group:not(:last-child):after {
        display: none;
    }
    .horizontal-energy-form .compare-button {
        margin-top: 15px;
        width: 100%;
    }
}