/******************************************************************************
 * Pages — стили специфических страниц
 * Прототип MYTENNIS.ONLINE
 ******************************************************************************/

/* -----------------------------------------------
 * Auth pages — центрированная карточка ограниченной ширины
 * ----------------------------------------------- */
.auth-page {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	min-height: calc(100vh - 120px);
	padding: var(--spacing-xl) var(--spacing-md);
	background: var(--color-bg-secondary);
	box-sizing: border-box;
}

.auth-card {
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
	padding: var(--spacing-xl);
	background: var(--color-bg);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-card);
	box-sizing: border-box;
}

.auth-logo {
	text-align: center;
	margin-bottom: var(--spacing-lg);
}

.auth-tabs {
	margin-bottom: var(--spacing-lg);
}

.auth-separator {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
	margin: var(--spacing-lg) 0;
	color: var(--color-text-secondary);
	font-size: 13px;
}

.auth-separator::before,
.auth-separator::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--color-bg-tertiary);
}

.auth-link {
	display: block;
	text-align: center;
	margin-top: var(--spacing-sm);
	color: var(--color-primary);
	text-decoration: none;
	font-size: 14px;
}

.auth-link:hover {
	text-decoration: underline;
}

.code-screen-description {
	text-align: center;
	margin-bottom: var(--spacing-md);
	color: var(--color-text-secondary);
}

.code-input {
	text-align: center;
	letter-spacing: 0.2em;
	font-size: 18px;
}

.resend-link {
	display: inline-block;
	margin-top: var(--spacing-md);
	cursor: pointer;
	color: var(--color-primary);
	font-size: 14px;
}

.resend-link.disabled {
	color: var(--color-text-secondary);
	cursor: default;
}

.password-strength {
	display: flex;
	gap: 4px;
	margin-top: 6px;
}

.password-strength-bar {
	flex: 1;
	height: 4px;
	border-radius: 2px;
	background: var(--color-bg-tertiary);
}

.password-strength-bar.weak {
	background: #e74c3c;
}

.password-strength-bar.medium {
	background: #f39c12;
}

.password-strength-bar.strong {
	background: #27ae60;
}

.register-type-row {
	display: flex;
	gap: var(--spacing-lg);
	flex-wrap: wrap;
	align-items: center;
}

.register-type-row .form-checkbox-inline {
	margin: 0;
}

/* -----------------------------------------------
 * Chat room
 * ----------------------------------------------- */
.chat-room {
	display: flex;
	flex-direction: column;
}

.message {
	margin-bottom: 12px;
}

.message-mine {
	text-align: right;
}

.message-other {
	text-align: left;
}

.message-text {
	display: inline-block;
	padding: 8px 12px;
	border-radius: 12px;
	max-width: 70%;
	text-align: left;
	word-break: break-word;
}

/* -----------------------------------------------
 * Player card
 * ----------------------------------------------- */
.player-card-info {
	display: flex;
	gap: var(--spacing-lg);
	align-items: flex-start;
}

/* -----------------------------------------------
 * Settings
 * ----------------------------------------------- */
.settings-section {
	margin-bottom: var(--spacing-lg);
}

.settings-section:last-child {
	margin-bottom: 0;
}

/* -----------------------------------------------
 * Global search
 * ----------------------------------------------- */
.search-results-list {
	max-height: 400px;
	overflow-y: auto;
}

.search-result-item {
	padding: var(--spacing-sm) var(--spacing-md);
	cursor: pointer;
	transition: background 0.2s ease;
}

.search-result-item:hover {
	background: var(--color-bg-hover);
}

/* -----------------------------------------------
 * Friend request items
 * ----------------------------------------------- */
.request-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 0;
	border-bottom: 1px solid var(--color-border-light);
}

.request-item:last-child {
	border-bottom: none;
}

/* -----------------------------------------------
 * Player / Chat lists (list-item component)
 * ----------------------------------------------- */
.player-list,
.chat-list {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-sm);
}

.list-item {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
	padding: var(--spacing-md);
	background: var(--color-bg);
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	cursor: pointer;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

.list-item:hover {
	background: var(--color-bg-hover);
	box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.list-item[data-href] {
	cursor: pointer;
}

.list-item-content {
	flex: 1;
	min-width: 0;
}

.list-item-title {
	font-weight: 600;
	font-size: var(--font-size-md);
	color: var(--color-text);
	line-height: 1.3;
}

.list-item-subtitle {
	font-size: var(--font-size-sm);
	color: var(--color-text-muted);
	margin-top: 2px;
	line-height: 1.3;
}

.list-item-actions {
	display: flex;
	gap: var(--spacing-xs);
	align-items: center;
	flex-shrink: 0;
}

/* -----------------------------------------------
 * Player list sections (my players / family groups)
 * ----------------------------------------------- */
.player-list-section {
	margin-bottom: var(--spacing-lg);
}

.player-list-section-title {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: var(--spacing-sm);
	padding-bottom: var(--spacing-xs);
	border-bottom: 1px solid var(--color-border);
	color: var(--color-text);
}

.player-list-family-icon {
	margin-right: 4px;
}

/* -----------------------------------------------
 * Account page
 * ----------------------------------------------- */
.notify-group-row {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
	padding: var(--spacing-sm) 0;
	border-bottom: 1px solid var(--color-border);
}

.notify-group-row:last-child {
	border-bottom: none;
}

.notify-group-label {
	font-size: 14px;
	font-weight: 500;
	min-width: 200px;
	flex-shrink: 0;
}

.notify-group-channels {
	display: flex;
	gap: var(--spacing-sm);
	flex-wrap: wrap;
	flex: 1;
}

.form-checkbox-inline {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	cursor: pointer;
}

.notify-subtab {
	/* placeholder */
}

.notify-subtab-active {
	display: block;
}

@media (max-width: 600px) {
	.notify-group-row {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--spacing-xs);
	}

	.notify-group-label {
		min-width: 0;
		width: 100%;
	}
}

/* Расширенный режим: блок группы типов */
.notify-type-group {
	margin-bottom: 24px;
	padding-left: 16px;
	border-left: 2px solid var(--color-border);
}

.notify-type-group:last-child {
	margin-bottom: 0;
}

.notify-type-group .notify-group-row {
	border-bottom: none;
	padding: 4px 0;
}

.notify-type-group-title {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 8px 0;
	color: var(--color-text);
}

/* Account page: email/phone row — не ломать на мобильных */
@media (max-width: 600px) {
	#tab-general .form-row {
		flex-direction: row;
		align-items: end;
	}
	#tab-general .form-row .form-group {
		flex: 1;
		min-width: 0;
	}
}

/* -----------------------------------------------
 * Waitlist
 * ----------------------------------------------- */
/* Реестр заявок — список как «Мой лист ожидания» */
.wl-roster-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.wl-roster-entry {
	cursor: pointer;
}

.wl-roster-entry-me {
	opacity: 0.92;
}

.wl-roster-entry-player {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-bottom: 8px;
}

.wl-roster-entry-player-info {
	flex: 1;
	min-width: 0;
}

.wl-roster-entry-name {
	font-weight: 600;
	font-size: 15px;
	line-height: 1.35;
}

.wl-roster-entry-sub {
	font-size: 12px;
	line-height: 1.4;
	margin-top: 2px;
}

.wl-roster-entry .wl-my-entry-city {
	margin-top: 4px;
}

.wl-roster-entry .wl-my-entry-details {
	margin-top: 8px;
}

.wl-entry-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.wl-entry-avatar-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-bg-secondary);
	color: var(--color-text-muted);
	font-weight: 600;
}

.wl-entry-name {
	font-weight: 600;
	font-size: 15px;
}

.wl-entry-meta {
	font-size: 12px;
	margin-top: 2px;
}

/* Мои заявки — карточка */
.wl-my-entry {
	border: 1px solid var(--color-border);
	transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.wl-my-entry:hover {
	border-color: var(--color-primary, #2563eb);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.wl-my-entry-body {
	padding: 14px 16px;
}

.wl-my-entry-top {
	margin-bottom: 12px;
}

/* 1-я строка: статус слева, кнопки справа */
.wl-my-entry-row-status {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 8px;
	margin-bottom: 6px;
}

.wl-my-entry-row-status .badge {
	flex-shrink: 0;
	white-space: nowrap;
}

.wl-my-entry-actions {
	display: flex;
	flex-wrap: nowrap;
	gap: 4px;
	justify-content: flex-end;
	min-width: 0;
}

/* 2-я строка: срок и просмотры */
.wl-my-entry-sub {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 12px;
	font-size: 12px;
	line-height: 1.4;
	margin-bottom: 6px;
	width: 100%;
}

/* 3-я строка: город */
.wl-my-entry-city {
	font-weight: 600;
	font-size: 15px;
	line-height: 1.35;
	color: var(--color-text);
	width: 100%;
	word-break: break-word;
}

@media (max-width: 768px) {
	.wl-my-entry-actions {
		gap: 3px;
	}

	.wl-my-entry-actions .btn-sm {
		padding: 4px 7px;
		font-size: 11px;
		line-height: 1.25;
	}
}

.wl-my-entry-details {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 13px;
	line-height: 1.45;
}

.wl-my-entry-detail {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 4px 10px;
}

.wl-my-entry-detail--stack {
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
}

.wl-my-entry-detail-label {
	flex: 0 0 auto;
	font-size: 12px;
	color: var(--color-text-muted);
	min-width: 72px;
}

.wl-my-entry-detail-value {
	flex: 1 1 auto;
	min-width: 0;
}

.wl-my-entry-dates {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.wl-my-entry-date-chip {
	display: inline-block;
	padding: 3px 10px;
	font-size: 12px;
	line-height: 1.4;
	background: var(--color-bg-secondary);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	white-space: nowrap;
}

.wl-my-entry-comment {
	font-size: 13px;
	margin: 10px 0 0;
	line-height: 1.45;
}

.wl-my-entry .wl-hint {
	margin-top: 10px;
}

.wl-hint {
	font-size: 12px;
	color: #fff8e7;
	margin: 8px 0 0;
	padding: 8px 12px;
	background: #5c4a1a;
	border-radius: var(--radius-sm);
	border-left: 3px solid #d97706;
}

/* Форма заявки: город выбран */
.wl-city-row--selected .wl-form-city-search {
	background: #e8f5e9;
	color: var(--color-text);
	border-color: #2e7d32;
	font-weight: 500;
	cursor: default;
}

.wl-city-row--selected .wl-form-city-search:disabled {
	opacity: 1;
}

/* Реестр: город выбран (в т.ч. из URL через geo.name) */
#wl-roster-city-search.wl-city-selected:disabled {
	background: #e8f5e9;
	color: var(--color-text);
	border-color: #2e7d32;
	font-weight: 500;
	cursor: default;
	opacity: 1;
}

.wl-calendar-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

/* Форма выбора дат: два календаря фиксированного размера */
.wl-calendar-wrap--pick {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	max-width: 720px;
	width: 100%;
}

.wl-calendar-wrap--pick .wl-calendar-month {
	min-width: 0;
	width: 100%;
}

.wl-calendar-month {
	flex: 1;
	min-width: 200px;
}

.wl-calendar-title {
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 8px;
	text-align: center;
}

.wl-calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	grid-template-rows: repeat(6, 28px);
	gap: 2px;
}

.wl-cal-dow {
	font-size: 10px;
	text-align: center;
	color: var(--color-text-muted);
	padding: 2px 0;
	line-height: 20px;
}

.wl-cal-cell {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	border: 1px solid var(--color-border);
	border-radius: 4px;
	background: var(--color-bg);
	cursor: default;
	min-height: 0;
	height: 100%;
	box-sizing: border-box;
}

button.wl-cal-cell {
	cursor: pointer;
	padding: 0;
}

.wl-cal-cell.wl-cal-on {
	background: #d4edda;
	color: var(--color-text);
	border-color: #a5d6a7;
}

.wl-cal-cell.wl-cal-filter-day {
	border: 2px solid #2e7d32;
	font-weight: 700;
	box-sizing: border-box;
}

.wl-cal-cell.wl-cal-on.wl-cal-filter-day {
	border-color: #1b5e20;
}

.wl-cal-empty {
	border: none;
	background: transparent;
}

.wl-cal-cell.wl-cal-disabled,
.wl-cal-cell.wl-cal-out-range {
	opacity: 0.35;
	cursor: not-allowed;
	background: var(--color-bg-secondary);
	color: var(--color-text-muted);
}

button.wl-cal-cell.wl-cal-disabled:disabled {
	pointer-events: none;
}

.wl-cal-empty-day {
	border: none;
	background: transparent;
}

.wl-schedule-table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-size: 12px;
}

.wl-schedule-table th,
.wl-schedule-table td {
	width: 11.111%;
	border: 1px solid var(--color-border);
	padding: 4px 2px;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
}

.wl-schedule-table thead th {
	font-size: 11px;
	font-weight: 500;
	line-height: 1.2;
}

.wl-schedule-table tbody th {
	font-size: 12px;
	font-weight: 500;
}

.wl-schedule-table tbody tr.wl-sched-day-highlight > th,
.wl-schedule-table tbody tr.wl-sched-day-highlight > td {
	border-top: 2px solid #2e7d32;
	border-bottom: 2px solid #2e7d32;
}

.wl-schedule-table tbody tr.wl-sched-day-highlight > th {
	border-left: 2px solid #2e7d32;
	font-weight: 700;
}

.wl-schedule-table tbody tr.wl-sched-day-highlight > td:last-child {
	border-right: 2px solid #2e7d32;
}

.wl-sched-date-note {
	font-size: 12px;
	color: var(--color-text-muted);
	margin: 8px 0 0;
	line-height: 1.4;
}

.wl-schedule-table td.wl-sched-cell {
	height: 32px;
	padding: 0;
}

.wl-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 8px;
}

.wl-reset-btn {
	font-size: 12px;
	padding: 2px 8px;
	flex-shrink: 0;
}

.wl-pick-cell {
	cursor: pointer;
	background: transparent;
	transition: background 0.12s, border-color 0.12s;
	user-select: none;
}

.wl-pick-cell.wl-pick-on {
	background: #d4edda;
	border-color: #a5d6a7;
}

.wl-sched-read.wl-pick-on {
	background: #d4edda;
}

.wl-time-hint-table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	margin-top: 4px;
}

.wl-time-hint-table td {
	width: 12.5%;
	border: 1px solid var(--color-border);
	padding: 10px 4px;
	text-align: center;
	font-size: 11px;
	line-height: 1.2;
	vertical-align: middle;
}

.wl-time-hint-table td.wl-hint-cell {
	min-height: 40px;
}

.wl-time-hint-table td.wl-hint-cell:hover {
	background: var(--color-bg-hover, var(--color-bg-secondary));
}

.wl-time-hint-table td.wl-hint-cell.wl-pick-on:hover {
	background: #c8e6c9;
}

.wl-time-hint-table td.wl-hint-cell--readonly {
	cursor: default;
	pointer-events: none;
}

.wl-time-hint-table td.wl-hint-cell--readonly:hover {
	background: transparent;
}

.wl-time-hint-table td.wl-hint-cell--readonly.wl-pick-on {
	background: #d4edda;
	border-color: #a5d6a7;
}

.wl-time-hint-read-wrap .form-label {
	font-size: 12px;
	margin-bottom: 4px;
}

.wl-card-modal .wl-card-section {
	border-top: 1px solid var(--color-border);
	padding-top: 12px;
}

.wl-field-error {
	border-color: #dc3545 !important;
	box-shadow: 0 0 0 1px #dc3545;
}

.wl-field-error-block {
	box-shadow: inset 0 0 0 2px #dc3545;
	border-radius: var(--radius-md);
}

/* Модалка формы заявки */
.wl-form-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
	overflow-y: auto;
}

.wl-form-overlay .wl-form-modal {
	background: var(--color-bg);
	border-radius: var(--radius-lg);
	padding: 16px;
	max-width: 800px;
	width: 100%;
	margin: auto;
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
	.wl-form-overlay {
		align-items: flex-start;
		padding: 16px 8px;
	}

	.wl-form-overlay .wl-form-modal {
		margin: 12px auto;
		max-height: none;
	}
}

/* Форма заявки: компактные отступы и сетка полей */
.wl-form-modal .wl-form-title {
	margin: 0 0 10px;
	font-size: 1.15rem;
}

.wl-form-modal .form-group {
	margin-bottom: 8px;
}

.wl-form-modal .form-label {
	margin-bottom: 2px;
	font-size: 12px;
}

.wl-form-modal .wl-form-row--top {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 6px 12px;
	margin-bottom: 4px;
}

.wl-form-modal .wl-form-row--top .form-group {
	margin-bottom: 0;
}

.wl-form-modal .wl-form-field--pay .form-input {
	max-width: none;
	width: 100%;
}

.wl-form-modal .wl-form-comment {
	min-height: 52px;
	resize: vertical;
}

.wl-form-modal .wl-form-hint-wrap {
	margin-top: 4px;
}

.wl-form-modal .wl-form-actions {
	margin-top: 10px;
}

/* Строка геокоординат в форме заявки */
.wl-form-coords-row {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 12px;
	align-items: flex-end;
	margin-bottom: 8px;
}

.wl-form-coords-row .wl-form-coords-field {
	margin-bottom: 0;
	flex: 1;
	min-width: 0;
}

.wl-form-coords-row .wl-form-coords-field .form-input {
	max-width: none;
	width: 100%;
}

.wl-form-coords-row .wl-form-coords-field .form-input:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.wl-form-coords-row .wl-form-coords-btn-wrap {
	flex: 1;
	display: flex;
	align-items: flex-end;
	padding-bottom: 1px;
}

.wl-form-coords-row .wl-form-coords-btn-wrap .btn {
	width: 100%;
	white-space: nowrap;
}

@media (max-width: 768px) {
	.wl-form-coords-row {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: flex-end;
		gap: 6px 10px;
	}

	.wl-form-coords-row .wl-form-coords-field {
		flex: 0 0 calc(50% - 5px);
		max-width: calc(50% - 5px);
		margin-bottom: 0;
	}

	.wl-form-coords-row .wl-form-coords-field .form-input {
		max-width: none;
		width: 100%;
	}

	.wl-form-coords-row .wl-form-coords-btn-wrap {
		flex: 0 0 calc(50% - 5px);
		max-width: calc(50% - 5px);
		display: flex;
	}

	.wl-form-coords-row .wl-form-coords-btn-wrap .btn {
		width: 100%;
		text-align: center;
	}
}

/* -----------------------------------------------
 * Игровые сессии — фильтры реестра (/sessions)
 * ----------------------------------------------- */
.sess-filters {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-end;
	gap: var(--spacing-sm);
}

.sess-filters-row {
	display: contents;
}

.sess-filters .sess-fg {
	margin: 0;
	min-width: 0;
}

.sess-filters .sess-fg-label {
	font-size: 12px;
	margin-bottom: 2px;
}

.sess-filters .sess-fg .form-input,
.sess-filters .sess-fg select.form-input {
	width: 100%;
	max-width: none;
}

.sess-fg--sport,
.sess-fg--status {
	flex: 0 1 15%;
	min-width: 120px;
}

.sess-fg--format {
	flex: 0 1 20%;
	min-width: 160px;
}

.sess-fg--city {
	flex: 1 1 65%;
	min-width: 300px;
}

.sess-fg--invite {
	flex: 0 1 15%;
	min-width: 160px;
}

.sess-filters-row--action {
	flex: 0 0 auto;
}

.sess-city-input-row {
	display: flex;
	gap: 4px;
	align-items: stretch;
}

.sess-city-input-row .form-input {
	min-width: 0;
}

.sess-filters-row--action .btn {
	flex: 0 0 auto;
	width: auto;
	white-space: nowrap;
}

.sess-map-open-wrap,
.wl-map-open-wrap {
	text-align: center;
	margin: var(--spacing-sm) 0;
}

@media (max-width: 768px) {
	.sess-filters {
		flex-direction: column;
		align-items: stretch;
		gap: var(--spacing-md);
	}

	.sess-filters-row {
		display: flex;
		gap: var(--spacing-sm);
		align-items: flex-end;
		width: 100%;
	}

	.sess-filters-row--top {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
	}

	.sess-filters-row--top .sess-fg {
		min-width: 0;
	}

	.sess-filters-row--city,
	.sess-filters-row--dates {
		display: grid;
	}

	.sess-filters-row--city {
		grid-template-columns: 1fr;
	}

	.sess-filters-row--dates {
		grid-template-columns: 1fr;
	}

	.sess-filters-row--action {
		display: block;
	}

	.sess-filters-row--action .btn {
		width: 100%;
	}

	.sess-fg--sport,
	.sess-fg--status,
	.sess-fg--format,
	.sess-fg--city,
	.sess-fg--invite {
		flex: none;
		min-width: 0;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.wl-form-modal {
		padding: 12px !important;
	}

	.wl-form-modal .wl-form-row--top {
		grid-template-columns: 1fr 1fr;
		gap: 6px 10px;
	}

	.wl-form-modal .wl-form-field--sport {
		grid-column: 1;
		grid-row: 1;
	}

	.wl-form-modal .wl-form-field--format {
		grid-column: 2;
		grid-row: 1;
	}

	.wl-form-modal .wl-form-field--expires {
		grid-column: 1;
		grid-row: 2;
	}

	.wl-form-modal .wl-form-field--pay {
		grid-column: 2;
		grid-row: 2;
	}

	.wl-form-modal .wl-form-comment {
		min-height: 44px;
	}
}
