/* TripMems / Oursights public styling */

/* Buy Tour checkout card */



.tm-stripe-checkout-box {
	max-width: 720px;
	margin: 32px auto !important;
	background: #ffffff;
	border: 1px solid #e4e4e4;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
}

.tm-stripe-checkout-box form:first-child {
	margin-top: 0 !important;
	margin-bottom: 28px !important;
}

.tm-stripe-checkout-box form:first-child button {
	display: block !important;
	width: 100%;
	max-width: 380px;
	font-size: 20px !important;
	font-weight: 700 !important;
	padding: 18px 24px !important;
	border-radius: 14px !important;
	background: #111 !important;
	color: #fff !important;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.tm-stripe-checkout-box form:first-child button:hover,
.tm-stripe-checkout-box form:first-child button:focus {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

/* Access recovery */
.tm-access-recovery {
	margin-top: 34px !important;
	padding-top: 28px !important;
	border-top: 1px solid #ddd !important;
}

.tm-access-recovery p:first-child {
	font-size: 22px;
	margin-bottom: 12px;
}

.tm-access-recovery p {
	font-size: 18px;
	line-height: 1.4;
}

.tm-access-recovery form {
	display: flex !important;
	gap: 12px !important;
	align-items: stretch !important;
	margin-top: 18px;
}

.tm-access-recovery input[type="email"] {
	flex: 1;
	min-height: 50px;
	font-size: 16px;
	box-sizing: border-box;
	border-radius: 10px !important;
}

.tm-access-recovery button {
	min-height: 50px;
	font-weight: 700;
	border-radius: 10px !important;
	white-space: nowrap;
}

/* Buy page warning / placeholder cards */
.tm-stripe-checkout-placeholder {
	max-width: 720px;
	margin: 32px auto !important;
	font-size: 18px;
	line-height: 1.45;
	box-sizing: border-box;
}

/* Tour page containers */
.tripmems-tour-stops {
	max-width: 840px;
	margin-left: auto;
	margin-right: auto;
}

.tripmems-stop {
	background: #fff;
	border-radius: 18px;
}

.tripmems-stop-image-wrap {
	overflow: hidden;
	border-radius: 16px;
}

.tripmems-stop-image {
	display: block;
	width: 100%;
	height: auto;
}

/* Mobile */
@media (max-width: 700px) {
	.tm-stripe-checkout-box,
	.tm-stripe-checkout-placeholder {
		margin: 24px 14px !important;
		padding: 22px !important;
		border-radius: 18px;
	}

	.tm-stripe-checkout-box form:first-child button {
		max-width: none;
		width: 100%;
		font-size: 19px !important;
	}

	.tm-access-recovery form {
		display: block !important;
	}

	.tm-access-recovery input[type="email"],
	.tm-access-recovery button {
		width: 100%;
		box-sizing: border-box;
		margin-top: 10px;
	}

	.tm-access-recovery button {
		display: block;
	}
}