.search-button-td {
	padding-top: 15px;
}

.search-button-table {
	width: 100%;
}
/* --- Login page: step guide, field hints and the de-emphasised registration action ------------------ */

.login-panel .login-steps {
	padding-bottom: 0;
}

.login-panel .login-steps ol {
	margin: 0 0 4px 0;
	padding: 0;
	list-style: none;
	counter-reset: login-step;
}

.login-panel .login-steps li {
	counter-increment: login-step;
	position: relative;
	padding: 6px 0 6px 34px;
	font-size: 13px;
	line-height: 1.4;
	color: #92C8D0;
}

/* Numbered badge, drawn rather than shipped as an image so it scales and stays theme-consistent. */
.login-panel .login-steps li:before {
	content: counter(login-step);
	position: absolute;
	left: 0;
	top: 5px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background-color: #92C8D0;
	color: #2E465D;
	font-size: 12px;
	font-weight: bold;
	line-height: 22px;
	text-align: center;
}

.login-panel .login-steps li i {
	margin-right: 6px;
	opacity: 0.85;
}

.login-panel .field-hint {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	line-height: 1.4;
	color: #92C8D0;
	opacity: 0.85;
}

.login-panel .secondary-container {
	padding-top: 0;
	text-align: center;
}

.login-panel .secondary-prompt {
	display: block;
	margin-bottom: 6px;
	font-size: 12px;
	color: #92C8D0;
	opacity: 0.85;
}

/* Outlined, unraised: readable and clearly clickable, but not a second primary button next to Sign In. */
.login-panel .secondary-btn.ui-button,
.login-panel .secondary-btn.ui-button:link {
	background-color: transparent;
	border: 1px solid #92C8D0;
	box-shadow: none;
	color: #92C8D0;
}

.login-panel .secondary-btn.ui-button:hover {
	background-color: rgba(146, 200, 208, 0.15);
	border-color: #92C8D0;
	color: #ffffff;
}

/* --- Subscription table: cancel action ------------------------------------------------------------- */

/*
 * The button is an inline-block, so it shrink-to-fits to its max-content width. In a table-layout:fixed cell that
 * is narrower than the label, it overflowed the cell and the overflow:hidden td sliced the text in half. Keeping
 * it on one line inside a column of stated width avoids that; max-width is a backstop so a longer translation
 * shrinks the button rather than being clipped again.
 */
body .ui-button.cancel-subscription-btn {
	max-width: 100%;
	white-space: nowrap;
}

body .ui-button.cancel-subscription-btn .ui-button-text {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* --- Subscription table: pending cancellation state ------------------------------------------------ */

.cancellation-pending {
	color: #8a6d3b;
	font-size: 12px;
	line-height: 1.3;
	white-space: normal;
}

.cancellation-pending i {
	margin-right: 4px;
}

.cookie-banner {
	background-color: #2E465D;
	color: #92C8D0;
	padding: 20px;
	position: fixed;
	bottom: 0;
	width: 100%;
	text-align: center;
	z-index: 9999;
	border-top: 3px solid #92C8D0;
}
