.pht-guests .row {
    display: flex;
    gap: 2vh;
}
.pht-guests .row > div {
    flex: 1;
}

.pht-guests .form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 1vh;
}

.pht-guests label {
    width: 100%;
    display: block;
}
.pht-guests .required label:after {
	content: '*';
	color: #f00;
	margin-left: 5px;
	line-height: 1px;
	font-size: 24px;
}

/**
* Input formatting
*/
.pht-guests input {
    padding: 9px 13px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: inherit;
}

/**
* Date picker
*/
.pht-guests fieldset {
    padding: 0;
    margin: 0;
    border: 0;
}
.pht-guests select {
    border-radius: 5px;
    background: #fff;
    padding: 8px 0;
    border: 1px solid #ccc;
    padding-left: 14px;
    font-size: inherit;
}
.pht-guests .row fieldset .birthDate {
    border-right: 0px solid transparent;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.pht-guests .row fieldset .birthMonth {
    border-radius: 0px;
}
.pht-guests .row fieldset .birthYear {
    border-left: 0px solid transparent;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

/**
* Error styling
*/
.help-block.with-errors {
    color: #f00;
}

/**
 * Postcode location
 */
 .pht-guests .postcode-finder {
	padding: 13px 10px;
	border-radius: 4px;
	font-weight: normal;
    max-width: 150px;
}

.postcode-location .lookup-address {
	display: none;
}
.postcode-location .manual-address {
	display: none;
}
.postcode-location .enable-address-finder {
	display: none;
}

.postcode-location.active .lookup-address {
	display: block;
}
.postcode-location.active .manual-address {
	display: none;
}

.postcode-location.manual .lookup-address {
	display: none;
}
.postcode-location.manual .manual-address {
	display: block;
}
.postcode-location.manual .enable-address-finder {
	display: block;
}
.postcode-location.manual .postcode-finder {
	display: none;
}
.postcode-location .enable-address-finder {
	line-height: 40px;
}