:root {
	--main-bg-color: #F1F1F1;
	--main-btn-color: #6C6484;
	--main-nav-color: #FBF7FF;
	--highlight-color1: #9481EB;
	--highlight-color2: #D5CABD;
	--main-text-color: #262626;
	--secondary-btn-color: #696969;
	}

body {
	margin: 0;
	padding: 0;
	}

body, html {
	background-color: var(--main-bg-color);
	color: var(--main-text-color);
	}

body, p, input, select, textarea, button {
	letter-spacing: -0.2px;
	font-size: 16px;
	}

h1, h2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	}

td {
	vertical-align: middle;
	}

ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	}

form {
	width: 320px;
	margin: 0 auto;
	}

form.logout {
	width: 100%;
	margin: 0;
	padding: 0;
	}

.segment {
	padding: 32px 0;
	text-align: center;
	}

button, input {
	border: 0;
	outline: 0;
	font-size: 16px;
	padding: 16px;
	background-color: #EBECF0;
	box-sizing: border-box;
	}

label {
	display: block;
	margin-bottom: 24px;
	width: 100%;
	}

input[type=text], input[type=password] {
	margin-right: 8px;
	box-shadow: inset 2px 2px 5px #BABECC, inset -5px -5px 10px #FFFFFF;
	width: 100%;
	box-sizing: border-box;
	transition: all 0.2s ease-in-out;
	-moz-appearance: none;
	appearance: none;
	-webkit-appearance: none;
	}
input[type=text]:focus, input[type=password]:focus {
	box-shadow: inset 1px 1px 2px #BABECC, inset -1px -1px 2px #FFFFFF;
	}

input[type="number"] {
	width: 4rem;
	height: 34px;
	background: white;
	border-radius: 0;
	}

.no-outline:focus {
	outline: none !important;
	-webkit-appearance: none;
	box-shadow: none !important;
	border: 1px solid var(--secondary-btn-color) !important;
	}

button {
	background: var(--main-btn-color);
	color: var(--main-bg-color);
	transition: all 0.2s ease-in-out;
	cursor: pointer;
	font-weight: 500;
	border: 2px solid var(--main-btn-color);
	}
button:hover {
	background: transparent;
	color: var(--main-btn-color);
	}
button:active {
	background: transparent;
	color: var(--main-btn-color);
	}
button .icon {
	margin-right: 8px;
	}
button.loginButton {
	display: block;
	width: 100%;
	color: #0059A3;
	margin-bottom: 30px;
	}

.error_so {
	color: #A83232;
	}

button.google {
	display: block;
	margin: 0 auto;
	width: 100%;
	}
button.google i {
	font-size: 14px;
	display: inline-block;
	padding-left: 3px;
	transform: translateY(-3px);
	}
button.logout {
	display: flex;
	align-items: center;
	height: 35px;
	background-color: var(--main-btn-color);
	color: var(--main-bg-color);
	border: 2px solid var(--main-btn-color);;
	}
button.logout:hover {
	background: transparent;
	color: var(--main-btn-color);
	}
button.time_edit {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	font-size: 14px;
	height: 33px !important;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	border: 2px solid var(--secondary-btn-color);
	background: var(--secondary-btn-color);
	color: var(--main-bg-color);
	padding: 0 8px !important;
	}

button.time_edit:hover {
	background: transparent;
	color: var(--secondary-btn-color);
	}

button.delete, button.generate {
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	}

a {
	color: black;
	text-decoration: none;
	}
a:hover {
	color: #0059A3;
	}

nav {
	position: sticky;
	top: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	background: var(--main-bg-color);
	z-index: 10;
	}

nav:not(.tickets nav):not(.links nav) {
	border-bottom: none;
	box-shadow: 5px 15px 20px #BABECC;
	margin-bottom: 50px;
	}

nav hr {
	margin-bottom: 2px;
	width: 100%;
	}


nav .logo img {
	height: 70px;
	object-fit: contain;
	margin: 0;
	}

.main_nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	}

.form-nav {
	position: sticky;
	top: 98px;
	border-bottom: none;
	box-shadow: 0px 20px 15px #BABECC;
	margin-bottom: 50px;
	}

.form-nav .container > div:first-of-type {
	display: flex;
	align-items: baseline;
	gap: 50px;
	}
.form-nav .filters {
	display: flex;
	gap: 20px;
	}
.form-nav .filters select {
	border: 1px solid var(--main-text-color);
	padding: 5px 10px;
	font-size: 16px;
	}

.form-nav .filters select:focus {
	outline: none;
	}

.form-nav .filters select option.default {
	color: rgba(0, 0, 0, 0.2);
	}

.form-nav .filters input[type="button"] {
	background: var(--main-text-color);
	padding: 5px 10px;
	box-sizing: border-box;
	font-size: 16px;
	color: var(--main-bg-color);
	border: 2px solid var(--main-text-color);
	transition: all 0.2s ease-in-out;
	}

.form-nav .filters input[type="button"]:not(.form-nav .filters input[type="button"]:disabled):hover {
	background: none;
	color: var(--main-text-color);
	cursor: pointer;
	}

.form-nav .filters input[type="button"]:disabled {
	background: rgba(0, 0, 0, 0.2);
	border: 2px solid rgba(0, 0, 0, 0);
	}

.form-nav .btns {
	display: flex;
	justify-content: flex-end;
	gap: 30px;
	}

.form-nav button {
	margin: 0 !important;
	}

.messages i {
	margin-right: 10px;
	}

#up {
	position: fixed;
	bottom: 50px;
	right: 50px;
	font-size: 30px;
	}

#up:hover {
	cursor: pointer;
	}

.main_nav .navigation {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	column-gap: 25px;
	width: 100%;
	height: min-content;
	margin: 0 !important;
	}
.main_nav .navigation .button_nav {
	color: var(--main-btn-color);
	transition: all 0.2s ease-in-out;
	cursor: pointer;
	font-weight: 500;
	text-align: center;
	height: 40px;
	/* background: var(--main-nav-color);*/
	
	}
.main_nav .navigation .button_nav:hover {
	
	}
.main_nav .navigation .button_nav:active {
	font-weight: 600;
	}
.main_nav .navigation .button_nav:target {
	background-color: red;
	}
.main_nav .navigation .button_nav a {
	color: var(--main-btn-color);
	font-size: 20px;
	line-height: 40px;
	}

.name {
	color: #BABECC;
	}

.check_label {
	cursor: pointer;
	position: relative;
	margin: -8px 0 0;
	width: 10px;
	height: 10px;
	-webkit-tap-highlight-color: transparent;
	transform: translate3d(0, 0, 0);
	}
.check_label:before {
	content: "";
	position: absolute;
	top: -3px;
	left: -3px;
	width: 15px;
	height: 15px;
	background: rgba(34, 50, 84, 0.03);
	opacity: 0;
	transition: opacity 0.2s ease;
	}
.check_label svg {
	position: relative;
	z-index: 1;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke: #C8CCD4;
	stroke-width: 1.5;
	transform: translate3d(0, 0, 0);
	transition: all 0.2s ease;
	}
.check_label svg path {
	stroke-dasharray: 60;
	stroke-dashoffset: 0;
	}
.check_label svg polyline {
	stroke-dasharray: 22;
	stroke-dashoffset: 66;
	}
.check_label:hover:before {
	opacity: 1;
	}
.check_label:hover svg {
	stroke: #120930;
	}

.check_box:checked + .check_label svg {
	stroke: #120930;
	}
.check_box:checked + .check_label svg path {
	stroke-dashoffset: 60;
	transition: all 0.3s linear;
	}
.check_box:checked + .check_label svg polyline {
	stroke-dashoffset: 42;
	transition: all 0.2s linear;
	transition-delay: 0.15s;
	}

.dateTime, .alert {
	font-size: 13px;
	}

.err, .suc {
	padding-left: 0;
	}
.err .alert_error, .suc .alert_success {
	font-weight: 500;
	font-size: 13px;
	width: 100%;
	margin-top: 15px;
	font-family: "Montserrat", sans-serif;
	padding: 5px 10px;
	text-align: left;
	}

.err .alert_error {
	color: #83211B;
	border: 1px solid #F0A49F;
	background-color: #F3C2BF;
	}

.suc .alert_success {
	color: #047A00;
	border: 1px solid #047A00;
	background-color: #8AFAB3;
	}

.messages {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 80px;
	justify-content: center;
	}

img {
	width: 60px;
	height: 50px;
	margin-bottom: 5px;
	margin-top: 0;
	}
img.start {
	margin: 0px auto 20px;
	object-fit: contain;
	height: 320px;
	width: 320px;
	border: 2px solid var(--main-btn-color);
	}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(255, 255, 255, 0.8);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 99;
	}

.overlay p {
	text-align: center;
	}

.overlay .header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: white;
	border: 2px solid var(--main-text-color);
	gap: 30px;
	width: 400px;
	height: 400px;
	border-radius: 100%;
	}

.overlay img {
	transform: scale(3);
	}

.links nav > div:last-of-type {
	padding: 5px 30px;
	align-items: center;
	}

.links nav > div:last-of-type p {
	margin: 0;
	}

body.login {
	background-image: url("/images/tsgbackground.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 100vh;
	width: 100vw;
	position: absolute;
	top: 0;
	left: 0;
	}

body.login .container > div {
	background: var(--main-bg-color);
	position: relative;
	display: block;
	z-index: 10;
	width: min-content;
	height: min-content;
	padding: 30px;
	}

body.login .container {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	}

.fa-arrow-up-right-from-square {
	font-size: 18px;
	}

.customTable {
	padding: 16px;
	}

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

table th {
	white-space: nowrap !important;
	}
