.mobile_menu_trigger {
	display: block !important;
	padding-top: 5px;
}

.mod_mobile_menu {
	position: absolute;
	right: 0px;
	top: 25px;
}


.mobile_menu {
	width: 100% !important;
	max-width: 860px !important;
}

.mobile_menu .inner {
	height: 100vh;
	background: #cc0100;
	overflow-y: scroll;
	display: flex;
	padding-top: 3rem;
	justify-content: center;
	padding-bottom: 3rem;
	padding-left: 10%;
	flex-direction: column;
}

.mod_customnav li {
	color: #fff;
	font-size: 14px;
	margin-bottom: 4px;
	background: unset;
	border-bottom: unset;
	color: #fff;
	font-size: 25px;
	margin-bottom: 10px;
	background: unset;
	border-bottom: unset;
}

.mod_customnav li.menu-sep {
	margin-bottom: 1.5rem;
}

.mod_customnav li a {
	color: #fff;
}

.mobile_menu .linklist {
	position: relative;
	padding-top: 3rem;
	display: flex;
}

.mod_customnav .active,
.mod_customnav .trail {
	color: #000;
	font-weight: 600 !important;

}

li.menu-top-margin {
	margin-top: 1.5rem;
}


.mobile_menu .linklist>li {
	margin-right: 2rem;
}

.mobile_menu .linklist>li a {
	color: #ffffffbf !important
}

/* ---- Burger Menu Button ---- */

.burger-menu {
	display: none;
	position: fixed;
	top: 40px;
	right: 1rem;
	width: 36px;
	height: 28px;
	padding: 0;
	margin: 0;
	background: transparent;
	border: 0 !important;
	box-shadow: none !important;
	outline: none !important;
	cursor: pointer;
	z-index: 10001;
	-webkit-appearance: none;
}

.burger-menu:focus {
	outline: none;
}

.burger-menu__line {
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #F6E7BC;
	border-radius: 2px;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center center;
}

.burger-menu__line:nth-child(1) {
	top: 0;
}

.burger-menu__line:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.burger-menu__line:nth-child(3) {
	bottom: 0;
}

/* Burger -> X animation */
.burger-menu.is-active .burger-menu__line:nth-child(1) {
	top: 50% !important;
	transform: translateY(-50%) rotate(45deg) !important;
}

.burger-menu.is-active .burger-menu__line:nth-child(2) {
	opacity: 0 !important;
	transform: translateX(-20px) !important;
}

.burger-menu.is-active .burger-menu__line:nth-child(3) {
	bottom: auto !important;
	top: 50% !important;
	transform: translateY(-50%) rotate(-45deg) !important;
}

/* Sticky header: dark lines */
body.down .burger-menu .burger-menu__line {
	background-color: #333;
}

/* Open state: ensure visibility */
.burger-menu.is-active .burger-menu__line {
	background-color: #fff !important;
	filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}

/* Ensure the header container stays above the overlay when open */
body.mobile-menu-open #header_offset {
	z-index: 10005 !important;
}

/* ---- Fullscreen Overlay ---- */

.mobile-nav-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(60, 55, 48, 0.97);
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.mobile-nav-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.mobile-nav-overlay__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	padding: 100px 24px 60px;
	box-sizing: border-box;
}

/* --- Mobile Nav within overlay --- */

.mobile-nav {
	width: 100%;
	max-width: 400px;
}

.mobile-nav strong.active {
	color: #DDB96E;
}

.mobile-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-nav ul.level_1 {
	text-align: center;
}

.mobile-nav ul.level_1>li {
	float: none !important;
	margin: 0 0 0.25rem 0;
	padding: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul.level_1>li:last-child {
	border-bottom: none;
}

.mobile-nav ul.level_1>li>a,
.mobile-nav ul.level_1>li>span,
.mobile-nav ul.level_1>li>strong {
	display: block;
	color: #fff !important;
	font-size: 1.4rem;
	font-weight: 300;
	text-decoration: none;
	padding: 0.9rem 0;
	transition: color 0.3s ease;
	letter-spacing: 0.05em;
}

.hotel .mobile-nav ul.level_1>li>span,
.hotel .mobile-nav ul.level_1>li>strong,
.hotel .mobile-nav ul.level_1>li.trail>a {
	color: #DDB96E !important;
}

.mobile-nav ul.level_1>li>a:hover {
	color: #DDB96E !important;
}

/* Level 2 submenu */
.mobile-nav ul.level_2 {
	display: none;
	padding: 0 0 0.5rem;
}

.mobile-nav li.submenu-open>ul.level_2 {
	display: block;
}

.mobile-nav ul.level_2 li {
	margin: 0;
}

.mobile-nav ul.level_2 li a {
	display: block;
	color: rgba(255, 255, 255, 0.7) !important;
	font-size: 1rem;
	font-weight: 300;
	padding: 0.5rem 0;
	text-decoration: none;
	transition: color 0.3s ease;
}

.mobile-nav ul.level_2 li a:hover {
	color: #DDB96E !important;
}

/* Submenu indicator arrow */
.mobile-nav ul.level_1>li.submenu>a:after,
.mobile-nav ul.level_1>li.submenu>strong:after,
.mobile-nav ul.level_1>li.submenu>span:after {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-right: 2px solid rgba(255, 255, 255, 0.5);
	border-bottom: 2px solid rgba(255, 255, 255, 0.5);
	transform: rotate(45deg);
	margin-left: 10px;
	vertical-align: middle;
	transition: transform 0.3s ease;
	position: relative;
	top: -2px;
}

.mobile-nav ul.level_1>li.submenu.submenu-open>a:after,
.mobile-nav ul.level_1>li.submenu.submenu-open>strong:after,
.mobile-nav ul.level_1>li.submenu.submenu-open>span:after {
	transform: rotate(-135deg);
	top: 2px;
}



/* --------------------------------------------------------------------------------
 * Main Navigation
 * ----------------------------------------------------------------------------- */

/* --- Basic Styling
 * ---------------------------------------- */

#header_offset button.burger-menu {
	border: none !important;
}

#header_offset button.burger-menu:hover {
	background-color: transparent !important;
}

#header_offset button.burger-menu:hover .burger-menu__line {
	background-color: #fff;
}

.mod_navigation.main {}

.mod_navigation a {
	color: #426173;
}

.mod_navigation.main>a {
	display: none;
}

.mod_navigation.main li {
	position: relative;
}

/* first level ---------- */

.mod_navigation.main>ul.level_1 {
	padding-bottom: 10px;
	display: flex;
	align-items: baseline;
}

body.startpage .mod_navigation.main>ul.level_1 {
	width: 100%;
}

.mod_navigation.main>ul.level_1>li {
	float: left;
	height: 100%;
}

/* second level ---------- */

.mod_navigation.main li>ul.level_2 {
	display: none;
	position: absolute;
	top: 100%;
	text-transform: unset;
}

.mod_navigation.main li:hover ul.level_2 {
	display: block;
}

#header_offset #cl,
#header_offset #clbox {
	display: none;
}

#header_offset #clbox {
	position: absolute;
	right: 42px;
	top: 40px;
	width: 96px;
}

.lang-fa #header_offset #clbox {
	right: 75px;
}

#header_offset #clbox li {
	float: left;
	width: 32px;
	list-style: none;
}

/* --- Custom Styling
 * ---------------------------------------- */

.mod_navigation.main {
	overflow: visible;
	position: relative;
	/* float: left; */
	clear: both;
	font-size: 16px;
	/* right: 0px; */
	position: absolute;
	left: 0px;
	top: 50px;
}

body.startpage .mod_navigation.main {
	right: 0px;
}



.mod_navigation.main ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* first level ---------- */

.mod_navigation.main ul.level_1>li {
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	transition: all ease 0.5s;
	padding-right: 4px;
	margin: 14px;

}

/*
.mod_navigation.main ul.level_1 > li:before {
	position: absolute;
	content: url("/files/themes/ederberglandhalle/images/global/pfeil_m.png");
	top:18px;
	right:0px;
	width: auto;
	height: 17px;
}*/


.mod_navigation.main ul.level_1>li:after {
	/*position: absolute;
	content: " ";
	border-bottom: 6px solid transparent;
	bottom:0;
	width: 100%;
	height: 6px;*/
}

.mod_navigation.main ul.level_1>li:hover:after {}

.mod_navigation.main ul.level_1>li>a,
.mod_navigation.main ul.level_1>li>span,
.mod_navigation.main ul.level_1>li>strong {
	display: block;

	color: #fff;
	font-weight: 300;
}

.mod_navigation.main ul.level_1>li>span,
.mod_navigation.main ul.level_1>li>strong,
.mod_navigation.main ul.level_1>li.submenu.trail>li>.active,
.mod_navigation.main ul.level_1>li.trail>a {
	color: #FCBA9F !important;
	padding-bottom: 5px;
}

.hotel .mod_navigation.main ul.level_1>li>span,
.hotel .mod_navigation.main ul.level_1>li>strong,
.hotel .mod_navigation.main ul.level_1>li.submenu.trail>li>.active,
.hotel .mod_navigation.main ul.level_1>li.trail>a {
	color: #F6E7BC !important;
	padding-bottom: 5px;
}

.mod_navigation.main ul.level_1>li>strong {
	font-weight: 300;
}

.mod_navigation.main ul.level_1>li.last {
	margin-right: 0px;
}

/* --- Highlight / CTA-Button ---------------------------- */

body.startpage .mod_navigation.main ul.level_1>li.highlight {
	margin-left: auto;
}

.mod_navigation.main ul.level_1>li.highlight>a,
.mod_navigation.main ul.level_1>li.highlight>span,
.mod_navigation.main ul.level_1>li.highlight>strong {
	background-color: #C03533;
	color: #fff !important;
	padding: 10px 20px;
	border-radius: 4px;
}

.hotel .mod_navigation.main ul.level_1>li.highlight>a,
.hotel .mod_navigation.main ul.level_1>li.highlight>span,
.hotel .mod_navigation.main ul.level_1>li.highlight>strong {
	background-color: #f5c460;
	color: #000 !important;
}


/* second level ---------- */

.mod_navigation.main ul.level_2 {

	left: 0;
	right: auto;
	padding-top: 10px;
	padding-bottom: 10px;
	/*margin-left:26px;*/
	width: auto;

	min-width: 250px;

}

/*
.mod_navigation.main ul.level_1 > li.last ul.level_2 {
	right: 0;
	left: auto;
}*/

.mod_navigation.main ul.level_1>li ul.level_2>li {
	padding: 5px 30px 5px 20px;
	padding-left: 0;

}

/*
.mod_navigation.main ul.level_1 > li.last ul.level_2 > li {
	text-align: right;
	padding: 5px 20px 5px 30px;
}
*/


.mod_navigation.main ul.level_2>li {
	font-size: 16px;
}

.mod_navigation.main ul.level_2>li>a,
.mod_navigation.main ul.level_2>li>span,
.mod_navigation.main ul.level_2>li>strong {
	display: block;
	color: #fff;
	-webkit-transition: all ease 0.5s;
	-moz-transition: all ease 0.5s;
	transition: all ease 0.5s;
	text-transform: uppercase;
}

.mod_navigation.main ul.level_2>li>a,
.mod_navigation.main ul.level_2>li>span,
.mod_navigation.main ul.level_2>li>strong {
	font-size: 16px;
	font-size: 1rem;
	text-transform: unset;

}

.mod_navigation.main ul.level_2>li:hover>a,
.mod_navigation.main ul.level_2>li:hover>span,
.mod_navigation.main ul.level_2>li:hover>strong,
.mod_navigation.main ul.level_2>li>strong {
	color: #FCBA9F;
	font-size: 16px;
	font-size: 1rem;
	/*font-weight: 500;*/
}

.hotel .mod_navigation.main ul.level_2>li:hover>a,
.hotel .mod_navigation.main ul.level_2>li:hover>span,
.hotel .mod_navigation.main ul.level_2>li:hover>strong,
.hotel .mod_navigation.main ul.level_2>li>strong {
	color: #F6E7BC;
	font-size: 16px;
	font-size: 1rem;
	/*font-weight: 500;*/
}

.text-small {
	text-transform: none;
	letter-spacing: 0.75px;
	padding-left: 1px;
}


/* --------------------------------------------------------------------------------
 * Mobile Navigation
 * ----------------------------------------------------------------------------- */

/* --- Overlay
 * ---------------------------------------- */



.mod_navigation.mobile {
	overflow: visible;
	position: absolute;
	/* float: left; */
	clear: both;
	font-size: 22px;
	/* right: 0px; */
	position: absolute;
	right: 24px;
	top: 7px;
	font-family: "Miso", Arial;
	font-size: 20px;
	text-align: right;

}

.mod_navigation.mobile ul.level_1>li>a,
.mod_navigation.mobile ul.level_1>li>span,
.mod_navigation.mobile ul.level_1>li>strong {
	display: block;
	padding: 8px;
	color: #426173 !important;
	padding-left: 25px;
	padding-right: 15px;
	text-transform: uppercase;
	font-weight: 300;
	font-family: "Miso", Arial;
	font-size: 30px;

}

.mod_navigation.mobile ul.level_9 {
	background-color: rgba(128, 128, 128, 0.85);
	/*border-top: 2px solid #66c1bf;*/
	left: 0;
	right: auto;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-right: 24px;
	width: 300px;
}

.mod_navigation.mobile ul.level_2 {
	margin: 0px 15px 14px 15px;
}

.mod_navigation.mobile ul.level_2>li {
	display: inline-block;
	margin-left: 15px;
}

/*
position: absolute;
right: 16px;
background: blue;
height: 24px;
width: 24px;
top: 70px;*/

.c-hamburger {
	position: relative;
	top: 11px;
	left: 0px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 9999;
	background: #d50c2f;
	display: block;
}

.c-hamburger {
	background-color: transparent;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 48px;
	height: 48px;
	font-size: 0;
	text-indent: -9999px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border-radius: none;
	border: none;
	cursor: pointer;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
}

.c-hamburger:focus {
	outline: none;
}

.c-hamburger span {
	display: block;
	position: absolute;
	top: 22px;
	left: 24px;
	right: 8px;
	margin-right: -8px;
	height: 4px;
	background: #d50c2f;
}

.c-hamburger span::before,
.c-hamburger span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #d50c2f;
	content: "";
}

.c-hamburger span::before {
	left: -16px;
	right: 0;
	top: -10px;
	width: auto;
}

.c-hamburger span::after {
	bottom: -10px;
	left: -8px;
	right: 0;
	width: auto;
}

.c-hamburger--htx {
	background-color: transparent;
}

.c-hamburger--htx span {
	-webkit-transition: background 0s 0.3s;
	transition: background 0s 0.3s;
}

.c-hamburger--htx span::before,
.c-hamburger--htx span::after {
	-webkit-transition-duration: 0.3s, 0.3s;
	transition-duration: 0.3s, 0.3s;
	-webkit-transition-delay: 0.3s, 0s;
	transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span::before {
	-webkit-transition-property: top, -webkit-transform;
	transition-property: top, transform;
}

.c-hamburger--htx span::after {
	-webkit-transition-property: bottom, -webkit-transform;
	transition-property: bottom, transform;
}

/* active state, i.e. menu open */
.c-hamburger--htx.is-active1 {
	background-color: transparent;
}

.c-hamburger.is-active1 span {
	background: #fff;
	left: 8px;
	right: 8px;
	width: auto;
}

.c-hamburger--htx.is-active1 span {
	background: none;
}

.c-hamburger--htx.is-active1 span::before {
	top: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.c-hamburger--htx.is-active1 span::after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.c-hamburger.is-active1 span::before,
.c-hamburger.is-active1 span::after {
	background-color: #fff;
	left: auto;
	right: auto;
	width: 100%;
}

.c-hamburger--htx.is-active1 span::before,
.c-hamburger--htx.is-active1 span::after {
	-webkit-transition-delay: 0s, 0.3s;
	transition-delay: 0s, 0.3s;
}

.mm-listitem_selected {
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	padding-left: 20px;
	padding-right: 10px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-preferred-size: 10%;
	flex-basis: 10%;
	display: block;
	padding: calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2);
	padding-left: 20px;
}

.mm-listitem .forward.trail {
	padding: calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2);
	padding-left: 20px;
}

.mm-listitem_selected strong {
	font-weight: 600;
}

/* --------------------------------------------------------------------------------
 * Navigation-Path
 * ----------------------------------------------------------------------------- */

.mod_navigation.sidebar:after {

	content: "";
	position: absolute;
	display: block;
	height: 8px;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
}

.mod_navigation.sidebar:before {

	content: "";
	position: absolute;
	display: block;
	height: 8px;
	left: 0;
	right: 0;
	top: 0;
	background-size: cover;
	background-repeat: no-repeat;
}



.mod_navigation.sidebar {
	margin-top: 74px;
}

.mod_navigation.sidebar.skip {
	margin-top: 74px;
	padding: 25px 40px 25px 40px;
	background-color: #f4f6f7;
	margin-bottom: 70px;
	color: #22425b;
}

.mod_navigation.sidebar h4 {
	text-transform: unset;
	font-size: 18px;
	line-height: 24px;
	margin-top: 0px;
}

.mod_navigation.sidebar ul {
	margin-bottom: 0px;
}

.mod_navigation.sidebar li,
.mod_navigation.sidebar li a {
	text-transform: unset;
	font-size: 18px;
	line-height: 24px;
	padding-bottom: 6px;
	color: #22425b;
	font-weight: 400;

}

.mod_navigation.sidebar li,
.mod_navigation.sidebar li a:hover {
	color: #579cc3;
}

.mod_navigation.sidebar ul.level_1 li {
	background-repeat: no-repeat;
	background-position: left 8px;
	padding-left: 24px;
}

.mod_navigation.sidebar ul.level_2 {
	margin-left: 0px;
	margin-top: 6px;
	display: none;
}

.mod_navigation.sidebar ul.level_2 li {
	background-repeat: no-repeat;
	background-position: left 8px;
	padding-left: 24px;
}

.mod_navigation.sidebar ul.level_1>li.trail {
	font-weight: 600;
}

.mod_navigation.sidebar ul.level_2 li.active {
	color: #22425b;
}

.mod_navigation.sidebar li.active ul.level_2,
.mod_navigation.sidebar li.trail ul.level_2 {
	display: block;
}

/* --------------------------------------------------------------------------------
 * Navigation-Path
 * ----------------------------------------------------------------------------- */

.mod_breadcrumb {
	margin-top: 1.75rem;
	margin-bottom: 2.25rem;
}

.mod_breadcrumb,
.mod_breadcrumb a {

	color: #2A2476 !important;
	font-size: 12px;
	text-transform: uppercase;

}

.mod_breadcrumb li {
	float: left;
	margin-right: 12px;
}


.mod_breadcrumb li:not(.first):before {
	content: ">";
	display: inline-block;
	padding-right: 12px;
}


.mod_booknav {
	width: 100%;
	margin-top: 36px;
}

.mod_booknav ul {
	display: flex;
	justify-content: space-between;
}

.mod_booknav li.up {
	display: none;
}

.mod_booknav li.up {
	display: none;
}


.mod_booknav li.previous,
.mod_booknav li.next {
	height: 38px;
	border: solid #2A2476 2px;
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 10px;
	padding-bottom: 12px;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 1;

}

.mod_booknav li.previous.empty,
.mod_booknav li.next.empty {
	display: none;
}

.mod_booknav li.previous:before {
	content: "<";
	padding-right: 4px;
}

.mod_booknav li.next:after {
	content: ">";
	padding-left: 4px;
}

/* --------------------------------------------------------------------------------
 * Quicklinks
 * ----------------------------------------------------------------------------- */

.mod_customnav1 li {
	color: #fff;
	font-size: 14px;
	margin-bottom: 4px;

	background-image: url('/files/mhr20/theme/elements/pfeil-rechts-white.svg');
	background-repeat: no-repeat;
	background-position: right center;
	padding-left: 0px;
	padding-bottom: 1rem;
	padding-top: 1rem;
	border-bottom: 1px solid #fff;

}

.mod_customnav1 li.last {
	border-bottom: 0px;
}

.mod_customnav1 li a {
	color: #fff;
}

/* --- Large devices - Desktop // xxl
 * ---------------------------------------- */

@media only screen and (max-width: 1560px) {}


/* --- Large devices - Desktop // xl
 * ---------------------------------------- */

@media only screen and (max-width: 1380px) {

	.mod_navigation.main {
		top: 96px;
	}
}

/* --- Large devices - Desktop // lg
 * ---------------------------------------- */

@media only screen and (max-width: 1199px) {

	.mod_navigation.main {
		top: 76px;
	}


	#header_offset #top-navigation .lang-container li {
		margin-left: 10px;
	}



}

@media only screen and (max-width: 1080px) {

	.mod_navigation.main ul.level_1>li {
		margin-right: 0px;
	}




	.mod_navigation.sidebar h4,
	.mod_navigation.sidebar li,
	.mod_navigation.sidebar li a {
		font-size: 15px;
		line-height: 20px;
	}

}

/* --- Medium devices - Tablet // md
 * ---------------------------------------- */

@media only screen and (max-width: 991px) {

	.mod_navigation.main {
		display: none;
	}

	.burger-menu {
		display: block;
		top: 35px;
	}

}

/* --- Small devices - Phone // sm
 * ---------------------------------------- */

@media only screen and (max-width: 767px) {

	#header_offset #top-navigation li {
		margin-left: 14px;
	}


	#header_offset #top-navigation .lang-container {
		display: none;
	}

	.burger-menu {
		width: 30px;
		height: 24px;
		right: 2rem;
		top: 30px;
	}

	.mobile-nav ul.level_1>li>a,
	.mobile-nav ul.level_1>li>span,
	.mobile-nav ul.level_1>li>strong {
		font-size: 1.2rem;
		padding: 0.75rem 0;
	}

	.mobile-nav-overlay__inner {
		padding-top: 80px;
	}

	.mod_booknav ul {
		display: block;
	}

	.mod_booknav li.previous {
		margin-bottom: 1rem;
	}

	.mod_booknav li.next {}

}

/* --- Small devices - Phone // s
 * ---------------------------------------- */

@media only screen and (max-width: 639px) {}


/* --- Extra small devices - Phone // xs
 * ---------------------------------------- */

@media only screen and (max-width: 544px) {}