.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;
}

/**
* People selector
*/
.pht-people .pht-component-title {
    display: block;
}
.pht-people .pht-people-selector-button {
    min-width: 350px;
    padding: 1vh;
    background: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2016%2016%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M7.247%2011.14%202.451%205.658C1.885%205.013%202.345%204%203.204%204h9.592a1%201%200%200%201%20.753%201.659l-4.796%205.48a1%201%200%200%201-1.506%200z%22/%3E%3C/svg%3E) no-repeat right 0.75rem center / 19px 19px;
}

.pht-dropdown {
    position: absolute;
    border: 1px solid;
    padding: 0.5vh;
    background: #fff;
    width: 350px;
    z-index: 102;
}
.pht-people .drop-back {
    background: #ccc;
    position: fixed;
    opacity: 0;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    z-index: 101;
}