.pac-container {
    z-index: 999999 !important;
}

.tc-booking-form {
    display: flex;
	flex-direction: column;
	gap: 20px;
}

.tc-arrival-fields {
    display: flex;
	flex-direction: column;
	gap: 20px;	
}

.tc-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tc-field label {
	display: flex;
	align-items: center;
	gap: 5px;
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: var(--e-global-typography-primary-font-size);
    font-weight: var(--e-global-typography-primary-font-weight);
    line-height: var(--e-global-typography-primary-line-height);
	color: var( --e-global-color-text );
}

.tc-field input[type="text"],
.tc-field input[type="date"],
.tc-field input[type="time"],
.tc-field input[type="number"],
.tc-field select,
.tc-field textarea {
    width: 100%;
    padding: 10px 10px;
    border-radius: 0;
	border-width: 0 0 1px 0;
    border-color: var( --e-global-color-text );
	border-style: solid;
    background-color: var(--e-global-color-f811d9f);
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    line-height: var(--e-global-typography-text-line-height);
	color: var( --e-global-color-text );	
}

.tc-field textarea {
    min-height: 90px;
    resize: none;
}

.tc-field input:focus,
.tc-field select:focus,
.tc-field textarea:focus {
    box-shadow: none;
    outline: none;
}

.tc-field input[disabled],
.tc-field select[disabled],
.tc-field textarea[disabled] {
	opacity: 0.7;
    cursor: not-allowed;
}

.tc-field input[type="checkbox"] {
    margin-right: 0;
}

.tc-field label > input[type="checkbox"] {
    margin-right: 0;
}

.tc-baby-seats-group {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
	background: var(--e-global-color-bb8b458);
}

.tc-roundtrip-extra {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
	background: var(--e-global-color-bb8b458);
}

.tc-price-and-submit {
	display: flex;
	flex-direction: row;
	gap: 20px;
}

button.tc-continue-button, button.tc-continue-button:active, button.tc-continue-button:focus {
    display: flex;
	flex-direction: row;
	gap: 10px;
	padding: 10px 20px;
    background-color: var(--e-global-color-text);
	border: 1px solid var(--e-global-color-text);
	border-radius: 0;
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: var(--e-global-typography-accent-font-weight);
    line-height: var(--e-global-typography-accent-line-height);
	color: var( --e-global-color-f811d9f );
}

button.tc-continue-button:hover {
	background-color: var(--e-global-color-f811d9f);
	border: 1px solid var(--e-global-color-text);
	color: var( --e-global-color-text );
	
}


.tc-continue-button:disabled,
.tc-continue-button[aria-disabled="true"] {
	opacity: 0.7;
}

.tc-continue-label {
    white-space: nowrap;
}

.tc-continue-price {
    white-space: nowrap;
}

.tc-form-message {
	min-height: 18.2px;
	font-family: var(--e-global-typography-ee7afa7-font-family), Sans-serif;
    font-size: var(--e-global-typography-ee7afa7-font-size);
    font-weight: var(--e-global-typography-ee7afa7-font-weight);
    line-height: var(--e-global-typography-ee7afa7-line-height);
    color: var(--e-global-color-a25666b);
}

.tc-price-wrap {
	display: flex;
	flex-direction: row;
	gap: 10px;
}

.tc-price-original {
	color: var(--e-global-color-a25666b);
}

.tc-price-original s {
    text-decoration-thickness: 1px;
}

.tc-price-sale {
	font-weight: var(--e-global-typography-text-font-weight);
}

.tc-price-final {

}

.tc-map-wrapper {
    max-width: 100%;
}

.tc-map-canvas {
    width: 100%;
    height: 500px;
}

.tc-text-muted {
	opacity: 0.7;
}

.tc-order-summary-blocks, .tc-order-summary-block {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.tc-order-summary-blocks {
	margin-bottom: 40px;
}

a.tc-edit-link, a.tc-edit-link:focus, a.tc-edit-link:active {
	color: var(--e-global-color-text)!important;
	border-bottom: 1px solid var(--e-global-color-a48367d)!important;	
}
a.tc-edit-link:hover {
	color: var(--e-global-color-accent)!important;
	border-bottom: 1px solid var(--e-global-color-bb8b458)!important;	
}