.ttrl-reservation-form-wrap {
	width: 100%;
}

.ttrl-form {
	display: block;
	width: 100%;
}

.ttrl-form-row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -8px;
	margin-right: -8px;
	margin-bottom: 16px;
}

.ttrl-field-group {
	flex: 1 1 220px;
	display: flex;
	flex-direction: column;
	padding-left: 8px;
	padding-right: 8px;
	margin-bottom: 16px;
	min-width: 0;
}

.ttrl-label {
	display: inline-block;
	margin-bottom: 6px;
	font-size: 14px;
	line-height: 1.4;
}

.ttrl-input,
.ttrl-select,
.ttrl-textarea {
	display: block;
	width: 100%;
	padding: 10px 12px;
	font-size: 14px;
	line-height: 1.4;
	border: 1px solid #cccccc;
	border-radius: 4px;
	background: #ffffff;
	box-sizing: border-box;
}

.ttrl-textarea {
	min-height: 120px;
	resize: vertical;
}

.ttrl-button {
	display: inline-block;
	padding: 12px 20px;
	font-size: 14px;
	line-height: 1.2;
	border: 0;
	border-radius: 4px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
}

.ttrl-submit {
	width: auto;
}

.ttrl-message {
	display: block;
	padding: 12px 16px;
	margin-bottom: 16px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.5;
	box-sizing: border-box;
}

.ttrl-message-success {
	color: #1f5131;
	background: #eaf7ee;
	border-color: #b9dfc3;
}

.ttrl-message-error {
	color: #7a1f1f;
	background: #fdeeee;
	border-color: #efc2c2;
}

.ttrl-slot-wrap {
	position: relative;
}

.ttrl-slot-message {
	margin-top: 8px;
	margin-bottom: 0;
}

.ttrl-input:disabled,
.ttrl-select:disabled,
.ttrl-textarea:disabled,
.ttrl-button:disabled,
.ttrl-submit:disabled {
	cursor: not-allowed;
	opacity: 0.7;
}

@media (max-width: 600px) {
	.ttrl-form-row {
		margin-left: 0;
		margin-right: 0;
	}

	.ttrl-field-group {
		flex: 1 1 100%;
		padding-left: 0;
		padding-right: 0;
	}
}