/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        -ms-user-select: none;
	    user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::-moz-selection {
	background: transparent;
}
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url(images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

.cc-window{opacity:1;transition:opacity 1s ease}.cc-window.cc-invisible{opacity:0}.cc-animate.cc-revoke{transition:transform 1s ease}.cc-animate.cc-revoke.cc-top{transform:translateY(-2em)}.cc-animate.cc-revoke.cc-bottom{transform:translateY(2em)}.cc-animate.cc-revoke.cc-active.cc-top{transform:translateY(0)}.cc-animate.cc-revoke.cc-active.cc-bottom{transform:translateY(0)}.cc-revoke:hover{transform:translateY(0)}.cc-grower{max-height:0;overflow:hidden;transition:max-height 1s}
.cc-revoke,.cc-window{position:fixed;overflow:hidden;box-sizing:border-box;font-family:Helvetica,Calibri,Arial,sans-serif;font-size:16px;line-height:1.5em;display:flex;flex-wrap:nowrap;z-index:9999}.cc-window.cc-static{position:static}.cc-window.cc-floating{padding:2em;max-width:24em;flex-direction:column}.cc-window.cc-banner{padding:1em 1.8em;width:100%;flex-direction:row}.cc-revoke{padding:.5em}.cc-revoke:hover{text-decoration:underline}.cc-header{font-size:18px;font-weight:700}.cc-btn,.cc-close,.cc-link,.cc-revoke{cursor:pointer}.cc-link{opacity:.8;display:inline-block;padding:.2em;text-decoration:underline}.cc-link:hover{opacity:1}.cc-link:active,.cc-link:visited{color:initial}.cc-btn{display:block;padding:.4em .8em;font-size:.9em;font-weight:700;border-width:2px;border-style:solid;text-align:center;white-space:nowrap}.cc-highlight .cc-btn:first-child{background-color:transparent;border-color:transparent}.cc-highlight .cc-btn:first-child:focus,.cc-highlight .cc-btn:first-child:hover{background-color:transparent;text-decoration:underline}.cc-close{display:block;position:absolute;top:.5em;right:.5em;font-size:1.6em;opacity:.9;line-height:.75}.cc-close:focus,.cc-close:hover{opacity:1}
.cc-revoke.cc-top{top:0;left:3em;border-bottom-left-radius:.5em;border-bottom-right-radius:.5em}.cc-revoke.cc-bottom{bottom:0;left:3em;border-top-left-radius:.5em;border-top-right-radius:.5em}.cc-revoke.cc-left{left:3em;right:unset}.cc-revoke.cc-right{right:3em;left:unset}.cc-top{top:1em}.cc-left{left:1em}.cc-right{right:1em}.cc-bottom{bottom:1em}.cc-floating>.cc-link{margin-bottom:1em}.cc-floating .cc-message{display:block;margin-bottom:1em}.cc-window.cc-floating .cc-compliance{flex:1 0 auto}.cc-window.cc-banner{align-items:center}.cc-banner.cc-top{left:0;right:0;top:0}.cc-banner.cc-bottom{left:0;right:0;bottom:0}.cc-banner .cc-message{display:block;flex:1 1 auto;max-width:100%;margin-right:1em}.cc-compliance{display:flex;align-items:center;align-content:space-between}.cc-floating .cc-compliance>.cc-btn{flex:1}.cc-btn+.cc-btn{margin-left:.5em}
@media print{.cc-revoke,.cc-window{display:none}}@media screen and (max-width:900px){.cc-btn{white-space:normal}}@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape){.cc-window.cc-top{top:0}.cc-window.cc-bottom{bottom:0}.cc-window.cc-banner,.cc-window.cc-floating,.cc-window.cc-left,.cc-window.cc-right{left:0;right:0}.cc-window.cc-banner{flex-direction:column}.cc-window.cc-banner .cc-compliance{flex:1 1 auto}.cc-window.cc-floating{max-width:none}.cc-window .cc-message{margin-bottom:1em}.cc-window.cc-banner{align-items:unset}.cc-window.cc-banner .cc-message{margin-right:0}}
.cc-floating.cc-theme-classic{padding:1.2em;border-radius:5px}.cc-floating.cc-type-info.cc-theme-classic .cc-compliance{text-align:center;display:inline;flex:none}.cc-theme-classic .cc-btn{border-radius:5px}.cc-theme-classic .cc-btn:last-child{min-width:140px}.cc-floating.cc-type-info.cc-theme-classic .cc-btn{display:inline-block}
.cc-theme-edgeless.cc-window{padding:0}.cc-floating.cc-theme-edgeless .cc-message{margin:2em;margin-bottom:1.5em}.cc-banner.cc-theme-edgeless .cc-btn{margin:0;padding:.8em 1.8em;height:100%}.cc-banner.cc-theme-edgeless .cc-message{margin-left:1em}.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn{margin-left:0}
/* Bootstrap */
.text-underline {
  text-decoration: underline !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

.container,
.container-fluid,
.container-xxxl,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1356px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
@media (min-width: 1920px) {
  .container-xxxl, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1640px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }

  .g-sm-0,
.gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0,
.gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1,
.gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-sm-1,
.gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-sm-2,
.gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-sm-2,
.gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-sm-3,
.gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3,
.gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4,
.gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4,
.gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5,
.gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }

  .g-md-0,
.gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0,
.gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1,
.gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-md-1,
.gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-md-2,
.gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-md-2,
.gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-md-3,
.gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3,
.gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4,
.gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4,
.gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5,
.gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }

  .g-lg-0,
.gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0,
.gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1,
.gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-lg-1,
.gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-lg-2,
.gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-lg-2,
.gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-lg-3,
.gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3,
.gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4,
.gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4,
.gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5,
.gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }

  .g-xl-0,
.gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0,
.gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1,
.gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xl-1,
.gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xl-2,
.gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xl-2,
.gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xl-3,
.gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3,
.gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4,
.gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4,
.gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5,
.gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1356px) {
  .col-xxl {
    flex: 1 0 0%;
  }

  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxl-0,
.gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0,
.gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1,
.gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xxl-1,
.gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxl-2,
.gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxl-2,
.gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxl-3,
.gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3,
.gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4,
.gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4,
.gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5,
.gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1920px) {
  .col-xxxl {
    flex: 1 0 0%;
  }

  .row-cols-xxxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxxl-0 {
    margin-left: 0;
  }

  .offset-xxxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxxl-3 {
    margin-left: 25%;
  }

  .offset-xxxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxxl-6 {
    margin-left: 50%;
  }

  .offset-xxxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxxl-9 {
    margin-left: 75%;
  }

  .offset-xxxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxxl-0,
.gx-xxxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxxl-0,
.gy-xxxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxxl-1,
.gx-xxxl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xxxl-1,
.gy-xxxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxxl-2,
.gx-xxxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxxl-2,
.gy-xxxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxxl-3,
.gx-xxxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxxl-3,
.gy-xxxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxxl-4,
.gx-xxxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxxl-4,
.gy-xxxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxxl-5,
.gx-xxxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxxl-5,
.gy-xxxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1356px) {
  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1920px) {
  .d-xxxl-inline {
    display: inline !important;
  }

  .d-xxxl-inline-block {
    display: inline-block !important;
  }

  .d-xxxl-block {
    display: block !important;
  }

  .d-xxxl-grid {
    display: grid !important;
  }

  .d-xxxl-table {
    display: table !important;
  }

  .d-xxxl-table-row {
    display: table-row !important;
  }

  .d-xxxl-table-cell {
    display: table-cell !important;
  }

  .d-xxxl-flex {
    display: flex !important;
  }

  .d-xxxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxxl-none {
    display: none !important;
  }

  .flex-xxxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxxl-row {
    flex-direction: row !important;
  }

  .flex-xxxl-column {
    flex-direction: column !important;
  }

  .flex-xxxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xxxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxxl-center {
    justify-content: center !important;
  }

  .justify-content-xxxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxxl-center {
    align-items: center !important;
  }

  .align-items-xxxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxxl-center {
    align-content: center !important;
  }

  .align-content-xxxl-between {
    align-content: space-between !important;
  }

  .align-content-xxxl-around {
    align-content: space-around !important;
  }

  .align-content-xxxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxxl-auto {
    align-self: auto !important;
  }

  .align-self-xxxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxxl-center {
    align-self: center !important;
  }

  .align-self-xxxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxxl-stretch {
    align-self: stretch !important;
  }

  .order-xxxl-first {
    order: -1 !important;
  }

  .order-xxxl-0 {
    order: 0 !important;
  }

  .order-xxxl-1 {
    order: 1 !important;
  }

  .order-xxxl-2 {
    order: 2 !important;
  }

  .order-xxxl-3 {
    order: 3 !important;
  }

  .order-xxxl-4 {
    order: 4 !important;
  }

  .order-xxxl-5 {
    order: 5 !important;
  }

  .order-xxxl-last {
    order: 6 !important;
  }

  .m-xxxl-0 {
    margin: 0 !important;
  }

  .m-xxxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxxl-3 {
    margin: 1rem !important;
  }

  .m-xxxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxxl-5 {
    margin: 3rem !important;
  }

  .m-xxxl-auto {
    margin: auto !important;
  }

  .mx-xxxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxxl-auto {
    margin-top: auto !important;
  }

  .me-xxxl-0 {
    margin-right: 0 !important;
  }

  .me-xxxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxxl-auto {
    margin-right: auto !important;
  }

  .mb-xxxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxxl-auto {
    margin-left: auto !important;
  }

  .p-xxxl-0 {
    padding: 0 !important;
  }

  .p-xxxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxxl-3 {
    padding: 1rem !important;
  }

  .p-xxxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxxl-5 {
    padding: 3rem !important;
  }

  .px-xxxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
/* Animate.css */
/* Leafmap */
/* Carousel */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* CookieConsent */
/* Swiper */
/* Import config file */
/* Import init file */
html, body {
  line-height: 1;
  margin: 0;
  padding: 0;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  font-size: 16px;
  font-family: "source-serif-pro", sans-serif;
  min-width: 320px;
  overflow-x: hidden;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  cursor: pointer;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (min-width: 992px) {
  a:hover {
    color: #000;
    text-decoration: none;
  }
}
a:focus {
  outline: none;
}

ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img, iframe, object {
  max-width: 100%;
}

.text-center {
  text-align: center;
}

/* Base - vars, fonts, etc. */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?3er1lc");
  src: url("../fonts/icomoon.eot?3er1lc#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?3er1lc") format("truetype"), url("../fonts/icomoon.woff?3er1lc") format("woff"), url("../fonts/icomoon.svg?3er1lc#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-left:before {
  content: "\e90f";
}

.icon-hamburger-sm:before {
  content: "\e910";
}

.icon-hamburger:before {
  content: "\e90e";
}

.icon-left:before {
  content: "\e900";
}

.icon-right:before {
  content: "\e901";
}

.icon-checkmark-circle:before {
  content: "\e902";
}

.icon-close:before {
  content: "\e903";
}

.icon-ic_error_outline_24px:before {
  content: "\e904";
}

.icon-up:before {
  content: "\e905";
}

.icon-down:before {
  content: "\e906";
}

.icon-mailbox:before {
  content: "\e907";
}

.icon-ic_place_24px:before {
  content: "\e908";
}

.icon-ic_radio_button_checked_24px:before {
  content: "\e909";
}

.icon-unchecked-circle:before {
  content: "\e90a";
}

.icon-ic_zoom_out_24px:before {
  content: "\e90b";
}

.icon-Path-1:before {
  content: "\e90c";
}

.icon-attachment:before {
  content: "\e90d";
}

p {
  line-height: 1.5;
  margin: 0;
}

/* Components */
.c-404 {
  position: relative;
  height: 100vh;
}
.c-404 h1 {
  position: relative;
}
.c-404 h1::after {
  background: theme-color("primary");
  border-radius: 2px;
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  width: 100px;
}
.c-404__text {
  flex: 0 0 100%;
  margin-top: auto;
  margin-bottom: auto;
}
@media (min-width: 992px) {
  .c-404__text {
    flex: 0 0 50%;
  }
}
.c-404__text__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 41.25rem;
}
.c-404__image {
  height: 100%;
  overflow: hidden;
  width: 50%;
}
.c-404__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.c-input {
  border: 1px solid #E9E6D3;
  font-family: "normalidad-compact", sans-serif;
  padding: 10px 15px;
  background: #fff;
  font-size: 16px;
  height: 40px;
}

.c-input--error {
  border-color: #B23B3A;
}

.c-select {
  border: 1px solid #E9E6D3;
  font-family: "normalidad-compact", sans-serif;
  padding: 6px 15px;
  background: #fff;
  font-size: 16px;
  height: 40px;
}

@media (min-width: 1200px) {
  .c-navigation__toggler {
    display: none;
  }
}
.c-navigation__toggler a {
  padding-top: 20px;
  display: block;
  color: inherit;
}

.c-navigation--active .c-navigation__overlay {
  display: block;
}
.c-navigation--active .c-navigation__sidebar {
  left: 0;
}

.c-navigation__overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1280;
}
@media (min-width: 1200px) {
  .c-navigation__overlay {
    display: none;
  }
}

.c-navigation__sidebar {
  transition: 0.3s left;
  top: 0;
  position: fixed;
  width: 280px;
  height: 100%;
  height: calc(var(--vh, 1vh) * 100);
  left: -280px;
  z-index: 1281;
  background: #fff;
}
@media (min-width: 1200px) {
  .c-navigation__sidebar {
    display: none;
  }
}
.c-navigation__sidebar ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.c-navigation__sidebar__content {
  padding: 0 30px;
}

.c-navigation__sidebar__header {
  position: relative;
}

.c-navigation__sidebar__header__toggler {
  position: absolute;
  top: 30px;
  left: 25px;
}

.c-navigation__sidebar__header__title {
  padding: 30px 0 40px 0;
}
.c-navigation__sidebar__header__title h1 {
  text-align: center;
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 20px;
  font-family: "normalidad-compact", sans-serif;
  color: #E9E6D3;
}

.c-navigation__sidebar__links ul {
  margin: 0;
  padding: 0;
}
.c-navigation__sidebar__links li {
  margin: 0;
  padding: 0;
}
.c-navigation__sidebar__links a {
  display: block;
  text-align: center;
  font-size: 20px;
  font-family: "normalidad-compact", sans-serif;
  padding: 12.5px 0;
}

.c-navigation__sidebar__links--auth {
  padding-top: 30px;
}

.c-navigation__sidebar__content_bottom {
  border-top: 1px solid #E9E6D3;
  margin-top: 50px;
  padding-top: 30px;
}
.c-navigation__sidebar__content_bottom h2 {
  text-align: center;
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 20px;
  font-family: "normalidad-compact", sans-serif;
  color: #E9E6D3;
}

.c-navigation__sidebar__button {
  padding-top: 15px;
  text-align: center;
}

.c-navigation__main {
  display: none;
}
@media (min-width: 1200px) {
  .c-navigation__main {
    display: block;
  }
}
.c-navigation__main ul {
  display: flex;
  margin-left: -20px;
}
.c-navigation__main li {
  flex-shrink: 0;
}
.c-navigation__main a {
  display: block;
  padding: 25px 20px 0 20px;
  color: inherit;
  font-family: "normalidad-compact", sans-serif;
  font-size: 20px;
}
.c-navigation__main a:hover {
  text-decoration: underline;
}

.c-header {
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
}
.c-header .c-btn--ghost-b-white {
  display: none;
}
.c-header .c-btn--ghost-b-black {
  display: inline-flex;
}

.c-header--home {
  min-height: 460px;
  background-image: url(/images/cover.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 0;
}
@media (min-width: 1356px) {
  .c-header--home {
    min-height: 630px;
  }
}
.c-header--home .c-header__content {
  display: flex;
}
.c-header--home .c-header__navigation {
  color: #fff;
}
.c-header--home .c-header__logo--black {
  display: none;
}
.c-header--home .c-header__logo--white {
  display: inline;
}
.c-header--home .c-btn--ghost-b-white {
  display: inline-flex;
}
.c-header--home .c-btn--ghost-b-black {
  display: none;
}

.c-header__logo--black {
  display: inline;
}

.c-header__logo--white {
  display: none;
}

.c-header__top {
  padding: 10px 0 0 0;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  width: 100%;
  flex-grow: 0;
  flex-shrink: 0;
}
@media (min-width: 1356px) {
  .c-header__top {
    width: 1320px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
@media (min-width: 1920px) {
  .c-header__top {
    width: 1640px;
  }
}

.c-header__content {
  display: none;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  padding: 50px 30px;
  text-align: center;
  color: #fff;
}
.c-header__content p {
  margin: 10px auto 0 auto;
  line-height: 1.5;
}

.c-header__logo {
  text-align: center;
}

.c-header__button {
  flex-grow: 0;
  width: 50px;
  padding-right: 30px;
}
@media (min-width: 1356px) {
  .c-header__button {
    width: 600px;
    padding-right: 0;
  }
}

.c-header__button__content {
  display: none;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
@media (min-width: 1200px) {
  .c-header__button__content {
    display: flex;
  }
}

.c-header__navigation {
  flex-grow: 0;
  width: 50px;
  padding-left: 30px;
  color: #000;
}
@media (min-width: 1356px) {
  .c-header__navigation {
    width: 600px;
    padding-left: 0;
  }
}

.c-footer {
  padding-top: 120px;
}

.c-footer__content {
  border-top: 1px solid #E9E6D3;
  padding: 60px 0;
  position: relative;
}
@media (min-width: 1200px) {
  .c-footer__content {
    display: flex;
  }
}

@media (max-width: 1199.98px) {
  .c-footer__logo {
    position: absolute;
    right: 0;
    top: 30px;
  }
}
@media (min-width: 1200px) {
  .c-footer__logo {
    flex-shrink: 0;
    width: 140px;
  }
}

.c-footer__links {
  padding-right: 30px;
}
.c-footer__links ul {
  margin: 0;
  padding: 0;
}
.c-footer__links li {
  margin: 0;
  padding: 0;
}
.c-footer__links a {
  display: block;
  padding: 8px 0;
}
@media (min-width: 1356px) {
  .c-footer__links {
    min-width: 220px;
    padding-right: 0;
  }
}
@media (min-width: 1920px) {
  .c-footer__links {
    min-width: 280px;
  }
}

.c-footer__button {
  padding-top: 30px;
}
@media (min-width: 1200px) {
  .c-footer__button {
    flex-grow: 1;
    padding-top: 0;
    text-align: right;
  }
}

.c-footer__partners {
  border-top: 1px solid #E9E6D3;
  display: flex;
  flex-direction: column;
  padding: 60px 0;
}
.c-footer__partners .col {
  display: flex;
  flex-direction: column;
}

.c-footer__partners-container {
  align-items: flex-end;
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
}
.c-footer__partners-container img {
  margin-bottom: 20px;
}
.c-footer__partners-container img:not(:last-child) {
  margin-right: 35px;
}

.c-footer__partners-title {
  display: block;
  font-family: "normalidad-compact", sans-serif;
  font-size: 20px;
  margin-bottom: 24px;
}

.c-title {
  font-family: "normalidad-compact", sans-serif;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.c-title--48 {
  font-size: 48px;
}

.c-title--32 {
  font-size: 32px;
}

.c-title--20 {
  font-size: 20px;
}

.c-title--80 {
  font-size: 48px;
}
@media (min-width: 992px) {
  .c-title--80 {
    font-size: 80px;
  }
}

.c-btn {
  font-family: "normalidad-compact", sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 16px 50px;
  min-width: 240px;
  display: inline-flex;
  transition: 0.3s all;
  justify-content: center;
  cursor: pointer;
  border: none;
  text-align: center;
}
.c-btn[disabled] {
  opacity: 0.5;
  cursor: default;
}
.c-btn--next {
  background-image: url("/images/next.svg");
  background-repeat: no-repeat;
  background-position: right 22px top 18px;
}

.c-btn--loading {
  opacity: 0.5;
  cursor: default;
}

.c-btn--facebook {
  position: relative;
  background: #3487F4;
  color: #fff;
}
.c-btn--facebook:hover {
  background: #0b60d0;
  color: #fff;
}
.c-btn--facebook img {
  position: absolute;
  left: 20px;
}

.c-btn--google {
  position: relative;
  background: #fff;
  border: 1px solid #E9E6D3;
  color: #000;
}
.c-btn--google img {
  position: absolute;
  left: 20px;
}

.c-btn--sm {
  padding: 11px 50px;
  min-width: 0;
}

.c-btn--xs {
  padding: 10px 20px;
  font-size: 14px;
  min-width: 0;
}

.c-btn--red {
  color: #fff;
  background-color: #F37170;
  border-bottom: 2px solid #D25251;
}
.c-btn--red:hover {
  color: #fff;
  background-color: #D25251;
  border-bottom: 2px solid #B23B3A;
}

.c-btn--ghost-red {
  color: #F37170;
  background: transparent;
  min-width: 0;
}
.c-btn--ghost-red:hover {
  color: #F37170;
  text-decoration: underline;
}

.c-btn--ghost-black {
  color: #000;
  background: transparent;
  min-width: 0;
}
.c-btn--ghost-black:hover {
  color: #000;
  text-decoration: underline;
}

.c-btn--ghost-b-gray {
  color: #F37170;
  border: 1px solid #E9E6D3;
  background: transparent;
}
.c-btn--ghost-b-gray:hover {
  color: #F37170;
  border: 1px solid #F37170;
}

.c-btn--ghost-b-gray-700 {
  color: #F37170;
  border: 1px solid #E9E6D3;
  background: transparent;
}
.c-btn--ghost-b-gray-700:hover {
  color: #D25251;
  border: 1px solid #D25251;
}

.c-btn--ghost-b-red {
  color: #F37170;
  border: 1px solid #F37170;
  background: transparent;
}
.c-btn--ghost-b-red:hover {
  color: #D25251;
  border: 1px solid #D25251;
}

.c-btn--ghost-b-black {
  color: #000 !important;
  border: 1px solid #000;
  background: transparent;
}
.c-btn--ghost-b-black:hover {
  color: #F37170 !important;
  border: 1px solid #F37170;
}

.c-btn--ghost-b-white {
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
}
.c-btn--ghost-b-white:hover {
  color: #F37170;
  border: 1px solid #F37170;
}

.c-btn--no-border {
  border: none;
}
.c-btn--no-border:hover {
  border: none;
}

.c-home-postcard {
  background: #fff;
  padding-bottom: 40px;
}
@media (min-width: 992px) {
  .c-home-postcard {
    padding-top: 40px;
  }
}
@media (min-width: 1200px) {
  .c-home-postcard {
    min-height: 410px;
  }
}

@media (min-width: 1200px) {
  .c-home-postcard img {
    position: absolute;
    right: 20px;
    top: -30px;
  }
}

.c-card {
  border: 1px solid #E9E6D3;
}
.c-card:hover .c-card__header::before {
  opacity: 1;
}
.c-card:hover .c-card__body h1 {
  color: #F37170;
}

.c-card--venue {
  flex-grow: 0;
  width: 100%;
  max-width: 520px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .c-card--venue {
    margin: 0 5px;
  }
}
@media (min-width: 1200px) {
  .c-card--venue {
    margin: 0 20px;
  }
}

.c-card__header {
  position: relative;
}
.c-card__header::before {
  opacity: 0;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(243, 113, 112, 0.3);
  transition: 0.3s ease all;
}

.c-card__header__image {
  height: 175px;
  background-size: cover;
  background-position: center center;
}
@media (min-width: 768px) {
  .c-card__header__image {
    height: 290px;
  }
}

.c-card__body {
  padding: 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.c-card__body h1 {
  margin: 0;
  font-family: "normalidad-compact", sans-serif;
  font-size: 20px;
  transition: 0.3s ease all;
}
.c-card__body h2 {
  margin: 16px 0 0 0;
  font-size: 12px;
  color: #F37170;
}
.c-card__body p {
  margin: 20px 0 0 0;
  flex: 1;
}
.c-card__body a {
  margin-top: 15px;
}

.c-region-selector h3 {
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}
.c-region-selector li {
  padding: 8px 0;
  border-bottom: 1px solid #E9E6D3;
}
.c-region-selector ul {
  margin-top: 15px;
}

.c-region-selector__more {
  display: block;
  margin-top: 15px;
  font-size: 12px;
  font-weight: 700;
  color: #F37170;
}

.c-tab-selector {
  position: relative;
  z-index: 1000;
  width: 100%;
  margin: 0 auto;
  max-width: 550px;
}
.c-tab-selector ul {
  margin: 0;
  padding: 6px 3px;
  display: flex;
  border: 1px solid #E9E6D3;
  background: #fff;
}
.c-tab-selector li {
  padding: 0;
  margin: 0 3px;
  width: 50%;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: 0.3s ease all;
}
.c-tab-selector li:hover, .c-tab-selector li.selected {
  background: #F37170;
  border-bottom: 2px solid #D25251;
  color: #fff;
}

.c-editor-overview {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.c-editor-overview__body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.c-editor-overview__front,
.c-editor-overview__inside,
.c-editor-overview__back {
  width: 100%;
  max-width: 800px;
}
@media (min-width: 992px) {
  .c-editor-overview__front,
.c-editor-overview__inside,
.c-editor-overview__back {
    width: 800px;
    max-width: none;
  }
}
@media (min-width: 1200px) {
  .c-editor-overview__front,
.c-editor-overview__inside,
.c-editor-overview__back {
    width: 700px;
  }
}
@media (min-width: 1920px) {
  .c-editor-overview__front,
.c-editor-overview__inside,
.c-editor-overview__back {
    width: 800px;
  }
}

.c-editor-overview__inside__bottom {
  margin-top: 2px;
}

.c-editor-overview__footer {
  padding-top: 15px;
}

.c-login-form {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 10px;
}

.c-login-form__social .c-btn {
  width: 100%;
}

.c-login-form__email {
  flex-grow: 1;
}
.c-login-form__email h3 {
  margin: 30px 0 0 0;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.c-login-form__email .c-form-group {
  padding-top: 30px;
}

.c-login-form__buttons {
  text-align: right;
  padding-top: 30px;
}
@media (min-width: 768px) {
  .c-login-form__buttons {
    display: flex;
    justify-content: space-between;
    padding-top: 0;
  }
}

.c-login-form__message {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.c-login-form__message__header {
  flex-grow: 1;
}
.c-login-form__message__header p {
  margin-top: 5px;
}

.c-login-form__message__buttons button {
  width: 100%;
  margin-top: 20px;
}
.c-login-form__message__buttons div {
  position: relative;
  text-align: center;
  height: 32px;
  margin-top: 20px;
}
.c-login-form__message__buttons div::before {
  position: absolute;
  left: 0;
  top: 50%;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #E9E6D3;
}
.c-login-form__message__buttons div::after {
  position: absolute;
  content: "";
  display: block;
  height: 100%;
  width: 100px;
  left: 50%;
  top: 0;
  margin-left: -50px;
  background: #FEFAE6;
}
.c-login-form__message__buttons div span {
  position: relative;
  z-index: 1;
  line-height: 32px;
  display: block;
}

.c-region {
  margin-top: 15px;
  border: 1px solid #E9E6D3;
}
.c-region:hover .c-region__image::before {
  opacity: 1;
}
.c-region:hover .c-region__body h1 {
  color: #F37170;
}
@media (min-width: 768px) {
  .c-region {
    display: flex;
  }
}

.c-region--popup {
  margin-top: 8px;
}
.c-region--popup .c-region__image {
  width: 100px;
  height: 70px;
}
@media (min-width: 768px) {
  .c-region--popup .c-region__image {
    width: 100px;
  }
}
.c-region--popup .c-region__body {
  padding: 10px 15px 0 15px;
}
@media (min-width: 768px) {
  .c-region--popup .c-region__body {
    padding: 10px 15px 0 15px;
  }
}
.c-region--popup .c-region__body h1 {
  font-size: 16px;
}
.c-region--popup .c-region__body h2 {
  margin-top: 5px;
}

.c-region__image {
  flex-shrink: 0;
  position: relative;
  height: 175px;
  background-size: cover;
  background-position: center center;
}
@media (min-width: 768px) {
  .c-region__image {
    width: 240px;
  }
}
.c-region__image::before {
  opacity: 0;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(243, 113, 112, 0.3);
  transition: 0.3s ease all;
}

.c-region__body {
  background: #fff;
  padding: 20px 15px 0 15px;
  flex-grow: 1;
}
@media (min-width: 768px) {
  .c-region__body {
    padding: 20px 15px 20px 15px;
  }
}
.c-region__body h1 {
  margin: 0;
  font-family: "normalidad-compact", sans-serif;
  font-size: 20px;
  transition: 0.3s ease all;
}
.c-region__body h2 {
  margin: 16px 0 0 0;
  font-size: 12px;
  color: #F37170;
}
.c-region__body p {
  margin: 20px 0 0 0;
}
.c-region__body a {
  margin-top: 15px;
}

.c-region__button {
  background: #fff;
  padding: 15px 15px 20px 15px;
}
@media (min-width: 768px) {
  .c-region__button {
    display: flex;
    align-items: center;
    padding: 0 40px 0 20px;
  }
}

@media (min-width: 768px) {
  .c-regions__header {
    display: flex;
    align-items: flex-end;
  }
}

.c-regions__footer {
  display: flex;
  justify-content: flex-end;
  padding: 15px 0 30px;
}

@media (min-width: 768px) {
  .c-regions__header__form {
    padding-top: 15px;
    flex-grow: 1;
  }
}
.c-regions__header__form input {
  margin-top: 15px;
  width: 100%;
  max-width: 240px;
}
.c-regions__header__form select {
  margin-top: 15px;
  width: 100%;
  max-width: 240px;
}
@media (min-width: 768px) {
  .c-regions__header__form select {
    margin-right: 40px;
  }
}

.c-regions__header__pager {
  display: flex;
  align-items: center;
  padding-top: 15px;
  flex-shrink: 0;
}

.c-map {
  background: #E8E8E8;
  height: 450px;
  margin-top: -20px;
}

@media (min-width: 992px) {
  .c-map {
    height: 900px;
  }
}
.c-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
@media (min-width: 768px) {
  .c-pager {
    margin-left: 40px;
  }
}
.c-pager span {
  display: flex;
  flex-shrink: 0;
}
.c-pager a {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  color: #2F404B;
  border: 1px solid #E9E6D3;
  background: #fff;
  opacity: 0.5;
  margin-left: 8px;
  transition: all 0.3s ease;
}
.c-pager a.active {
  opacity: 1;
}
.c-pager a:hover {
  color: #F37170;
}

.c-article-body {
  font-size: 16px;
  padding-bottom: 24px;
  padding-top: 24px;
  word-wrap: break-word;
}
@media (min-width: 1920px) {
  .c-article-body {
    padding-left: 140px;
    padding-right: 140px;
  }
}
.c-article-body .slick-dots {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.c-article-body .slick-dots .slick-active button {
  background: #F37170;
}
.c-article-body .slick-dots button {
  cursor: pointer;
  border: 1px solid #D25251;
  background: #FEFAE6;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin: 0 4px;
  padding: 0;
  overflow: visible;
  color: inherit;
  font: inherit;
  line-height: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
  text-indent: -1000em;
  transition: background-color 0.3s ease;
}
.c-article-body .slick-dots button:hover {
  background: #F37170;
}
.c-article-body .slick-dots button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.c-article-body h1, .c-article-body h2, .c-article-body h3, .c-article-body h4, .c-article-body h5 {
  margin-bottom: 15px;
  font-family: "normalidad-compact", sans-serif;
}
.c-article-body h1 {
  font-size: 30px;
  line-height: 120%;
}
@media (min-width: 768px) {
  .c-article-body h1 {
    font-size: 64px;
  }
}
.c-article-body h2 {
  color: #F37170;
  font-size: 16px;
  font-family: "source-serif-pro", sans-serif;
}
.c-article-body p, .c-article-body ol, .c-article-body ul, .c-article-body blockquote, .c-article-body .article-image, .c-article-body .article-object {
  margin: 0;
  margin-bottom: 16px;
}
.c-article-body ul {
  padding-left: 20px;
  list-style: disc;
}
.c-article-body ol {
  padding-left: 20px;
  list-style: decimal;
}
.c-article-body p {
  line-height: 24px;
}
.c-article-body img {
  display: block;
  max-width: 100%;
}
.c-article-body .article-image {
  cursor: zoom-in;
  margin-left: auto;
  margin-right: auto;
}
.c-article-body .article-image img {
  margin-left: auto;
  margin-right: auto;
}
.c-article-body .article-image.center {
  margin-left: auto;
  margin-right: auto;
}
.c-article-body .article-image .image-wrapper {
  display: table;
  margin: 0 auto;
}
.c-article-body .article-image-text {
  background-color: #000;
  color: #000;
  padding: 5px 15px;
  text-align: left;
  display: table-caption;
  caption-side: bottom;
}
@media (min-width: 992px) {
  .c-article-body .article-image.left-out {
    float: left;
    margin-right: 15px;
    max-width: 300px;
  }
  .c-article-body .article-image.left-out img {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .c-article-body .article-image.right-out {
    float: right;
    margin-left: 15px;
    max-width: 300px;
  }
  .c-article-body .article-image.right-out img {
    margin-right: 0;
  }
}
.c-article-body .article-image.imageTextFull .article-image-text {
  display: inline-block;
  min-width: 100%;
  box-sizing: border-box;
}
.c-article-body blockquote {
  border-left: 4px solid #000;
  font-size: 24px;
  line-height: 32px;
  font-weight: 300;
  margin: 0;
  padding-left: 32px;
}
.c-article-body .article-object {
  text-align: center;
}

.c-article-body__lead {
  padding-top: 30px;
  max-width: 1080px;
  margin: 0 auto;
}
.c-article-body__lead p {
  font-size: 20px;
}

.c-article-body__slideshow {
  padding-top: 15px;
  max-width: 1080px;
  margin: 0 auto;
}

.c-article-body__body {
  padding: 30px 0;
  max-width: 1080px;
  margin: 0 auto;
}

.c-cta-full {
  background-image: url(/images/cta-full.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  text-align: center;
  color: #fff;
  padding: 60px 0 30px;
}
@media (min-width: 1200px) {
  .c-cta-full {
    padding: 60px 0 80px;
  }
}
.c-cta-full h1 {
  line-height: 40px;
}
.c-cta-full p {
  margin: 10px auto 0 auto;
  max-width: 1080px;
}
@media (min-width: 1200px) {
  .c-cta-full p {
    margin: 30px auto 0 auto;
  }
}
.c-cta-full a {
  margin: 10px 0 0 0;
}
@media (min-width: 1200px) {
  .c-cta-full a {
    margin: 30px 0 0 0;
  }
}

.c-cta-full__icon {
  position: absolute;
  left: 50%;
  top: -30px;
  margin-left: -30px;
}

.c-circle-icon {
  background: #fff;
  border: 1px solid #E9E6D3;
  width: 60px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #F37170;
  border-radius: 100%;
  font-size: 22px;
}

.c-related-articles {
  position: relative;
  background: #fff;
  border: 1px solid #E9E6D3;
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 20px;
}
.c-related-articles h1 {
  text-align: center;
  line-height: 26px;
}

.c-related-articles__icon {
  position: absolute;
  left: 50%;
  top: -30px;
  margin-left: -30px;
}

.c-related-articles__list {
  margin-top: 10px;
}
.c-related-articles__list h2 {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  font-family: "normalidad-compact", sans-serif;
  margin: 0;
}
.c-related-articles__list p {
  font-weight: 700;
  font-size: 10px;
  margin: 8px 0 15px 0;
}
@media (min-width: 992px) {
  .c-related-articles__list p {
    font-size: 12px;
    margin: 8px 0 0 0;
  }
}
.c-related-articles__list li {
  padding: 15px 0;
}
.c-related-articles__list li + li {
  border-top: 1px solid #E9E6D3;
}
@media (min-width: 992px) {
  .c-related-articles__list li {
    display: flex;
  }
}

.c-related-articles__list__left {
  flex-grow: 1;
}

.c-about-us-block {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .c-about-us-block {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 60px;
  }
}
.c-about-us-block h2 {
  margin: 30px 0 0 0;
  font-size: 18px;
  line-height: 26px;
  font-family: "normalidad-compact", sans-serif;
}
@media (min-width: 768px) {
  .c-about-us-block h2 {
    margin-top: 0;
  }
}
.c-about-us-block p {
  margin: 15px 0 0 0;
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 767.98px) {
  .c-about-us-block__content {
    order: 1;
  }
}
@media (min-width: 768px) {
  .c-about-us-block__content {
    width: 800px;
    padding: 0 40px;
  }
}
@media (min-width: 1356px) {
  .c-about-us-block__content {
    width: 800px;
    padding: 0 140px;
  }
}

@media (max-width: 767.98px) {
  .c-about-us-block__image {
    order: 0;
  }
}
.c-about-us-block__image img {
  max-width: 100%;
  margin: 30px 0 0 0;
}
@media (min-width: 768px) {
  .c-about-us-block__image img {
    margin-top: 0;
  }
}

.c-accordion__item {
  background: #fff;
  border: 1px solid #E9E6D3;
  padding: 30px 60px;
  margin: 10px 0 0 0;
}
.c-accordion__item ol {
  list-style: decimal;
  padding-top: 15px;
}
.c-accordion__item ol li:not(:last-child) {
  margin-bottom: 10px;
}
.c-accordion__item.active .c-accordion__header {
  color: #F37170;
}
.c-accordion__item.active .c-accordion__body {
  display: block;
  line-height: 20px;
}

.c-accordion__header {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.c-accordion__header:hover {
  color: #F37170;
}
.c-accordion__header i {
  margin-right: 30px;
  font-size: 14px;
}

.c-accordion__body {
  display: none;
  padding: 15px 0 0 55px;
}
@media (min-width: 992px) {
  .c-accordion__body {
    padding: 15px 60px 0 55px;
  }
}

.c-order {
  background: #fff;
  border: 1px solid #E9E6D3;
}
@media (min-width: 992px) {
  .c-order {
    display: flex;
    margin-top: 15px;
  }
}

.c-order__from {
  padding: 30px 30px 0 30px;
  min-width: 200px;
}
@media (min-width: 992px) {
  .c-order__from {
    padding: 30px 0 0 30px;
  }
}

.c-order__to {
  padding: 30px 30px 0 30px;
  min-width: 200px;
}
@media (min-width: 992px) {
  .c-order__to {
    padding: 30px 0 0 0;
  }
}

.c-order__date {
  padding: 30px 30px 0 30px;
  font-family: "normalidad-compact", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 992px) {
  .c-order__date {
    flex-grow: 1;
    padding: 30px 0 0 0;
  }
}
.c-order__date span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
}

.c-order__actions {
  padding: 30px 30px 30px 30px;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .c-order__actions {
    padding: 0 30px 0 0;
  }
}
.c-order__actions a {
  color: #F37170;
}
.c-order__actions a:hover {
  text-decoration: underline;
}

.c-order__name {
  font-size: 16px;
  font-weight: 700;
  font-family: "normalidad-compact", sans-serif;
}

.c-order__address {
  font-size: 12px;
  line-height: 18px;
  color: #2F404B;
  font-weight: 700;
  font-family: "normalidad-compact", sans-serif;
  margin-top: 10px;
}

.c-order__image {
  height: 150px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (min-width: 992px) {
  .c-order__image {
    width: 240px;
  }
}

.c-orders {
  padding-top: 30px;
}

.c-orders__header {
  display: none;
  color: rgba(47, 64, 75, 0.5);
  font-weight: 700;
  font-size: 12px;
}
@media (min-width: 992px) {
  .c-orders__header {
    display: flex;
  }
  .c-orders__header .c-orders__header__postcard {
    width: 240px;
  }
  .c-orders__header .c-orders__header__to {
    min-width: 200px;
  }
  .c-orders__header .c-orders__header__from {
    padding-left: 30px;
    min-width: 200px;
  }
  .c-orders__header .c-orders__header__date {
    flex-grow: 1;
  }
}

.c-order-placeholder {
  background-image: url(/images/order-cta.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 148px;
  align-items: center;
  padding: 20px 40px;
  color: #fff;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .c-order-placeholder {
    display: flex;
    padding: 0 40px;
  }
}
.c-order-placeholder h1 {
  flex-grow: 1;
  font-size: 18px;
  line-height: 22px;
}
@media (min-width: 768px) {
  .c-order-placeholder h1 {
    font-size: 32px;
    line-height: 1;
  }
}
.c-order-placeholder a {
  margin-top: 15px;
}
@media (min-width: 768px) {
  .c-order-placeholder a {
    margin-top: 0;
  }
}

.c-editor-header {
  height: 75px;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .c-editor-header {
    height: 120px;
  }
}
.c-editor-header h1 {
  flex-grow: 1;
  padding-right: 60px;
  text-align: center;
  font-family: "normalidad-compact", sans-serif;
  font-size: 16px;
  margin: 0;
}
@media (min-width: 768px) {
  .c-editor-header h1 {
    padding-right: 0;
    font-size: 32px;
  }
}

.c-editor-header__left {
  padding-left: 25px;
  width: 60px;
}
@media (min-width: 768px) {
  .c-editor-header__left {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .c-editor-header__left {
    padding-left: 60px;
  }
}
.c-editor-header__left i {
  color: #F37170;
}

.c-editor-header__right {
  display: none;
  text-align: right;
  padding-right: 25px;
}
@media (min-width: 768px) {
  .c-editor-header__right {
    display: block;
    width: 300px;
  }
}
@media (min-width: 992px) {
  .c-editor-header__right {
    padding-right: 60px;
  }
}

.c-editor-navigation {
  display: flex;
  background: #fff;
  position: relative;
}
@media (min-width: 1200px) {
  .c-editor-navigation {
    height: 100%;
    width: 100%;
  }
}

.c-editor-navigation__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 35px 0 25px;
  height: 65px;
}
@media (min-width: 1200px) {
  .c-editor-navigation__header {
    display: none;
  }
}
.c-editor-navigation__header h2 {
  margin: 0;
  font-family: "normalidad-compact", sans-serif;
  font-size: 16px;
}
.c-editor-navigation__header a {
  color: #F37170;
}

.c-editor-navigation--open .c-editor-navigation__dropdown {
  display: block;
}

.c-editor-navigation__dropdown {
  display: none;
  position: absolute;
  width: 100%;
  max-width: 520px;
  z-index: 1;
  right: 0;
  top: 60px;
  padding: 0 15px;
}
@media (min-width: 1200px) {
  .c-editor-navigation__dropdown {
    display: block;
    position: relative;
    padding: 0;
    top: 0;
    max-width: none;
  }
}
.c-editor-navigation__dropdown ul {
  border: 1px solid #E9E6D3;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: 100%;
  background: #fff;
}
@media (min-width: 1200px) {
  .c-editor-navigation__dropdown ul {
    box-shadow: none;
    border: none;
  }
}
.c-editor-navigation__dropdown li.active a {
  opacity: 1;
}
.c-editor-navigation__dropdown li.active a::before {
  opacity: 1;
}
.c-editor-navigation__dropdown li.completed a {
  opacity: 1;
}
.c-editor-navigation__dropdown a {
  position: relative;
  display: flex;
  height: 60px;
  font-family: "normalidad-compact", sans-serif;
  font-size: 16px;
  opacity: 0.5;
  padding-left: 21px;
  align-items: center;
}
.c-editor-navigation__dropdown a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #F37170;
  opacity: 0;
}
.c-editor-navigation__dropdown a:hover span {
  text-decoration: underline;
}
.c-editor-navigation__dropdown a i {
  display: none;
}
.c-editor-navigation__dropdown a span {
  display: none;
}
@media (min-width: 1200px) {
  .c-editor-navigation__dropdown a {
    height: 80px;
    border-bottom: 1px solid #E9E6D3;
    font-size: 20px;
    display: flex;
    align-items: center;
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
  }
  .c-editor-navigation__dropdown a i {
    display: inline;
    margin-top: -3px;
    margin-right: 12px;
    color: #F37170;
  }
  .c-editor-navigation__dropdown a span {
    display: inline;
    flex-grow: 1;
    text-align: right;
    color: #F37170;
    font-size: 16px;
    font-family: "normalidad-compact", sans-serif;
    font-weight: 400;
  }
}
@media (min-width: 1200px) {
  .c-editor-navigation__dropdown a {
    height: 100px;
    padding-right: 60px;
    padding-left: 60px;
  }
  .c-editor-navigation__dropdown a span {
    font-size: 20px;
  }
}

.c-photo-selector {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 992px) {
  .c-photo-selector {
    justify-content: center;
  }
}

.c-photo-selector__header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}
@media (min-width: 992px) {
  .c-photo-selector__header {
    flex-grow: 0;
  }
}

.c-photo-selector__photo {
  width: 100%;
  max-width: 800px;
}
@media (min-width: 992px) {
  .c-photo-selector__photo {
    width: 800px;
    max-width: none;
  }
}
.c-photo-selector__photo .c-postcard-front__content {
  width: auto;
  height: auto;
}
.c-photo-selector__photo .c-postcard-front__image {
  padding-top: 56.25%;
}

.c-photo-selector__button {
  text-align: right;
  padding-top: 30px;
}
@media (min-width: 992px) {
  .c-photo-selector__button {
    text-align: center;
  }
}

.c-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
}

.c-popup--not-enough-articles .c-popup__content {
  max-width: 520px;
  max-height: 640px;
}

.c-popup--login .c-popup__content,
.c-popup--recipient .c-popup__content {
  max-width: 520px;
  max-height: 570px;
}
@media (min-width: 768px) {
  .c-popup--login .c-popup__content,
.c-popup--recipient .c-popup__content {
    max-height: 470px;
  }
}

.c-popup--recipient .c-popup__content__body {
  padding-top: 30px;
}

.c-popup__overlay {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.c-popup__content {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #FEFAE6;
  width: 100%;
  max-width: 960px;
  height: 100%;
  max-height: 700px;
}

.c-popup__content__header {
  position: relative;
  width: 100%;
  padding: 30px 100px 0 30px;
  flex-grow: 0;
  flex-shrink: 0;
}
.c-popup__content__header h2 {
  font-size: 12px;
  font-weight: 700;
  color: #F37170;
  font-family: "source-serif-pro", sans-serif;
  margin: 0;
}
.c-popup__content__header h1 {
  margin-top: 15px;
  font-size: 18px;
  line-height: 22px;
}
.c-popup__content__header a {
  position: absolute;
  right: 40px;
  top: 40px;
  color: #F37170;
  font-size: 20px;
}
.c-popup__content__header a:hover {
  color: #D25251;
}

.c-popup__content__body {
  overflow: auto;
  flex-grow: 1;
  padding: 0 30px 30px 30px;
}

.c-popup-photos {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  height: 100%;
}

.c-popup-photos__list {
  flex-grow: 1;
  overflow: auto;
  margin-left: -8px;
  margin-right: -8px;
}
@media (min-width: 992px) {
  .c-popup-photos__list {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.c-popup-photos__list ul {
  display: flex;
  flex-wrap: wrap;
}
.c-popup-photos__list li {
  width: 50%;
  padding: 8px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .c-popup-photos__list li {
    width: 33.33%;
    width: 33.3333333333%;
    padding: 20px;
  }
}
.c-popup-photos__list li.active div::before, .c-popup-photos__list li:hover div::before {
  opacity: 1;
}
.c-popup-photos__list li div {
  position: relative;
}
.c-popup-photos__list li div::before {
  box-sizing: border-box;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 6px solid #F37170;
  color: #F37170;
  font-size: 22px;
  transition: 0.3s ease all;
  opacity: 0;
  content: "\e902";
  font-family: "icomoon" !important;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.c-popup-photos__list img {
  max-width: 100%;
}

.c-popup-photos__buttons {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}

.c-popup-message-editor {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  height: 100%;
}

.c-popup-message-editor__form {
  flex-grow: 1;
}
.c-popup-message-editor__form textarea {
  width: 100%;
  height: 100%;
  border: 1px solid #E9E6D3;
  background: #fff;
  font-family: "normalidad-compact", sans-serif;
  padding: 15px;
  font-size: 16px;
  border-radius: 0;
}

.c-popup-message-editor__buttons {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}

.c-message-editor {
  height: 100%;
}
@media (min-width: 768px) {
  .c-message-editor {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.c-message-editor__sides {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .c-message-editor__sides {
    width: 800px;
    max-width: none;
  }
}
@media (min-width: 1200px) {
  .c-message-editor__sides {
    width: 700px;
  }
}
@media (min-width: 1920px) {
  .c-message-editor__sides {
    width: 800px;
  }
}

.c-message-editor__sides__front {
  width: 100%;
}

.c-message-editor__sides__back {
  width: 100%;
  margin-top: 2px;
}

.c-message-editor__sides__button {
  text-align: center;
  padding-top: 30px;
  height: 70px;
  width: 100%;
}
@media (min-width: 768px) {
  .c-message-editor__sides__button {
    position: absolute;
    bottom: 40px;
  }
}
.c-message-editor__sides__button a {
  width: 100%;
}
@media (min-width: 768px) {
  .c-message-editor__sides__button a {
    width: auto;
  }
}

.c-radio {
  display: block;
}
.c-radio:hover input:checked + div::after {
  background: #000;
}
.c-radio:hover div::after {
  opacity: 1;
  background: rgba(0, 0, 0, 0.16);
}
.c-radio input {
  visibility: hidden;
  position: absolute;
  left: -1000em;
  top: -1000em;
}
.c-radio input:checked + div::after {
  opacity: 1;
}
.c-radio div {
  font-size: 16px;
  font-family: "normalidad-compact", sans-serif;
  font-weight: 700;
  position: relative;
  padding-left: 35px;
}
.c-radio div span {
  font-size: 12px;
  display: block;
  color: #F37170;
  margin-top: 8px;
}
.c-radio div::before {
  display: block;
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #000;
  border-radius: 100%;
  left: 0;
  top: 50%;
  margin-top: -10px;
}
.c-radio div::after {
  opacity: 0;
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 100%;
  background: #000;
  transition: 0.3s ease all;
}

.c-recipient-editor {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.c-recipient-editor__body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  flex-direction: column;
}

.c-recipient-editor__postcard {
  width: 100%;
  max-width: 800px;
}
@media (min-width: 992px) {
  .c-recipient-editor__postcard {
    width: 800px;
    max-width: none;
  }
}
@media (min-width: 1200px) {
  .c-recipient-editor__postcard {
    width: 700px;
  }
}
@media (min-width: 1920px) {
  .c-recipient-editor__postcard {
    width: 800px;
  }
}

.c-recipient-editor__buttons {
  padding-top: 15px;
  text-align: center;
}
@media (min-width: 768px) {
  .c-recipient-editor__buttons {
    display: none;
  }
}
.c-recipient-editor__buttons a {
  width: 100%;
  max-width: 520px;
}

.c-popup-form {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.c-popup-form__body {
  flex-grow: 1;
}

.c-popup-form__footer {
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  justify-content: space-between;
}

.c-form-group {
  padding-top: 10px;
}
@media (min-width: 768px) {
  .c-form-group {
    display: flex;
    align-items: center;
  }
}
.c-form-group label {
  display: flex;
  width: 100%;
  font-family: "normalidad-compact", sans-serif;
  color: rgba(47, 64, 75, 0.5);
  margin-top: 20px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .c-form-group label {
    height: 40px;
    line-height: 40px;
    width: 200px;
    margin-top: 0;
    margin-bottom: 0;
    border: 1px solid #E9E6D3;
    border-right: 0;
    padding-left: 15px;
  }
}
.c-form-group input,
.c-form-group textarea {
  width: 100%;
}

.c-form-group--error label {
  color: #B23B3A;
}
@media (min-width: 768px) {
  .c-form-group--error label {
    border-color: #B23B3A;
  }
}

.c-order-success {
  width: 100%;
  height: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background: #fff;
}

.c-order-success__envelope {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-order-success__content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 15px;
}
.c-order-success__content p {
  margin: 30px 0 0 0;
}

.c-order-success__content__top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 767.98px) {
  .c-order-success__content__top {
    flex-grow: 1;
  }
}

.c-order-success__content__bottom {
  text-align: center;
  padding: 30px 0;
}
.c-order-success__content__bottom a {
  width: 100%;
  max-width: 340px;
}

@-webkit-keyframes animatePostcardSm {
  0% {
    top: 0;
  }
  100% {
    top: 120px;
  }
}

@keyframes animatePostcardSm {
  0% {
    top: 0;
  }
  100% {
    top: 120px;
  }
}
@-webkit-keyframes animatePostcardLg {
  0% {
    top: 0;
  }
  100% {
    top: 240px;
  }
}
@keyframes animatePostcardLg {
  0% {
    top: 0;
  }
  100% {
    top: 240px;
  }
}
@-webkit-keyframes fadeOutEnvelope {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOutEnvelope {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.c-envelope {
  position: relative;
  width: 340px;
  height: 298px;
  overflow: hidden;
  -webkit-animation-name: fadeOutEnvelope;
          animation-name: fadeOutEnvelope;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.c-envelope::after {
  display: block;
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background: #fff;
}
@media (min-width: 992px) {
  .c-envelope {
    width: 739px;
    height: 646px;
  }
}

.c-envelope__postcard {
  width: 300px;
  position: absolute;
  z-index: 2;
  left: 20px;
  -webkit-animation-name: animatePostcardSm;
          animation-name: animatePostcardSm;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media (min-width: 992px) {
  .c-envelope__postcard {
    width: 699px;
    -webkit-animation-name: animatePostcardLg;
            animation-name: animatePostcardLg;
  }
}

.c-envelope__top {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/images/envelope-top.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  width: 340px;
  height: 225px;
}
@media (min-width: 992px) {
  .c-envelope__top {
    width: 739px;
    height: 487px;
  }
}

.c-envelope__bottom {
  z-index: 4;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("/images/envelope-bottom.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  width: 340px;
  height: 190px;
}
@media (min-width: 992px) {
  .c-envelope__bottom {
    width: 739px;
    height: 411px;
  }
}

.c-postcard-front {
  width: 100%;
  border: 1px solid #E9E6D3;
  background: #fff;
  overflow: auto;
}

.c-postcard-front__content {
  width: 210mm;
  height: 99mm;
  padding: 4mm;
}

.c-postcard-front__image {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.c-postcard-back {
  position: relative;
  border: 1px solid #E9E6D3;
  overflow: auto;
}

.c-postcard-back__content {
  position: relative;
  padding: 9mm;
  width: 210mm;
  height: 99mm;
  background-image: url(/images/postcard-back.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.c-postcard-back__from {
  position: absolute;
  left: 9mm;
  top: 9mm;
}

.c-postcard-back__to {
  position: absolute;
  left: 129mm;
  top: 49mm;
  width: 80mm;
  height: 50mm;
  overflow: hidden;
}
.c-postcard-back__to .c-btn {
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.c-postcard-back__from__name,
.c-postcard-back__to__name {
  font-weight: 700;
}

.c-postcard-back__from__address,
.c-postcard-back__to__address {
  padding-top: 10px;
  font-size: 12px;
  line-height: 18px;
}

.c-postcard-inner {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #E9E6D3;
  background: #fff;
  overflow: auto;
}

.c-postcard-inner--user-message {
  font-family: "look-script", sans-serif;
  font-size: 12pt;
  line-height: 13pt;
  font-weight: 400;
}

.c-postcard-inner__content {
  width: 210mm;
  height: 99mm;
  padding: 9mm;
}
.c-postcard-inner__content h2 {
  margin: 0;
  color: #F37170;
  font-size: 10pt;
  line-height: 10pt;
}
.c-postcard-inner__content h1 {
  font-size: 20pt;
  line-height: 22pt;
  font-weight: 700;
  margin: 3pt 0 0 0;
}
.c-postcard-inner__content p {
  font-size: 9pt;
  line-height: 10pt;
  margin: 8pt 0 0 0;
}
.c-postcard-inner__content blockquote {
  margin: 8pt 0 0 0;
  padding: 5pt 0 5pt 15pt;
  border-left: 5pt solid #BABCBB;
}
.c-postcard-inner__content blockquote p {
  margin: 0;
  font-size: 10pt;
  line-height: 11pt;
  font-style: italic;
}

.c-popup-regions {
  border-top: 1px solid #E9E6D3;
  padding-top: 30px;
  margin-top: 30px;
}
.c-popup-regions h1 {
  font-family: "source-serif-pro", sans-serif;
  font-size: 16px;
  margin: 0;
  font-weight: 400;
}

.c-popup-regions__body {
  padding-top: 8px;
}

.slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-slide {
  float: none;
}

.c-slideshow-item {
  position: relative;
  text-align: center;
}
.c-slideshow-item img {
  display: inline;
}

.c-slideshow-item__source {
  padding-top: 10px;
  min-height: 40px;
  font-size: 12px;
  font-weight: bold;
  line-height: 150%;
}

.c-slideshow-item__arrow {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 10px;
  top: 50%;
  margin-top: -50px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #fff;
  border: 1px solid #E9E6D3;
  transition: all 0.3s ease;
}
.c-slideshow-item__arrow:hover {
  color: #F37170;
}
@media (min-width: 768px) {
  .c-slideshow-item__arrow {
    left: -20px;
  }
}
@media (min-width: 1200px) {
  .c-slideshow-item__arrow {
    left: -80px;
  }
}

.c-slideshow-item__arrow--next {
  left: auto;
  right: 10px;
}
@media (min-width: 768px) {
  .c-slideshow-item__arrow--next {
    right: -20px;
  }
}
@media (min-width: 1200px) {
  .c-slideshow-item__arrow--next {
    right: -80px;
  }
}

.c-box {
  border: 1px solid #E9E6D3;
  background: #fff;
  padding: 32px;
  color: #2F404B;
  position: relative;
}
.c-box h2 {
  font-size: 20px;
  line-height: 28px;
  color: #2F404B;
  font-family: "normalidad-compact", sans-serif;
  font-weight: 500;
}
.c-box p {
  font-size: 16px;
}

/* Helpers */
.h-cursor--default {
  cursor: default;
}

.h-cursor--pointer {
  cursor: pointer;
}

.h-user-select--none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.h-mw--880 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.h-mw--1360 {
  max-width: 1360px;
  margin: 0 auto;
}

.h-w--100p {
  width: 100% !important;
}

.h-position--relative {
  position: relative !important;
}

.h-text--center {
  text-align: center !important;
}

.h-text--right {
  text-align: right !important;
}

.h-d--none {
  display: none !important;
}

.h-d--block {
  display: block !important;
}

.h-d--flex {
  display: flex !important;
}

@media screen and (min-width: 0) {
  .h-text--xs--center {
    text-align: center !important;
  }

  .h-text--xs--right {
    text-align: right !important;
  }

  .h-d--xs--none {
    display: none !important;
  }

  .h-d--xs--block {
    display: block !important;
  }

  .h-d--xs--flex {
    display: flex !important;
  }
}
@media screen and (min-width: 576px) {
  .h-text--sm--center {
    text-align: center !important;
  }

  .h-text--sm--right {
    text-align: right !important;
  }

  .h-d--sm--none {
    display: none !important;
  }

  .h-d--sm--block {
    display: block !important;
  }

  .h-d--sm--flex {
    display: flex !important;
  }
}
@media screen and (min-width: 768px) {
  .h-text--md--center {
    text-align: center !important;
  }

  .h-text--md--right {
    text-align: right !important;
  }

  .h-d--md--none {
    display: none !important;
  }

  .h-d--md--block {
    display: block !important;
  }

  .h-d--md--flex {
    display: flex !important;
  }
}
@media screen and (min-width: 992px) {
  .h-text--lg--center {
    text-align: center !important;
  }

  .h-text--lg--right {
    text-align: right !important;
  }

  .h-d--lg--none {
    display: none !important;
  }

  .h-d--lg--block {
    display: block !important;
  }

  .h-d--lg--flex {
    display: flex !important;
  }
}
@media screen and (min-width: 1200px) {
  .h-text--xl--center {
    text-align: center !important;
  }

  .h-text--xl--right {
    text-align: right !important;
  }

  .h-d--xl--none {
    display: none !important;
  }

  .h-d--xl--block {
    display: block !important;
  }

  .h-d--xl--flex {
    display: flex !important;
  }
}
@media screen and (min-width: 1356px) {
  .h-text--xxl--center {
    text-align: center !important;
  }

  .h-text--xxl--right {
    text-align: right !important;
  }

  .h-d--xxl--none {
    display: none !important;
  }

  .h-d--xxl--block {
    display: block !important;
  }

  .h-d--xxl--flex {
    display: flex !important;
  }
}
@media screen and (min-width: 1920px) {
  .h-text--xxxl--center {
    text-align: center !important;
  }

  .h-text--xxxl--right {
    text-align: right !important;
  }

  .h-d--xxxl--none {
    display: none !important;
  }

  .h-d--xxxl--block {
    display: block !important;
  }

  .h-d--xxxl--flex {
    display: flex !important;
  }
}
.h-bg--none {
  background-color: transparent !important;
  transition: all 0.3s ease;
}

.h-bg--white {
  background-color: #fff !important;
  transition: all 0.3s ease;
}

.h-fs--16 {
  font-size: 1rem !important;
}

.h-fs--20 {
  font-size: 1.25rem !important;
}

@media screen and (min-width: 0) {
  .h-fs--xs--16 {
    font-size: 1rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-fs--xs--20 {
    font-size: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-fs--sm--16 {
    font-size: 1rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-fs--sm--20 {
    font-size: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-fs--md--16 {
    font-size: 1rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-fs--md--20 {
    font-size: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-fs--lg--16 {
    font-size: 1rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-fs--lg--20 {
    font-size: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-fs--xl--16 {
    font-size: 1rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-fs--xl--20 {
    font-size: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-fs--xxl--16 {
    font-size: 1rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-fs--xxl--20 {
    font-size: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-fs--xxxl--16 {
    font-size: 1rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-fs--xxxl--20 {
    font-size: 1.25rem !important;
  }
}

.h-fw--400 {
  font-weight: 400 !important;
}

.h-fw--700 {
  font-weight: 700 !important;
}

.h-ml--auto {
  margin-left: auto;
}

.h-p--0 {
  padding: 0rem !important;
}

.h-px--0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.h-py--0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.h-pt--0 {
  padding-top: 0rem !important;
}

.h-pr--0 {
  padding-right: 0rem !important;
}

.h-pb--0 {
  padding-bottom: 0rem !important;
}

.h-pl--0 {
  padding-left: 0rem !important;
}

.h-m--0 {
  margin: 0rem !important;
}

.h-mx--0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

.h-my--0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.h-mt--0 {
  margin-top: 0rem !important;
}

.h-mr--0 {
  margin-right: 0rem !important;
}

.h-mb--0 {
  margin-bottom: 0rem !important;
}

.h-ml--0 {
  margin-left: 0rem !important;
}

.h-p--5 {
  padding: 0.3125rem !important;
}

.h-px--5 {
  padding-left: 0.3125rem !important;
  padding-right: 0.3125rem !important;
}

.h-py--5 {
  padding-top: 0.3125rem !important;
  padding-bottom: 0.3125rem !important;
}

.h-pt--5 {
  padding-top: 0.3125rem !important;
}

.h-pr--5 {
  padding-right: 0.3125rem !important;
}

.h-pb--5 {
  padding-bottom: 0.3125rem !important;
}

.h-pl--5 {
  padding-left: 0.3125rem !important;
}

.h-m--5 {
  margin: 0.3125rem !important;
}

.h-mx--5 {
  margin-left: 0.3125rem !important;
  margin-right: 0.3125rem !important;
}

.h-my--5 {
  margin-top: 0.3125rem !important;
  margin-bottom: 0.3125rem !important;
}

.h-mt--5 {
  margin-top: 0.3125rem !important;
}

.h-mr--5 {
  margin-right: 0.3125rem !important;
}

.h-mb--5 {
  margin-bottom: 0.3125rem !important;
}

.h-ml--5 {
  margin-left: 0.3125rem !important;
}

.h-p--10 {
  padding: 0.625rem !important;
}

.h-px--10 {
  padding-left: 0.625rem !important;
  padding-right: 0.625rem !important;
}

.h-py--10 {
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
}

.h-pt--10 {
  padding-top: 0.625rem !important;
}

.h-pr--10 {
  padding-right: 0.625rem !important;
}

.h-pb--10 {
  padding-bottom: 0.625rem !important;
}

.h-pl--10 {
  padding-left: 0.625rem !important;
}

.h-m--10 {
  margin: 0.625rem !important;
}

.h-mx--10 {
  margin-left: 0.625rem !important;
  margin-right: 0.625rem !important;
}

.h-my--10 {
  margin-top: 0.625rem !important;
  margin-bottom: 0.625rem !important;
}

.h-mt--10 {
  margin-top: 0.625rem !important;
}

.h-mr--10 {
  margin-right: 0.625rem !important;
}

.h-mb--10 {
  margin-bottom: 0.625rem !important;
}

.h-ml--10 {
  margin-left: 0.625rem !important;
}

.h-p--15 {
  padding: 0.9375rem !important;
}

.h-px--15 {
  padding-left: 0.9375rem !important;
  padding-right: 0.9375rem !important;
}

.h-py--15 {
  padding-top: 0.9375rem !important;
  padding-bottom: 0.9375rem !important;
}

.h-pt--15 {
  padding-top: 0.9375rem !important;
}

.h-pr--15 {
  padding-right: 0.9375rem !important;
}

.h-pb--15 {
  padding-bottom: 0.9375rem !important;
}

.h-pl--15 {
  padding-left: 0.9375rem !important;
}

.h-m--15 {
  margin: 0.9375rem !important;
}

.h-mx--15 {
  margin-left: 0.9375rem !important;
  margin-right: 0.9375rem !important;
}

.h-my--15 {
  margin-top: 0.9375rem !important;
  margin-bottom: 0.9375rem !important;
}

.h-mt--15 {
  margin-top: 0.9375rem !important;
}

.h-mr--15 {
  margin-right: 0.9375rem !important;
}

.h-mb--15 {
  margin-bottom: 0.9375rem !important;
}

.h-ml--15 {
  margin-left: 0.9375rem !important;
}

.h-p--20 {
  padding: 1.25rem !important;
}

.h-px--20 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.h-py--20 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.h-pt--20 {
  padding-top: 1.25rem !important;
}

.h-pr--20 {
  padding-right: 1.25rem !important;
}

.h-pb--20 {
  padding-bottom: 1.25rem !important;
}

.h-pl--20 {
  padding-left: 1.25rem !important;
}

.h-m--20 {
  margin: 1.25rem !important;
}

.h-mx--20 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}

.h-my--20 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.h-mt--20 {
  margin-top: 1.25rem !important;
}

.h-mr--20 {
  margin-right: 1.25rem !important;
}

.h-mb--20 {
  margin-bottom: 1.25rem !important;
}

.h-ml--20 {
  margin-left: 1.25rem !important;
}

.h-p--25 {
  padding: 1.5625rem !important;
}

.h-px--25 {
  padding-left: 1.5625rem !important;
  padding-right: 1.5625rem !important;
}

.h-py--25 {
  padding-top: 1.5625rem !important;
  padding-bottom: 1.5625rem !important;
}

.h-pt--25 {
  padding-top: 1.5625rem !important;
}

.h-pr--25 {
  padding-right: 1.5625rem !important;
}

.h-pb--25 {
  padding-bottom: 1.5625rem !important;
}

.h-pl--25 {
  padding-left: 1.5625rem !important;
}

.h-m--25 {
  margin: 1.5625rem !important;
}

.h-mx--25 {
  margin-left: 1.5625rem !important;
  margin-right: 1.5625rem !important;
}

.h-my--25 {
  margin-top: 1.5625rem !important;
  margin-bottom: 1.5625rem !important;
}

.h-mt--25 {
  margin-top: 1.5625rem !important;
}

.h-mr--25 {
  margin-right: 1.5625rem !important;
}

.h-mb--25 {
  margin-bottom: 1.5625rem !important;
}

.h-ml--25 {
  margin-left: 1.5625rem !important;
}

.h-p--30 {
  padding: 1.875rem !important;
}

.h-px--30 {
  padding-left: 1.875rem !important;
  padding-right: 1.875rem !important;
}

.h-py--30 {
  padding-top: 1.875rem !important;
  padding-bottom: 1.875rem !important;
}

.h-pt--30 {
  padding-top: 1.875rem !important;
}

.h-pr--30 {
  padding-right: 1.875rem !important;
}

.h-pb--30 {
  padding-bottom: 1.875rem !important;
}

.h-pl--30 {
  padding-left: 1.875rem !important;
}

.h-m--30 {
  margin: 1.875rem !important;
}

.h-mx--30 {
  margin-left: 1.875rem !important;
  margin-right: 1.875rem !important;
}

.h-my--30 {
  margin-top: 1.875rem !important;
  margin-bottom: 1.875rem !important;
}

.h-mt--30 {
  margin-top: 1.875rem !important;
}

.h-mr--30 {
  margin-right: 1.875rem !important;
}

.h-mb--30 {
  margin-bottom: 1.875rem !important;
}

.h-ml--30 {
  margin-left: 1.875rem !important;
}

.h-p--40 {
  padding: 2.5rem !important;
}

.h-px--40 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.h-py--40 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.h-pt--40 {
  padding-top: 2.5rem !important;
}

.h-pr--40 {
  padding-right: 2.5rem !important;
}

.h-pb--40 {
  padding-bottom: 2.5rem !important;
}

.h-pl--40 {
  padding-left: 2.5rem !important;
}

.h-m--40 {
  margin: 2.5rem !important;
}

.h-mx--40 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.h-my--40 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.h-mt--40 {
  margin-top: 2.5rem !important;
}

.h-mr--40 {
  margin-right: 2.5rem !important;
}

.h-mb--40 {
  margin-bottom: 2.5rem !important;
}

.h-ml--40 {
  margin-left: 2.5rem !important;
}

.h-p--60 {
  padding: 3.75rem !important;
}

.h-px--60 {
  padding-left: 3.75rem !important;
  padding-right: 3.75rem !important;
}

.h-py--60 {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
}

.h-pt--60 {
  padding-top: 3.75rem !important;
}

.h-pr--60 {
  padding-right: 3.75rem !important;
}

.h-pb--60 {
  padding-bottom: 3.75rem !important;
}

.h-pl--60 {
  padding-left: 3.75rem !important;
}

.h-m--60 {
  margin: 3.75rem !important;
}

.h-mx--60 {
  margin-left: 3.75rem !important;
  margin-right: 3.75rem !important;
}

.h-my--60 {
  margin-top: 3.75rem !important;
  margin-bottom: 3.75rem !important;
}

.h-mt--60 {
  margin-top: 3.75rem !important;
}

.h-mr--60 {
  margin-right: 3.75rem !important;
}

.h-mb--60 {
  margin-bottom: 3.75rem !important;
}

.h-ml--60 {
  margin-left: 3.75rem !important;
}

.h-p--120 {
  padding: 7.5rem !important;
}

.h-px--120 {
  padding-left: 7.5rem !important;
  padding-right: 7.5rem !important;
}

.h-py--120 {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}

.h-pt--120 {
  padding-top: 7.5rem !important;
}

.h-pr--120 {
  padding-right: 7.5rem !important;
}

.h-pb--120 {
  padding-bottom: 7.5rem !important;
}

.h-pl--120 {
  padding-left: 7.5rem !important;
}

.h-m--120 {
  margin: 7.5rem !important;
}

.h-mx--120 {
  margin-left: 7.5rem !important;
  margin-right: 7.5rem !important;
}

.h-my--120 {
  margin-top: 7.5rem !important;
  margin-bottom: 7.5rem !important;
}

.h-mt--120 {
  margin-top: 7.5rem !important;
}

.h-mr--120 {
  margin-right: 7.5rem !important;
}

.h-mb--120 {
  margin-bottom: 7.5rem !important;
}

.h-ml--120 {
  margin-left: 7.5rem !important;
}

.h-p--240 {
  padding: 15rem !important;
}

.h-px--240 {
  padding-left: 15rem !important;
  padding-right: 15rem !important;
}

.h-py--240 {
  padding-top: 15rem !important;
  padding-bottom: 15rem !important;
}

.h-pt--240 {
  padding-top: 15rem !important;
}

.h-pr--240 {
  padding-right: 15rem !important;
}

.h-pb--240 {
  padding-bottom: 15rem !important;
}

.h-pl--240 {
  padding-left: 15rem !important;
}

.h-m--240 {
  margin: 15rem !important;
}

.h-mx--240 {
  margin-left: 15rem !important;
  margin-right: 15rem !important;
}

.h-my--240 {
  margin-top: 15rem !important;
  margin-bottom: 15rem !important;
}

.h-mt--240 {
  margin-top: 15rem !important;
}

.h-mr--240 {
  margin-right: 15rem !important;
}

.h-mb--240 {
  margin-bottom: 15rem !important;
}

.h-ml--240 {
  margin-left: 15rem !important;
}

@media screen and (min-width: 0) {
  .h-p--xs--0 {
    padding: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--0 {
    padding-top: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--0 {
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--0 {
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--0 {
    padding-left: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--0 {
    margin: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--0 {
    margin-top: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--0 {
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--0 {
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--0 {
    margin-left: 0rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--5 {
    padding: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--5 {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--5 {
    padding-top: 0.3125rem !important;
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--5 {
    padding-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--5 {
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--5 {
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--5 {
    padding-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--5 {
    margin: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--5 {
    margin-left: 0.3125rem !important;
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--5 {
    margin-top: 0.3125rem !important;
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--5 {
    margin-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--5 {
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--5 {
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--5 {
    margin-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--10 {
    padding: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--10 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--10 {
    padding-top: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--10 {
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--10 {
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--10 {
    padding-left: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--10 {
    margin: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--10 {
    margin-top: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--10 {
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--10 {
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--10 {
    margin-left: 0.625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--15 {
    padding: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--15 {
    padding-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--15 {
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--15 {
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--15 {
    padding-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--15 {
    margin: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--15 {
    margin-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--15 {
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--15 {
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--15 {
    margin-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--20 {
    padding: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--20 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--20 {
    padding-top: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--20 {
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--20 {
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--20 {
    padding-left: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--20 {
    margin: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--20 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--20 {
    margin-top: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--20 {
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--20 {
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--20 {
    margin-left: 1.25rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--25 {
    padding: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--25 {
    padding-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--25 {
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--25 {
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--25 {
    padding-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--25 {
    margin: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--25 {
    margin-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--25 {
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--25 {
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--25 {
    margin-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--30 {
    padding: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--30 {
    padding-top: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--30 {
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--30 {
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--30 {
    padding-left: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--30 {
    margin: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--30 {
    margin-top: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--30 {
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--30 {
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--30 {
    margin-left: 1.875rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--40 {
    padding: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--40 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--40 {
    padding-top: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--40 {
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--40 {
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--40 {
    padding-left: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--40 {
    margin: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--40 {
    margin-top: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--40 {
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--40 {
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--40 {
    margin-left: 2.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--60 {
    padding: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--60 {
    padding-top: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--60 {
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--60 {
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--60 {
    padding-left: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--60 {
    margin: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--60 {
    margin-top: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--60 {
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--60 {
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--60 {
    margin-left: 3.75rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--120 {
    padding: 7.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--120 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--120 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--120 {
    padding-top: 7.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--120 {
    padding-right: 7.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--120 {
    padding-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--120 {
    padding-left: 7.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--120 {
    margin: 7.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--120 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--120 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--120 {
    margin-top: 7.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--120 {
    margin-right: 7.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--120 {
    margin-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--120 {
    margin-left: 7.5rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-p--xs--240 {
    padding: 15rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-px--xs--240 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-py--xs--240 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pt--xs--240 {
    padding-top: 15rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pr--xs--240 {
    padding-right: 15rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pb--xs--240 {
    padding-bottom: 15rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-pl--xs--240 {
    padding-left: 15rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-m--xs--240 {
    margin: 15rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mx--xs--240 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-my--xs--240 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mt--xs--240 {
    margin-top: 15rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mr--xs--240 {
    margin-right: 15rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-mb--xs--240 {
    margin-bottom: 15rem !important;
  }
}

@media screen and (min-width: 0) {
  .h-ml--xs--240 {
    margin-left: 15rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--0 {
    padding: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--0 {
    padding-top: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--0 {
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--0 {
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--0 {
    padding-left: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--0 {
    margin: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--0 {
    margin-top: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--0 {
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--0 {
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--0 {
    margin-left: 0rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--5 {
    padding: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--5 {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--5 {
    padding-top: 0.3125rem !important;
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--5 {
    padding-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--5 {
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--5 {
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--5 {
    padding-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--5 {
    margin: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--5 {
    margin-left: 0.3125rem !important;
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--5 {
    margin-top: 0.3125rem !important;
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--5 {
    margin-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--5 {
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--5 {
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--5 {
    margin-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--10 {
    padding: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--10 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--10 {
    padding-top: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--10 {
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--10 {
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--10 {
    padding-left: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--10 {
    margin: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--10 {
    margin-top: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--10 {
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--10 {
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--10 {
    margin-left: 0.625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--15 {
    padding: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--15 {
    padding-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--15 {
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--15 {
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--15 {
    padding-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--15 {
    margin: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--15 {
    margin-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--15 {
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--15 {
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--15 {
    margin-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--20 {
    padding: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--20 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--20 {
    padding-top: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--20 {
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--20 {
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--20 {
    padding-left: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--20 {
    margin: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--20 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--20 {
    margin-top: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--20 {
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--20 {
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--20 {
    margin-left: 1.25rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--25 {
    padding: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--25 {
    padding-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--25 {
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--25 {
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--25 {
    padding-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--25 {
    margin: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--25 {
    margin-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--25 {
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--25 {
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--25 {
    margin-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--30 {
    padding: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--30 {
    padding-top: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--30 {
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--30 {
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--30 {
    padding-left: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--30 {
    margin: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--30 {
    margin-top: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--30 {
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--30 {
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--30 {
    margin-left: 1.875rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--40 {
    padding: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--40 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--40 {
    padding-top: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--40 {
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--40 {
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--40 {
    padding-left: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--40 {
    margin: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--40 {
    margin-top: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--40 {
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--40 {
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--40 {
    margin-left: 2.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--60 {
    padding: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--60 {
    padding-top: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--60 {
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--60 {
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--60 {
    padding-left: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--60 {
    margin: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--60 {
    margin-top: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--60 {
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--60 {
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--60 {
    margin-left: 3.75rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--120 {
    padding: 7.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--120 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--120 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--120 {
    padding-top: 7.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--120 {
    padding-right: 7.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--120 {
    padding-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--120 {
    padding-left: 7.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--120 {
    margin: 7.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--120 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--120 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--120 {
    margin-top: 7.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--120 {
    margin-right: 7.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--120 {
    margin-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--120 {
    margin-left: 7.5rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-p--sm--240 {
    padding: 15rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-px--sm--240 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-py--sm--240 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pt--sm--240 {
    padding-top: 15rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pr--sm--240 {
    padding-right: 15rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pb--sm--240 {
    padding-bottom: 15rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-pl--sm--240 {
    padding-left: 15rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-m--sm--240 {
    margin: 15rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mx--sm--240 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-my--sm--240 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mt--sm--240 {
    margin-top: 15rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mr--sm--240 {
    margin-right: 15rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-mb--sm--240 {
    margin-bottom: 15rem !important;
  }
}

@media screen and (min-width: 576px) {
  .h-ml--sm--240 {
    margin-left: 15rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--0 {
    padding: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--0 {
    padding-top: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--0 {
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--0 {
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--0 {
    padding-left: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--0 {
    margin: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--0 {
    margin-top: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--0 {
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--0 {
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--0 {
    margin-left: 0rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--5 {
    padding: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--5 {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--5 {
    padding-top: 0.3125rem !important;
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--5 {
    padding-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--5 {
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--5 {
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--5 {
    padding-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--5 {
    margin: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--5 {
    margin-left: 0.3125rem !important;
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--5 {
    margin-top: 0.3125rem !important;
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--5 {
    margin-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--5 {
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--5 {
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--5 {
    margin-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--10 {
    padding: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--10 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--10 {
    padding-top: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--10 {
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--10 {
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--10 {
    padding-left: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--10 {
    margin: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--10 {
    margin-top: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--10 {
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--10 {
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--10 {
    margin-left: 0.625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--15 {
    padding: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--15 {
    padding-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--15 {
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--15 {
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--15 {
    padding-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--15 {
    margin: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--15 {
    margin-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--15 {
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--15 {
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--15 {
    margin-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--20 {
    padding: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--20 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--20 {
    padding-top: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--20 {
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--20 {
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--20 {
    padding-left: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--20 {
    margin: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--20 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--20 {
    margin-top: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--20 {
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--20 {
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--20 {
    margin-left: 1.25rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--25 {
    padding: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--25 {
    padding-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--25 {
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--25 {
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--25 {
    padding-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--25 {
    margin: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--25 {
    margin-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--25 {
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--25 {
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--25 {
    margin-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--30 {
    padding: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--30 {
    padding-top: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--30 {
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--30 {
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--30 {
    padding-left: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--30 {
    margin: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--30 {
    margin-top: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--30 {
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--30 {
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--30 {
    margin-left: 1.875rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--40 {
    padding: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--40 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--40 {
    padding-top: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--40 {
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--40 {
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--40 {
    padding-left: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--40 {
    margin: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--40 {
    margin-top: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--40 {
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--40 {
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--40 {
    margin-left: 2.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--60 {
    padding: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--60 {
    padding-top: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--60 {
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--60 {
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--60 {
    padding-left: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--60 {
    margin: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--60 {
    margin-top: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--60 {
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--60 {
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--60 {
    margin-left: 3.75rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--120 {
    padding: 7.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--120 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--120 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--120 {
    padding-top: 7.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--120 {
    padding-right: 7.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--120 {
    padding-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--120 {
    padding-left: 7.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--120 {
    margin: 7.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--120 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--120 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--120 {
    margin-top: 7.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--120 {
    margin-right: 7.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--120 {
    margin-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--120 {
    margin-left: 7.5rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-p--md--240 {
    padding: 15rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-px--md--240 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-py--md--240 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pt--md--240 {
    padding-top: 15rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pr--md--240 {
    padding-right: 15rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pb--md--240 {
    padding-bottom: 15rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-pl--md--240 {
    padding-left: 15rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-m--md--240 {
    margin: 15rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mx--md--240 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-my--md--240 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mt--md--240 {
    margin-top: 15rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mr--md--240 {
    margin-right: 15rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-mb--md--240 {
    margin-bottom: 15rem !important;
  }
}

@media screen and (min-width: 768px) {
  .h-ml--md--240 {
    margin-left: 15rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--0 {
    padding: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--0 {
    padding-top: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--0 {
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--0 {
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--0 {
    padding-left: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--0 {
    margin: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--0 {
    margin-top: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--0 {
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--0 {
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--0 {
    margin-left: 0rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--5 {
    padding: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--5 {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--5 {
    padding-top: 0.3125rem !important;
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--5 {
    padding-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--5 {
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--5 {
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--5 {
    padding-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--5 {
    margin: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--5 {
    margin-left: 0.3125rem !important;
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--5 {
    margin-top: 0.3125rem !important;
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--5 {
    margin-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--5 {
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--5 {
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--5 {
    margin-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--10 {
    padding: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--10 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--10 {
    padding-top: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--10 {
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--10 {
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--10 {
    padding-left: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--10 {
    margin: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--10 {
    margin-top: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--10 {
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--10 {
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--10 {
    margin-left: 0.625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--15 {
    padding: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--15 {
    padding-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--15 {
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--15 {
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--15 {
    padding-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--15 {
    margin: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--15 {
    margin-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--15 {
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--15 {
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--15 {
    margin-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--20 {
    padding: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--20 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--20 {
    padding-top: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--20 {
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--20 {
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--20 {
    padding-left: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--20 {
    margin: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--20 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--20 {
    margin-top: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--20 {
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--20 {
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--20 {
    margin-left: 1.25rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--25 {
    padding: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--25 {
    padding-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--25 {
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--25 {
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--25 {
    padding-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--25 {
    margin: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--25 {
    margin-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--25 {
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--25 {
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--25 {
    margin-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--30 {
    padding: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--30 {
    padding-top: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--30 {
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--30 {
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--30 {
    padding-left: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--30 {
    margin: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--30 {
    margin-top: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--30 {
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--30 {
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--30 {
    margin-left: 1.875rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--40 {
    padding: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--40 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--40 {
    padding-top: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--40 {
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--40 {
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--40 {
    padding-left: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--40 {
    margin: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--40 {
    margin-top: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--40 {
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--40 {
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--40 {
    margin-left: 2.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--60 {
    padding: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--60 {
    padding-top: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--60 {
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--60 {
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--60 {
    padding-left: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--60 {
    margin: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--60 {
    margin-top: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--60 {
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--60 {
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--60 {
    margin-left: 3.75rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--120 {
    padding: 7.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--120 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--120 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--120 {
    padding-top: 7.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--120 {
    padding-right: 7.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--120 {
    padding-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--120 {
    padding-left: 7.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--120 {
    margin: 7.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--120 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--120 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--120 {
    margin-top: 7.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--120 {
    margin-right: 7.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--120 {
    margin-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--120 {
    margin-left: 7.5rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-p--lg--240 {
    padding: 15rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-px--lg--240 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-py--lg--240 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pt--lg--240 {
    padding-top: 15rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pr--lg--240 {
    padding-right: 15rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pb--lg--240 {
    padding-bottom: 15rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-pl--lg--240 {
    padding-left: 15rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-m--lg--240 {
    margin: 15rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mx--lg--240 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-my--lg--240 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mt--lg--240 {
    margin-top: 15rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mr--lg--240 {
    margin-right: 15rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-mb--lg--240 {
    margin-bottom: 15rem !important;
  }
}

@media screen and (min-width: 992px) {
  .h-ml--lg--240 {
    margin-left: 15rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--0 {
    padding: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--0 {
    padding-top: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--0 {
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--0 {
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--0 {
    padding-left: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--0 {
    margin: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--0 {
    margin-top: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--0 {
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--0 {
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--0 {
    margin-left: 0rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--5 {
    padding: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--5 {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--5 {
    padding-top: 0.3125rem !important;
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--5 {
    padding-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--5 {
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--5 {
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--5 {
    padding-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--5 {
    margin: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--5 {
    margin-left: 0.3125rem !important;
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--5 {
    margin-top: 0.3125rem !important;
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--5 {
    margin-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--5 {
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--5 {
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--5 {
    margin-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--10 {
    padding: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--10 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--10 {
    padding-top: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--10 {
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--10 {
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--10 {
    padding-left: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--10 {
    margin: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--10 {
    margin-top: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--10 {
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--10 {
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--10 {
    margin-left: 0.625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--15 {
    padding: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--15 {
    padding-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--15 {
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--15 {
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--15 {
    padding-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--15 {
    margin: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--15 {
    margin-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--15 {
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--15 {
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--15 {
    margin-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--20 {
    padding: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--20 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--20 {
    padding-top: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--20 {
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--20 {
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--20 {
    padding-left: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--20 {
    margin: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--20 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--20 {
    margin-top: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--20 {
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--20 {
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--20 {
    margin-left: 1.25rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--25 {
    padding: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--25 {
    padding-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--25 {
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--25 {
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--25 {
    padding-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--25 {
    margin: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--25 {
    margin-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--25 {
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--25 {
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--25 {
    margin-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--30 {
    padding: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--30 {
    padding-top: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--30 {
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--30 {
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--30 {
    padding-left: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--30 {
    margin: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--30 {
    margin-top: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--30 {
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--30 {
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--30 {
    margin-left: 1.875rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--40 {
    padding: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--40 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--40 {
    padding-top: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--40 {
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--40 {
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--40 {
    padding-left: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--40 {
    margin: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--40 {
    margin-top: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--40 {
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--40 {
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--40 {
    margin-left: 2.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--60 {
    padding: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--60 {
    padding-top: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--60 {
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--60 {
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--60 {
    padding-left: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--60 {
    margin: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--60 {
    margin-top: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--60 {
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--60 {
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--60 {
    margin-left: 3.75rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--120 {
    padding: 7.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--120 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--120 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--120 {
    padding-top: 7.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--120 {
    padding-right: 7.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--120 {
    padding-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--120 {
    padding-left: 7.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--120 {
    margin: 7.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--120 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--120 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--120 {
    margin-top: 7.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--120 {
    margin-right: 7.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--120 {
    margin-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--120 {
    margin-left: 7.5rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-p--xl--240 {
    padding: 15rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-px--xl--240 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-py--xl--240 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pt--xl--240 {
    padding-top: 15rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pr--xl--240 {
    padding-right: 15rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pb--xl--240 {
    padding-bottom: 15rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-pl--xl--240 {
    padding-left: 15rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-m--xl--240 {
    margin: 15rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mx--xl--240 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-my--xl--240 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mt--xl--240 {
    margin-top: 15rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mr--xl--240 {
    margin-right: 15rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-mb--xl--240 {
    margin-bottom: 15rem !important;
  }
}

@media screen and (min-width: 1200px) {
  .h-ml--xl--240 {
    margin-left: 15rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--0 {
    padding: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--0 {
    padding-top: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--0 {
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--0 {
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--0 {
    padding-left: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--0 {
    margin: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--0 {
    margin-top: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--0 {
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--0 {
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--0 {
    margin-left: 0rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--5 {
    padding: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--5 {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--5 {
    padding-top: 0.3125rem !important;
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--5 {
    padding-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--5 {
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--5 {
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--5 {
    padding-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--5 {
    margin: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--5 {
    margin-left: 0.3125rem !important;
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--5 {
    margin-top: 0.3125rem !important;
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--5 {
    margin-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--5 {
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--5 {
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--5 {
    margin-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--10 {
    padding: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--10 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--10 {
    padding-top: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--10 {
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--10 {
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--10 {
    padding-left: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--10 {
    margin: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--10 {
    margin-top: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--10 {
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--10 {
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--10 {
    margin-left: 0.625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--15 {
    padding: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--15 {
    padding-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--15 {
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--15 {
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--15 {
    padding-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--15 {
    margin: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--15 {
    margin-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--15 {
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--15 {
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--15 {
    margin-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--20 {
    padding: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--20 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--20 {
    padding-top: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--20 {
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--20 {
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--20 {
    padding-left: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--20 {
    margin: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--20 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--20 {
    margin-top: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--20 {
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--20 {
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--20 {
    margin-left: 1.25rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--25 {
    padding: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--25 {
    padding-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--25 {
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--25 {
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--25 {
    padding-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--25 {
    margin: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--25 {
    margin-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--25 {
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--25 {
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--25 {
    margin-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--30 {
    padding: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--30 {
    padding-top: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--30 {
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--30 {
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--30 {
    padding-left: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--30 {
    margin: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--30 {
    margin-top: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--30 {
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--30 {
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--30 {
    margin-left: 1.875rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--40 {
    padding: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--40 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--40 {
    padding-top: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--40 {
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--40 {
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--40 {
    padding-left: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--40 {
    margin: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--40 {
    margin-top: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--40 {
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--40 {
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--40 {
    margin-left: 2.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--60 {
    padding: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--60 {
    padding-top: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--60 {
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--60 {
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--60 {
    padding-left: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--60 {
    margin: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--60 {
    margin-top: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--60 {
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--60 {
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--60 {
    margin-left: 3.75rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--120 {
    padding: 7.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--120 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--120 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--120 {
    padding-top: 7.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--120 {
    padding-right: 7.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--120 {
    padding-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--120 {
    padding-left: 7.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--120 {
    margin: 7.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--120 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--120 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--120 {
    margin-top: 7.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--120 {
    margin-right: 7.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--120 {
    margin-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--120 {
    margin-left: 7.5rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-p--xxl--240 {
    padding: 15rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-px--xxl--240 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-py--xxl--240 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pt--xxl--240 {
    padding-top: 15rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pr--xxl--240 {
    padding-right: 15rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pb--xxl--240 {
    padding-bottom: 15rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-pl--xxl--240 {
    padding-left: 15rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-m--xxl--240 {
    margin: 15rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mx--xxl--240 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-my--xxl--240 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mt--xxl--240 {
    margin-top: 15rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mr--xxl--240 {
    margin-right: 15rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-mb--xxl--240 {
    margin-bottom: 15rem !important;
  }
}

@media screen and (min-width: 1356px) {
  .h-ml--xxl--240 {
    margin-left: 15rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--xxxl--0 {
    padding: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--xxxl--0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--xxxl--0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--xxxl--0 {
    padding-top: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--xxxl--0 {
    padding-right: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--xxxl--0 {
    padding-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--xxxl--0 {
    padding-left: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--xxxl--0 {
    margin: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--xxxl--0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--xxxl--0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--xxxl--0 {
    margin-top: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--xxxl--0 {
    margin-right: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--xxxl--0 {
    margin-bottom: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--xxxl--0 {
    margin-left: 0rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--xxxl--5 {
    padding: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--xxxl--5 {
    padding-left: 0.3125rem !important;
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--xxxl--5 {
    padding-top: 0.3125rem !important;
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--xxxl--5 {
    padding-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--xxxl--5 {
    padding-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--xxxl--5 {
    padding-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--xxxl--5 {
    padding-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--xxxl--5 {
    margin: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--xxxl--5 {
    margin-left: 0.3125rem !important;
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--xxxl--5 {
    margin-top: 0.3125rem !important;
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--xxxl--5 {
    margin-top: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--xxxl--5 {
    margin-right: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--xxxl--5 {
    margin-bottom: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--xxxl--5 {
    margin-left: 0.3125rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--xxxl--10 {
    padding: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--xxxl--10 {
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--xxxl--10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--xxxl--10 {
    padding-top: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--xxxl--10 {
    padding-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--xxxl--10 {
    padding-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--xxxl--10 {
    padding-left: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--xxxl--10 {
    margin: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--xxxl--10 {
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--xxxl--10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--xxxl--10 {
    margin-top: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--xxxl--10 {
    margin-right: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--xxxl--10 {
    margin-bottom: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--xxxl--10 {
    margin-left: 0.625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--xxxl--15 {
    padding: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--xxxl--15 {
    padding-left: 0.9375rem !important;
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--xxxl--15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--xxxl--15 {
    padding-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--xxxl--15 {
    padding-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--xxxl--15 {
    padding-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--xxxl--15 {
    padding-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--xxxl--15 {
    margin: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--xxxl--15 {
    margin-left: 0.9375rem !important;
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--xxxl--15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--xxxl--15 {
    margin-top: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--xxxl--15 {
    margin-right: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--xxxl--15 {
    margin-bottom: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--xxxl--15 {
    margin-left: 0.9375rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--xxxl--20 {
    padding: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--xxxl--20 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--xxxl--20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--xxxl--20 {
    padding-top: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--xxxl--20 {
    padding-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--xxxl--20 {
    padding-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--xxxl--20 {
    padding-left: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--xxxl--20 {
    margin: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--xxxl--20 {
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--xxxl--20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--xxxl--20 {
    margin-top: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--xxxl--20 {
    margin-right: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--xxxl--20 {
    margin-bottom: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--xxxl--20 {
    margin-left: 1.25rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--xxxl--25 {
    padding: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--xxxl--25 {
    padding-left: 1.5625rem !important;
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--xxxl--25 {
    padding-top: 1.5625rem !important;
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--xxxl--25 {
    padding-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--xxxl--25 {
    padding-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--xxxl--25 {
    padding-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--xxxl--25 {
    padding-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--xxxl--25 {
    margin: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--xxxl--25 {
    margin-left: 1.5625rem !important;
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--xxxl--25 {
    margin-top: 1.5625rem !important;
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--xxxl--25 {
    margin-top: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--xxxl--25 {
    margin-right: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--xxxl--25 {
    margin-bottom: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--xxxl--25 {
    margin-left: 1.5625rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--xxxl--30 {
    padding: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--xxxl--30 {
    padding-left: 1.875rem !important;
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--xxxl--30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--xxxl--30 {
    padding-top: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--xxxl--30 {
    padding-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--xxxl--30 {
    padding-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--xxxl--30 {
    padding-left: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--xxxl--30 {
    margin: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--xxxl--30 {
    margin-left: 1.875rem !important;
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--xxxl--30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--xxxl--30 {
    margin-top: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--xxxl--30 {
    margin-right: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--xxxl--30 {
    margin-bottom: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--xxxl--30 {
    margin-left: 1.875rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--xxxl--40 {
    padding: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--xxxl--40 {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--xxxl--40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--xxxl--40 {
    padding-top: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--xxxl--40 {
    padding-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--xxxl--40 {
    padding-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--xxxl--40 {
    padding-left: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--xxxl--40 {
    margin: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--xxxl--40 {
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--xxxl--40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--xxxl--40 {
    margin-top: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--xxxl--40 {
    margin-right: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--xxxl--40 {
    margin-bottom: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--xxxl--40 {
    margin-left: 2.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--xxxl--60 {
    padding: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--xxxl--60 {
    padding-left: 3.75rem !important;
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--xxxl--60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--xxxl--60 {
    padding-top: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--xxxl--60 {
    padding-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--xxxl--60 {
    padding-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--xxxl--60 {
    padding-left: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--xxxl--60 {
    margin: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--xxxl--60 {
    margin-left: 3.75rem !important;
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--xxxl--60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--xxxl--60 {
    margin-top: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--xxxl--60 {
    margin-right: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--xxxl--60 {
    margin-bottom: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--xxxl--60 {
    margin-left: 3.75rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--xxxl--120 {
    padding: 7.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--xxxl--120 {
    padding-left: 7.5rem !important;
    padding-right: 7.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--xxxl--120 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--xxxl--120 {
    padding-top: 7.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--xxxl--120 {
    padding-right: 7.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--xxxl--120 {
    padding-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--xxxl--120 {
    padding-left: 7.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--xxxl--120 {
    margin: 7.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--xxxl--120 {
    margin-left: 7.5rem !important;
    margin-right: 7.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--xxxl--120 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--xxxl--120 {
    margin-top: 7.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--xxxl--120 {
    margin-right: 7.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--xxxl--120 {
    margin-bottom: 7.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--xxxl--120 {
    margin-left: 7.5rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-p--xxxl--240 {
    padding: 15rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-px--xxxl--240 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-py--xxxl--240 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pt--xxxl--240 {
    padding-top: 15rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pr--xxxl--240 {
    padding-right: 15rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pb--xxxl--240 {
    padding-bottom: 15rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-pl--xxxl--240 {
    padding-left: 15rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-m--xxxl--240 {
    margin: 15rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mx--xxxl--240 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-my--xxxl--240 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mt--xxxl--240 {
    margin-top: 15rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mr--xxxl--240 {
    margin-right: 15rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-mb--xxxl--240 {
    margin-bottom: 15rem !important;
  }
}

@media screen and (min-width: 1920px) {
  .h-ml--xxxl--240 {
    margin-left: 15rem !important;
  }
}

.h-color--white {
  color: #fff !important;
}

.h-color--black {
  color: #000 !important;
}

.h-color--red-400 {
  color: #F37170 !important;
}

.h-color--red-900 {
  color: #B23B3A !important;
}

/* Layouts */
.l-default {
  background: #FEFAE6;
  min-height: 100%;
  min-height: calc(var(--vh, 1vh) * 100);
}

.l-editor {
  background: #FEFAE6;
}

/* Pages */
.p-home__regions {
  position: relative;
}

.p-editor {
  height: 100%;
  height: calc(var(--vh, 1vh) * 100);
}

.p-editor__wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.p-editor__header {
  flex-grow: 0;
}

.p-editor__footer {
  flex-grow: 0;
  height: 60px;
  background: #fff;
  text-align: right;
  padding: 0 25px 25px 25px;
}
@media (min-width: 992px) {
  .p-editor__footer {
    display: none;
  }
}

.p-editor__navigation {
  flex-grow: 0;
}
@media (min-width: 1200px) {
  .p-editor__navigation {
    border-right: 1px solid #E9E6D3;
    width: 400px;
  }
}
@media (min-width: 1356px) {
  .p-editor__navigation {
    border-right: 1px solid #E9E6D3;
    width: 580px;
  }
}

.p-editor__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  border-top: 1px solid #E9E6D3;
}
@media (min-width: 1200px) {
  .p-editor__content {
    flex-direction: row;
  }
}

.p-editor__body {
  flex-grow: 1;
  background: #fff;
  border-top: 1px solid #E9E6D3;
  padding: 20px 25px;
  overflow: auto;
}
@media (min-width: 1200px) {
  .p-editor__body {
    border-top: none;
  }
}

/* Vendor */
.leaflet-popup .leaflet-popup-content-wrapper {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 0;
}
