svg {
	vertical-align: top;
}

/* global classes */
.mn-manage-layout * {
	color: #414141;
}
.underline {
	text-decoration: underline;
}
.display-flex {
    display: flex;
    &.two-columns {
        flex-wrap: wrap;
		gap: 10px
    }
    & > * {
        flex: 1 1 0;
    }
	&.align-items-center {
		align-items: center;
	}
}
.whitetext {
	color: #fff;
}
.strong {
	font-weight: 500;
}

.heading-full_width-2 {
	grid-column: 1 / span 2;
}
.heading-full_width-3 {
	grid-column: 1 / span 3;
}
.mn-screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}
.mn-venue-preview h2 {
    font-size: 24px;
	font-weight: 500;
    margin: 0;
}
.mn-venue-preview h3 {
    font-size: 22px;
	font-weight: 500;
    margin: 0;
}
.mn-venue-preview h4 {
    font-size: 20px;
    margin: 0;
	font-weight: 500;
}
.mn-venue-preview h5 {
    font-size: 18px;
    margin: 0;
	font-weight: 500;
}
.mn-venue-preview h2, .mn-venue-preview h5, .mn-venue-preview h4 {
    margin-bottom: 26px;
}
.site-content {
    position: relative;
    margin-top: 15px;
}
@media screen and (max-width: 551px) {
	div#wpadminbar {
		display: none !important;
	}
	html {
		margin-top: 0 !important;
	}
}
/* global classes end */

.mn-auth-shell,
.mn-card,
.mn-notice,
.mn-auth-form,
.mn-modal__dialog {
	box-sizing: border-box;
}

.mn-breadcrumbs {
	width: min(1120px, calc(100% - 32px));
    margin: 0px auto 10px;
	font-size: 14px;
	line-height: 1.4;
	color: #475569;
    position: absolute;
    top: 0px;
}

.mn-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.mn-breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 2px;
}
.mn-breadcrumbs li img {
    width: 16px;
}
.mn-breadcrumbs li + li::before {
	content: "/";
	color: #94a3b8;
}

.mn-breadcrumbs a {
	color: #0f172a;
	text-decoration: none;
}

.mn-breadcrumbs a:hover,
.mn-breadcrumbs a:focus-visible {
	text-decoration: underline;
}

.mn-breadcrumbs [aria-current="page"] {
	color: #64748b;
}

.mn-auth-shell,
.mn-profile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 0px 0 75px;
}

.mn-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 2px solid #52DFF0;
    background: #0f172a;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: .2s;
}
.mn-button:hover {
    background: #151825;
    color: #ffffff;
    border: 2px solid #151825;
    box-shadow: 0px 4px 8px -4px #151825;
}
.mn-button--danger {
	border-color: #8f1d1d;
	background: #8f1d1d;
	color: #ffffff;
}

.mn-button--danger:hover,
.mn-button--danger:focus-visible {
	background: #741616;
	color: #ffffff;
}

.mn-card {
    max-width: 100%;
    width: 560px;
    padding: 24px;
    border-radius: 18px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border: solid 1px #e1e1e1;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    box-shadow: -8px 8px 10px 0px #dbdbdb5e, inset -17px 17px 19px 0px rgb(255 255 255);
    background: #f7f6f6;
}

.mn-card--wide {
	max-width: 900px;
}

.mn-profile {
	max-width: 960px;
}

.mn-profile__grid {
	display: grid;
	gap: 18px;
}

.mn-profile__grid .mn-card {
	/* max-width: none; */
	border-radius: 8px;
}

.mn-profile__actions {
	justify-content: flex-start;
	margin: 0 0 16px;
}

.mn-profile__places {
	margin-top: 16px;
}

.mn-auth-form {
	display: grid;
	gap: 12px;
	margin-top: 0;
}

.mn-form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}
.mn-venue-preview > form label {
    font-size: 14px;
    line-height: 1;
}

.mn-hours-fieldset {
	margin: 0;
	padding: 16px;
	border: 1px solid #dbe2ea;
	border-radius: 16px;
}

.mn-hours-grid {
	display: grid;
	gap: 10px;
	margin-top: 12px;
}
.mn-hours__row {
    display: grid;
    grid-template-columns: 120px auto 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}
.mn-hours-row {
	display: grid;
	grid-template-columns: minmax(110px, 1fr) auto 1fr 1fr;
	gap: 10px;
	align-items: center;
}

.mn-hours-row__day {
	font-weight: 600;
}


.mn-hours-always-open {
	margin: 12px 0;
}

div#details-modal button.mn-button {
    margin: 25px 0 15px;
}
.mn-venue-preview__owner-actions {
	display: flex;
	justify-content: end;
	margin: 0 0;
    position: absolute;
    top: -25px;
    right: 0;
}
a.mn-edit-link {
    color: #000;
    font-size: 14px;
    display: flex;
    align-items: center;
	text-decoration: none;
	justify-content: end;
}
a.mn-edit-link * {
    line-height: 1.5;
}

.mn-auth-form input[type="text"],
.mn-auth-form input[type="email"],
.mn-auth-form input[type="password"],
.mn-auth-form select,
.mn-auth-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #cbd5e1;
	border-radius: 12px;
	background: #ffffff;
}

.mn-checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
}

.mn-auth-alt {
	margin: 16px 0 0;
}

.mn-field-note {
	margin: -4px 0 8px;
	color: #475569;
	font-size: 0.92rem;
}

.mn-media-preview,
.mn-gallery-item {
	display: grid;
	gap: 10px;
	padding: 12px;
	border: 1px solid #dbe2ea;
	border-radius: 14px;
	background: #ffffff;
	position: relative;
}

.mn-media-preview img,
.mn-gallery-item img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.mn-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 12px;
}

.mn-editor-wrap .wp-editor-wrap {
	border: 1px solid #cbd5e1;
	border-radius: 12px;
	overflow: hidden;
}
.mce-toolbar .mce-ico:hover {
    color: #fff;
    outline: none;
    border: none;
}

.mn-dashboard {
	display: grid;
	gap: 18px;
    margin-top: 0;
}

.mn-template-shell,
div#primary {
	max-width: 1100px;
	margin: 0 auto;
	padding: 32px 16px 64px;
}

.mn-dashboard__venues {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.mn-dashboard__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
    justify-content: space-between;
}
.mn-dashboard__actions h2 {
    font-size: 25px;
}
.mn-dashboard__actions a {
    font-size: 10px;
    justify-self: end;
    transition: .2s;
    padding: 2px 10px;
    border-width: 1px !important;
}
.mn-dashboard__actions a:hover {
}
.mn-dashboard__venue-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid #cbd5e1;
	background: #fff;
	color: #0f172a;
	font-weight: 600;
	text-decoration: none;
}
a.mn-dashboard__venue-link:hover {
    color: #4f5970;
}

.mn-dashboard__venue-link.is-active {
	background: #0f172a;
	color: #fff;
	border-color: #0f172a;
}

.mn-venue-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

.mn-venue-list__card {
	display: grid;
	gap: 8px;
	padding: 22px;
	border-radius: 20px;
	border: 1px solid #dbe2ea;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	text-decoration: none;
	color: #0f172a;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.mn-venue-list__media img,
.mn-venue-list__placeholder {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 16px;
}

.mn-venue-list__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e2e8f0;
	color: #334155;
	font-weight: 700;
}

.mn-venue-list__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.mn-venue-list__title {
	font-size: 1.1rem;
	font-weight: 700;
}

.mn-venue-list__meta {
	color: #475569;
	font-size: 0.94rem;
}

.mn-venue-list__summary {
	color: #334155;
	line-height: 1.55;
}

.mn-venue-directory h1,
.mn-venue-directory p {
	margin-top: 0;
}

.mn-venue-directory--archive {
	max-width: 1040px;
	width: 100%;
	padding: 28px 24px 56px;
	border: 2px solid #2ee7ff;
	border-radius: 20px;
	background-color: #F2F2F2;
	background: linear-gradient(270deg,rgba(242, 242, 242, 1) 70%, rgba(255, 255, 255, 1) 100%);
	box-shadow: none;
}

.mn-venue-directory--archive h1 {
	margin-bottom: 4px;
	color: #2c2c2c;   
    font-size: 2rem;
    font-weight: 400;
	line-height: 1;
}

.mn-venue-directory--archive > p {
	margin-bottom: 24px;
	color: #333333;
	font-size: 1.2rem;
}

.mn-venue-directory--archive > .view-filter-page {
	margin: 0 0 24px;
}

.mn-venue-directory--archive > .view-filter-page a {
	display: block;
	padding: 12px 14px;
	background: #287cc0;
	color: #ffffff;
	font-size: 1.2rem;
	text-decoration: none;
}

.mn-venue-directory--archive-header {
	display: flex;
	justify-content: space-between;

	.mn-venue-directory__header-actions {
		align-items: center;
		display: flex;
		gap: 30px;
		margin-top: -12px;
	}

	.mn-venue-directory__header-filter-row {
		align-items: center;
		display: flex;
		gap: 6px;
	}

	.mn-venue-directory__open-now-filter {
		align-items: center;
		cursor: pointer;
		display: inline-flex;
		font-size: 14px;
		gap: 6px;
		line-height: 1.2;
		white-space: nowrap;
	}

	.mn-venue-directory__open-now-filter input {
		margin: 0;
	}

	.filter-buttons {
		padding: 0;
		background: none;
	}

	.mn-venue-directory__clear-button {
		background: none;
		padding: 0;

		&::before {
			content: attr(tooltip);
			top: calc(100% + 5px);
			left: 50%;
			transform: translateX(-50%);
			white-space: nowrap;
			background-color: #000;
			padding: 2px 5px;
			position: absolute;
			font-size: 11px;
			display: none;
		}

		&:hover::before {
			display: block;
		}
	}
}

.mn-venue-directory__filters {
	display: none;
	padding: 24px;
	border-radius: 14px;
	background: #ffffff;
	box-shadow: 0 0 10px 0 #000;
	border: 2px solid #2ee7ff;
	color: #151515;

	position: fixed;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
	overflow-y: auto;

	max-width: 100vw;
	max-height: 95vh;
	width: 760px;
	height: auto;
	margin: auto;

	header {
		margin: -24px -24px 0;
		text-align: center;
		font-size: 1.5rem;
		font-weight: 500;
		border-bottom: 2px solid #2ee7ff;
		margin-bottom: 20px;
		padding-block: 3px;
		position: relative;

		.hide-filter {
			position: absolute;
			top: 0;
			right: 0;
			margin-block: auto;
			background-color: transparent;
			padding: 0;

			svg {
				vertical-align: top;
			}
		}
	}

	.button-container {
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: sticky;
		bottom: -13px;
		margin-top: 15px;
		background-color: white;
	}
}

.mn-venue-directory__filter-group {
	margin-bottom: 18px;
}

.mn-venue-filter-selected {
	border-bottom: 1px solid #e5e7eb;
	display: grid;
	gap: 8px;
	margin-bottom: 18px;
	padding-bottom: 14px;
}

.mn-venue-filter-selected > span {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.2;
}

.mn-venue-directory__filter-group h2 {
	margin: 0 0 6px;
	font-size: 1rem;
	line-height: 1.2;
}

.mn-venue-directory__filter-group summary {
	cursor: pointer;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 6px;
}

.mn-venue-directory__filter-option {
	display: flex;
	gap: 5px;
	align-items: flex-start;
	min-height: 19px;
	color: #1f1f1f;
	font-size: 1rem;
	line-height: 1.22;
}

.mn-venue-directory__filter-option input[type="checkbox"],
.mn-venue-directory__filter-option input[type="radio"] {
	appearance: none;
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin: 3px 0 0;
	border: 1px solid #cfc9c9;
	background: #ffffff;
}

.mn-venue-directory__filter-option input[type="checkbox"]:checked,
.mn-venue-directory__filter-option input[type="radio"]:checked {
	position: relative;
}

.mn-venue-directory__filter-option input[type="checkbox"]:checked:after,
.mn-venue-directory__filter-option input[type="radio"]:checked:after {
	position: absolute;
	top: 0;
	left: 0;
	color: #111111;
	content: "\2714";
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
}

.mn-venue-directory__filter-option input[type="checkbox"]:disabled,
.mn-venue-directory__filter-option input[type="radio"]:disabled {
	opacity: 1;
}

.mn-venue-directory__filter-option span {
	min-width: 0;
}

.mn-venue-directory--archive .mn-venue-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
}

.mn-venue-directory--archive .mn-venue-list__card {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #2a2a2a;
}

.mn-venue-directory--archive .mn-venue-list__brand-group {
	display: grid;
	gap: 10px;
}

.mn-venue-directory--archive .mn-venue-list__brand-row {
	appearance: none;
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: #2a2a2a;
	cursor: pointer;
	font: inherit;
	text-align: left;
}

.mn-venue-directory--archive .mn-venue-list__brand-row:focus-visible,
.mn-venue-directory--archive .mn-venue-list__card:focus-visible {
	position: relative;
	outline: none;

	&::before {
		content: "";
		position: absolute;
		top: -5px;
		left: -5px;
		right: -5px;
		bottom: -5px;
		border: 2px solid #111111;
	}
}

.mn-venue-directory--archive .mn-venue-list__brand-venues {
	display: grid;
	gap: 18px;
	margin-top: 2px;
	padding-left: 0;
	border-left: 0;
}

.mn-venue-directory--archive .mn-venue-list__card--child {
	opacity: 0.96;
}

.mn-venue-directory--archive .mn-venue-list__card:hover {
	transform: none;
	box-shadow: none;
}

.mn-venue-directory--archive .mn-venue-list__media {
	display: block;
	width: 56px;
	height: 56px;
}

.mn-venue-directory--archive .mn-venue-list__media img,
.mn-venue-directory--archive .mn-venue-list__placeholder {
	width: 56px;
	height: 56px;
	border-radius: 0;
	object-fit: cover;
}

.mn-venue-directory--archive .mn-venue-list__placeholder {
	font-size: 0.72rem;
}

.mn-venue-directory--archive .mn-venue-list__content {
	display: grid;
	gap: 2px;
	min-width: 0;
    grid-template-columns: 1fr auto;
}

.mn-venue-directory--archive .mn-venue-list__heading {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	align-items: center;
	min-width: 0;
}

.mn-venue-directory--archive .mn-venue-list__title {
	color: #2b2b2b;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.12;
}

.mn-venue-directory--archive .mn-venue-list__title-main {
	font-weight: 600;
}

.mn-venue-directory--archive .mn-venue-list__title-suffix {
	color: #686868;
	font-weight: 400;
}

.mn-venue-directory--archive .mn-venue-list__meta {
	color: #656565;
	font-size: 0.98rem;
	line-height: 1.12;
    grid-row: 2;
    grid-column: 1;
}

.mn-venue-directory--archive .mn-venue-list__summary {
	overflow: hidden;
	color: #2f2f2f;
	font-size: 0.98rem;
	font-style: italic;
	line-height: 1.18;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 5px;
}

.mn-venue-list__actions {
	display: grid;
	gap: 10px;
	justify-items: end;
	justify-self: end;
    grid-row: 1;
    grid-column: 2;
}

.mn-venue-list__status {
	display: inline-flex;
	gap: 5px;
	align-items: center;
	color: #1f7c39;
	font-size: 0.86rem;
	line-height: 1.2;
	white-space: nowrap;
}

.mn-venue-list__status--closed {
	color: #8c1f1f;
}

.mn-venue-list__status-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: currentColor;
}

.mn-venue-list__destination-link {
	max-width: 110px;
	font-weight: 400;
	font-size: 0.78rem;
	font-style: italic;
	line-height: 1.15;
	text-align: left;
}

.mn-venue-list__branch-prompt {
	color: #656565;
	font-size: 0.98rem;
	line-height: 1.12;
    grid-row: 3;
    grid-column: 1;
}

.login-separator {
	position: relative;
	margin: 20px 0 0;
	text-align: center;

	span {
		position: relative;
		z-index: 1;
		background-color: #f7f6f6;
		padding-inline: 5px;
	}

	&::before {
		content: "";
		position: absolute;
		z-index: 0;
		border-top: 1px solid #000;
		width: 100%;
		top: 50%;
		left: 0;
		right: 0;
		margin-top: -1px;
	}
}

.mn-card #xs-social-login-container {
	padding-bottom: 0;
}

@media (max-width: 760px) {
	.mn-venue-directory--archive {
		padding: 24px 16px 36px;
	}

	.mn-venue-directory--archive-header {
		flex-direction: column;

		.mn-venue-directory__header-actions {
			/* We need this to make sure the filter button is always on top on mobile */
			order: -1;
			gap: 0;
			margin-bottom: 10px;
		}

		.mn-venue-directory__header-filter-row {
			width: 100%;
			flex-direction: row-reverse;
		}

		.mn-venue-directory__clear-button {
			display: none;
		}
	}

	.mn-venue-directory--archive h1 {
		font-size: 1.2rem;
		font-weight: 600;
	}

	.mn-venue-directory--archive > p {
		margin-bottom: 28px;
		font-size: 0.9rem;
	}

	.mn-venue-directory__body {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.mn-venue-directory__filters {
		top: 0;
		transform: none;
		bottom: 0;
		margin: 0;
		max-height: 100vh;
		border-radius: 0;

		.button-container {
			position: fixed;
			bottom: 0;
			width: 100%;
			left: 0;

			button {
				width: calc(50% - 1px);
			}
		}
	}

	.mn-venue-directory--archive .mn-venue-list__card {
		grid-template-columns: 52px minmax(0, 1fr);
	}

	.mn-venue-directory--archive .mn-venue-list__brand-row {
		grid-template-columns: 52px minmax(0, 1fr);
	}

	.mn-venue-directory--archive .mn-venue-list__media,
	.mn-venue-directory--archive .mn-venue-list__media img,
	.mn-venue-directory--archive .mn-venue-list__placeholder {
		width: 52px;
		height: 52px;
	}

	.mn-venue-directory--archive .mn-venue-list__brand-venues {
		gap: 16px;
		margin-left: 0;
		padding-left: 0;
	}

	.mn-venue-list__actions {
        grid-column: 1;
        justify-self: end;
        justify-items: start;
        grid-row: 3;
	}

	.mn-venue-list__destination-link {
		max-width: none;
	}

	.mn-venue-list__brand-action {
		justify-self: start;
	}
}

.mn-latest-feed {
	padding: 18px;
	border-radius: 24px;
	background-size: cover, cover, 240px 240px;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.mn-latest-feed__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.mn-latest-card {
	min-width: 0;
}

.mn-latest-card__inner {
	height: 100%;
	padding: 16px 16px 18px;
	border: 1px solid rgba(103, 232, 249, 0.7);
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.68), rgba(15, 23, 42, 0.82));
	backdrop-filter: blur(4px);
	color: #ffffff;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.mn-latest-card__status,
.mn-latest-card__schedule {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
}

.mn-latest-card__status {
	margin-bottom: 16px;
	color: #bef264;
	justify-content: center;
	text-align: center;
}

.mn-latest-card__status-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: currentColor;
	box-shadow: 0 0 0 4px rgba(190, 242, 100, 0.12);
}

.mn-latest-card__schedule {
	margin-bottom: 16px;
	color: #f8fafc;
}

/* .mn-latest-card__schedule::before {
	content: "";
	width: 14px;
	height: 14px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19 4h-1V2h-2v2H8V2H6v2H5a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 15H5V9h14z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M19 4h-1V2h-2v2H8V2H6v2H5a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2m0 15H5V9h14z'/%3E%3C/svg%3E") center / contain no-repeat;
	opacity: 0.9;
} */
.mn-latest-card__title a {
    color: inherit !important;
    align-items: center;
    column-gap: 0.5em;
    display: inline-flex;
    font-size: 16px;
    text-shadow: rgba(0, 0, 0, 1) 1px 1px 2px;
    font-weight: 600;
}
.mn-latest-card__poster {
	display: block;
	margin-bottom: 16px;
	text-decoration: none;
}

.mn-latest-card__poster img,
.mn-latest-card__placeholder {
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 0;
}

.mn-latest-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.12);
	color: #e2e8f0;
	font-weight: 700;
}

.mn-latest-card__title {
	margin: 0;
	font-size: 1rem;
	line-height: 1.35;
	text-align: center;
}

.mn-latest-card__title a {
	color: inherit;
	text-decoration: none;
}

.mn-latest-card__title a:hover {
	text-decoration: underline;
}

.mn-latest-card__venue {
	margin-top: 10px;
	color: #cbd5e1;
	font-size: 0.95rem;
	font-weight: 600;
	text-align: center;
}

.mn-latest-card__summary {
	margin: 12px 0 0;
	color: #e2e8f0;
	line-height: 1.55;
	text-align: center;
}

.mn-manage-layout {
	display: grid;
	gap: 26px;
	background: #F2F2F2;
	box-shadow: 0px 0px 250px 0px #00000026;
	border-radius: 30px;
    padding-bottom: 10px;
	border: 2px solid #52DFF0
}
.mn-manage-layout-edit {
	gap: 0;
}
.mn-venue-preview {
	position: relative;
	padding: 18px 0;
	background: transparent;
	border-bottom: 0;
}
.mn-manage-layout > section:nth-child(1n+2),
section.mn-venue-preview.mn-venue-preview--staff {
    width: 95%;
    margin: 0 auto;
}

.mn-venue-preview--hero {
    text-align: center;
    padding-top: 8px;
    padding-bottom: 10px;
    /* border-bottom-left-radius: 30px;
    box-shadow: 0px 0px 4.3px 0px #00000026;
    border-bottom-right-radius: 30px; */
}
.mn-manage-layout-edit .mn-venue-preview--hero {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.mn-venue-preview__hero-top {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 120px) minmax(0, 487px) minmax(0, 135px);
    align-items: stretch;
    justify-content: space-between;
    min-height: 106px;
    padding: 18px 26px 0;
    gap: 10px;
}

.mn-venue-preview__logo img,
.mn-venue-preview__logo-placeholder {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 0;
    background: transparent;
    color: #fff;
    /* display: flex; */
    /* align-items: center; */
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 14px 26px rgba(17, 17, 17, 0.14);
}
div#mn-venue-preview__status_wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 135px;
    line-height: 10px;
    grid-row: 1 / span 2;
    grid-column: 3;
    justify-content: space-between;
}
.mn-venue-preview__status {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 3px;
    padding: 0px 0px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #343A53;
}
.mn-venue-preview__logo {
    width: 120px;
    height: 120px;
    grid-row: 1 / span 2;
    position: relative;
}
div#tags_types {
    grid-row: 3;
    grid-column: 1 / span 3;
    gap: 5px;
    margin: 26px auto 36px;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 723px;
    max-width: 99%;
}
.mn-venue-preview__status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mn-venue-preview__status-dot:before {
    content: "";
    background: #9b2020;
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 100%;
}
.mn-venue-preview__status--open .mn-venue-preview__status-dot:before {
	background: #1f7a33;
}

.mn-venue-preview__status--open {
	color: #343A53;
}

.mn-venue-preview__status--closed {
	color: #343A53;
}

.mn-venue-preview__eyebrow a {
    margin-bottom: 0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: none;
    color: #414141;
    display: block;
    line-height: 1;
}
.mn-venue-preview__eyebrow span:last-child {
    display: none;
}

.mn-venue-preview__title {
    margin: 0px 0 0px;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #23180f;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 26px;
    align-self: center;
    grid-row: 1 / span 2;
}
.mn-venue-preview__title h1 {
    font-size: 30px;
    margin: 0;
    line-height: 30px;
    margin-top: -3px;
    color: #23180f;
}
.mn-venue-preview__eyebrow {
    height: auto;
    display: flex;
    gap: 1px;
    font-size: 13px;
    line-height: 1;
    flex-wrap: nowrap;
    justify-content: flex-start;
	margin-bottom: 7px;
    overflow-x: scroll;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	position: relative;
	touch-action: pan-y;
	cursor: grab;
	user-select: none;
}

.mn-venue-preview__cuisines {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	gap: 6px;
    font-size: 13px;
    line-height: 1.2;
    text-transform: none;
    font-weight: 500;
	margin-bottom: 5px;
    overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	position: relative;
	touch-action: pan-y;
	cursor: grab;
	user-select: none;
}
.mn-venue-preview__eyebrow::-webkit-scrollbar,
.mn-venue-preview__cuisines::-webkit-scrollbar,
.mn-venue-preview__experiences::-webkit-scrollbar {
	display: none;
}
/* #tags_types:before {
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 20%;
    z-index: 99;
	pointer-events: none;
    background: #F2F2F2;
    background: linear-gradient(90deg, rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 0.9) 70%, rgba(0, 0, 0, 0) 100%);
}
#tags_types:after {
    content: "";
    position: absolute;
    right: 0;
    height: 100%;
    width: 20%;
    z-index: 99;
	pointer-events: none;
    background: #F2F2F2;
    background: linear-gradient(270deg, rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 0.9) 70%, rgba(0, 0, 0, 0) 100%);
    top: 0;
} */
.mn-venue-preview__experiences {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	gap: 6px;
    font-size: 13px;
    line-height: 1.2;
    text-transform: none;
    font-weight: 400;
    overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	position: relative;
	touch-action: pan-y;
	cursor: grab;
	user-select: none;
}
.mn-venue-preview__eyebrow.is-swiping,
.mn-venue-preview__cuisines.is-swiping,
.mn-venue-preview__experiences.is-swiping {
	cursor: grabbing;
}

.mn-venue-preview__cuisines a {
    color: #414141;
	text-decoration: none;
}
.mn-venue-preview__experiences a {
    color: #414141;
	text-decoration: none;
}

.mn-venue-preview__cuisines span,
.mn-venue-preview__experiences span {
	color: #414141;
}
.mn-venue-preview__eyebrow a,
.mn-venue-preview__eyebrow span,
.mn-venue-preview__cuisines a,
.mn-venue-preview__cuisines span,
.mn-venue-preview__experiences a,
.mn-venue-preview__experiences span {
	flex: 0 0 auto;
	white-space: nowrap;
	-webkit-user-drag: none;
}

.mn-venue-preview__description {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 0px 15px;
    color: #5e5e5e;
    font-size: 0.98rem;
	font-weight: 500;
    line-height: 1.7;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border: solid 1px #e1e1e1;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
    box-shadow: -8px 8px 10px 0px #dbdbdb5e, inset -17px 17px 19px 0px rgb(255 255 255);
    background: #f7f6f6;
}
.description_full {
	display: none;
}
.mn-venue-preview__description-body {
    overflow: hidden;
    height: 150px;
	transition: .1s;
    padding: 0px 15px;
}
.mn-venue-preview__description-body.toggled {
    height: auto;
}
.mn-venue-preview__description-body:after {
    position: absolute;
    content: "";
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(247 246 246) 100%);
}
.mn-venue-preview__description-body.toggled:after {
    height: 0;
}

.mn-venue-preview__description-body.is-clamped {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	line-clamp: 4;
}

.mn-venue-preview__description-body > :first-child {
	margin-top: 0;
}

.mn-venue-preview__description-body > :last-child {
	margin-bottom: 0;
}

.mn-venue-preview__description-toggle {
    border: 0;
    font: inherit;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff !important;
    cursor: pointer;
    display: inline-block;
    border: 1px solid;
    padding: 5px 15px;
    font-size: 12px;
    background: rgb(44, 49, 63);
    border-color: rgb(79, 223, 241);
    border-radius: 30px;
    transition: .2s;
}

.mn-venue-preview__description-toggle:hover,
.mn-venue-preview__description-toggle:focus-visible {
    background-color: rgb(29, 30, 32);
    border-color: rgb(0, 0, 0);
}
.mn-floating-edit-wrap {
    text-align: right;
}
.branding_actions {
    display: flex;
    justify-content: space-between;
    padding: 0px 0 0 20px;
    background: #d1d3e0;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    align-items: center;
}
.page_label {
    font-weight: 500;
    font-size: 15px;
}
.mn-floating-edit {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    top: 4px;
    right: 0;
    z-index: 2;
    border: 0;
    border-radius: 999px;
    color: #000 !important;
    padding: 9px 14px;
    font-weight: 400;
    font-size: 11px;
    cursor: pointer;
    box-shadow: none !important;
    background: none !important;
}
.mn-floating-edit__icon {
    display: inline-flex;
    width: 14px;
    height: 14px;
    line-height: 1;
}
.mn-floating-edit__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}
.mn-venue-preview--details {
    background: #f2f2f2;
    border-radius: 22px;
    padding: 18px 20px;
    border: solid 1px #e1e1e1;
    box-shadow: -8px 8px 10px 0px #dbdbdb5e, inset -17px 17px 19px 0px rgb(255 255 255);
}
.mn-venue-preview--details > div {
    display: grid;
    grid-template-columns: calc(65% - 30px) 35%;
    gap: 30px;
    align-items: stretch;
}
.mn-venue-preview--details > div.heading_wrap {
    display: flex;
    justify-content: space-between;
}
.mn-venue-preview--details > div.heading_wrap > div:last-child {
	display: flex;
	flex-direction: column;
	align-items: end;
}
.mn-venue-preview--details > div.heading_wrap > div:last-child span {
    font-size: 12px;
    font-weight: 500;
}

.mn-venue-preview--details .mn-smoking-policy {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.mn-venue-preview--details .mn-smoking-policy-icon {
	width: 18px;
	height: 18px;
	object-fit: contain;
}

.mn-venue-detail-card h4,
.mn-announcement-block h4 {
	margin: 0 0 12px;
	font-size: 1rem;
}
.mn-announcement-block__content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.mn-announcement-block h4 {
	font-size: 19px;
    margin: 0 0 23px;
}

.mn-venue-detail-card {
}

.mn-venue-detail-card--contact {
	display: grid;
	grid-template-columns: 100%;
	gap: 14px;
	align-items: start;
}

.mn-venue-detail-card__icon {
    display: block;
	width: 18px;
	height: 24px;
    margin: 0;
	background: #3c3228;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 4.83 6.14 12.27 6.4 12.58a.78.78 0 0 0 1.2 0C12.86 21.27 19 13.83 19 9a7 7 0 0 0-7-7m0 9.5A2.5 2.5 0 1 1 14.5 9 2.5 2.5 0 0 1 12 11.5'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 4.83 6.14 12.27 6.4 12.58a.78.78 0 0 0 1.2 0C12.86 21.27 19 13.83 19 9a7 7 0 0 0-7-7m0 9.5A2.5 2.5 0 1 1 14.5 9 2.5 2.5 0 0 1 12 11.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.mn-venue-detail-card__headline {
	margin-bottom: 8px;
	font-size: 0.94rem;
	font-weight: 700;
	color: #2f261f;
}

.mn-venue-detail-card p {
	margin: 0;
	color: #4f4336;
    font-size: 0.9rem;
    align-items: start;
	line-height: 1.55;
    display: flex;
}

.mn-venue-detail-card__phone {
	margin-top: 10px !important;
	font-weight: 400;
	text-align: center;
	color: #271d15;
}

.mn-venue-detail-card__map {
	margin-top: 16px;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 24px rgba(43, 48, 59, 0.12);
}

.mn-venue-detail-card__map iframe {
    display: block;
    width: 100%;
    height: 150px;
    border: 0;
}

.mn-coordinates-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.mn-hours-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 4px;
}

.mn-hours-list li {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	font-size: 0.9rem;
	padding: 2px 0;
	color: #4b3e33;
}
.mn-hours-list span {
    font-weight: 400;
}
.mn-venue-detail-card__body span {
    font-weight: 400;
}

@media screen and (max-width: 850px) {
	.mn-venue-detail-card p {
        width: 95%;
        margin: 0 auto;
        align-items: start;
	}
	.mn-venue-directory--archive .mn-venue-list__content {
	    grid-template-columns: 1fr;
	}
	.mn-venue-list__branch-prompt,
	.mn-venue-directory--archive .mn-venue-list__meta {
		grid-row: unset;
		grid-column: unset;
	}
	.mn-venue-detail-card p span.mn-venue-detail-card__icon,
	.mn-venue-detail-card__phone span#phone_icon {
		width: 15px;
        height: 15px;
	}
	.mn-venue-detail-card p span:last-child,
	.mn-venue-detail-card__phone span:last-child {
		width: calc(100% - 15px);
		line-height: 1;
		font-size: 14px;
	}
	.mn-venue-detail-card--hours {
		padding: 0 15px;
	}
	span#phone_icon img {
	    height: 15px;
	}
}
/* address block mobile end */
.mn-announcement-block {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(220px, 320px);
	gap: 26px;
	align-items: start;
	padding: 22px 0 8px;
}

.mn-announcement-block__meta {
	margin: 0 0 0px;
	color: #6b5848;
	font-weight: 600;
	font-size: 0.9rem;
    display: flex;
    flex-direction: column;
}

.mn-announcement-block__body {
	color: #31271f;
	line-height: 1.52;
	font-size: 0.96rem;
}

.mn-announcement-block__body p {
    margin: 0 0 10px;
    color: #404040;
    font-size: 0.98rem;
    line-height: 1.7;
}

.mn-announcement-block__media img,
.mn-announcement-block__placeholder {
	width: 100%;
	border-radius: 0;
	min-height: 320px;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	box-shadow: 0 18px 28px rgba(43, 48, 59, 0.16);
}

.mn-announcement-block__placeholder {
	background: #ece2d5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #5e4b3a;
	font-weight: 700;
}

.mn-modal[hidden] {
	display: none;
}

.mn-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: 24px;
}

.mn-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.55);
}

.mn-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(760px, 100%);
	max-height: calc(100vh - 48px);
	overflow: auto;
	background: #F2F2F2;
	border-radius: 24px;
	padding: 24px;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
    overflow-x: hidden;
}

.mn-modal__close {
    position: absolute;
    z-index: 999;
    top: 0px;
    right: 0px;
    border: 0;
    background: #2c3453;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 24px;
}
@media screen and (max-width: 551px) {
	.mn-modal {
		padding: 24px 5px;
		 * {
			font-size: 15px;
		}
		h1 {

		}
		h2 {

		}
		h3 {
			font-size: 17px;
			margin-top: 25px;
			text-align: center;
			font-weight: 500;
		}
		h4 {

		}
		h5 {

		}
		h6 {

		}
		p.description {
			font-size: 13px;
			line-height: 1;
			margin: 0;
			color: #64748b;
		}
		.mn-modal__dialog {
			padding: 15px 5px;
		}
		.mn-modal__close {
			font-size: 30px;
			border-radius: 20px;
			top: 1px;
			right: 1px;
		}
		.mn-hours__row {
			grid-template-columns: repeat(2, calc(50% - 5px));
		}
		.mn-type-picker__button, .mn-type-picker__selected-button {
			padding: 2px 3px;
		}
	}
	
}

.mn-logo-dropzone {
	align-items: center;
	background: #ffffff;
	border: 2px dashed #cbd5e1;
	border-radius: 8px;
	cursor: pointer;
	display: grid;
	gap: 14px;
	grid-template-columns: 112px 1fr;
	min-height: 136px;
	padding: 14px;
	transition: border-color 0.16s ease, background-color 0.16s ease;
}

.mn-logo-dropzone.is-dragging {
	background: #f8fafc;
	border-color: #2563eb;
}

.mn-logo-dropzone:focus-visible {
	border-color: #2563eb;
	outline: 3px solid rgba(37, 99, 235, 0.2);
	outline-offset: 2px;
}

.mn-logo-dropzone__input {
	height: 1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.mn-logo-dropzone__preview {
	align-items: center;
	aspect-ratio: 1;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	color: #64748b;
	display: flex;
	font-size: 13px;
	justify-content: center;
	overflow: hidden;
	text-align: center;
}

.mn-logo-dropzone__preview img {
	display: block;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.mn-logo-dropzone__copy {
	display: grid;
	gap: 4px;
}

.mn-logo-dropzone__copy strong {
	color: #151724;
	font-size: 15px;
	line-height: 1.3;
}

.mn-logo-dropzone__copy span {
	color: #64748b;
	font-size: 13px;
	line-height: 1.4;
}

.mn-gallery-dropzone {
	background: #ffffff;
	border: 2px dashed #cbd5e1;
	border-radius: 8px;
	cursor: pointer;
	display: grid;
	gap: 14px;
	padding: 14px;
	transition: border-color 0.16s ease, background-color 0.16s ease;
}

.mn-gallery-dropzone.is-dragging {
	background: #f8fafc;
	border-color: #2563eb;
}

.mn-gallery-dropzone:focus-visible {
	border-color: #2563eb;
	outline: 3px solid rgba(37, 99, 235, 0.2);
	outline-offset: 2px;
}

.mn-gallery-dropzone__input {
	height: 1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.mn-gallery-dropzone__preview {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	color: #64748b;
	min-height: 132px;
	padding: 10px;
}

.mn-gallery-dropzone__preview > span {
	align-items: center;
	display: flex;
	font-size: 13px;
	justify-content: center;
	min-height: 110px;
	text-align: center;
}

.mn-gallery-dropzone .mn-gallery-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mn-gallery-dropzone__copy {
	display: grid;
	gap: 4px;
}

.mn-gallery-dropzone__copy strong {
	color: #151724;
	font-size: 15px;
	line-height: 1.3;
}

.mn-gallery-dropzone__copy span,
.mn-gallery-dropzone__notice {
	color: #64748b;
	font-size: 13px;
	line-height: 1.4;
	margin: 0;
}

.mn-gallery-item--new {
	position: relative;
}

.mn-gallery-item.is-removed {
	display: none;
}

.mn-gallery-item__remove {
	align-items: center;
	background: #151724;
	border: 0;
	border-radius: 999px;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font-size: 18px;
	font-weight: 700;
	height: 28px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: absolute;
	right: 8px;
	top: 8px;
	width: 28px;
}

.mn-gallery-item__remove:hover,
.mn-gallery-item__remove:focus-visible {
	background: #dc2626;
	outline: 2px solid rgba(220, 38, 38, 0.24);
	outline-offset: 2px;
}

.mn-gallery-item__status {
	background: #151724;
	border-radius: 999px;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	padding: 5px 7px;
	position: absolute;
	left: 8px;
	top: 8px;
}

@media (max-width: 850px) {
	.mn-gallery-dropzone .mn-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	div#gallery-modal h3 {
		margin: 12px 0 0;
        font-size: 20px;
		font-weight: 500;
	}
	div#gallery-modal .mn-modal__dialog > span {
		font-size: 12px;
		line-height: 1;
		display: block;
		margin: 5px 0 10px;
	}
}

.mn-notice {
	padding: 14px 16px;
	border-radius: 14px;
	border: 1px solid transparent;
}

.mn-notice--success {
	background: #ecfdf5;
	border-color: #86efac;
	color: #166534;
}

.mn-notice--warning {
	background: #fffbeb;
	border-color: #fcd34d;
	color: #92400e;
}

.mn-notice--error {
	background: #fef2f2;
	border-color: #fca5a5;
	color: #991b1b;
}

.mn-venue-preview--menu {
	position: relative;
}

.mn-venue-preview--menu h3 {
	margin: 0 0 14px;
}
.mn-slider__slide.mn-slider__slide--empty {
    font-size: 14px;
    line-height: 1;
}
.mn-menu-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 14px;
}

.mn-menu-item {
	background: #fff;
	border: 1px solid rgba(21, 23, 36, 0.12);
	border-radius: 8px;
	cursor: zoom-in;
	overflow: hidden;
}

.mn-menu-item:focus-visible {
	outline: 3px solid rgba(15, 23, 42, 0.28);
	outline-offset: 3px;
}

.mn-menu-item img {
	display: block;
	width: 100%;
	height: auto;
}

.mn-menu-item__file {
	align-items: center;
	color: #151724;
	display: flex;
	font-weight: 600;
	justify-content: center;
	min-height: 120px;
	padding: 16px;
	text-align: center;
	text-decoration: none;
}
span.status_span {
    align-items: center;
    color: #c9fa00;
    column-gap: 0.5em;
    display: inline-flex;
    font-size: 13px;
    text-align: left;
    font-weight: 400;
}
span.status_span.now {
    color: #2dfa00;
}
.mn-latest-card__schedule {
    align-items: center;
    color: var(--base-3);
    column-gap: 0.5em;
    display: inline-flex;
    font-size: 13px;
    text-align: left;
    font-weight: 600;
}
@media (max-width: 850px) {
	div#content {
		margin-top: 30px;
	}
	div#primary {
        padding-left: 0 !important;
        width: 100%;
    	margin: 10px auto 0px !important;
        padding-right: 0 !important;
        padding-top: 15px !important;
	}
	.mn-card {
		padding: 18px;
	}

	.mn-manage-layout {
		padding: 0;
		border-radius: 24px;
        overflow: hidden;
	}
	.branding_actions {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
	}
	.mn-venue-preview {
		padding: 14px 0;
	}

	.mn-venue-preview__hero-top {
		padding: 0 16px;
	}
	.mn-gallery-slick__arrow {
		display: none !important;
	}
	.mn-venue-preview__logo,
	.mn-venue-preview__logo img, .mn-venue-preview__logo-placeholder {
		/* width: 80px;
		height: 80px; */
	}

	.mn-venue-preview__title {
        max-width: 100%;
        width: 100%;
        text-align: left;
        justify-content: center;
	}
	.mn-venue-preview__title h1 {
        font-size: 24px;
        font-weight: 500;
        line-height: 1;
        text-align: center;
	}
	.mn-venue-preview__description {
	    font-size: 14px;
	}
	.mn-venue-preview__eyebrow,
	.mn-venue-preview__cuisines,
	.mn-venue-preview__experiences {
		cursor: default;
		touch-action: auto;
		user-select: auto;
	}
	.mn-venue-preview--details > div,
	.mn-announcement-block{
		grid-template-columns: 1fr;
	}

	.mn-venue-preview--details > div{
		gap: 12px;
	}

	.mn-venue-detail-card--contact {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.mn-coordinates-grid {
		grid-template-columns: 1fr;
	}

	.mn-venue-detail-card__icon {
		margin: 0 auto 4px;
	}

	.mn-latest-feed {
		padding: 14px;
	}

	.mn-latest-feed__grid {
		grid-template-columns: 1fr;
	}

	.mn-floating-edit {
		top: -4px;
		right: 0;
		justify-content: center;
	}
	.mn-venue-preview--details h2 {
		padding: 0px 10px 10px;
		text-align: center;
		font-size: 17px;
	}
	h3.mn-announcement-block__header {
		font-size: 17px;
		text-align: center;
        grid-column: 1;
	}
	.mn-announcement-block h4 {
		font-size: 15px;
        margin-bottom: 10px;
	}
	.mn-announcement-block__content {
		text-align: left;
	}
	.mn-announcement-block__body p {
		font-size: 14px;
	}
	.mn-announcement-block__meta {
		font-size: 12px;
	}
	.mn-venue-preview--contact-form h5 {
		margin-bottom: 7px;
		font-size: 15px;
		text-align: center;
	}
	.mn-venue-preview--contact-form input, .mn-venue-preview--contact-form input::placeholder {
		font-size: 12px;
	}
	
}
@media screen and (max-width: 768px) {
	.mn-venue-preview__hero-top {
        gap: 5px;
    }
	.mn-venue-preview__hero-top {
    	grid-template-columns: minmax(0, 80px) minmax(0, 527px) minmax(0, 135px);
	}
	.mn-venue-preview__logo,
	.mn-venue-preview__logo img, .mn-venue-preview__logo-placeholder {
		width: 80px;
		height: 80px;
		grid-row: 2;
		grid-column: 1;
	}
	/* div#tags_types {
		grid-row: 3;
		grid-column: 1 / span 3;
        margin: 30px 0;
        gap: 5px;
	} */
	#tags_types:before {
		display:none;
	}
	#tags_types:after {
		display:none;
	}
	.mn-venue-preview__description {
    	margin-top: 0;
	}
	div#mn-venue-preview__status_wrap {
		margin-top: 10px;
	}
}
@media screen and (max-width: 551px) {
	.branding_actions {
		display: grid;
		grid-template-columns: 50% 50%;

		.page_label {
			grid-row: 1;
			grid-column: 1 / span 2;
			text-align: center;
		}
	}
	.mn-venue-preview__logo {
		margin-top: 31px;
	}
	.mn-venue-preview__title {
		margin-top: 31px;
        grid-column: 2 / span 2;
		grid-row: 2;
	}
	div#mn-venue-preview__status_wrap {
        grid-column: 1 / span 3;
        grid-row: 1;
        width: calc(100%);
        align-items: stretch;
        justify-content: center;
        gap: 0;
        padding-top: 0;
        flex-wrap: wrap;
        margin: 0px 0px;
        column-gap: 30px;
	}
	.mn-venue-actions {
		flex: 1 1 100%;
		flex-direction: row;
		order: 3;
        gap: 10px !important;
	}
	.mn-venue-preview__status {
	    justify-content: start;
	}
	.mn-venue-action {
		justify-content: center;
		min-height: 32px;
	}
}

@media screen and (max-width: 500px) {
	.mn-venue-preview__title {
		grid-column: 2 / span 2;
	}
}
span#phone_icon {
    display: block;
    width: 14px;
    margin-left: 3px;
}
span#phone_icon img {
    display: block;
    width: 10px;
    height: 18px;
    margin: 0;
}
.mn-venue-preview--contact-form {
    background: linear-gradient(180deg, #151724 0%, #343A53 100%);
    border-radius: 20px;
    color: #52DFF0;
    padding: 15px;
    box-shadow: -8px 8px 10px 0px #9b9b9b5e, inset -10px 10px 19px 0px rgb(255 255 255 / 19%);
}
.mn-venue-preview--contact-form h2 {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
}
.mn-venue-preview--contact-form form {
    display: grid;
    grid-template-columns: repeat(3, calc(98% / 3));
    gap: calc(100% - 99%);
}
.mn-venue-preview--contact-form input[type="text"], .mn-venue-preview--contact-form input[type="email"], .mn-venue-preview--contact-form input[type="number"] {
    border: 2px solid #52DFF0;
    border-radius: 15px;
    padding: 5px 10px;
}
.mn-venue-preview--contact-form textarea {
    border: 2px solid #52DFF0;
    border-radius: 15px;
    padding: 5px 10px;
    margin-top: 15px;
    min-height: 87px;
    grid-column: 1 / span 3;
}
.mn-venue-preview--contact-form input::placeholder,
.mn-venue-preview--contact-form textarea::placeholder {
	color: #343A53;
	font-size: 14px;
}

@media screen and (max-width: 850px) {
	.mn-venue-preview--contact-form form {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.mn-venue-preview--contact-form form > * {
		width: 100%;
	}
	.mn-venue-preview--contact-form textarea {
		margin-top: 0;
	}
	div#form_footer {
		display: flex;
		flex-wrap: wrap;
		gap: 5px;
	}
	div#form_footer label {
        width: calc(100% - 40px);
	}
	#primary div#form_footer button.mn-button {
		width: 100%;
		padding: 13px 0;
		border-radius: 30px;
		margin-top: 15px;
	}
}

/* contact form end */
div#form_footer {
    grid-column: 1 / span 3;
    display: flex;
    align-items: center;
    gap: 15px;
	margin-top: 10px;
}
.mn-venue-preview--contact-form form #consent-container {
    background: #151826;
	width: 15px;
	height: 14px;
	border: 1px solid #52DFF0
}
div#form_footer label {
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #fff;
}
.mn-venue-preview--contact-form form input#consent {
    width: 10px;
    background: #151826;
    opacity: 0;
    position: absolute;
}
div#form_footer button.mn-button {
    border: 1px solid #52DFF0;
    background: #151826;
    border-radius: 30px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 10px 15px;
    width: 200px;
}
.mn-venue-preview--gallery {
	overflow: hidden;
}

.mn-venue-preview--gallery .gallery {
	margin: 0 0px;
}

.mn-venue-preview--gallery .slick-list {
	overflow: visible;
}

.mn-venue-preview--gallery .slick-slide {
	margin: 0 -5px;
}

.mn-venue-preview--gallery .slide {
	cursor: pointer;
	width: min(500px, calc(100vw - 48px));
    transform: scale(.8);
}
.mn-venue-preview--gallery .gallery.display-flex .slide {
    transform: scale(1);
    margin: 0px 5px;
}
.mn-venue-preview--gallery .gallery.single-slide .slide {
    transform: none;
    width: 100%;
    max-width: 770px;
    margin: 0 auto;
}
.mn-venue-preview--gallery .gallery.single-slide .slide figure.content {
    height: auto;
    max-height: 500px;
}
.mn-venue-preview--gallery .gallery.single-slide .slide figure.content img {
    max-height: 100%;
    height: 500px;
}
.mn-venue-preview--gallery .slide.slick-current.slick-active.slick-center {
    transform: scale(1);
}
.mn-venue-preview--gallery .content {
	background: #0f172a;
	border-radius: 8px;
	display: grid;
	height: 348px;
	margin: 0;
	overflow: hidden;
	place-items: center;
	position: relative;
	width: 100%;
    box-shadow: 0px 5px 10px -3px #333;
}

.mn-venue-preview--gallery .content::before {
	background-color: #000000;
	background-image: var(--mn-slide-bg);
	background-position: center;
	background-size: cover;
	content: "";
	filter: blur(12px);
	inset: -18px;
	position: absolute;
	transform: scale(1.06);
}

.mn-venue-preview--gallery .content::after {
	background: rgba(0, 0, 0, 0.48);
	content: "";
	inset: 0;
	position: absolute;
}

.mn-venue-preview--gallery .content img {
	display: block;
	height: 100%;
	max-width: 100%;
	object-fit: contain;
	position: relative;
	width: auto;
	z-index: 1;
    contain-intrinsic-size: none;
    max-height: 348px;
}

.mn-gallery-slick__arrow {
	align-items: center;
	background: #151724;
	border: 1px solid rgba(82, 223, 240, 0.6);
	border-radius: 999px;
	color: #ffffff;
	cursor: pointer;
	display: inline-flex;
	font-size: 34px;
	height: 42px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	z-index: 2;
}

.mn-gallery-slick__arrow:hover,
.mn-gallery-slick__arrow:focus-visible {
	background: #52dff0;
	color: #151724;
	outline: 0;
}

.mn-gallery-slick__arrow--prev {
	left: 14px;
}

.mn-gallery-slick__arrow--next {
	right: 14px;
}

@media (max-width: 850px) {
	.mn-venue-preview--gallery .slide,
	.mn-venue-preview--gallery .content {
		/* width: min(300px, calc(100vw - 48px)); */
        width: 65vw;
	}

	.mn-venue-preview--gallery .content {
		/* height: 175px; */
	}
}

@media (max-width: 450px) {
	.mn-venue-preview--gallery .slide,
	.mn-venue-preview--gallery .content {
		/* width: min(215px, calc(100vw - 32px)); */
        width: 80vw;
	}

	.mn-venue-preview--gallery .content {
		/* height: 200px; */
	}
}

.mn-destination-summary {
    display: grid;
    gap: 28px;
    padding-top: 0;
}
.mn-destination-summary__stats {
    align-items: center;
    background: #151724;
    border-radius: 21px;
    color: #ffffff;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 22px;
    min-height: 62px;
    padding: 14px 32px;
    box-shadow: -8px 8px 10px 0px #9b9b9b5e, inset -10px 10px 19px 0px rgb(255 255 255 / 19%);
}

.mn-destination-summary__stat {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    color: inherit;
    cursor: default;
    display: inline-flex;
    font: inherit;
    gap: 7px;
    min-width: 0;
    padding: 0;
    white-space: nowrap;
}

button.mn-destination-summary__stat {
    cursor: pointer;
}

button.mn-destination-summary__stat:hover,
button.mn-destination-summary__stat:focus-visible,
button.mn-destination-summary__stat.is-active {
    /* color: #52dff0; */
    outline: 0;
    background: none;
}

button.mn-destination-summary__stat.is-active {
    text-decoration: underline;
}

button.mn-destination-summary__stat[disabled] {
    cursor: default;
    /* opacity: 0.55; */
    text-decoration: none;
    color: #fff;
}

.mn-destination-summary__stat strong {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.mn-destination-summary__stat span {
    font-size: 15px;
    line-height: 1;
    color: #fff;
}

.mn-destination-summary__icon {
    display: inline-block;
    flex: 0 0 auto;
    color: #fff;
    /* height: 14px;
    width: 14px; */
}

.mn-destination-summary__stat--event .mn-destination-summary__icon {
}

.mn-destination-summary__stat--offer .mn-destination-summary__icon {
}

.mn-destination-summary__places {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mn-destination-summary__place {
    align-items: center;
    color: #000000;
    display: grid;
    gap: 12px;
    grid-template-columns: 57px minmax(0, 1fr);
    text-decoration: none;
    font-weight: 600;
}

.mn-destination-summary__empty {
    color: #404040;
    font-size: 14px;
    margin: -12px 0 0;
}

.mn-destination-summary__place[hidden],
.mn-destination-summary__empty[hidden] {
    display: none;
	opacity: 0;
}

.mn-venue-list__brand-venues {
	max-height: 2000px;
	overflow: hidden;
	transition: max-height 1s ease;
}

.mn-venue-list__brand-venues[hidden] {
	max-height: 0;
}

.mn-destination-summary__place:hover .mn-destination-summary__place-title,
.mn-destination-summary__place:focus-visible .mn-destination-summary__place-title {
    text-decoration: underline;
}

.mn-destination-summary__place-logo,
.mn-destination-summary__place-logo img {
    display: block;
    height: 57px;
    width: 57px;
}

.mn-destination-summary__place-logo {
    align-items: center;
    /* background: #151724; */
    color: #ffffff;
    display: flex;
    font-size: 10px;
    justify-content: center;
    overflow: hidden;
}

.mn-destination-summary__place-logo img {
    object-fit: cover;
}

.mn-destination-summary__place-title {
    font-size: 14px;
    line-height: 1.15;
}

.mn-destination-summary__all {
    appearance: none;
    background: transparent;
    border: 0;
    color: #000000;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    justify-self: end;
    margin-top: -14px;
    padding: 0;
    text-decoration: underline;
}
.mn-destination-summary__all:hover, .mn-destination-summary__all:focus {
    background: none;
    color: #000;
}

.mn-gallery-modal[hidden] {
    display: none;
}

.mn-gallery-modal {
    align-items: center;
    background: rgb(8 10 18 / 65%);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    padding: 48px 78px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
}

.mn-gallery-modal__image {
    display: block;
    max-height: unset;
    max-width: 800px;
    object-fit: contain;
    height: 100%;
}

.mn-gallery-modal__close,
.mn-gallery-modal__nav {
    align-items: center;
    appearance: none;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    font-weight: 700;
    justify-content: center;
    position: fixed;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    padding: 0;
    padding: 0px 0px 5px;
	color: #59e1e8;
	background-color: #343a53;
}
.mn-gallery-modal__nav {
    position: static;
}

.mn-gallery-modal__close:hover,
.mn-gallery-modal__nav:hover,
.mn-gallery-modal__close:focus-visible,
.mn-gallery-modal__nav:focus-visible {
    border-color: rgba(255, 255, 255, 0.42);
	color: #59e1e8;
    outline: 0;
}

.mn-gallery-modal__close {
    font-size: 34px;
    height: 44px;
    line-height: 1;
    right: 22px;
    top: 22px;
    width: 44px;
}

.mn-gallery-modal__nav {
    font-size: 54px;
    height: 58px;
    line-height: 1;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
}

.mn-gallery-modal__nav--prev {
    left: 22px;
}

.mn-gallery-modal__nav--next {
    right: 22px;
}

.mn-gallery-modal__nav[hidden] {
    display: none;
}

#push_notif_container,
.tooltip {
    appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #343A53;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    text-align: left;
    justify-content: space-between; 
    height: 20px;
}
#push_notif_container img,
.tooltip img {
    width: auto;
    height: 11px;
    object-fit: contain;
}
.tooltip.mn-venue-action--save.is-saved img {
    width: auto;
    height: 20px;
}
#push_notif_container[data-mn-push-state="subscribed"] img {
    width: auto;
    height: 20px;
}

#push_notif_container[disabled] {
    cursor: wait;
    opacity: 0.65;
}

.mn-venue-actions {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    align-items: center;The
}

/* .mn-venue-action {
    appearance: none;
    align-items: center;
    background: #ffffff;
    border: 1px solid #d8d2c7;
    border-radius: 6px;
    color: #343A53;
    cursor: pointer;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    gap: 7px;
    justify-content: flex-start;
    line-height: 1.2;
    min-height: 34px;
    padding: 7px 9px;
    text-align: left;
    width: 100%;
} */

/* .mn-venue-action:hover,
.mn-venue-action:focus-visible {
    border-color: #343A53;
} */

.mn-venue-action[disabled] {
    cursor: wait;
    opacity: 0.7;
}

/* .mn-venue-action.is-saved {
    background: #151727;
    border-color: #151727;
    color: #ffffff;
} */

/* .mn-venue-action__icon {
    display: inline-block;
    flex: 0 0 auto;
    height: 18px;
    object-fit: contain;
    width: 18px;
} */

/* positions */
.card.pos-0 { transform: translate(-50%, -50%) translateX(0) scale(1); z-index: 5; }

.card.pos-1 { transform: translate(-50%, -50%) translateX(-420px) scale(0.9); opacity: 0.7; }
.card.pos-2 { transform: translate(-50%, -50%) translateX(-840px) scale(0.8); opacity: 0.5; }

.card.pos-3 { transform: translate(-50%, -50%) translateX(420px) scale(0.9); opacity: 0.7; }
.card.pos-4 { transform: translate(-50%, -50%) translateX(840px) scale(0.8); opacity: 0.5; } 

/* Tooltip styling */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.tooltip:hover,
.tooltip:focus {
    background: none;
}

.tooltiptext {
    visibility: hidden;
    width: 130px;
    background-color: #151727;
    color: #ffffff;
    text-align: center;
    padding: 5px 5px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    top: calc(100% + 10px);
    box-shadow: 0px 5px 10px #5e51517a;
    font-size: 12px;
    line-height: 1.3;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
.mn-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, calc(25% - 11px));
    gap: 14px;
}

.mn-type-picker {
    display: grid;
    gap: 12px;
    min-width: 0;
    width: 100%;
}

.mn-type-picker__available,
.mn-type-picker__selected-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mn-type-picker__selected {
    border-top: 1px solid #e5e7eb;
    display: grid;
    gap: 8px;
    padding-top: 12px;
}

.mn-type-picker__button,
.mn-type-picker__selected-button {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: #1f2937;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.2;
    max-width: 100%;
    overflow-wrap: anywhere;
    padding: 4px 6px;
}

.mn-type-picker__button:hover,
.mn-type-picker__button:focus,
.mn-type-picker__selected-button:hover,
.mn-type-picker__selected-button:focus {
    border-color: #2563eb;
    outline: none;
}

.mn-type-picker__selected-button {
    background: #eff6ff;
    border-color: #93c5fd;
}

    .mn-type-picker__empty {
    color: #64748b;
    margin: 0;
}
form.mn-auth-form.mn-destination-request-form {
    grid-template-columns: 1fr 1fr;
}
label[for="mn-request-destination"] {
    grid-column: 1 / span 2;
}
form.mn-auth-form.mn-destination-request-form select, form.mn-auth-form.mn-destination-request-form button {
    font-size: 13px;
    padding: 5px 10px;
    line-height: 1;
}
.mn-venue-preview--staff input {
}
p.destination_label_link a {
    margin-bottom: 10px;
    font-weight: 500;
    color: #4f4336;
    text-decoration: none;
    font-size: 16px;
}
div#announcement_content_editor_wrap > div {
    width: 50%;
}
input#mn-announcement-image {
    width: 100%;
}
@media (max-width: 850px) {
    .mn-destination-summary {
        gap: 18px;
    }
	div#contact_form_wrap, #staff_wrap {
		flex-direction: column;
		gap: 5px;
	}
	div#announcement_content_editor_wrap {
        width: 100%;
	}
	div#announcement_content_editor_wrap > div {
        width: 100%;
	}
    .mn-destination-summary__stats {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px;
    }

    .mn-destination-summary__stat,
    .mn-destination-summary__stat strong,
    .mn-destination-summary__stat span {
        font-size: 13px;
    }

    .mn-destination-summary__places {
        gap: 14px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mn-destination-summary__place {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .mn-destination-summary__place-logo,
    .mn-destination-summary__place-logo img {
        height: 48px;
        width: 48px;
    }

    .mn-destination-summary__place-title,
    .mn-destination-summary__all {
        font-size: 12px;
    }

    .mn-destination-summary__all {
        justify-self: start;
        margin-top: -6px;
    }
}

@media (max-width: 640px) {
    .mn-gallery-modal {
        padding: 58px 16px 82px;
    }

    .mn-gallery-modal__image {
        max-height: calc(100vh - 140px);
        max-width: 100%;
    }

    .mn-gallery-modal__nav {
        bottom: 18px;
        top: 50%;
        transform: none;
		position: fixed;
    z-index: 9999;
    }

    .mn-gallery-modal__nav--prev {
        left: 0;
    }

    .mn-gallery-modal__nav--next {
        right: 0;
    }
	div#announcement_content_editor_wrap {
		flex-direction: column;
	}
	div#announcement-modal form.mn-auth-form .display-flex {
		flex-direction: column;
	}
	.mn-auth-form input[type="text"], .mn-auth-form input[type="email"], .mn-auth-form input[type="password"], .mn-auth-form select, .mn-auth-form textarea {
    	padding: 4px 8px;
        font-size: 14px;
	}
	button.mn-button {
		font-size: 14px;
	}
	div#staff_wrap button.mn-button {
		width: 100%;
	}
}
