/* body {
	
	background-image: url("background.jpg");
	background-repeat:no-repeat;
	
	
	display: flex;
	background-size:inherit ; 
} */

@import url('https://fonts.googleapis.com/css?family=Poppins');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

:root {
	
	--color-text-main: white; /*Bianco */
	--color-text-secondary:#999;  /* Grigio chiaro */
	
	--color-text-accent-1:#f44336; /* Rosso */
	--color-text-accent-2:#f05422; /* Arancione */
	--color-text-accent-3:#e91e63; /* Fucsia */
	--color-text-accent-4:#4676CD; /* Blu */
	--color-text-accent-4-variant: #3273dc; /* Blu elettrico */
	
	--color-bg-dark-0: #010202; /* Praticamente nero */
	--color-bg-dark-1:#111; /* Quasi nero */
	--color-bg-dark-2:#222; /* Grigio scuro */
	--color-bg-dark-3:#424242; /* Grigio */
	--color-bg-accent-1: #12020b; /* Blu molto molto scuro */
	--color-bg-accent-2: #0B121B; /* Blu molto scuro */
	--color-bg-accent-3: #0d131a; /* Blu scuro */
	
	--color-bg-success:#4CAF50; /* Verde */
	--color-bg-success-variant: #43A047; /* Verde - variante */
	
	--color-bg-back: linear-gradient(180deg, var(--color-bg-accent-1), var(--color-bg-accent-2)); 
	--color-bg-bouble: linear-gradient(180deg, var(--color-bg-accent-3), var(--color-bg-dark-0));
	
	--filter-calendar: invert(100%);
}

.light-theme {
	
	 --color-text-main: #222;
    --color-text-secondary: #292929;
    --color-text-accent-1: #f44336;
    --color-text-accent-2: #f05422;
    --color-text-accent-3: #e91e63;
    --color-text-accent-4: #4676CD;
    --color-text-accent-4-variant: #3273dc;
    --color-bg-dark-0: #ffececf2;
    --color-bg-dark-2: #ddd;
    --color-bg-dark-3: #d5bbbb;
    --color-bg-accent-1: #ffdff1;
    --color-bg-accent-2: #ffffff;
    --color-bg-accent-3: #fefeff;
    --color-bg-success: #4CAF50;
    --color-bg-success-variant: #43A047;
    --color-bg-back: linear-gradient(180deg, var(--color-bg-accent-1), var(--color-bg-accent-2));
    --color-bg-bouble: linear-gradient(180deg, var(--color-bg-accent-3), var(--color-bg-dark-0));
    
    --filter-calendar: none;
}

* {
    box-sizing: border-box;
    overscroll-behavior: none;
}

html {
	overflow: hidden;
	position:relative;
	font-family: 'Poppins', "Roboto", sans-serif;
	width: 100%;
}

#logo {
	cursor: pointer;
	grid-area: a;
}

a {
    color: var(--color-text-accent-4-variant);
    cursor: pointer;
    text-decoration: none;
    cursor:pointer;
}
a:hover {
    color: var(--color-text-main);
}


.btn {
	padding: 20px 32px;
	background: inherit;
	border: 1px solid #5CC4C0;
	color: #5CC4C0;
	font-size: 32px;
	cursor: pointer;
	letter-spacing: .5px;
	text-transform: uppercase;
	font-family: 'Poppins';
	transition: all .5s linear;
}



.btn:hover {
	color: var(--color-text-main);
	background: #5CC4C0;
}

.fa {
	margin-right: 20px;
	-webkit-animation: spinning ease-in-out;
	animation: spinning ease-in-out;
}

@-webkit-keyframes spinning {
	from {-webkit-transform: rotate(0deg)
	}
	
	to {
		-webkit-transform: rotate(360deg)
	}
}
@keyframes spinning {
	from {
		-webkit-transform: rotate(0deg)
	}
	to {
		-webkit-transform: rotate(360deg)
	}
}

/*circular buttons*/
[class*="fab"] {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-tap-highlight-color: transparent;
}

.fab-shadow {
	width: 0;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 7;
	transition: opacity 0.5s, width 0s 0.5s;
}

.fab-button {
	width: 64px;
	height: 64px;
	border-radius: 100%;
	margin: 16px;
	display: table;
	background: #2196f3;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
	position: relative;
	transition: box-shadow 0.2s;
	cursor:pointer;
}

.fab-button.red {
	background: var(--color-text-accent-1);
	background-image: -webkit-linear-gradient(-45deg, rgba(255,255,220,.3) 0%, transparent 100%);
	background-image: -moz-linear-gradient(-45deg, rgba(255,255,220,.3) 0%, transparent 100%);
	background-image: -o-linear-gradient(-45deg, rgba(255,255,220,.3) 0%, transparent 100%);
	background-image: -ms-linear-gradient(-45deg, rgba(255,255,220,.3) 0%, transparent 100%);
}

.fab-button.pink {
	background: var(--color-text-accent-3);
	background-image: -webkit-linear-gradient(-45deg, rgba(255,255,220,.3) 0%, transparent 100%);
	background-image: -moz-linear-gradient(-45deg, rgba(255,255,220,.3) 0%, transparent 100%);
	background-image: -o-linear-gradient(-45deg, rgba(255,255,220,.3) 0%, transparent 100%);
	background-image: -ms-linear-gradient(-45deg, rgba(255,255,220,.3) 0%, transparent 100%);
}

.fab-button:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.fab-button.open {
	z-index: 450;
	pointer-events: none;
}

.fab-button.open ~ .fab-shadow {
	width: 100%;
	opacity: 1;
	transition: opacity 0.5s, width 0s;
}

.fab-button div {
	width: 6px;
	height: 6px;
	background: #fff;
	margin: 29px;
	border-radius: 100%;
	box-shadow: 0 -11px #fff, 0 11px #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0
		#fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0
		#fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff, 0 0 #fff;
	transition: all 0.5s cubic-bezier(0.5, 2, 0.5, 1);
    pointer-events: none;
}

.fab-button.open .dot {
	width: 4px;
	height: 4px;
	margin: 30px;
	border-radius: 0;
	box-shadow: 0 0 #fff, 0 0 #fff, 0 -3px #fff, 0 3px #fff, -3px 0 #fff,
		3px 0 #fff, 0 -6px #fff, 0 6px #fff, -6px 0 #fff, 6px 0 #fff, 0 -9px
		#fff, 0 9px #fff, -9px 0 #fff, 9px 0 #fff, 0 -12px #fff, 0 12px #fff,
		-12px 0 #fff, 12px 0 #fff;
	transform: rotate(45deg);
}

.fab-button .plus {
	width: 4px;
	height: 4px;
	margin: 30px;
	border-radius: 0;
	box-shadow: 0 0 #fff, 0 0 #fff, 0 -3px #fff, 0 3px #fff, -3px 0 #fff,
		3px 0 #fff, 0 -6px #fff, 0 6px #fff, -6px 0 #fff, 6px 0 #fff, 0 -9px
		#fff, 0 9px #fff, -9px 0 #fff, 9px 0 #fff, 0 -12px #fff, 0 12px #fff,
		-12px 0 #fff, 12px 0 #fff;
}

.fab-button.open .plus {
	transform: rotate(45deg);
}

.fab-button .menu {
	width: 4px;
	height: 4px;
	margin: 30px;
	border-radius: 0;
	box-shadow: -12px -9px #fff, -9px -9px #fff, -6px -9px #fff, -3px -9px
		#fff, 0 -9px #fff, 3px -9px #fff, 6px -9px #fff, 9px -9px #fff, 12px
		-9px #fff, -12px 0 #fff, -9px 0 #fff, -6px 0 #fff, -3px 0 #fff, 0 0
		#fff, 3px 0 #fff, 6px 0 #fff, 9px 0 #fff, 12px 0 #fff, -12px 9px #fff,
		-9px 9px #fff, -6px 9px #fff, -3px 9px #fff, 0 9px #fff, 3px 9px #fff,
		6px 9px #fff, 9px 9px #fff, 12px 9px #fff;
}

.fab-button.open .menu {
	box-shadow: 0 -12px #fff, 0 -9px #fff, 0 -6px #fff, 0 -3px #fff, 0 0
		#fff, 0 -3px #fff, 0 -6px #fff, 0 -9px #fff, 0 -12px #fff, -12px 0
		#fff, -9px 0 #fff, -6px 0 #fff, -3px 0 #fff, 0 0 #fff, 3px 0 #fff, 6px
		0 #fff, 9px 0 #fff, 12px 0 #fff, 0 12px #fff, 0 9px #fff, 0 6px #fff,
		0 3px #fff, 0 0 #fff, 0 3px #fff, 0 6px #fff, 0 9px #fff, 0 12px #fff;
	transform: rotate(45deg);
}

.fab-button.open+.fab-options, .fab-options:active {
	width: auto;
	overflow: initial;
}

.fab-options {
	position: absolute;
	right: 3.5rem;
	width: 0;
	overflow: hidden;
	z-index: 8;
	margin: -8px 0 0 20px;
	text-align: center;
	left: 50%;
	transform: translateX(-143px);
}

.fab-options .fab-option {
	display: table;
	color: var(--color-text-main);
	margin: 8px;
	text-decoration: none !important;
	cursor:pointer;
}

.fab-options .fab-option * {
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
	transition: box-shadow 0.2s;
}


.fab-options .fab-option span {
	font-size: 1rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 6px 8px;
	margin: 0;
	background: var(--color-bg-dark-3);
	position: relative;
	left: 0;
	/* transform: translateX(-122px); */
	border-radius: 2px;
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	width: 230px;
	box-sizing: border-box;
	align-items:center;
}

.fab-options .fab-option i {
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background: #fff;
	padding: 6px;
	color: var(--color-bg-dark-3);
}

/* loading */
#content {
	margin: 0 auto;
	padding-bottom: 50px;
	width: 80%;
	max-width: 978px;
}

h1 {
	font-size: 1.5rem;
	margin: 0;
	padding: 0;
}

/* The Loader */
#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	overflow: hidden;
}

.no-js #loader-wrapper {
	display: none;
}

#loader {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #16a085;
	-webkit-animation: spin 1.7s linear infinite;
	animation: spin 1.7s linear infinite;
	z-index: 11;
}

#loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #e74c3c;
	-webkit-animation: spin-reverse .6s linear infinite;
	animation: spin-reverse .6s linear infinite;
}

#loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #f9c922;
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
}

@-webkit-keyframes spin { 
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform:rotate(360deg);
	}
}
@keyframes spin { 
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform:rotate(360deg);   
		transform:rotate(360deg);  
	}
}
@-webkit-keyframes spin-reverse { 
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform:rotate(-360deg);  
	}
}
@keyframes spin-reverse { 

	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-webkit-transform:rotate(-360deg);
		transform:rotate(-360deg);
	}
}
#loader-wrapper .loader-section {
	position: fixed;
	top: 0;
	width: 51%;
	height: 100%;
	background: var(--color-bg-accent-2);
	z-index: 10;
}

#loader-wrapper .loader-section.section-left {
	left: 0;
}

#loader-wrapper .loader-section.section-right {
	right: 0;
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
	opacity: 0;
	transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
	visibility: hidden;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	transition: all 0.3s 1s ease-out;
}

/*body*/
body {
	background: linear-gradient(181deg, var(--color-bg-accent-1), var(--color-bg-accent-2));
	font-size: 12px;
	overflow: hidden;
	height: 100%;
	margin: 0;
	position: static;
	width: 100%;
	background-image: url(/resources/images/GH_BG_1.png), linear-gradient(178deg, var(--color-bg-accent-3), var(--color-bg-dark-0));
	background-size: inherit;
	background-position-x: center;
	background-blend-mode: overlay;
	background-size: cover;
	height: 100dvh;
}

.site-wrap {
	display: grid;
	grid-template-columns: 250px 1fr;
	transition: all 400ms ease;
	height: 100dvh;
	background: linear-gradient(181deg, var(--color-bg-accent-1), var(--color-bg-accent-2));
}

.site-nav {
	background: linear-gradient(178deg, var(--color-bg-accent-3), var(--color-bg-dark-0));
	color: var(--color-text-main);
	position: relative;
	/* height: calc(100% - 2rem); */
	overflow-y: auto;
	/* overflow-x: hidden; */
	margin: 1rem .5rem;
	border-radius: 1rem;
	display: flex;
	justify-content: center;
	box-shadow: 0px 5px 5px 2px #0005;
	background-image: url(/resources/images/GH_BG_1.png), linear-gradient(178deg, var(--color-bg-accent-3), var(--color-bg-dark-0));
	background-size: cover;
	background-position-x: center;
	background-blend-mode: overlay;
}

.site-nav-open {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: flex-start;
    justify-items: center;
    align-items: center;
    padding-block: 2rem;
    gap: 1rem;
    width: 100%;
    /* height: calc(100% - 2rem); */
    height: calc(100dvh - 2rem);
    overflow-y: auto;
}

.site-nav-closed {
    position: absolute;
    top: 0rem;
    right: 0;
    opacity: 0;
    z-index: 3;
}

.site-nav a {
	color: inherit;
}

.site-nav ul {
	margin-bottom: auto;
	width: 100%;
	list-style: none;
	padding: 0;
	/* overflow-y: auto; */
	/* background: linear-gradient(178deg, #0002, transparent); */
	flex-grow: 1;
}

.site-nav ul li div {
	display: block;
	padding: 0.75rem 0.5rem 0.75rem 2rem;
	position: relative;
	cursor:pointer;
	user-select:none;
}

.site-nav ul li div:hover, .site-nav ul li div:focus {
	color: var(--color-text-accent-4-variant);
}

.site-nav ul li.active>div {
	background: linear-gradient(to right, var(--color-bg-dark-3), transparent);
}

.site-nav ul li.active>div::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	background: var(--color-text-accent-4);
	width: 5px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

.site-nav ul ul {
	padding-left: 1rem;
	margin-block: 0.2rem;
}

.site-nav ul ul div {
	padding-top: 0.4rem;
	padding-bottom: 0.4rem;
	text-transform: capitalize;
}

.note {
	width: 80%;
	background: var(--color-bg-accent-2);
	border-radius: 10px;
	padding: 1rem;
	margin-bottom: 0;
	box-shadow: 0px 3px 5px 2px #0005;
}

.note h3 {
	font-size: 0.9rem;
	margin: 0 0 0.4rem 0;
}

.note p {
	color: #717783;
	margin: 0;
}

.name {
	font-size: 1.3rem;
	position: relative;
	display: flex;
	justify-content: center;
}

.name svg {
	position: absolute;
	fill: var(--color-text-main);
	width: 16px;
	height: 16px;
	right: 0;
	top: 7px;
}
/* .name::after { */
/* content: ""; */
/* width: 8px; */
/* height: 8px; */
/* background: #4777CE; */
/* border-radius: 20px; */
/* position: absolute; */
/* top: 6px; */
/* right: -2px; */
/* } */
main {
	height: 100%;
	/* background: linear-gradient(181deg, var(--color-bg-accent-1), var(--color-bg-accent-2)); */
	/* margin-left: -2rem; */
	position: relative;
	/* box-shadow: inset 7px 0px 10px -10px black; */
	display: flex;
	flex-direction: column;
	position: relative;
	min-width: -webkit-fill-available;
	max-height: 100dvh;
}

main>header {
	padding: 3rem 3rem 0 3rem;
	display: flex;
	flex-direction: column;
	/* background: linear-gradient(181deg, var(--color-text-accent-3)30, var(--color-bg-accent-2)); */
	/* box-shadow: inset 7px 0px 10px -10px black; */
	position:relative;
	/* height: 12rem; */
	min-height: fit-content;
}

div.content-columns {
	/* padding: 3rem; */
	display: flex;
	height: calc(100% - 11rem);
	overflow-y: auto;
	background: linear-gradient(178deg, var(--color-bg-accent-3), var(--color-bg-dark-0));
	position: absolute;
	top: 10rem;
	left: 1.5rem;
	width: calc(100% - 3rem);
	border-radius: 1.5rem;
	box-shadow: 0px 5px 5px 2px #0005;
	overscroll-behavior: none;
	/* z-index: -1; */
}


div.content-columns.full-height {
	height: calc(100% - 2rem);
	top: 1rem;
}

.content-columns .col {
	/* min-height: 500px; */
	width: 100%;
	padding: 1rem;
	background: #EBECEE;
	margin-right: 1rem;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.04);
	border-radius: 5px;
	overflow-y: scroll;
	display: flex;
	flex-direction: column;
}

.content-columns .col:nth-child(1) {
	border-top: 4px solid #50AAEE;
}

.content-columns .col:nth-child(2) {
	border-top: 4px solid #D56EC7;
}

.content-columns .col:nth-child(3) {
	border-top: 4px solid #E37E55;
}

.content-columns .col:nth-child(4) {
	border-top: 4px solid #EBBD41;
}

.item {
	background: var(--color-text-main);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.07);
	min-height: 50px;
	border-radius: 5px;
	margin: 0 0 0.5rem 0;
	display: flex;
	vertical-align: middle;
	justify-content: center;
	line-height: inherit;
	flex-grow: 1;
	margin: 5px;
	padding: 5px;
}

.nav-tabs div {
	display:none;
	margin-right: 2rem;
	font-size: 1.15rem;
	color: #8C939E;
	position: relative;
}

.nav-tabs div:hover {
	color: var(--color-text-accent-3);
	cursor:pointer;
}

.nav-tabs div.activeA {
	color: #d2e1f9;
	font-weight: 600;
}

.nav-tabs div.activeA span {
	background: #D9DFEA;
	color: #5887D1;
}


.invisible {
	display: none !important;
}

.breadcrumbs a:hover {
	cursor: pointer;
}

/* modal */
.modal-wrapper {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: rgb(38 39 40/ 75%);
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	z-index: 25;
}

.blur {
	-webkit-filter: blur(2px);
	-moz-filter: blur(2px);
	-o-filter: blur(2px);
	-ms-filter: blur(2px);
	filter: blur(2px);
}

.head {
	overflow: hidden;
	border-bottom: 1px solid;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	padding: 0.25rem 1rem;
	background: var(--color-bg-dark-0);
	align-items: center;
}

.modal-wrapper.open {
	opacity: 1;
	visibility: visible;
}

.modal {
	width: 800px;
	height: 640px;
	max-height: 100%;
	display: block;
	transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
	transform-origin: top;
	opacity: 0;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.04);
	border-radius: 0.5rem;
	overflow: hidden;
	margin-top: 100%;
}

.modal-wrapper.open .modal {
	margin-top: -1px;
	opacity: 1;
	backdrop-filter: blur(5px);
}

.btn-close {
	width: 32px;
	height: 32px;
	display: block;
	/* float:right; */
}

.btn-close::before, .btn-close::after {
	content: '';
	width: 32px;
	height: 6px;
	display: block;
	background: #fff;
}

.btn-close::before {
	margin-top: 12px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn-close::after {
	margin-top: -6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.content {
	padding: 3em;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	height: 100%;
	margin-bottom: 3em;
	background-image: var(--color-bg-back);
	position:relative;
}

.submitModal {
	
	position:relative;
	
}

.submitModal-results {
	
    transition: all 400ms ease;
    background: var(--color-bg-dark-2);
    box-sizing: border-box;
    color: var(--color-bg-success-variant);
    font-size: 1.2em;
    font-weight: 600;
/*     position: absolute; */
    width: 100%;
    top: 0;
    z-index: 0;
    overflow: hidden;
    transform-origin: top;
    height:0;
    margin-bottom: 2rem;
}

.submitModal-results-body {
    transition: all 400ms ease;
    box-sizing: border-box;
    color: var(--color-text-accent-4);
    font-size: 1.2em;
    font-weight: 600;
    width: 100%;
    top: 0;
    z-index: 0;
    overflow: hidden;
    transform-origin: top;
    height: 0;
    margin-bottom: 2rem;
}

.submitModal-results.show, .submitModal-results-body.show {
	padding: 0.5rem;
	animation: modalResults 400ms 200ms forwards;
}


@keyframes modalResults { 
	0% {
	 	height:auto;
		transform: scaleY(0) translateY(0);
	}
	
	30% {
		height:auto;
		transform: scaleY(1) translateY(0);
	}
	100% {
		height:auto;
		transform: scaleY(1) translateY(3.5rem);
	}

}

.content .submitModal-results h5{
	color:var(--color-bg-success-variant);
}

.content .submitModal-results th{
	color:var(--color-bg-success-variant);
}

.content .submitModal-results .submitModal-error {
	color:var(--color-text-accent-1);
}

/* scrollbar */
*::-webkit-scrollbar-track {
	/* background: hsla(0, 0%, 100%, .25); */
}

*::-webkit-scrollbar {
	width: 6px !important;
	height: 6px !important;
}

*::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.55);
	background-color: var(--color-text-accent-3);
	border-radius: 1vh;
}

.typologyColumn {
    display: flex;
    flex-direction: column;
    color: white;
    margin-bottom: 2rem;
    color: var(--color-text-accent-3);
}
.typologyColumnContent {
    display: flex;
    flex-direction: column;
    margin-left: 1rem;
}
.elementCheckBoxes {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--color-text-accent-3);
    color: var(--color-text-accent-1);
    text-transform: capitalize;
    letter-spacing: .2rem;
}
.content h3 {
    font-size: 1.5em;
    margin-bottom: .6666em;
    padding-right: 10px;
    margin-top: .6666em;
}


/* Form */
.form input[type="checkbox"] {
	display: flex;
}
.form input:not([type="checkbox"]):not([type="radio"]), .form select, .sumOf>.year-input {
	font-family: "Roboto", sans-serif;
	outline: 0;
	background: var(--color-bg-dark-2);
	width: 100%;
	border: 0;
	/* margin: 0 0 15px; */
	padding: 15px;
	box-sizing: border-box;
	font-size: 14px;
	color: var(--color-text-main);
	border-radius: 50vh;
	transition: all 150ms ease;
}

.form:not(.register-form) input:not([type="checkbox"]):not([type="radio"]):last-of-type, .form:not(.register-form)  select:last-of-type {
    margin-bottom: 1rem;
}

.form label {
	color: var(--color-text-main);
	display: flex;
	gap: 1rem;
	align-items: center;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 1rem;
  /* padding: 0.4rem; */
  border: 2px solid var(--color-text-accent-3);
  border-radius: 0.5rem;
  position:relative;
  cursor:pointer;
  align-items: center;
}
input[type="checkbox"]::before {
  content: "check";
  font-family: 'Material Icons';
  font-weight: 600;
  font-size: 1.2rem;
  transform: scale(0);
  color: var(--color-text-accent-3);
  display: flex;
  padding: .1rem;
}
input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.radio-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
}
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 1rem;
  border: 2px solid var(--color-text-accent-3);
  border-radius: 50%;
  position:relative;
  cursor:pointer;
  margin: 0;
  align-items: center;
}
input[type="radio"]::before {
  content: "check";
  font-family: 'Material Icons';
  font-weight: 600;
  font-size: 1.2rem;
  transform: scale(0);
  color: var(--color-text-accent-3);
  display: flex;
  padding: .1rem;
}
input[type="radio"]:checked::before {
  transform: scale(1);
}

.typologies {
	display: flex;
	flex-direction: row;
	width: 100%;
	gap: 1em;
}

.typologyDiv {
	font-family: "Roboto", sans-serif;
	outline: 0;
	background: var(--color-bg-accent-2);
	width: 100%;
	border: 0;
	margin: 0 0 15px;
	padding: 15px;
	box-sizing: border-box;
	font-size: 14px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 1rem;
	gap: 1rem;
	box-shadow: 9px 12px 10px -10px #0005;
}

.categoryBar {
	border: 0;
	margin: 0 0 15px;
	box-sizing: border-box;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	width: 100%;
	justify-content: space-between;
	/* background: var(--color-bg-accent-2); */
	border-radius: 0.25rem;
	/* overflow-x: auto; */
	align-items: baseline;
	padding: .5rem;
}

.categories {
	animation-direction: alternate;
	direction: ltr;
	animation-direction: alternate;
	font-family: "Roboto", sans-serif;
	outline: 0;
	margin: 15px;
	display: flex;
	flex-direction: row;
	gap: 0.5rem;
	justify-content: space-between;
	align-items: center;
}

.categoryDiv {
	border: 0;
	box-sizing: border-box;
	font-size: 1rem;
	white-space: nowrap;
	/* display: flex; */
	overflow: hidden;
	/* writing-mode: vertical-lr; */
	text-orientation: sideways-right;
	text-transform: capitalize;
}

.categoryCheckBox {
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	outline: 0;
	background: var(--color-bg-success);
	border: 0;
	width: 24px;
	height: 24px;
	color: #FFFFFF;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1;
	border-radius: 0.25rem;
}

.typologyCheckBox {
	font-family: "Roboto", sans-serif;
	outline: 0;
	background: var(--color-bg-success);
	border: 0;
	/* padding: 5px; */
	color: #FFFFFF;
	font-size: 5px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1;
	border-radius: 0.25rem;
	padding: 1em;
}

.typologyCheckBox .checkSvg {
	width: 4em;
}

.categoryCheckBox .checkSvg {
	width: 16px;
}

.checkSvg>path {
	fill: var(--color-bg-success);
}

.activeCheckBox {
	background: var(--color-bg-success-variant);
}

.activeCheckBox .checkSvg>path {
	fill: #333;
}

.typologyCheckBox:hover {
	background: var(--color-bg-success-variant);
}

.categoryCheckBox:hover {
	background: var(--color-bg-success-variant);
}

.activeCheckBox:hover {
	background: var(--color-bg-success);
}

.form button {
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	outline: 0;
	background: var(--color-bg-success);
	width: 100%;
	border: 0;
	padding: 15px;
	color: #FFFFFF;
	font-size: 14px;
	transition: all 150ms ease;
	cursor: pointer;
	border-radius: 50vh;
	z-index: 2;
	position: relative;
	overflow: hidden;
	transition: all 300ms ease;
	background-image: -webkit-linear-gradient(92deg, rgba(0,0,0, .2) 0%, transparent 100%);
}

.form button[disabled] {
	cursor: default;
    opacity: 0.7;
}

.form button:not([disabled]):hover, .form button:not([disabled]):active, .form button:not([disabled]):focus {
	background: var(--color-bg-success-variant);
}

.form button[variant="1"] {
	
	background: var(--color-text-accent-1);
	
}

.form button[variant="1"]:not([disabled]):hover {
	background:var(--color-text-accent-2);
	background-image: -webkit-linear-gradient(92deg, rgba(0,0,0, .2) 0%, transparent 100%);
}

.form button.negative {
	background: var(--color-text-accent-1);
}
.form button.negative:not([disabled]):hover {
	background: var(--color-text-accent-3);
}

.form button[variant="2"] {
	
	background:var(--color-text-accent-3);
	
}

.form button[variant="2"]:not([disabled]):hover {
	background:var(--color-text-accent-3);
	background-image: -webkit-linear-gradient(92deg, rgba(0,0,0, .4) 0%, rgba(0,0,0, .2) 100%);
}

.form .message {
	margin: 15px 0 0;
	color: #b3b3b3;
	font-size: 12px;
}

.form .message a {
	color: var(--color-bg-success);
	text-decoration: none;
}

.register-form {
	padding: 0.5em;
}

.container {
	position: relative;
	z-index: 1;
	max-width: 300px;
	margin: 0 auto;
	overflow-y: auto;
}

.container:before, .container:after {
	content: "";
	display: block;
	clear: both;
}

.container .info {
	margin: 50px auto;
	text-align: center;
}

.container .info h1 {
	margin: 0 0 15px;
	padding: 0;
	font-size: 36px;
	font-weight: 300;
	color: #1a1a1a;
}

.container .info span {
	color: #4d4d4d;
	font-size: 12px;
}

.container .info span a {
	color: #000000;
	text-decoration: none;
}

.container .info span .fa {
	color: #EF3B3A;
}

/* delete button */
.del-btn {
	display: block;
	position: relative;
	width: 200px;
	height: 80px;
	transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1), height 0.8s
		cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.8s
		cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1), height 0.8s
		cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s
		cubic-bezier(0.175, 0.885, 0.32, 1.275);
	transition: width 0.8s cubic-bezier(0.23, 1, 0.32, 1), height 0.8s
		cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s
		cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.8s
		cubic-bezier(0.175, 0.885, 0.32, 1.275);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	text-align: center;
}

.del-btn-front {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	line-height: 80px;
	background-color: var(--color-text-accent-1);
	color: #fff;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	transition: background 0.15s ease, line-height 0.8s
		cubic-bezier(0.23, 1, 0.32, 1);
}

.del-btn-front:hover {
	background-color: #f77066;
}

.del-btn.is-open .del-btn-front {
	pointer-events: none;
	line-height: 160px;
}

.del-btn-back {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #eee;
	color: var(--color-bg-dark-2);
	-webkit-transform: translateZ(-2px) rotateX(180deg);
	transform: translateZ(-2px) rotateX(180deg);
	overflow: hidden;
	transition: box-shadow 0.8s ease;
}

.del-btn-back p {
	margin-top: 27px;
	margin-bottom: 25px;
}

.del-btn-back button {
	padding: 12px 20px;
	width: 30%;
	margin: 0 5px;
	background-color: transparent;
	border: 0;
	border-radius: 2px;
	font-size: 1em;
	cursor: pointer;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	transition: background 0.15s ease;
}

.del-btn-back button:focus {
	outline: 0;
}

.del-btn-back button.yes {
	background-color: #2196F3;
	color: #fff;
}

.del-btn-back button.yes:hover {
	background-color: #51adf6;
}

.del-btn-back button.no {
	color: #2196F3;
}

.del-btn-back button.no:hover {
	background-color: #ddd;
}

.del-btn.is-open .del-btn-back {
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.del-btn[data-direction="left"] .del-btn-back, .del-btn[data-direction="right"] .del-btn-back
	{
	-webkit-transform: translateZ(-2px) rotateY(180deg);
	transform: translateZ(-2px) rotateY(180deg);
}

.del-btn.is-open {
	width: 400px;
	height: 160px;
}

.del-btn[data-direction="top"].is-open {
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
}

.del-btn[data-direction="right"].is-open {
	-webkit-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.del-btn[data-direction="bottom"].is-open {
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}

.del-btn[data-direction="left"].is-open {
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}

/* ========================== GESTIONE PUNTEGGIO SINGOLO ======================================== */
.teamPageBody {
	display: flex;
	flex-direction: row;
	min-width: 100%;
	justify-content: center;
}

.teamPageBody * {
	width: -webkit-fill-available;
	text-align: center;
}

.presentTeamContainer {
	display: flex;
	flex-direction: column;
	margin-right: 10px;
	overflow-y: auto;
	width: 50%;
	justify-content: start;
	align-items: center;
	gap: 1rem;
	padding-block: 1rem;
}

.presentTeamHeader {
	height: 40px;
	min-width: 100%;
	display: flex;
}

.presentTeamHeader>a {
	padding: 5px;
}

.presentTeamRow {
	box-shadow: 0px 0px 2px 1px var(--color-text-secondary);
	width: 50%;
	border-radius: 0.25rem;
}

.presentTeamContent {
	background: #0b4442;
	display: flex;
	justify-content: center;
	text-align: center;
	flex-flow: wrap;
}

.presentTeamHeader a {
	display: flex;
	color: white !important;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
}

.createTeamBody {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding-top: 2rem;
}

.createTeamHeader {
	font-family: "roboto", sans-serif;
	flex-direction: column;
	display: flex;
	height: 70px;
	vertical-align: middle;
	justify-content: center;
	font-size: large;
	letter-spacing: 0.25rem;
	color: white !important;
	text-transform: uppercase;
}

.createTeamColumns {
	display: flex;
	flex-direction: row;
	overflow: auto;
}

.createTeamPreview {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	width: 10px;
	border-radius: 0.25rem;
	background: #0f1010;
	margin: 0.25rem;
}

.createTeamPreviewItem {
	padding: 15px;
	/* background: #aab1b3; */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.createTeamPreviewItem input:not([readonly] ) {
	background-color: rgb(255, 255, 255, 1);
	padding-block: 0.25rem;
}

.createTeamPreviewItem input[readonly] {
	background-color: rgb(255, 255, 255, 0.0);
}

.createTeamBody input, .createTeamBody select {
	border: none;
	outline: none;
	padding-top: 2px;
	padding-bottom: 2px;
	border-radius: 3px;
	/* width: 50%; */
}

#createTeamButton, #addScoreButton {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	height: 50px;
	border-radius: 0.25rem;
	padding: 1rem;
	font-size: large;
	font-weight: 800;
	color: var(--color-text-secondary);
	border: 1px solid var(--color-text-secondary);
	cursor: pointer;
	box-shadow: 0px 2px 4px 2px #00000020;
}

#createTeamButton:hover, #addScoreButton:hover {
	box-shadow: 0px 2px 7px 1px var(--color-text-secondary)99960;
}

#inputScoreBox::-webkit-outer-spin-button, #inputScoreBox::-webkit-inner-spin-button
	{
	-webkit-appearance: none;
	margin: 0;
}

.createTeamAthleteListColumn {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	width: 10px;
}

.createTeamInputFilter {
	height: 40px;
	padding: 5px;
	margin: 0px 30px;
}

.createTeamAthleteList {
	display: flex;
	flex-direction: column;
	max-height: 399px;
	overflow-y: auto;
	gap: 0.25rem;
}

.createTeamAthlete {
	height: 30px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.createTeamAddAthlete {
	/* width: 30px; */
	display: flex;
	width: fit-content;
}

.createTeamAddAthlete:hover>svg>* {
	stroke: blue;
}

.createTeamAddAthlete:hover {
	cursor: pointer;
}

.createTeamAddAthlete>input {
	background: none;
}

.createTeamAthleteInfo {
	padding-right: 22px;
	display: flex;
	width: 50%;
}

.teamPageBody .delete {
	background: #de7272;
	margin: 3px;
}

h1.title {
	color: var(--color-text-main);
	text-transform: capitalize;
	letter-spacing: 0.2rem;
	grid-area: b;
	margin-block: 1rem;
	margin: 0;
	padding: 0;
	font-size: 2rem;
}

h1.title > span.secondary {
    color: var(--color-text-accent-2);
}

.title-container {
	display : flex;
	align-items: center;
	margin-block: .5rem;
}

.title-logo {
	display : none;
}


.breadcrumbs {
	gap: 0.5rem;
	display: flex;
	grid-area: a;
}

.chartPage {
	display: flex;
	flex-direction: column;
	/* border: 1px solid; */
	color: #333;
	width: 100%;
	overflow-x: auto;
	height: 100%;
	position: relative;
	overflow-y: auto;
}

.chart-row {
	display: flex;
	flex-direction: row;
	/* border-bottom: 2px solid; */
	width: -webkit-fill-available;
}

.chart-cell {
	display: flex;
	flex-grow: 1;
	width: 100px;
	margin-right: 10px;
	padding: 2px;
	/* margin-bottom: 10px; */
	position:relative;
	flex-wrap: wrap;
	row-gap: .25rem;
}

.chart-cell * {
	width: -webkit-fill-available;
	border: none;
	background: none;
	color: var(--color-text-secondary);
	font-size: 1.2rem;
	outline: none;
}

.chartBody .chart-cell {
    overflow: hidden;
}

.chart-row-controls-divider {
	height: 80%;
	top: 10%;
 	background: var(--color-bg-dark-2);	
 	width: 2px;
}

[data-chart-row-controls] {
    width:10px;
    height: 100%;
    position: absolute;
    cursor: w-resize;
    left: 100%;
}

.bodyElement.chart-cell  input {
    width: 100%;
    min-width: 5ch;
    border-radius: .25rem 0 0 .25rem;
    border: 1px solid var(--color-text-accent-1);
    border-right: none;
}

.bodyInputGroup {
    display: flex;
}

.bodyElement.chart-cell input:not([data-relevant]) {
    opacity: .7;
}

.chart-cell [data-action] {
    font-size: 1rem;
    background: var(--color-text-accent-1);
    width: auto;
    padding: .25rem;
    color: var(--color-bg-dark-2);
    /* border-radius: 0 .25rem .25rem 0; */
    /* border: 1px solid var(--color-text-accent-1); */
    border-left: none;
    margin-right: .1rem;
}

.chart-cell [data-action]:last-child {
    border-radius: 0 .25rem .25rem 0;
}

.chart-cell .declared-missing {
    color: var(--color-text-accent-1);
    background: coral;
    opacity: .7;
}

.chartBody {
	/* overflow-Y: auto; */
	display: flex;
	flex-direction: column;
	min-width: min-content;
}

.chartPreHeader {
	display: flex;
	justify-content: left;
	align-items: end;
	min-width: 100%;
	background: var(--color-bg-accent-3);
	gap: .4rem .75rem;
	text-transform: capitalize;
	white-space: nowrap;
	flex-wrap: nowrap;
	z-index: 6;
	padding-inline: 1rem;
}

.chartPreHeader .music-btn.active {
	text-decoration-line: underline;
}

.chartPreHeader .music-btn {
    padding: .3rem;
    border-radius: .5rem .5rem 0 0;
    margin-top: .5rem;
    font-size: 1.2rem;
    border: 1px solid var(--color-text-accent-3);
    border-bottom: none;
}

.chartPreHeader .music-btn.active {
    background: var(--color-bg-dark-2);
    border-color: var(--color-text-accent-1);
    color: var(--color-text-accent-1);
}

.chartPreHeader .music-btn:hover {
    background: var(--color-bg-accent-1);
    
}

.chartPreHeader+.chartHeader.chart-row {
    border-top: 2px solid;
}

.chartFooter {
	display: flex;
	justify-content: center;
	align-items: end;
	padding-bottom: 0.25rem;
	min-width: 100%;
	position: sticky;
	bottom: 0;
	left: 0;
	/* position: absolute; */
	background: var(--color-bg-accent-3);
}

@keyframes flashRow {
  0%   { background-color: var(--color-text-accent-1); }
  100% { background-color: transparent; }
}

.flash-update {
  animation: flashRow 1.5s ease-out infinite;
}

div#help-box {
    position: absolute;
    background: var(--color-bg-accent-1);
    color: var(--color-text-main);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    top: 200px;
    left: 200px;
    padding: 1rem;
    border-radius: .5rem;
    gap: .25rem;
    opacity: 0;
    transition: opacity 350ms ease;
    z-index: -2;
    background-image: linear-gradient(183deg, var(--color-bg-dark-2), transparent);
}

div#help-box::before {
    content: "";
    position: absolute;
    top: -0.3rem;
    left: calc(50% - .5rem);
    width: 0;
    height: 0;
    border-left: .7rem solid transparent;
    border-right: .7rem solid transparent;
    border-bottom: .5rem solid var(--color-bg-dark-2);
}

#help-box .box-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

#help-box .box-score > input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--color-text-main);
    flex: 0;
    width: 6.5ch;
    font-family: 'Poppins';
}

#help-box .box-score > label {
    flex: 1;
}

div#help-box.show {
    opacity: 1;
    z-index: 2;
}

#help-box .box-score.negative > input {
    color: red;
}

#help-box+.chartFooter {
    flex-grow: 1;
    box-shadow: inset 0px 12px 7px -10px;
}

.newButtonContainer {
	display: flex;
	justify-content: center;
	align-items: end;
	min-width: 100%;
	align-items: center;
}

.chartFooter>div, .newButtonContainer>div, .newButton {
	color: var(--color-text-secondary);
	background: var(--color-bg-accent-2);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	margin: 1rem;
	border-radius: 50vh;
	padding: 1em;
	box-shadow: 0px 2px 5px 1px #0005;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 1.2em;
	position: relative;
	overflow: hidden;
}

.chartFooter>div.active, .newButtonContainer>.active, .newButton.active {
    color: white;
    background: var(--color-text-accent-3);
}

.presentTeamAthlete {
	margin: 0.25em;
}

.content-loader {
	position: absolute;
	width: 80px;
	height: 80px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.content-loader.hidden {
	display: none;
}

.content-loader .circle {
	position: absolute;
	width: 80px;
	height: 80px;
	opacity: 0;
	transform: rotate(225deg);
	animation-iteration-count: infinite;
	animation-name: orbit;
	animation-duration: 5.5s;
}

.content-loader .circle:after {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background: #f9c922;
}

.content-loader .circle:nth-child(2) {
	animation-delay: 240ms;
}

.content-loader .circle:nth-child(2):after {
	background: #16a085;
}

.content-loader .circle:nth-child(3) {
	animation-delay: 480ms;
}

.content-loader .circle:nth-child(3):after {
	background: #e74c3c;
}

.content-loader .circle:nth-child(4) {
	animation-delay: 720ms;
}

.content-loader .circle:nth-child(4):after {
	background: #f9c922;
}

.content-loader .circle:nth-child(5) {
	animation-delay: 960ms;
}

.content-loader .circle:nth-child(5):after {
	background: #16a085;
}

@keyframes orbit { 0% {
	transform: rotate(225deg);
	opacity: 1;
	animation-timing-function: ease-out;
}

7%{
transform:rotate(345deg);    
animation-timing-function:linear;  
}
30% {
transform:rotate(455deg);    
animation-timing-function:ease-in-out;  
}
39%
{
transform:rotate(690deg);
animation-timing-function:linear;
}
70% {
transform:rotate(815deg);  
opacity:
 
1;
animation-timing-function
:
 
ease-out
;

  
}
75%
{
transform
:
 
rotate
(945deg);

    
animation-timing-function
:
 
ease-out
;

  
}
76%
{
transform
:
 
rotate
(945deg);

    
opacity
:
 
0;
}
100%
{
transform
:
 
rotate
(945deg);

    
opacity
:
 
0;
}
}


.shoppingCart {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    background: var(--color-text-accent-3);
    border-radius: 50vh;
    width: 6rem;
    aspect-ratio: 1;
    color: var(--color-bg-accent-3);
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 220, .3) 0%, transparent 100%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    z-index: 4;
    animation: shoppingAppears 1200ms ease-in-out forwards;
}

.shoppingCart_icon {
    font-family: material icons;
    font-size: 4rem;
}

.shoppingCart_number {
    position: absolute;
    top: -5%;
    right: -5%;
    font-size: 1.5rem;
    background: var(--color-bg-dark-0);
    width: 2.2rem;
    height: 2.2rem;
    color: var(--color-text-accent-3);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50vh;
    font-weight: 900;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

@keyframes shoppingAppears {
    0% {
        bottom: -100%;
        transform: scale(1);
    }
    70% {
        bottom: 2rem;
        transform: scale(1);
    }
    90% {
        bottom: 2rem;
        transform: scale(1.05);
    }
    100% {
        bottom: 2rem;
        transform: scale(1);
    }
    
}

.shoppingCartPage {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100dvw;
	height: 100dvh;
	background: var(--color-bg-accent-3);
	z-index: 12;
	padding-top: 5rem;
}

.shoppingCartPage_close {
    position: absolute;
    font-family: 'Material Icons';
    font-size: 3.2rem;
    background: var(--color-text-accent-3);
    top: 2rem;
    right: 2rem;
    cursor: pointer;
    background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 220, .3) 0%, transparent 100%);
    border-radius: 50vh;
    color: var(--color-bg-dark-0);
    padding: .2rem;
}

.shoppingCart.open {
    animation: shoppingOpen 1200ms ease-in-out forwards;
}

.shoppingCart.open + .shoppingCartPage, .shoppingCartPage.visible {
    display:flex;
    opacity: 0;
    animation: shoppingOpenPage 450ms 1200ms ease forwards;
}

.shoppingCartPage.visible{
	animation-delay: 100ms;
}

@keyframes shoppingOpenPage {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
    
}

@keyframes shoppingOpen {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(220);
    }
    
}

.shoppingCartPage_logo {
    position: absolute;
    top: .5rem;
    left: .75rem;
    display: flex;
    gap: .25rem;
    align-items: center;
    scale: .7;
    transform-origin: left;
}

.shoppingCartPage_logo img {
    padding: 10px;
    height: 50px;
}

.shoppingCartPage_logo [data-icon] {
    color: var(--color-text-main);
}

.checkout-container {
    position: sticky;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: row;
    width: 100%;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid;
}

.checkout-disclaimer-container {
    display: flex;
    align-items: center;
    flex: 1;
    font-size: .8rem;
    gap: 1rem;
    margin-right: 1rem;
}

.checkout-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid;
    padding-inline: 2rem;
}

.checkout-btn.disabled {
	cursor:default;
	opacity:.2;
}

.checkout-btn {
    display: flex;
    background: var(--color-text-main);
    font-size: 2rem;
    padding: 1rem 1.5rem;
    padding-right: 1rem;
    border-radius: 1rem;
    color: var(--color-bg-accent-3);
    font-weight: 900;
    letter-spacing: .4rem;
    cursor: pointer;
    user-select:none;
    transition: all 500ms ease;
}


div#shoppingCartBody {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

.shoppingCart_item, .shoppingCart_header {
    display: grid;
    grid-template-columns: 2fr 2fr 6fr 1fr 1fr 1fr 2rem;
    row-gap: 1.25rem;
    margin-bottom: .5rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid;
    align-items: center;
}

.shoppingCart_item {
    padding-bottom: 1rem;
}

.shoppingCart_cell.shoppingCart_cell_delete {
    font-family: Material Icons;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 250ms ease;
}

.shoppingCart_cell.shoppingCart_cell_delete:hover {
    color: var(--color-text-accent-1);
}

.shoppingCart_header {
	font-size: 1.1rem;
}

.shoppingCart_accordion {
    display: flex;
    flex-direction: column;
    grid-column-start: 1;
    grid-column-end: 4;
    font-size: .6rem;
    font-weight: 600;
	position: relative;
	font-size: 0;
}

.shoppingCart_accordion.visible {
    font-size: .6rem;
    padding-top: 1.25rem;
    padding-left: .5rem;
}

.shoppingCart_accordion::after {
	content: "Dettaglio atleti";
	position: absolute;
	font-size: .6rem;
	top: -.4rem;
	left: 1.25rem;
	cursor:pointer;
	user-select:none;
}

.shoppingCart_accordion::before {
	content: "expand_more";
	font-family: Material Icons;
	position: absolute;
	font-size: 1.2rem;
	top: -.55rem;
	left: 0rem;
	cursor:pointer;
	user-select:none;
}

.shoppingCart_accordion.visible::Before {
	content: "expand_less";
}

.shoppingCart_accordion_element {
    display: grid;
    grid-template-columns: 1rem 3fr 3fr 3fr 3fr;
    grid-template:
	        "i a b c d" / 1rem 3fr 3fr 3fr 3fr;
}

div#shoppingCartAmount {
    position: relative;
    margin-left: auto;
    font-size: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
/*     border-top: 1px solid; */
    padding-inline: 1rem;
}

div#shoppingCartAmount::before {
    content: "Totale";
    font-size: 1.4rem;
    
}


#contestConfigurationForm {
	/* overflow-y: hidden; */
	color: var(--color-text-secondary);
	user-select: none;
}


/* logo { */
/* 	font-family: 'Roboto', sans-serif; */
/* 	position: absolute; */
/* 	left: calc(( 100% - 2.4rem)/2); */
/* 	top: 1.5rem; */
/* 	transform: translateX(-50%); */
/* 	font-size: 1.4rem; */
/* 	letter-spacing: 0.25rem; */
/* 	font-weight: bold; */
/* 	overflow: hidden; */
/* 	user-select: none; */
/* 	cursor: pointer; */
/* } */

/* logo>span:nth-child(1) { */
/* 	color: #16a085; */
/* } */

/* logo>span:nth-child(2) { */
/* 	color: #f9c922; */
/* } */

/* logo:after { */
/* 	content: ""; */
/* 	background: #e74c3c; */
/* 	height: 5rem; */
/* 	width: 1rem; */
/* 	top: -10px; */
/* 	position: absolute; */
/* 	left: 0; */
/* 	z-index: -1; */
/* 	transform: rotate(25deg) translateX(3px); */
/* } */

/* logo:before { */
/* 	content: ""; */
/* 	background: var(--color-text-accent-3); */
/* 	height: 5rem; */
/* 	width: 1rem; */
/* 	top: -10px; */
/* 	position: absolute; */
/* 	left: 0; */
/* 	z-index: -2; */
/* 	transform: rotate(25deg) translateX(7px); */
/* } */

.logo {
    width: fit-content;
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-sizing: content-box;
}

.mainContainer {
	color: var(--color-text-main);
	overflow: auto;
	padding: 1rem 1.5rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.columnAthleteToAdd {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 20px;
	max-height: inherit;
}

.columnAthleteAdded {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 20px;
}

.columnHeader {
	color: var(--color-text-main);
}

.columnContent {
	display: flex;
	flex-direction: column;
	max-height: inherit;
	/* border: 1px solid; */
	position: relative;
}

.columnContentFilters {
	display: flex;
	flex-direction: inherit;
	padding: 15px;
	position: sticky;
	top: 0;
	background: var(--color-bg-dark-1);
}

.columnContentList {
	display: flex;
	flex-direction: column;
	padding: 15px;
	overflow-y: auto;
}

.listRow {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding-inline: 1rem;
}

.listRow:nth-of-type(even) {
    background: var(--color-bg-dark-2);
}

input#inputSurnameFilterAthleteAdded {
    outline: none;
    background: transparent;
    padding-block: 0.5rem;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid var(--color-text-main);
    width: max(20%, 300px);
    color: var(--color-text-main);
}

.rowInformations {
    padding-block: 0.2rem;
}

.rowButton {
	width: 20px;
	display: flex;
	font-size: 1rem;
}

.rowButton.delete {
    color: #ed414f;
}

.rowButton:hover {
	cursor: pointer;
}

[data-icon] {
	gap: .5rem;
	display: flex;
	align-items:center;
}

[data-icon]:after {
	content: attr(data-icon);
	font-family: Material Icons;
	font-size: 1.2em;
	/* 	margin-left: 0.5em; */
	letter-spacing: 0;
	text-transform: none;
}

[data-icon="loop"] {
	animation-name: rotate_loop;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	transform-origin: center;
	/* display: flex; */
}

@keyframes rotate_loop {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}

.chartPage>*>.chart-row:nth-child(even) {
	background: var(--color-bg-dark-2);
	/* box-shadow: inset 7px 0px 10px -10px black; */
}

.chartHeader.chart-row {
	border-bottom: 2px solid;
	padding-block: 0.5rem;
	min-height: 3rem;
	min-width: min-content;
	overflow-y: auto;
	position: sticky;
	top: 0;
	background: var(--color-bg-accent-3);
	z-index: 5;
}

.headerTot>*, .bodyTot>* {
	color: var(--color-text-accent-2);
}

.leftButtons {
	position: relative
}

*.working:before, .dashboard-card.working:before, button.working:before {
	content: "";
	position: absolute;
	background: linear-gradient(90deg, red, yellow, orange, red, purple);
	width: 500%;
	height: 0.25rem;
	bottom: 0rem;
	animation-name: buttonWorking;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

@keyframes buttonWorking { 0% {
	left: -10%;
}

50%
{
left
:
 
-390%;
}
100%
{
left
:
 
-10%;
}
}
.breadcrumbs a {
	display: flex;
}

.dashboard {
	display: flex;
	flex-direction: column;
	width: -webkit-fill-available;
	height: -webkit-fill-available;
	gap: 2rem;
	padding: 3rem;
	overflow: auto;
}

.dashboard-row {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2rem;
	width: auto;
	background: var(--color-bg-accent-2);
	box-shadow: 9px 12px 10px -10px black;
	flex-wrap: wrap;
	margin-inline: auto;
	border-radius: .5rem;
	overflow-x: clip;
	overflow-y: visible;
	justify-content: center;
}

.dashboard-card {
	border-radius: 0.25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;
	position:relative;
	flex: .5 0 150px;
}

.dashboard-card:not(:last-of-type):not(.dashboard-row-nav>.dashboard-card):after {
    background: red;
    content: "";
    height: 80%;
    width: 2px;
    position: absolute;
    right: calc(-1rem - 1px);
    background: linear-gradient(355deg, #293c52, #0b1218);
}

.dashboard-row-nav {
	background: none;
	font-size: .5rem;
	justify-content: space-around;
	box-shadow: none;
	grid-area: d;
}

.dashboard-row-nav>.dashboard-card {
    flex-direction: row;
    gap: .5rem;
}

.dashboard-row-nav .dashboard-card-num {
    position: initial;
    background: none;
    margin: 0 auto;
    transform: none;
    padding: 0;
    box-shadow: none;
    text-shadow: none;
    backdrop-filter: none;
}

.dashboard-row-nav .dashboard-card-element {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.dashboard-card-element {
	padding: 1rem 1.5rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.5rem;
	justify-content: center;
	letter-spacing: normal;
}

.dashboard-card-icon {
	font-family: Material Icons;
	font-size: 2.5rem;
	text-transform: none;
	user-select: none;
	color: var(--color-text-accent-3);
	display: flex;
	justify-content: center;
	align-items: center;
	/* text-shadow: 1px 3px 5px #000; */
	/* filter: drop-shadow(1px 3px 5px #000); */
}

.dashboard-card-icon:not(.dashboard-card-num) {
	background: linear-gradient(269deg, var(--color-text-accent-3), var(--color-text-accent-1));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 1.5rem;
}

.dashboard-card-title {
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--color-text-main);
	width: 6rem;
	height: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	/* font-size: 1.2rem; */
}

.dashboard-card-num {
	font-size: 2rem;
	color: var(--color-text-accent-1);
	font-weight: bold;
	letter-spacing: 0.2em;
	padding: .2rem 1.5rem;
	z-index: 3;
	/* background: linear-gradient(178deg, #293c5260, #0b121840); */
	position: absolute;
	left: 50%;
	transform: translate(-50%, 20%);
	bottom: 0;
	border-radius: .5rem;
	/* text-shadow: 2px 3px 7px var(--color-bg-dark-1); */
	box-shadow: 0px 5px 5px 2px #0005;
	backdrop-filter: blur(5px);
	overflow: hidden;
	padding-left: 1.75rem;
}

div.dashboard-card-icon {
	letter-spacing: 0;
}

.dashboard-card-num.dashboard-card-icon {
	cursor:pointer;
}

.dashboard-card-num.dashboard-card-icon.dashboard-card-icon-active {
    color: var(--color-text-accent-4);
    text-shadow: 0px 0px 5px var(--color-text-accent-4-variant);
    /* box-shadow: none; */
}

.dashboard-card-num-exceeded:after {
	position: absolute;
	content: "+";
	left: 100%;
	top: 50%;
	transform: translate(-100%, -50%);
	font-size: 0.7em;
}

.dashboard-charts {
    color: white;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.sumOf {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	flex: 1;
}

.sumOf>input:not([type="checkbox"]):not([type="radio"]), .sumOf>.year-input {
	border-bottom: 2px solid;
	padding: 0 0.5rem;
	margin: 0;
	border-radius: 0;
	width: 3rem;
	border-color: var(--color-text-accent-3);
	color: var(--color-text-accent-3);
	background: transparent;
}

.sumOf>input[type="date"]:not([type="checkbox"]):not([type="radio"]) {
	width: 15ch;
	padding-inline: 0;
	position: relative;
}

.listElementFragment-cell .sumOf>input[type="number"] {
	font-size: 1.2rem;    
	min-width: 5.2rem;
}

.sumOf>.year-input {
	width: 7ch;
	font-size: .9em;
	padding-inline: 0;
	position: relative;
}

.year-input:after {
    content: "calendar_today";
    font-family: 'Material Icons' !important;!i;!;
    font-size: 1em;
    text-transform: none;
    position: absolute;
    right: .1rem;
    top: 0;
}

::-webkit-calendar-picker-indicator {
 	filter: var(--filter-calendar);
 	cursor: pointer;
}


.typologyDivLeft {
	display: flex;
	gap: 2rem;
	align-items: center;
	overflow-x: auto;
	flex-direction: column;
	align-items: flex-start;
}

span.typologyDivTitle {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-text-accent-1);
	flex: 1;
}

.bodyAthletes .chart-row {
	width: -webkit-fill-available;
}

#doneDiv {
	margin-top: 1rem;
	z-index:100;
}

.listElementContainer {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	/* flex: 1 1 0px; */
	width: 100%;
}

.mainHeader {
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

.listElement {
	background: var(--color-bg-accent-2);
	display: flex;
	width: fit-content;
	flex-direction: row;
	border-radius: 1rem;
	/* gap: 1rem; */
	width: 100%;
	justify-content: flex-start;
	overflow: hidden;
	transition: box-shadow, transform 400ms ease;
	box-shadow: 9px 12px 10px -10px #0005;
	position:relative;
}

.listElement::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: var(--progress);
	background-color: var(--color-text-accent-4-variant);
	transition: width 0.4s ease;
	z-index: 1;
	border-radius: .25rem;
	pointer-events: none;
	opacity:0.4;
}

/* Pulse e fade alla fine */
.pulse-fade::before {
	animation: pulseFade 2s ease-out forwards;
}

@keyframes pulseFade {
	0% { opacity: .4; transform: scale(1);}
	50% { opacity: .8; transform: scale(1.02); }
	100% { opacity: 0; transform: scale(1); }
}

.listElementFragment-cell, .listElementFragment-cell-replacer {
	text-transform: uppercase;
	font-size: 1.2rem;
	position: relative;
	/* margin: 1.25rem .25rem .25rem .25rem; */
	padding: 1.25rem .25rem .25rem .75rem;
	/* width: -webkit-fill-available; */
	align-items: center;
	display: flex;
	overflow: hidden;
	color: var(--color-text-main);
	align-items: baseline;
	flex: 1 1 200px;
}

.listElementColumn>.listElementFragment-cell,
	.listElementColumn>.listElementFragment-cell-replacer {
	
	flex: auto;
	
}

.listElementFragment-cell:has([data-action]) {
    cursor: pointer;
}

.elementToggle {
    font-family: 'Material Icons';
    text-transform: none;
    font-size: 2.6rem;
    margin-right: 1rem;
    cursor: pointer;
    text-shadow: 0 0 5px #0005;
    color: var(--color-text-accent-4);
    user-select: none;
    transition: all 400ms ease;
}

.elementToggle.off{
	color: var(--color-text-secondary);
}

.listElementFragment-cell>span:has(.elementToggle) {
    justify-content: space-between;
    flex: 0 1 300px;
}

.listElementFragment-cell-replacer {
	color: white;
}

.listElementColumn {
	display:flex;
	flex-direction:column;
	flex: 1 1 200px;
	position: relative;
	text-transform: uppercase;
}

.listElementFragment-cell-red {
	background: var(--color-text-accent-1);
	box-shadow: inset 6px 0px 5px -5px #333;
	color: white;
}

.listElementFragment-cell-green {
	background: var(--color-bg-success);
	box-shadow: inset 6px 0px 5px -5px #333;
    
}

.listElementFragment-cell-button {
	flex: 0 0 70px;
}

.listElementFragment-cell-replacer {
	position: absolute;
	display: flex;
	align-items: center;
	background: var(--color-text-accent-3);
	width: 100%;
	left: 100%;
	top: 0;
	height: 100%;
	transition: 400ms ease all;
}

.listElementFragment-cell:before {
	content: attr(data-label);
	position: absolute;
	top: 0.5rem;
	font-size: 0.6rem;
	/* color: #666; */
}

.listElementFragment-cell-replacer:before {
	content: attr(data-label);
	position: absolute;
	top: 0.5rem;
	font-size: 0.6rem;
	color: white;
}

.listElementFragment-cell-replacer.visible {
	left: 0;
}

.listElementFragment-cell-replacer span,
	.listElementFragment-cell span {
	display: flex;
	align-items: center;
	min-height: 1.5em;
}

.listElementAccordion {
    display: grid;
    grid-template-columns: 1fr 3rem;
    grid-template-rows: 1fr 0;
    background: var(--color-bg-accent-2);
    width: fit-content;
    border-radius: 1rem;
    width: 100%;
    box-shadow: 9px 12px 10px -10px #0005;
}

.listElementAccordion.open {
	 grid-template-rows: 1fr auto;
}

.listElementAccordion_expand {
    grid-area: 1 / 2 / 2 / 3;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.listElementAccordionBody {
    grid-area: 2 / 1 / 2 / 3;
    background: var(--color-bg-accent-1);;
    display: none;
    width: fit-content;
    flex-direction: row;
    width: 100%;
    border-top: 1px solid;
    padding: 1rem;
    border-radius: 0 0 1rem 1rem;
}

.listElementAccordion.open .listElementAccordionBody {
	 display: flex;
}

.listElementAccordionHeader {grid-area: 1 / 1 / 1 / 2;display: flex;}


[data-action] {
	cursor: pointer;
	transition: 200ms ease all;
}

[data-action]:hover {
	/* transform: scale(1.1); */
	text-shadow: 1px 2px 3px #333;
}

/* .society-columnAthleteAdded-row-team { */
/* 	width: 90%; */
/* } */

/* ====================== TEST CLASSIFICHE CENTRATE ================================================ */
.chartPage-team .bodyTot.chart-cell, .chartPage-team .bodyTeam.chart-cell,
	.chartPage-team .bodyPosition.chart-cell {
	justify-content: center;
}

.chartPage-team .bodyTot.chart-cell>input, .chartPage-team .bodyTeam.chart-cell>input,
	.chartPage-team .bodyPosition.chart-cell>input {
	font-size: 1.6em;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	width: 100%;
}

.chartPage-team input.bodySurnameInput.bodyInput {
	font-size: 0.8rem;
}

.chartPage-team .chartBody .chart-row {
	align-items: center;
}

.helper-box {
	position: fixed;
	left: 50%;
	z-index: 10;
	transform: translateX(-50%);
	background: var(--color-bg-accent-2);
	padding: 1rem 2rem;
	min-width: 20rem;
	border-radius: 0 0 0.25rem 0.25rem;
	box-shadow: 0px 0px 28px 3px black;
	color: var(--color-text-main);
	display: none;
	align-items: start;
	justify-content: space-between;
	font-size: 1.1em;
	animation: showError 800ms ease forwards;
	gap:3em;
	overflow: hidden;
	z-index: 90;
	/* outline: 3px solid var(--color-text-accent-1); */
}

.helper-box #stopTutorial {
    user-select: none;
    cursor: pointer;
    color: var(--color-text-accent-1);
}

.helper-box #nextTutorial {
	display:none;
    user-select: none;
    cursor: pointer;
    color: var(--color-text-accent-3);
}

.helper-box #nextTutorial.show {
   display: flex;
}

.helper-box > div {
	display:flex;
	flex-direction:column;
}

.helper-box span:nth-of-type(1) {
	color: var(--color-text-accent-2);
	text-transform: uppercase;
}

.helper-box span:nth-of-type(2) {
	font-size: 1.4rem;
}

.error, .info {
	position: absolute;
	left: 50%;
	z-index: 10;
	transform: translateX(-50%);
	padding: 1rem 2rem;
	min-width: 20rem;
	border-radius: .5rem;
	box-shadow: 0px 0px 28px 3px black;
	color: white;
	display: none;
	align-items: center;
	justify-content: space-between;
	font-size: 1.4em;
	animation: showError 800ms ease forwards;
	gap:3em;
	overflow: hidden;
	z-index: 100;
	background-image: -webkit-linear-gradient(90deg, rgba(255, 255, 220, .3) 0%, transparent 50%);
}

.error {
	background: var(--color-text-accent-1);
}

.info {
	background: var(--color-text-accent-4);
}

.error.show, .helper-box.show, .info.show {
    display: flex;
}

.error-timer, .info-timer {
    position: absolute;
    width: 100%;!;
    height: 100%;
    background: #0003;
    top: 0;
    left: 0;
    animation: errorTimer 8000ms linear forwards;
    z-index: -1;
}


.error:hover > *, .info:hover > * {
	animation-play-state: paused;
}

@keyframes errorTimer {
    0% {
        left: 100%;
    },
    100% {
        left: 0%;
    }
}

@keyframes showError { 
	0% {
		top: -120%;
	}
	100% {
		top: 1rem;
	}

}



.uppercase {
	text-transform: uppercase;
}

.bold {
	font-weight: bold;
}

.headerActionContainer > a {
    color: var(--color-text-secondary);
    display:flex;
    user-select:none;
    transition: 200ms ease all;
}

.headerActionContainer > a:hover {
    color: var(--color-text-main);
}

.headerActionContainer > a[data-active="false"] {
    color: var(--color-bg-dark-2);
    cursor: default;
}

.headerActionContainer > a[data-active="true"]:hover {
/*     transform: scale(1.05); */
	text-shadow: 1px 2px 3px #333;
}

.headerActionContainer {
    display: flex;
    gap: 2rem;
    text-transform: uppercase;
}

.listElement.selected {
    outline: 1px solid var(--color-text-main);
    box-shadow: 0px 4px 11px 3px var(--color-bg-dark-3);
    /* transform: scale(1.01); */
}

.listElementFragment-cell-checkbox {
    padding: 0.4rem;
    border: 2px solid;
    border-radius: 0.25rem;
    color: #666;
    position:relative;
    cursor: pointer;
    transition: 200ms ease all;
}

.listElementFragment-cell-checkbox:hover {
    color:#888;
}
.selected .listElementFragment-cell-checkbox {
	 color: var(--color-text-main);
}

.selected .listElementFragment-cell-checkbox:after {
    content: "done";
    font-family: Material Icons;
    font-size: 1.1em;
    letter-spacing: 0;
    text-transform: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-text-main);
}

.listElementFragment-cell-first {
    width: auto;
    border-right: 1px solid #333;
    background: var(--color-bg-dark-2);
    flex: 0 0 2rem;
    font-size: 0.6rem;
    padding: 0.5rem;
    align-items: center;
}

.listElementFragment-cell-last {
    width: auto;
    border-left: 1px solid #333;
    background: var(--color-bg-dark-2);
    flex: 0 0 2rem;
    font-size: 0.6rem;
    padding: 0.5rem;
    align-items: center;
}

.listElementFragment-cell-drag {
    font-size: 1rem;
    color: var(--color-text-secondary);
    cursor: grab;
}

.span-add-link-music{
	transition: 400ms ease all;
}

.span-add-link-music:hover{ 
	cursor: pointer;
	transform: scale(1.1);
}

span.trigger {
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50%;
    aspect-ratio: 1;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
}

span.modalTitle {
    color: var(--color-text-accent-2);
    font-size: 1rem;
    text-transform: capitalize;
}


.bodyContestAthlete {
    display: flex;
    justify-content: space-evenly;
    width: min(100%, 800px);
    color: var(--color-text-main);
}

#doneDiv {
	margin-top: 1rem;
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translate(-50%, -50%);
}

.loader-backup {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 80dvh;
	width: 80dvw;
	margin-top: -40dvh;
	margin-left: -40dvw;
	z-index: 11;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.loader-backup-title {
    padding-block: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--color-text-main);
    letter-spacing: 0.15rem;
	text-align: center;
}

.loader-backup-progress {
    width: 100%;
}

.loader-backup-progress-bar {
    width: 100%;
    height: 40px;
    background: var(--color-bg-dark-2);
    border-radius: 0.2rem;
    overflow: hidden;
    box-shadow: 0 -3px 4px 0px #00000060;
    position:relative;
}

.loader-backup-progress-bar-actual {
    height: 100%;
    background: var(--color-bg-success);
    width: 0%;
    transition: 400ms all ease;
    position: absolute;
    overflow:hidden;
    border-radius: 0.2rem
}

.loader-backup-progress-bar-actual-percentage {
    display:flex;
    justify-content:center;
    align-items: center;
    height: 100%;
    color: var(--color-bg-dark-2);
    font-size: 1.2rem;
    font-weight: 900;
    z-index: 14;
    width: 100%;
    position: absolute;
}

.loader-backup-progress-info {
    padding: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-text-accent-2);
    font-weight: 600;
    text-align: center;
}

.loader-backup-progress-bar::before {
    content:"";
    display: block;
    width:0%;
    background: red;
    height: 100%;
    position: absolute;
    animation: pulsingbackup 2s infinite;
}

@keyframes pulsingbackup {

    0% {
		box-shadow: 0 0 0 0 var(--color-bg-success)70;
	}

	70% {
		box-shadow: 0 0 0 450px rgba(0, 0, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}

    
}

span.closeMenu {
    font-family: "Material Icons";
    font-size: 2rem;
    position: fixed;
    top: 1rem;
    right: 1rem;
    color: var(--color-text-accent-2);
    display: none;
    cursor: pointer;
}

.breadcrumbs a.openMenuResp {
	display: none;
}

.header-first-row-container-flex {
    display: flex;
    flex-direction: column;
}

.title-container-head{
	width: 100%;
	margin-bottom: 30px;
}

.music-console-container {
	display: flex;
	align-items: center;
	padding: 1rem;
	width: 100%;
	cursor:pointer;
	grid-area: c;
	color:var(--color-text-accent-2);
	gap: 1rem;
	align-self: start;
}
	

#music-ui-current-play {
	color: var(--color-text-main);
	margin-left: 5px;
}

.music-player-wrapper {
    display: flex;
    overflow-y: auto;
    background: linear-gradient(178deg, var(--color-bg-accent-3), var(--color-bg-dark-0));
    position: fixed;
    width: calc(100% - 4.5rem);
    border-radius: 1.5rem;
    box-shadow: 0px 5px 5px 2px #0005;
    margin-bottom: calc(-3rem - 100%);
    padding-bottom: 2rem;
    z-index: 30;
    bottom: 0;
    left: 2rem;
    transition: all 800ms ease;
    padding-inline: 2.5%;
    flex-direction: column;
}

.music-player-wrapper.open {
	
	margin-bottom: -2rem;
	
}

.dashboard-alert {
    font-size: 1rem;
    color: var(--color-text-main);
    padding: 0.5rem;
    border-radius: 0.2rem;
    border-left: 7px solid #ed414f;
    background: linear-gradient(90deg, #ed414f40, #20202000 100%);
    display: flex;
    gap: 0.3rem;
    align-items: baseline;
}

#music-player-wrapper-controls {
    color: var(--color-text-accent-3);););
    display: flex;
    gap: 1rem;
    position: absolute;
    top: .25rem;
    font-size: 1.2rem;
    right: 1rem;
}

#music-player {
	display:flex;
	align-items:center;
	gap: 2rem;
	overflow:hidden;
	transition: all 400ms ease;
	transform-origin: bottom;
	height: 8rem;
}

#music-player.lowered {
	transform: scaleY(0);
	height: 0;
}


div#audio-player-container {
    display: flex;	
    margin-block: .5rem;
    align-items: center;
    justify-content: space-between;
    padding-right: 4.5rem;
}

#volumeBtn input[type="range"] {
    transform: rotate(-90deg) translate(10px);
    position: absolute;
    top: 50%;
    width: 100px;
    left: -38px;
    display: none;
    z-index: 5;
}

#volumeBtn p:hover > input[type="range"] {
    display: block;
}

#volumeBtn p:hover:after {
    opacity: 0;
    transition: all 400ms ease;
}



.dashboard-alert > span:nth-of-type(even):not([data-action]) {color: #ed414f;font-size: 1.2rem;text-transform: capitalize;}

.dashboard-alert > span {
    padding-right: 0.2rem;
}

.dashboard-alert > span[data-action] {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    padding-left: 2rem;
    color: var(--color-text-accent-2);
}

div .simplebar-scrollbar::before {

  background: linear-gradient(0deg, var(--color-text-accent-3), var(--color-text-accent-1));
}

.body-form {
	width: min(100%, max(400px, 25%));
	display: flex;
	flex-direction: column;
	/* gap: 1rem; */
}

.submitModal-results ul {
    border-top: 2px solid;
    padding-top: 1rem;
}

.module-container {
	display:flex;
	flex-direction: row;
	flex-wrap:wrap;
	gap: .3rem;
	margin-bottom: 1.5rem;
}
.module-row {
	display: flex;
    flex-direction: row;
    gap: 0.3rem;
    flex: 1;
    flex-basis: 250px;
    align-items:center;
    flex-wrap: wrap;
}
.module-item {
	flex: 1 0 250px;
	position: relative;
}
.module-item label {
    position: absolute;
    left: 15px;
    top: 30px;
    transition: all 300ms ease-out;
    pointer-events: none;
}
.module-item[data-active="true"] label, .module-item[data-not-activable] label {
    top: -3px;
}

.module-container>.module-row>.module-item input:not([type='checkbox']), .module-container>.module-row>.module-item select  {
	margin-top: 15px;
}

.module-container>.module-row>.module-item.inline {
    flex-direction: row;
    display: flex;
    align-items: center;
}

.module-container>.module-row>.module-item.inline label{
    position:static;
}

#wavesurferplayer {
	display: flex;
	flex: 1 1;
	max-width: calc(100% - 5rem);
}
#playPauseBtn {
	font-size: 2.5rem;
}
.music-ui-section{
	margin-bottom: 3%;
	padding: 2%;
	color: var(--color-text-main);
}

.music-ui-section label {
	cursor:pointer;
}


.music-ui-title{
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	font-size: 12px;
	color: var(--color-text-main);
}

.green{
	color:#3273dc;
}

.music-table-row {
	width:90%;
	margin:auto;
	margin-bottom: 1%;
	padding: 1%;
	display: flex;
	justify-content: space-between;
	align-items: center
}


.music-btn {
    background: transparent;
    color: var(--color-text-accent-4);
    box-shadow: none;
    border: none;
    font-size: 2em;
    transition: all 400ms ease;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.music-btn:not(.disabled) {
	cursor: pointer;
}

.music-btn:not(.disabled):hover {
	color: var(--color-text-accent-3);
}

.music-btn.disabled {
	color: var(--color-text-secondary);
}

.music-btn [data-icon]:after {
	margin-left: 0px;
}

.music-ui-section-upload {
	color: var(--color-text-main)
}

.iframe-video {
	outline: none;
    border: none;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.tutorial-container {
    display: flex;
    flex-direction: row;
}

.tutorial-titles {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: .5rem;
    gap: .2rem;
}

.tutorial-player {
    display: flex;
    width: -webkit-fill-available;
}

.box-score.action.timer > span:before {
    --p: 100;
    --c: #eee9;
    --bord: 1rem;
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 0;
    aspect-ratio: 1;
    width: 7rem;
    z-index: revert-layer;
    background: conic-gradient(var(--c) calc((var(--p)* 360deg / 100) - 2deg), #0000 0);
    mask-image: radial-gradient(farthest-side,transparent calc(100% - var(--bord)),#fff calc(100% - var(--bord) + 1px));
    animation: support 3500ms linear infinite;
    animation-iteration-count: infinite;
    left: -1.5rem;
    top: -1.5rem;
}

.box-score.action.timer > span:after {
    content: "undo";
}

.box-score.action.timer {

    background: var(--color-text-accent-2)
    
}
@keyframes support {
    0% {
    /* transform: rotate(0deg); */
    --p: 0;
    }
    100% {
    /* transform: rotate(360deg); */
    }
}

.comunication-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--color-bg-accent-2);
    box-shadow: 8px 10px 7px -10px black;
    padding:.5rem;
    color: var(--color-text-main);
    border-radius: .5rem;
    position: relative;
}

.comunication-box[data-pinned] {
    border: 1px solid var(--color-text-accent-3);
}

.comunicaiton-loader {
    display: flex;
    justify-content: center;
}


.comunication-box[data-pinned]::after {
    content: "push_pin";
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: Material Icons;
    font-size: 1.2rem;
    color: var(--color-text-accent-3);
}

.comunication-box>[data-comunication-title].loaded {
	border-bottom: 1px solid var(--color-text-secondary);
}

.comunication-box>[data-comunication-title] h4 {
	font-size: .6rem;
	font-weight: 100;
	margin: 0;
}

.comunication-box>[data-comunication-body] {
	margin-block:1rem;
}

.comunication-box>[data-comunication-attachment] {
	border-top: 1px solid var(--color-text-secondary);
}

[contenteditable]:focus-visible {
    outline: none;
}

[data-changed="true"]:after {
	content:' *';
	color:var(--color-text-accent-1);
}

h2#title_editor {
    margin: 0;
    font-size: 1.4rem;
}

.comunication-editor {
    display: flex;
    width: 100%;
    flex-direction: column;
    font-family: "Poppins";
}

.comunication-editor-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 1rem;
}

.comunication-editor-row-title {font-size: 1.2rem;flex: 1 0 140px;}

.comunication-editor-row-area {
    border: 1px solid var(--color-text-secondary);
    padding: .2rem;
    width: -webkit-fill-available;
    border-radius: .25rem;
}

.comunication-editor-row-area.comunication-editor-row-area-main {
    min-height: 600px;
}

.comunication-editor .ce-block__content,
    .comunication-editor .ce-toolbar__content {
        max-width: unset;
    }
 
:root {
  /* background color */
  --main: var(--color-bg-dark-0);

  /* Toolbar and popover */
  --primary: var(--color-bg-dark-3);

  /* On hover or selected */
  --selected: var(--color-text-accent-3);

  /* Border color */
  --border: var(--color-text-secondary);

  /* Text and icon colors */
  --text: var(--color-text-main);
  
}   

.comunication-editor .ce-toolbar__plus,
.comunication-editor .ce-toolbar__settings-btn,
.comunication-editor .ce-popover-item__title,
.comunication-editor .ce-popover-item__icon {
  color: var(--color-text-main);
}

.comunication-editor .cdx-search-field.ce-popover__search {
  background-color: var(--color-bg-dark-3);
  border-color: var(--color-text-secondary);
}

.comunication-editor .cdx-search-field__input {
  color: var(--color-text-main);
}

comunication-editor .cdx-block,
comunication-editor .ce-block {
  color: var(--color-text-main);
}

.comunication-editor .ce-popover__container,
.comunication-editor .ce-inline-toolbar,
.comunication-editor .ce-conversion-tool__icon,
.comunication-editor .ce-popover-item__icon,
.comunication-editor .tc-popover__item-icon {
  color: var(--color-text-main);
  background-color: var(--color-bg-dark-3);
  border-color: var(--border);
}

.comunication-editor .ce-popover,
.comunication-editor .ce-conversion-toolbar,
.comunication-editor .ce-inline-toolbar,
.comunication-editor .tc-popover {
  background-color:  var(--color-text-secondary);
  border-color: var(--border);
  box-shadow: 0 3px 15px -3px var(--color-text-secondary);
}

.comunication-editor .ce-inline-tool:hover,
.comunication-editor .ce-inline-toolbar__dropdown:hover,
.comunication-editor .ce-toolbar__plus:hover,
.comunication-editor .ce-toolbar__settings-btn:hover,
.comunication-editor .ce-conversion-tool:hover,
.comunication-editor .ce-popover-item:hover {
  background-color: var(--color-text-accent-3);
}

*::selection,
.comunication-editor .ce-block.ce-block--selected .ce-block__content {
  background-color: var(--selected);
}

.comunication-editor .ce-popover__items {
  scrollbar-color: var(--border) var(--main);
}
/* table class wrapper */
.comunication-editor .tc-wrap,
.comunication-editor .tc-wrap * {
  --color-border: var(--border);
  --color-text-secondary: var(--text);
  --color-background: var(--selected);
  --toggler-dots-color: var(--selected);
  --toggler-dots-color-hovered: var(--text);
}

@media (max-width: 650px) {
  .comunication-editor .ce-toolbar__settings-btn,
  .comunication-editor .ce-toolbar__plus {
    background-color: var(--primary);
    border-color: var(--border);
    box-shadow: 0 3px 15px -3px var(--border);
  }
}

.comunication-editor .cdx-attaches__button,
.comunication-editor .cdx-attaches--with-file {
	color: var(--color-text-main);
    background: transparent;
    border: none;
}

.comunication-editor .cdx-attaches--with-file .cdx-attaches__download-button {
	background: var(--color-bg-dark-3);
    color: var(--color-text-main);
}

.comunication-editor .cdx-attaches--with-file .cdx-attaches__download-button:hover {
   	background: var(--color-bg-dark-2);
}

.comunication-editor .cdx-attaches--with-file .cdx-attaches__file-icon-label {
	left: calc(50% - 6px);
    transform: translateX(-50%);
}



@media (hover: hover) {
    .comunication-editor .cdx-button:hover {
    	background: transparent;
    }
}    


@media (max-width: 900px) {
	.dashboard {
		/* overflow: auto; */
		padding: 0.2rem;
		gap: 1rem;
	}
	.dashboard-row {
		flex-direction: column;
		gap: 1rem;
		margin-inline: 0;
		width: 100%;
		padding-inline: .5rem;
	}
	.dashboard-card {
		width: 100%;
		/* padding: 2rem; */
		justify-content: space-around;
		flex-direction: row;
		justify-content: space-between;
	}
	main {
		margin: 0px;
		width: -webkit-fill-available;
		
	}
	.dashboard-card-num {
		font-size: 2.5rem;
		width: auto;
		position: relative;
		bottom: auto;
		transform: none;
		left: 0;
		box-shadow: none;
		backdrop-filter: none;
	}
	.dashboard-card-element {
		flex-direction: row-reverse;
		justify-content: flex-end;
		align-items: center;
		gap: 2rem;
		padding: 0.5rem;
	}
	.dashboard-card-icon:not(.dashboard-card-num) {
		font-size: 2.5rem;
	}
	div:not(.dashboard-row-nav)>dashboard-card .dashboard-card-title {
		font-size: 1rem;
		/* width: 100%; */
		text-align: left;
	}
	h1.title:not(:last-child ) {
		/* font-size: 2.8rem; */
		display: flex;
		width: auto;
		margin-bottom: 0;
		padding: 0;
	}
	main>header {
		display: flex;
		position: relative;
		justify-content: space-between;
		align-items: center;
		padding: 1rem;
		padding-bottom: 0;
		padding: 0 .2rem;
		/* background: var(--color-text-accent-3); */
		color: white;
		/* background-image: -webkit-linear-gradient(90deg, rgba(255, 255, 220, .3) 0%, transparent 10%); */
		box-shadow: 0px 5px 5px 2px #0005;
		/* background-image: url(/resources/images/GH_BG_1.png), linear-gradient(90deg, rgba(255, 255, 220, .3) 0%, transparent 10%); */
		background-size: 200%;
		background-position-x: 58%;
		background-position-y: 70%;
		background-blend-mode:multiply;
	}

	main>header {
		background: linear-gradient(178deg, var(--color-bg-accent-3), var(--color-bg-dark-0));
		box-shadow: 0px 5px 5px 2px #0005;
		background-image: url(/resources/images/GH_BG_1.png), linear-gradient(178deg, var(--color-bg-accent-3), var(--color-bg-dark-0));
		background-size: cover;
		background-position-x: center;
		background-blend-mode: overlay;
	}
	
	body.light-theme main>header{
		background: var(--color-text-accent-3);
	}
	
	.breadcrumbs {
		display: flex;
		flex-direction: row;
		/* gap: 2rem; */
		text-align: center;
		align-items: baseline;
		justify-content: space-evenly;
		/* height: 50px; */
		padding-bottom: .5rem;
		overflow: hidden;
		transform-origin: top;
		transition: all 400ms ease;
		/* margin-top: 1rem; */
		animation: shoppingOpenPage 450ms ease;
	}
	.breadcrumbs a {
		display: flex;
		flex-direction: column-reverse;
		font-size: 0.6rem;
		text-align: center;
		justify-content: center;
		/* gap: 0; */
		gap: unset;
		color: #ddd;
	}
	.breadcrumbs a:after {
		font-size: 1rem;
		margin: 0;
	}
	
	.site-wrap {
		display: grid;
		grid-template-columns: 100% auto;
		transition: all 400ms ease;
	}

	.site-wrap {
		grid-template-columns: 50% 50%;
		width: 200%;
		left: -100%;
		position: relative;
	}

	.site-wrap.closed {
		left: 0;
	}
	
	.site-wrap.closed .site-nav-open {
		opacity: 1;
		display: flex;
		height: 100dvh;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		/* padding-inline: .5rem; */
		padding: 0;
	}
	
	.site-wrap.closed .site-nav-closed {
		opacity: 1;
		transition: 400ms all ease;
		transition-delay: 400ms;
	}
	
	h1.title {
		margin-block: 0.5rem;
		font-size: 1.2rem;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: baseline;
		column-gap: 1rem;
	}

	header h1.title {
		color: white;
		text-shadow: 0 0 3px #0009;
		align-items: center;
	}
	
	.title-logo {
		display : block;
	}

	h1.title > span.secondary{
		font-size: .8rem;
		color: white;
		border: 1.5px solid white;
		border-radius: 10vh;
		padding: .1rem .35rem;
		/* background: var(--color-bg-dark-3); */
		text-shadow: 0 0 2px #0009;
		padding-left: .55rem;
	}
	
	header.scrolling .breadcrumbs {
		/* height: 0rem; */
		/* margin-top: 0; */
		display: none;
		animation: shoppingOpenPage 450ms ease;
	}
	
	div.fab-button {
	    display: none;
	}
	
	.fab-options {
	    position: relative;
	    width: auto;
	    margin: 0;
	    display: flex;
	    flex-direction: column;
	    left: 0;
	    transform: none;
	}
	
	.fab-options .fab-option span {
	    display: flex;
	    justify-content: space-between;
	    width: auto;
	    transform: none;
	    left: 0;
	    background: transparent;
	    color: var(--color-text-accent-2);
	    box-shadow: none;
	}
	
	.modal-wrapper.open .modal {
	    width: 100%;
	    height: 100%;
	    backdrop-filter: none;
	    transition: none;
	    border-radius: 0;
	}
	
	div#modal-wrapper {
	    transition: none;
	}

	.listElement {
		overflow: visible;
	}
	
	.listElement:first-child {
		margin-top: 1rem;
	}
	
	.listElement:first-child>.listElementFragment-cell:not(.listElementFragment-cell-button):before, 
	.listElement:first-child>.listElementColumn:before,
	.listElementAccordion:first-child .listElementFragment-cell:not(.listElementFragment-cell-button):before, 
	.listElementAccordion:first-child .listElementColumn:before  {
		content: attr(data-label);
		position: absolute;
		top: -.8rem;
		left: .5rem;
		font-size: .5rem;
		max-width: 100%;
		max-height: .6rem;
		overflow: hidden;
		color: var(--color-text-main);
		font-weight: bold;
	}
	
	.listElementFragment-cell {
        font-size: 0.8rem;
        padding: 0.5rem;
        overflow: visible;
        align-items: center;
  }
 
	.listElementFragment-cell-button {
	    flex: 0 0 30px;
	    padding: .3rem;
	    font-size: 1rem;
	}
	.listElementFragment-cell-replacer {
		position:fixed;
		height:fit-content;
		top:100%;
		width:80dvw;
		transform: translate(calc(50dvw - 50%), calc( -100% - 2rem));
		padding: 2rem;
		border-radius: 4rem;
		z-index: 40;
		justify-content: space-between;
		display:flex;
		font-size: 2rem;
		box-shadow: 9px 12px 10px -10px #0005;
	}

	.listElement .listElementFragment-cell:first-of-type {
	    border-radius: 1rem 0 0 1rem;
	}
	
	.listElement .listElementFragment-cell:last-of-type {
	    border-radius: 0 1rem 1rem 0;
	}

	.listElementFragment-cell-replacer:after {
		content:attr(data-label);
		position:absolute;
		top: .8rem;
		left:50%;
		transform:translateX(-50%);
		font-size:1rem;
	}
	
	.listElementFragment-cell:before, .listElementFragment-cell-red:before, .listElementFragment-cell-replacer:before, .listElementFragment-cell-green:before {
    	content: "";
	}
	
	.site-nav ul {
	    width: 100%;
	    margin: 0;
	    /* overflow-x: hidden; */
	    font-size: 1.2rem;
	    align-self: start;
	    margin-block: 1rem;
	}
	
	.site-nav-open {
		grid-template-rows: auto auto minmax(auto, 1fr) auto;
		display: flex;
		flex-direction: column;
		padding: 0;
		gap: 1rem;
		/* justify-content: normal; */
		overflow-y: auto;
		width: 100%;
		overflow-x: hidden;
		/* height: 100%; */
		/* margin: 0; */
	}
	
	.note {
		justify-self: auto;
		margin-block: 0.2rem;
		width: 100%;
		border-radius: 0;
	}
	.closed span.closeMenu {
		display: block;
	}
	
	.breadcrumbs a.openMenuResp {
		display: flex;
	}
	
	.content {
		padding: 0.5rem;
	}
	
	h1 {
/*     font-size: 1.2rem; */
 }

	.mainHeader {
	    /* flex-direction: column-reverse; */
	    gap: .5rem;
	    align-items: center;
	    flex-wrap: wrap-reverse;
	}

	.headerActionContainer {
    	gap: .5rem;
    	/* transform: translateY(calc(-1rem - 50%)); */
    	z-index: 2;
    	position: relative;
    	/* width: 100%; */
    	justify-content: flex-end;
 }
	
	.site-nav-open > * {
	    align-self: baseline;
	    /* position: sticky; */
	    /* justify-self: left; */
	}
	
	.header-first-row-container-flex {
	    display: flex;
	    flex-direction: column-reverse;
	    width: 100%;
	}
	
	.music-console-container {
	    flex-direction: column;
	    padding: 0;
	    margin-top: 0.5rem;
	}
	
	.dashboard-alert > span:nth-of-type(even):after {
	    white-space: pre;
	}
	
	.dashboard-alert.dashboard-alert-maintenance {
	    flex-direction: column;
	    gap: 0;
	}
	
	.dashboard-alert > span:nth-of-type(odd) {
	    font-size: 0.8rem;
	}
	
	.dashboard-alert > span[data-action] {
	    padding: 0;
	    padding-top: 1.5rem;
	    font-size: 1.2rem;
	}
	
	.nav-tabs {
		display: none;
	}
	
	div.content-columns {
		/* padding-bottom: 3rem; */
		/* position: static; */
		width: 100%;
		border-radius: 0;
		left: 0;
		right: 0;
		bottom: 0;
		top: auto;
		height: 100%;
		position: static;
		padding: .3rem;
	}
	.site-nav {
	
		padding: 0;
			
		margin: 0;
			
		height: 100%;
			
		border-radius: 0;
	}
	
	.dashboard-card:not(:last-of-type):after {
	    display: none;
	}
	
	.typologyDivLeft {
		flex-direction: column;
		align-items: flex-start;
		/* font-size: .8rem; */
	}
	
	div.content-columns.full-height {
	    top: 0rem;
	    height: calc(100%);
	    padding-bottom: 0;
	}
	div.content-columns.full-height > .mainContainer {
	    margin-bottom:0;
	}
	.judging-section {
		margin-top: 0;
	}
	
	.judging-section > div {
	
		width: 100%;
	
	}
	
	.site-nav ul li a {
		padding: 0.25rem 0.5rem 0.25rem .5rem;
	}

	.error, .info {
		width: 85dvw;

	}
	
	div.tutorial-container{
		flex-direction: column-reverse;
	}
	
	.chartFooter>div, .newButtonContainer>div, .newButton {
		
		font-size: .8rem;
				
		/* letter-spacing: 2px; */
				
		flex: 1;
				
		text-align: center;
				
		margin: .2rem;
	}
	
	.sumOf {
		flex-wrap: wrap;
		justify-content: left;
	}
	
	.sumOf>input[type="date"]:not([type="checkbox"]):not([type="radio"]) {
	
		font-size: .5rem;
	}
	
	.form>button:last-child {
		position: sticky;
    	bottom: 0;
	}
	
	.comunication-editor-row {

	    flex-direction:column;
	}
	
	.comunication-editor-row-title {
	    font-size: .8rem;
	    flex: 0;
	}
	
	.headerActionContainer > a {
        background: var(--color-text-accent-1);
        border-radius: 10vh;
        color:white;
        padding: .3rem;
        font-size: .6rem;
        background-image: -webkit-linear-gradient(98deg, rgba(255, 255, 220, .3) 0%, transparent 70%);
  }
 	.headerActionContainer > a[data-active="false"] {
        opacity:.4
	}
 
 	.music-player-wrapper {
	    width: calc(100% - 1rem);
	    left: .5rem;
	}
	
	div#audio-player-container {
	  font-size: .5rem;
	}
	#music-player-wrapper-controls {
		top: .1rem;
	}

	.chartPreHeader .music-btn {
		font-size: .8rem !important;!i;!;
		padding: .25rem !important;!i;!;
	}
 
 	.mainContainer{
	    padding: .5rem .5rem;
	 }
 	
 	.checkout-container {
	    flex-direction: column;
	}
	
	span.checkout-disclaimer-text {
	    font-size: .6rem;
	}
 
 	.checkout-btn-container {
	    border: none;
	    margin-top: .4rem;
	}
	
	.shoppingCartPage {
	    padding-top: 3.4rem;
	}
 
 	.shoppingCartPage_logo {
	    left: -.3rem;
	    top: 0;
	}
	
	.checkout-btn {
	    font-size: 1rem;
	    padding: .5rem .5rem .5rem 1rem;
	    border-radius: .25rem;
        margin-block: .4rem;
	}
	
	.shoppingCart_item {
	    grid-template:
	        "a a a" 2fr
	        "b b b" .5fr
	        "d d c" / 2fr 2fr 1fr;
	}
 
 	.shoppingCart_accordion {
 		grid-area: d;
        grid-column-gap: .5rem;
 	}
 	
 	.shoppingCart_header {
	    display: none;
	}
	
	.shoppingCart_cell::before {
		content: attr(data-label);
	    margin-right: .25rem;
	}
	
	.shoppingCart_accordion_element {
	    display: grid;
        grid-template:
	        "i a b"
	        "i c d" / 1rem 1fr 1fr;
	}
	
}

.helper-indicator {
    outline: 3px solid var(--color-text-accent-2);
    position: fixed;
    border-radius: .5rem;
    z-index: 1000;
    transform-origin: center;
    animation: helper-indicator 400ms;
    animation-direction:alternate;
    animation-iteration-count:infinite;
    animation-timing-function: ease-in-out;
    pointer-events:none;	
}

@keyframes helper-indicator {

    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
    
}

