@charset "UTF-8";
/* CSS Document */

			#contributors {
			}
			#contributors {
				box-sizing: border-box;
			}
			#contributors h2 {
				color: white;
				position: relative;
				padding-top:100px;
				padding-bottom: 25px;
				/* text-transform: uppercase; */
			}
			#contributors .mirror {
			}
			#contributors .background {
				/*
				background-color: var(--brand_blue);
				*/
			}

			#contributors .members-list {
				margin: 20px 0 0 0;
			}
			#contributors .members-list > ul {
				margin: 0;
				padding: 0;
				list-style: none;
				display: grid;
				grid-template-columns: repeat(2, minmax(0, 1fr));
				gap: 18px 24px;
			}
			#contributors .members-list > ul > li {
				display: flex;
				align-items: center;
				gap: 14px;
				padding: 10px 0;
				min-width: 0;
			}
			#contributors .members-list > ul > li figure {
				position:relative;
				flex: 0 0 96px;
				width: 96px;
				height: 96px;
				border-radius: 999px;
				background-size: cover, 50%;
				background-position: center;
				background-repeat: no-repeat;
				box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
				overflow:hidden;
				transform: translateY(0) scale(1);
				transition: transform 0.26s ease, box-shadow 0.26s ease;
				transform-origin: center;
			}
			#contributors .members-list > ul > li:hover figure {
				transform: translateY(-3px) scale(1.05);
				box-shadow: 0 34px 24px rgba(0, 0, 0, 0.6);
			}
			#contributors .members-list > ul > li figure:before {
				content:"";
				display:block;
				position:absolute;
				inset:0;
				background-image:url(../../images/icon/black/profile.svg);
				background-repeat:no-repeat;
				background-position:center;
				background-size:50%;
				background-color:#DDD;
				opacity:0.5;
				z-index:-1;
			}
			#contributors .members-list > ul > li figure.has-image:before {
				display: none;
			}

			#contributors .members-list > ul > li figcaption {
				min-width: 0;
			}
			#contributors .members-list > ul > li .m-name {
				margin: 0;
				font-size: var(--copy_size_big);
				line-height: 1.2;
				font-weight: 700;
				color: white;
			}
			#contributors .members-list > ul > li .m-title {
				margin: 4px 0 0 0;
				font-size: var(--copy_size);
				line-height: var(--copy_line_height);
				opacity: 0.9;
				color: white;
				text-wrap: balance;
				max-width: 90%;
			}
			@media screen and (min-width: 0px) and (max-width: 959.8px) {
				#contributors .members-list > ul {
					grid-template-columns: 1fr;
					gap: 0;
				}
			}
			#contributors .contributors-popover[hidden],
			#contributors-popover[hidden] {
				display: none !important;
			}
			#contributors .contributors-popover,
			#contributors-popover {
				position: fixed;
				top: 0;
				left: 0;
				right: 0;
				bottom: 0;
				width: 100%;
				height: 100%;
				height: 100vh;
				height: 100dvh;
				min-height: 100%;
				z-index: 99999;
				display: flex;
				align-items: center;
				justify-content: center;
				padding: 20px;
				box-sizing: border-box;
				-webkit-transform: translateZ(0);
				transform: translateZ(0);
				visibility: visible;
			}
			#contributors .contributors-popover__overlay,
			#contributors-popover .contributors-popover__overlay {
				position: absolute;
				inset: 0;
				background: rgba(0, 0, 0, 0.58);
				opacity: 0;
				transition: opacity 0.3s ease;
			}
			#contributors .contributors-popover__panel,
			#contributors-popover .contributors-popover__panel {
				position: relative;
				z-index: 1;
				width: min(620px, calc(100vw - 32px));
				max-height: calc(100vh - 32px);
				max-height: calc(100dvh - 32px);
				min-height: 0;
				overflow: auto;
				-webkit-overflow-scrolling: touch;
				background: white;
				color: #111;
				border-radius: 14px;
				padding: 28px 24px 24px;
				text-align: center;
				box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
				opacity: 0;
				transform: scale(0.8);
				transition: opacity 0.3s ease, transform 0.3s ease;
				transform-origin: 50% 50%;
				isolation: isolate;
				-webkit-backface-visibility: hidden;
				backface-visibility: hidden;
			}
			#contributors .contributors-popover__panel:before,
			#contributors-popover .contributors-popover__panel:before {
				content: "";
				position: absolute;
				inset: 0;
				background-image: url(../../images/background/spot-wide.webp);
				background-size: 160%;
				background-position: 50% 130%;
				opacity: 0.33;
				pointer-events: none;
				z-index: 0;
				background-repeat: no-repeat;
				filter: grayscale(1) sepia(1) hue-rotate(165deg) saturate(2.8) brightness(1.15);
			}
			#contributors .contributors-popover__panel > *,
			#contributors-popover .contributors-popover__panel > * {
				position: relative;
				z-index: 1;
			}
			#contributors .contributors-popover.is-visible .contributors-popover__overlay,
			#contributors-popover.is-visible .contributors-popover__overlay { opacity: 1; }
			#contributors .contributors-popover.is-visible .contributors-popover__panel,
			#contributors-popover.is-visible .contributors-popover__panel {
				opacity: 1;
				transform: scale(1);
				-webkit-transform: scale(1);
				visibility: visible;
			}
			#contributors .contributors-popover__close,
			#contributors-popover .contributors-popover__close {
				position: absolute;
				right: 12px;
				top: 8px;
				border: 0;
				background: transparent;
				color: #111;
				font-size: 28px;
				line-height: 1;
				cursor: pointer;
				padding: 4px 8px;
			}
			#contributors .contributors-popover__photo,
			#contributors-popover .contributors-popover__photo {
				position: relative;
				width: 200px;
				height: 200px;
				margin: 0 auto 16px;
				border-radius: 999px;
				background-size: cover;
				background-position: center;
				background-repeat: no-repeat;
				overflow: hidden;
			}
			#contributors .contributors-popover__photo.has-image:before,
			#contributors-popover .contributors-popover__photo.has-image:before {
				display: none;
			}
			#contributors .contributors-popover__photo:before,
			#contributors-popover .contributors-popover__photo:before {
				content: "";
				display: block;
				position: absolute;
				inset: 0;
				background-image: url(../../images/icon/black/profile.svg);
				background-repeat: no-repeat;
				background-position: center;
				background-size: 50%;
				background-color: #ddd;
				opacity: 0.5;
				z-index: -1;
			}
			#contributors .contributors-popover__name,
			#contributors-popover .contributors-popover__name {
				margin: 0;
				font-size: 1.5rem;
				font-weight: 700;
				line-height: 1.2;
				color: #111;
			}
			#contributors .contributors-popover__title,
			#contributors-popover .contributors-popover__title {
				margin: 8px 0 0;
				font-size: 1rem;
				line-height: 1.4;
				color: #333;
				text-wrap: balance;
			}
			#contributors .contributors-popover__intro,
			#contributors-popover .contributors-popover__intro {
				margin: 16px auto 0;
				font-size: 0.85rem;
				line-height: 1.4;
				color: #222;
				white-space: pre-line;
				max-width: 56ch;
				text-align: justify;
				hyphens: auto;
				-webkit-hyphens: auto;
				-ms-hyphens: auto;
				padding-bottom: 25px;
				padding-top: 25px;
			}
			#contributors .members-list > ul > li {
				cursor: pointer;
			}
			@media screen and (min-width: 0px) and (max-width: 579.8px) {
				#contributors .contributors-popover__panel,
				#contributors-popover .contributors-popover__panel {
					padding: 22px 16px 18px;
					max-height: min(calc(100dvh - 24px), calc(100vh - 24px));
					transform: scale(0.95);
					padding-left: max(16px, env(safe-area-inset-left));
					padding-right: max(16px, env(safe-area-inset-right));
				}
				#contributors .contributors-popover.is-visible .contributors-popover__panel,
				#contributors-popover.is-visible .contributors-popover__panel {
					transform: scale(1);
				}
				#contributors .contributors-popover__photo,
				#contributors-popover .contributors-popover__photo {
					width: 170px;
					height: 170px;
				}
				#contributors .members-list > ul > li .m-title {
					font-size: var(--copy_size_smaller);
					line-height: var(--copy_line_height_small);
				}
				#contributors .members-list > ul {
					gap: 0 0;
					padding-bottom:20px;
				}
			}
			#contributors {
				.titles {
					position: relative;
					outline: 1px solid orange;
					outline: none;
				}
				.copies {
					height: var(--copies);
					background-color: teal;
					background-color: transparent;
					position: relative;
					overflow: visible;
				}

				.members[data-template="carousel"]{
					--per_view:1;
					--gap: 20px;
					width:100%;
					/*height: calc(100% - var(--copies));*/
					position:relative;
					background-color: slategrey;
					background-color: transparent;
					isolation:isolate;
				}
				.members[data-template="carousel"].is-dragging .members-track,
				.members[data-template="carousel"].is-dragging .members-index {
					cursor: grabbing !important;
				}
				.members[data-template="carousel"] .members-track {
					transition: transform 0.5s ease;
				}
				.members[data-template="carousel"].is-dragging .members-track {
					transform:scale(0.99,0.99);
				}
				.members[data-template="carousel"] .members-viewport{
					width:100%;
					position:relative;
				}
				.members[data-template="carousel"] .members-track{
					width:100%;
					display:block;
					overflow-x: visible;
					overflow-y:hidden;
					-webkit-overflow-scrolling:touch;
					scrollbar-width:none;
					-ms-overflow-style:none;
					overscroll-behavior-x: contain;
					touch-action:pan-y;
					contain:layout paint;
					will-change:scroll-position;
					margin-inline: -15px;
					padding-inline: 15px;
					padding-top: 150px;
					margin-top: -150px;
				}
				.members[data-template="carousel"] .members-track::-webkit-scrollbar{
					display:none;
				}
				.members[data-template="carousel"] ul.members-slides{
 					display:flex;
 					flex-wrap:nowrap;
 					margin:0;
 					padding:0;
 					list-style:none;
 					gap:0;
 					margin-left: calc(var(--gap) * -1);
 					/* width:max-content; */
 					transform:translateZ(0);
 					will-change:transform;
 					cursor: grab;
 					position: relative;
 					border-radius: 15px;
 			}
				/*
				.members[data-template="carousel"] .covers {
					display: block;
					position: absolute;
					width: 100%;
					height: 100%;
					opacity:0;
					z-index: 1;
					pointer-events: none;
					transition: opacity 0.5s ease;
				}
				.members[data-template="carousel"] .covers .cover {
					position: absolute;
					width: 50px;
					height: 100%;
				}
				.members[data-template="carousel"] .covers .cover:nth-child(1) {
					left: 0;
					background: linear-gradient(90deg, var(--brand_blue), var(--brand_blue_dim0));
					outline: 1px solid red;
					outline: none;
				}
				.members[data-template="carousel"] .covers .cover:nth-child(2) {
					right: 0;
					background: linear-gradient(-90deg, var(--brand_blue), var(--brand_blue_dim0));
					outline: 1px solid green;
					outline: none;
				}
				.members[data-template="carousel"].is-dragging .covers {
					opacity: 1;
				}
				.members[data-template="carousel"].is-dragging .members-track {
					box-shadow: inset 5px 5px 15px 0 black;
				}
				*/
				.members[data-template="carousel"] .covers {
					display: none;
				}
				.members[data-template="carousel"] ul.members-slides > li{
					display: block;
					position: relative;
					flex: 0 0 calc(100% / var(--per_view) - var(--gap));
					flex: 0 0 calc(100% / var(--per_view));
					margin: 0;
					width: 100%;
					scroll-snap-align:start;
					box-sizing:border-box;
					transform:translateZ(0);
					will-change:transform;
					perspective:1500px;
				}
				.members[data-template="carousel"] ul.members-slides > li .inset {
					position: relative;
					width: calc(100% - var(--gap));
					margin-left:var(--gap);
					border-radius:15px;
					overflow:hidden;
					box-shadow: 0 5px 15px 0 #0000005c;
					transform-style:preserve-3d;
					transition:transform .6s ease, filter 0.6s ease;
					transform:rotateY(0deg);
				}
				.members[data-template="carousel"] ul.members-slides > li:last-child {
				}
				.members[data-template="carousel"] ul.members-slides > li:last-child .inset {
				}
				.members[data-template="carousel"] ul.members-slides > li.placeholder {
				}
				.members[data-template="carousel"] ul.members-slides > li .back {
					position: absolute;
					width: calc(100% - var(--gap));
					height: 100%;
					margin-left:var(--gap);
					border-radius:15px;
					overflow:hidden;
					backface-visibility:hidden;
					transform-style:preserve-3d;
					transition:transform .6s ease;
					transform:rotateY(180deg);
					z-index: 1;
					background-color: var(--brand_blue);
					background-color: var(--brand_orange);
					background-color: var(--brand_green);
					color: white;
					color: black;
					pointer-events: none;
					opacity: 0.9;
				}
				.members[data-template="carousel"] ul.members-slides > li .back .card-mirror {
					position: relative;
					left: 50%;
					top: calc(50% - 15px);
					transform:translate(-50%,-50%);
					max-width: calc(100% - 50px);
					max-height: calc(100% - 75px);
					padding-right: 10px;
					overflow: hidden;
					color: inherit;
				}
				.members[data-template="carousel"] ul.members-slides > li[data-len="1"] .back .card-mirror { max-width: calc( 80% - 50px); }
				.members[data-template="carousel"] ul.members-slides > li[data-len="2"] .back .card-mirror { max-width: calc( 85% - 50px); }
				.members[data-template="carousel"] ul.members-slides > li[data-len="3"] .back .card-mirror { max-width: calc( 80% - 50px); }
				.members[data-template="carousel"] ul.members-slides > li[data-len="4"] .back .card-mirror { max-width: calc( 85% - 50px); }
				.members[data-template="carousel"] ul.members-slides > li[data-len="5"] .back .card-mirror { max-width: calc( 80% - 50px); }
				.members[data-template="carousel"] ul.members-slides > li[data-len="6"] .back .card-mirror { max-width: calc( 85% - 50px); }
				.members[data-template="carousel"] ul.members-slides > li[data-len="7"] .back .card-mirror { max-width: calc( 90% - 50px); }
				.members[data-template="carousel"] ul.members-slides > li[data-len="8"] .back .card-mirror { max-width: calc( 95% - 50px); }
				.members[data-template="carousel"] ul.members-slides > li[data-len="9"] .back .card-mirror { max-width: calc( 95% - 50px); }
				
				.members[data-template="carousel"] ul.members-slides > li .back p {
					font-weight: 300;
					font-size: 0.85rem;
					line-height: 1.3;
					opacity: 0.8;
					text-align: justify;
					text-align: center;
					text-wrap:balance;
					letter-spacing: -0.05pt;
					hyphens: auto;
					color: inherit;
				}
				.members[data-template="carousel"] ul.members-slides > li:has(input:checked) .inset { transform:rotateY(180deg); filter: blur(3px); }
				.members[data-template="carousel"] ul.members-slides > li:has(input:checked) .back { transform:rotateY(360deg); }
				
				.members[data-template="carousel"] ul.members-slides > li figure {
					display:block;
					position: relative;
					z-index: 1;
					width: 100%;
					aspect-ratio:2/3;
					background-size:cover;
					background-position:center;
					transform:translate3d(0,0,0);
					/*backface-visibility:hidden;*/
					will-change:transform;
					border-top-right-radius: 15px;
				}
				.members[data-template="carousel"] ul.members-slides > li figcaption{
					display: block;
					position: relative;
					z-index: 2;
					color: white;
					user-select:none;
					background-color: var(--brand_blue);
					padding: 50px 25px 0 25px;
					margin-top:-50px;
					color: white;
				}
				.members[data-template="carousel"] ul.members-slides > li figcaption .wave-clip {
					display:block;
					position: absolute;
					z-index: 1;
					inset:-35px 0 0 0;
					color:var(--wave_color, var(--brand_blue));
					fill:currentColor;
				}
				.members[data-template="carousel"] ul.members-slides > li figcaption .wave-clip path{
					color:var(--wave_color, var(--brand_blue));
					fill:currentColor !important;
				}
				.members[data-template="carousel"] ul.members-slides > li figcaption .caption {
					position: absolute;
					inset:15px;
					z-index: 2;
				}
				.members[data-template="carousel"] ul.members-slides > li figcaption .caption h3 {
					font-weight: 400;
					font-size: 1.5rem;
					line-height: 1.1;
					margin-bottom: 10px;
					text-transform: uppercase;
				}
				.members[data-template="carousel"] ul.members-slides > li figcaption .caption p {
					font-weight: 300;
					opacity: 0.75;
				}
				/*
				.members[data-template="carousel"] ul.members-slides > li button {
					appearence:none;
					border: none;
					outline: none;
					background-color:transparent;
					position: absolute;
					z-index: 10;
					right: 10px;
					bottom: 10px;
					width: 30px;
					height: 30px;
					opacity:0.5;
					outline: 1px solid orange;
					outline: none;
				}
				.members[data-template="carousel"] ul.members-slides > li button:hover {
					opacity: 1;
				}
				.members[data-template="carousel"] ul.members-slides > li button i {
					display: block;
					position: absolute;
					inset:0;
					font-size: 1.5rem;
					line-height: 1;
					text-align: center;
					color: white;
				}
				.members[data-template="carousel"] ul.members-slides > li button i:before { content:"\EA78"; }\
				*/
				.members[data-template="carousel"] ul.members-slides > li label {
					appearence:none;
					border: none;
					outline: none;
					background-color:transparent;
					position: absolute;
					z-index: 10;
					right: 10px;
					bottom: 10px;
					width: 30px;
					height: 30px;
					opacity:0.5;
					outline: 1px solid orange;
					outline: none;
				}
				.members[data-template="carousel"] ul.members-slides > li[data-info="0"] label { display: none; }
				.members[data-template="carousel"] ul.members-slides > li label input {
					position: absolute;
					opacity: 0;
				}				
				.members[data-template="carousel"] ul.members-slides > li label:hover {
					opacity: 1;
				}
				.members[data-template="carousel"] ul.members-slides > li label i {
					display: block;
					position: absolute;
					inset:0;
					font-size: 1.5rem;
					line-height: 1;
					text-align: center;
					color: white;
				}
				.members[data-template="carousel"] ul.members-slides > li label i:before { content:"\EA78"; }
				
				.members[data-template="carousel"] ul.members-index{
					display:flex;
					flex-wrap:nowrap;
					gap:10px;
					margin:12px 0 0 0;
					padding: 10px 0 25px 0;
					list-style:none;
					overflow-x:auto;
					overflow-y:visible;
					-webkit-overflow-scrolling:touch;
					scrollbar-width:none;
					-ms-overflow-style:none;
					touch-action:pan-y;
					overscroll-behavior-x:contain;
					scroll-behavior: smooth;
					position:absolute;
					left:0;
					right:0;
					bottom:0;
					height:auto;
					left: calc(50% + 0px);
					transform: translate3d(-50%,0,0);
					will-change: transform;
					background-color: bisque;
					background-color: transparent;
					background-color: var(--brand_darkblue);
					background: linear-gradient(-90% var(--brand_darkblue), var(--brand_blue));
					z-index: 5;
					width: 100vw;
					
					display: none;
				}

				.members[data-template="carousel"] ul.members-index::-webkit-scrollbar{
					display:none;
				}

				/*
				.members[data-template="carousel"] ul.members-index:before{
					content:"";
					display:block;
					position:absolute;
					inset:-15px 0;
					z-index:-1;
				}
				*/

				.members[data-template="carousel"] ul.members-index > li{
					display: block;
					flex:0 0 100px;
					box-sizing:border-box;
					cursor:grab;
					opacity:0.55;
					pointer-events: auto;
					transform:translate3d(0,0,0);
					will-change:transform,opacity;
				}
				.members[data-template="carousel"] ul.members-index.is-dragging > li{
					cursor:grabbing;
				}
				

				.members[data-template="carousel"] ul.members-index > li.is-active{
					opacity:1;
				}
				.members[data-template="carousel"] li.placeholder {
					opacity: 0;
					pointer-events: none;
				}
				.members[data-template="carousel"] ul.members-index > li figure{
					position:relative;
					border-radius:12px;
					background-size:cover;
					background-position:bottom center;
					width:100%;
					aspect-ratio: 1/1;
					filter:grayscale(1) contrast(0.5) brightness(1.25);
					transform:translate3d(0,0,0) scale(0.9) translateY(0);
					box-shadow: 0 2px 2px 0 black;
					transition:transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
					backface-visibility:hidden;
					will-change:transform,filter;
					pointer-events: none;
					border-radius: 3px;
				}
				.members[data-template="carousel"] ul.members-index > li:hover figure {
					box-shadow: 0 0 0 10px white;
					box-shadow: 0 0 0 5px white;
				}

				.members[data-template="carousel"] ul.members-index > li.is-active figure{
					filter:none;
					transform:translate3d(0,0,0) scale(1.0) translateY(-10px);
					box-shadow: inset 0 0 5px 0 white;
				}

				.members[data-template="carousel"] ul.members-index > li figcaption{
					user-select:none;
					pointer-events: none;
				}

				.members[data-template="carousel"] ul.members-index > li figcaption h3{
					font-size:0.8rem;
					line-height:1.2;
					margin:8px auto;
					color:white;
					text-align:center;
				}

				.members[data-template="carousel"] ul.members-index > li figcaption p{
					font-size:1rem;
					line-height:1.2;
					margin:4px 0 0 0;
					color:white;
				}
			}
			
			@media screen and (min-width:960px)                         {
				#contributors {min-height: 100vh;min-height: 100dvh;min-height: 100svh;padding-bottom: 100px;}
				#contributors .mirror { height: 100%; }
				#contributors .background { }
				#contributors .members[data-template="carousel"] .members-viewport{ height:100%; }
				#contributors .members[data-template="carousel"] .members-track { height: auto; margin-top:-150px; margin-bottom:-50px; padding-top: 150px; padding-bottom: 50px; }
				#contributors .members[data-template="carousel"] ul.members-slides > li figcaption{ height: 200px; }
				#contributors .members[data-template="carousel"] { max-height: calc(100vh - 50px); }
			}
  			@media screen and (min-width:440px) and (max-width:959.8px) { 
				#contributors { height: auto; }
				#contributors .mirror { height: 100%; }
				#contributors .background { }
				#contributors .members[data-template="carousel"] .members-viewport{ height:100%; }
				#contributors .members[data-template="carousel"] .members-track { height: auto; margin-top:-150px; margin-bottom:-50px; padding-top: 150px; padding-bottom: 50px; }
				#contributors .members[data-template="carousel"] ul.members-slides > li figcaption{ height: 150px; }
				#contributors .members[data-template="carousel"] { max-height: calc(100vh - 50px); }
				#contributors .contributors-popover__panel { width: calc(100% - 25px); max-width: calc(100vw - 32px); }
				#contributors-popover .contributors-popover__panel { width: calc(100% - 25px); max-width: calc(100vw - 32px); }
			}
			@media screen and (min-width:  0px) and (max-width:439.8px)   {
				#contributors {height: auto;}
				#contributors .mirror {height: auto;}
				#contributors .background { }
				#contributors .members[data-template="carousel"] .members-viewport{height:auto;padding-bottom: 25px;}
				#contributors .members[data-template="carousel"] .members-track { height: auto; margin-top:-150px; margin-bottom:-50px; padding-top: 150px; padding-bottom: 50px; }
				#contributors .members[data-template="carousel"] ul.members-slides > li figcaption{ height: 150px; }
				#contributors .members[data-template="carousel"] { max-height:none; padding-bottom: 25px; }
				#contributors .contributors-popover__panel { width: calc(100% - 25px); max-width: calc(100vw - 32px); }
				#contributors-popover .contributors-popover__panel { width: calc(100% - 25px); max-width: calc(100vw - 32px); }
			}
			

			/* wide    DESKTOP */ @media screen and (min-width:1600px)                          {}
			/* average DESKTOP */ @media screen and (min-width:1040px) and (max-width:1599.8px) {}
			/* average TABLET  */ @media screen and (min-width: 960px) and (max-width:1039.8px) {}
			/* large   MOBILE  */ @media screen and (min-width: 440px) and (max-width: 959.8px) {}
			/* average MOBILE  */ @media screen and (min-width:   0px) and (max-width: 439.8px) {}
			
			/*          XXXL   */ @media screen and (min-width:1440px) and (max-width:1599.8px) {}
			/*           XXL   */ @media screen and (min-width:1240px) and (max-width:1439.8px) {}
			/*            XL   */ @media screen and (min-width:1040px) and (max-width:1239.8px) {}
			/*             L   */ @media screen and (min-width: 960px) and (max-width:1039.8px) {}
			/*             M   */ @media screen and (min-width: 860px) and (max-width: 959.8px) {}
			/*            MS   */ @media screen and (min-width: 700px) and (max-width: 859.8px) {}
			/*             S   */ @media screen and (min-width: 580px) and (max-width: 699.8px) {}
			/*            XS   */ @media screen and (min-width: 520px) and (max-width: 579.8px) {}
			/*           XXS   */ @media screen and (min-width: 440px) and (max-width: 519.8px) {}
			/*          XXXS   */ @media screen and (min-width: 330px) and (max-width: 439.8px) {}
			/*         XXXXS   */ @media screen and (min-width:   0px) and (max-width: 329.8px) {}

			/* XXL       XXL4  */ @media screen and (min-width:1400px) and (max-width:1439.8px) {}
			/* XXL       XXL3  */ @media screen and (min-width:1340px) and (max-width:1399.8px) {}
			/* XXL       XXL2  */ @media screen and (min-width:1300px) and (max-width:1339.8px) {}
			/* XXL       XXL1  */ @media screen and (min-width:1240px) and (max-width:1299.8px) {}
			/* XL         XL4  */ @media screen and (min-width:1200px) and (max-width:1239.8px) {}
			/* XL         XL3  */ @media screen and (min-width:1140px) and (max-width:1199.8px) {}
			/* XL         XL2  */ @media screen and (min-width:1100px) and (max-width:1139.8px) {}
			/* XL         XL1  */ @media screen and (min-width:1040px) and (max-width:1099.8px) {}
			/* M           M2  */ @media screen and (min-width: 900px) and (max-width: 959.8px) {}
			/* M           M1  */ @media screen and (min-width: 860px) and (max-width: 899.8px) {}
			/* XXXS     XXXS2  */ @media screen and (min-width: 400px) and (max-width: 439.8px) {}
			/* XXXS     XXXS1  */ @media screen and (min-width: 330px) and (max-width: 399.8px) {}
