/*Branding*/
:root {
	--black: #000;
	--grey: #f1f1f1;
	--green: #32cd32;
	--red: #ff0000;
	--blue: #36c;
	--title-font: "Sofia Sans Extra Condensed", sans-serif;
	--body-font: "Host Grotesk", sans-serif;
	--backup-font: "Oswald", sans-serif;

	--mono-1: #000 !important;
	--mono-2: #222 !important;
	--mono-3: #333 !important;
	--mono-4: #666 !important;

	--pink-1: #7a1b4f !important;
	--pink-2: #9b236a !important;
	--pink-3: #c71585 !important;
	--pink-4: #e75480 !important;

	--red-1: #800000 !important;
	--red-2: #991111 !important;
	--red-3: #b22222 !important;
	--red-4: #e74c3c !important;

	--orange-1: #994400 !important;
	--orange-2: #b34700 !important;
	--orange-3: #cc5500 !important;
	--orange-4: #ff7f32 !important;

	--yellow-1: #8b8000 !important;
	--yellow-2: #a18d00 !important;
	--yellow-3: #bfa500 !important;
	--yellow-4: #e6c300 !important;

	--green-1: #004d00 !important;
	--green-2: #116611 !important;
	--green-3: #228b22 !important;
	--green-4: #5cb85c !important;

	--blue-1: #00264d !important;
	--blue-2: #0d3a7a !important;
	--blue-3: #1e5eb7 !important;
	--blue-4: #4a90e2 !important;

	--purple-1: #2e003e !important;
	--purple-2: #4a0670 !important;
	--purple-3: #6a0dad !important;
	--purple-4: #9b59b6 !important;
}


/* Resets & Defaults */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
	-o-text-size-adjust: none;
	text-size-adjust: none;
}

body::-webkit-scrollbar,
html::-webkit-scrollbar,
ul::-webkit-scrollbar {
	display: none !important;
}

body,
html,
ul {
	scrollbar-width: none !important;
	-ms-overflow-style: none !important;
	scroll-behavior: smooth !important;
	touch-action: manipulation;
	-webkit-overflow-scrolling: touch;
}

body.freeze * {
	pointer-events: none !important;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dd,
ol,
ul,
figure,
hr {
	margin-block-end: 0;
	color: black;
}

ul,
ol {
	list-style: none;
}

body,
#app-container,
#skeleton-container {
	background-color: white !important;
}

#app-container {
	view-transition-name: 'app';
}

#app-container,
#skeleton-container {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow-x: hidden;
	overflow-y: auto;
	padding: 80px 0px 120px;
	z-index: 1;
}

#skeleton-container {
	pointer-events: none;
	transition: 0.3s ease-in-out;
	z-index: 100 !important;
}

::view-transition-old(app) {
	animation: fade-out 0.3s ease-in-out;
}

::view-transition-new(app) {
	animation: fade-out 0.3s ease-in-out;
	mix-blend-mode: normal;
}

[id] {
	scroll-margin-block: 50px;
	/* Offset for top of scrolled-to el */
}

h1,
h2,
h3,
a,
li {
	font-family: var(--title-font);
	text-wrap: balance;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	font-style: normal;
	width: 100%;
}

h1 {
	font-size: 40px;
	line-height: 40px;
}

h2 {
	font-size: 32px;
	line-height: 32px;
}

h3 {
	font-size: 25px;
	line-height: 25px;
}

a {
	font-size: 20px;
	line-height: 20px;
	cursor: pointer;
}

p {
	font-family: var(--body-font);
	text-wrap: wrap;
	overflow-wrap: break-word;
	white-space: normal;
	text-wrap: wrap;
	word-wrap: break-word;
	width: 60%;
	margin: 0 auto;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 1.2;
}

@media only screen and (max-width: 800px) {
	p {
		width: 90%;
	}
}

input,
button,
textarea,
select {
	font-family: var(--body-font);
	font-size: 16px;
	font-weight: 400;
	font-style: normal;
	padding: 8px 12px;
	border: 2px solid var(--grey);
	border-radius: 5px;
	width: 100%;
}

input:focus,
textarea:focus {
	outline: none;
}

.input-error {
	border: 2px solid var(--red) !important;
}

label {
	font-family: var(--body-font);
	color: black;
	font-family: var(--body-font);
	font-size: 14px;
	width: 100%;
}

.dropdown {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("/assets/icons/down-arrow-black.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 0.8rem;
}

img {
	max-width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	margin: 0 auto;
	object-fit: cover;
	font-size: 0;
}

a img,
a span {
	pointer-events: none;
}

.tag {
	font-family: var(--title-font);
	text-transform: uppercase;
	font-size: 18px;
	border-radius: 4px;
	background: black;
	color: white;
	padding: 3px 6px 2px;
}

.tag-white {
	background: white !important;
	color: black !important;
}

.tag-green {
	background: var(--green);
	color: white;
}

.tag-red {
	background: var(--red);
	color: white;
}


/* Images */
.full-logo {
	max-width: 90%;
	background: black;
	border-radius: 5px;
	padding: 5px;
	margin: 10px auto;
}

.inline-icon {
	display: inline-flex;
	height: 25px;
	transform: translate(0, 5px);
}

.profile-picture {
	display: flex;
	margin: 0 auto;
	border-radius: 50%;
	cursor: pointer;
	height: 100px;
	width: 100px;
}

.account-settings-header {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.account-settings-header-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 15px;
}

.account-settings-header-inner h2 {
	margin: 0 !important;
	position: relative;
}

.account-settings-header-inner h2 span {
	background: white;
	color: black;
	margin-left: 10px;
	position: absolute;
	top: 2px;
	line-height: 20px;
}

.account-settings-header img {
	margin: 0;
}

/* COMPONENTS */

/* Custom Splash Screen */
.splash-screen {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: black;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	z-index: 999;
	pointer-events: none;
	transition: opacity 0.4s ease-in-out;

	h1 {
		color: white;
		text-align: center;
		z-index: 1000;
		transform: translate(0px, -20px);
	}
}

@media only screen and (min-width: 700px) {
	.splash-screen {
		display: none;
	}
}

/* Nav Bars */
.top-nav {
	background: var(--black);
	width: 100vw;
	position: fixed;
	top: 0;
	z-index: 750;
	transition: 0.3s ease-in-out;
	view-transition-name: top-nav-bar;

	h1 {
		color: white;
	}
}

::view-transition-new(top-nav-bar) {
	mix-blend-mode: normal;
}

.top-nav-logo {
	height: 200px;
}

.back-icon {
	height: 30px;
	width: 30px;
	position: absolute;
	left: 10px;
	top: 15px;
	cursor: pointer;
	filter: invert(1);
	z-index: 25;
}

.btm-nav {
	background-color: var(--black);
	text-align: center;
	position: fixed;
	bottom: 0;
	width: 100vw;
	height: 80px;
	display: flex;
	justify-content: space-around;
	align-items: start;
	box-sizing: border-box;
	z-index: 900;
	transition: 0.2s ease-in-out;
	padding: 0px 20px;
	view-transition-name: bottom-nav-bar;

	&.btm-nav-slideaway {
		transform: translateY(100%);
	}

	a {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: auto;
		color: white;
		margin: 0 auto;
		cursor: pointer;
		font-size: 14px;
		padding: 10px;

		img {
			height: 30px;
			width: 30px;
			background: none;
		}
	}

	.profile-picture {
		border: solid 1.5px white;
	}
}

::view-transition-new(bottom-nav-bar) {
	mix-blend-mode: normal;
}

/* Buttons & Pills */
.btn-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: fit-content;
	max-width: 100%;
	gap: 10px;
	flex-direction: row;
	background: none;
}

.pill-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	flex-direction: row;
	background: none;

	ul {
		display: flex;
		gap: 8px;
		justify-content: left;
		align-items: center;
		overflow-x: scroll !important;
		width: fit-content;
		padding: 0px 10px;
		scroll-behavior: auto !important;
	}
}

.btn,
.pill {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid var(--grey);
	border-radius: 5px;
	background-color: var(--grey);
	color: black;
	cursor: pointer;
	transition: 0.4s ease-in-out;
	margin: 0 auto;
	font-family: var(--title-font);
	text-transform: uppercase;
}

.btn {
	width: 200px;
	max-width: 100%;
	padding-top: 10px;
	padding-bottom: 7px;
}

@media only screen and (max-width: 700px) {
	.btn-wrapper {
		width: 100%;
		padding: 0px 10px;
	}

	.btn {
		width: 50%;
	}
}

.pill {
	margin: 0;
	font-size: 16px;
	padding: 3px 8px 1px;
	width: fit-content;
	white-space: nowrap;

	img {
		height: 15px;
		width: 15px;
		transform: translate(-4px, -1px);
		cursor: pointer;
		pointer-events: none;
		max-width: unset;
	}

	&.a-black img {
		filter: invert(1);
	}
}

.reset-pill {
	padding: 0;

	img {
		filter: invert(1);
		max-width: unset;
		transform: unset;
		height: 23px;
		width: 23px;
		padding: 3px;
	}
}


/* Sticky Nav Pills */
.pill-sticky-nav {
	padding: 10px 0px;
	width: 100%;
	background: white;
	margin-bottom: 0px !important;
	box-shadow: 0px 5px 10px 0px #fff;
}


/* Toast Notifications */
.toast-wrapper {
	background: var(--black);
	color: white !important;
	opacity: 100%;
	cursor: pointer;
	border-radius: 0 0 25px 25px;
	position: fixed;
	top: 0px;
	left: 5px;
	right: 5px;
	width: calc(100vw - 40px);
	max-width: 400px;
	top: -70px;
	transition: 0.4s ease-in-out;
	z-index: 850;
	padding: 15px 10px 20px;
	margin: 0 auto;

	* {
		color: white !important;
	}

	&::after {
		content: '';
		position: absolute;
		bottom: 10px;
		left: 50%;
		transform: translateX(-50%);
		width: 60px;
		height: 4px;
		border-radius: 999px;
		background: white;
		pointer-events: none;
	}
}

.showing-toast {
	top: 0;
}

.toast-inverted {
	background: white;

	&::after {
		background-color: black;
	}

	h3 {
		color: black !important;
	}
}


/* Modals */
.modal-wrapper {
	display: flex;
	opacity: 0;
	pointer-events: none;
	background-color: rgba(0, 0, 0, 0.4);
	transition: 0.5s ease-in-out;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	z-index: 999 !important;
}

.modal {
	background: white;
	margin: 15% auto;
	padding: 20px;
	width: 40%;
	border-radius: 8px;
	max-height: 80%;
	overflow-y: scroll;

	p,
	.btn-wrapper {
		width: 100%;
	}
}

@media only screen and (max-width: 700px) {
	.modal {
		width: 80% !important;
	}

	.modal .btn-wrapper {
		padding: 0;
	}
}

.mod-modal-no-bg .modal {
	background: none;
}

/* Search Bar */
.search-bar {
	margin: 10px;
	width: -webkit-fill-available;
	padding-left: 40px;
}

.search-bar-icon {
	position: absolute;
	top: 15px;
	left: 15px;
	height: 30px;
	width: 30px;
	filter: invert(1);

	&#resetSearch {
		transition: 0.3s ease-in-out;
		height: 25px;
		width: 25px;
		top: 18px;
		left: unset;
		right: 18px !important;
		cursor: pointer;
	}
}

.search-placeholder-text {
	font-family: var(--body-font);
	font-size: 16px !important;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	color: #666;
	transition: 0.3s ease-in-out;
	z-index: 780;
	width: unset;
}

.search-bar:focus+.search-placeholder-text,
.search-bar:not(:placeholder-shown)+.search-placeholder-text {
	left: 53px;
	transform: translate(0%, -50%);
	font-size: 16px !important;
	color: #666;
}


/* Bottom Sheet */
/* Add Custom Bottom Sheet Heights In Their Respective CSS Sections */
.bottom-sheet-wrapper {
	display: flex;
	opacity: 0;
	pointer-events: none;
	background-color: rgba(0, 0, 0, 0.4);
	transition: 0.5s ease-in-out;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	z-index: 999 !important;
}

.bottom-sheet {
	background: var(--black);
	width: 100%;
	max-width: 560px;
	border-radius: 40px 40px 0px 0px;
	height: fit-content;
	position: absolute;
	bottom: -100vh;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: bottom 0.3s ease-in-out, height 0.3s ease-in-out;
	margin: 0 auto;
	padding: 30px 20px 40px;

	* {
		transition: 0.4s ease-in-out !important;
	}

	&::before {
		content: '';
		position: absolute;
		top: 10px;
		left: 50%;
		transform: translateX(-50%);
		width: 60px;
		height: 4px;
		border-radius: 999px;
		background: white;
		pointer-events: none;
	}

	&.mod--transitioning * {
		pointer-events: none !important;
		opacity: 0 !important;
	}

	h1,
	h2,
	h3,
	p,
	span {
		color: white;
	}

	h2 {
		margin: 0px 0px 10px;
	}

	p {
		width: 100%;
		max-width: 500px;
	}

	.a-blue {
		cursor: pointer;
		color: var(--blue) !important;
	}

	.btn-wrapper {
		padding: 0;
		width: 100%;
		max-width: 500px;

		.btn {
			max-width: unset;
		}
	}

	.btn {
		max-width: 300px;
		background: white !important;
		color: black !important;
	}

	input {
		max-width: 500px;
		margin: 0 auto;
		display: flex;

		&:disabled {
			background-color: white !important;
		}
	}

	.pill {
		background: var(--black);
		border: 2px solid white;
		transition: 0.3s ease-in-out !important;
		color: white;
		padding: 5px 10px 4px;

		&.a-black {
			background: white;
			border: 2px solid white;
			color: black;
		}
	}
}

.bottom-sheet-handle-hitbox {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50px;
	touch-action: none !important;
}


.bottom-sheet-inner {
	padding: 0px;
	height: 45vh;
	overflow-y: scroll;
	overflow-x: hidden;

	&::after {
		content: '';
		position: sticky;
		bottom: 0;
		left: 0;
		right: 0;
		height: 15px;
		display: block;
		pointer-events: none;
		backdrop-filter: blur(1px);
		background: linear-gradient(to top, var(--black), rgba(0, 0, 0, 0));
	}
}


/* Nav Actions */
.nav-action {
	display: flex;
	flex-direction: row;
	height: 50px;
	margin: 15px 0px 20px;
	cursor: pointer;
	width: 100%;

	* {
		pointer-events: none !important;
	}

	&:last-child {
		margin-bottom: 0px;
	}

	img {
		height: 50px;
		width: 50px;
		margin: 0;
		padding: 5px;
	}
}

.nav-action-inner {
	display: flex;
	flex-direction: column;
	padding-left: 10px;

	h2,
	p {
		width: 100%;
		text-align: left;
		margin: 0;
	}
}




/* Carousels */
.carousel-wrapper {
	display: flex;
	width: 100vw;
	flex-direction: row;
	overflow-x: scroll;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: auto !important;

	&[data-list-objects="video-cards"] {
		height: 452px;
	}

	li {
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 5px;
		width: fit-content;
		padding-left: 8px;
		cursor: pointer;

		/* carousel card children unclickable, unless explicitly allowed  */
		div * {
			pointer-events: none;
		}

		&:last-child {
			margin-right: 8px !important;
		}

		&#video-card {
			min-width: 262px;
			/* video width plus padding */
			height: 452px;
		}
	}
}

@media screen and (max-width: 700px) {
	.mobile--snap-start {
		scroll-snap-align: start;
	}

	.mobile--snap-center {
		scroll-snap-align: center;
	}
}



/* Feeds */
.feed-wrapper {
	flex-direction: column;

	li {
		width: 60%;
		max-width: 400px;
		margin: 0 auto;
		margin-bottom: 10px;

		/* feed card children unclickable, unless explicitly allowed  */
		div * {
			pointer-events: none;
		}
	}
}





/* NEEDS MODULE REFACTOR */
/* Spotlight Video */
.spotlight-video {
	border-radius: 10px 10px 7px 7px;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	height: fit-content;
	width: 325px;
}

.spotlight-video .iframe-placeholder,
.fullscreen-card .iframe-placeholder {
	height: 575px;
	width: 325px;
	margin: auto;
}

.fullscreen-card .iframe-placeholder {
	margin-top: 80px;
}

.spotlight-video .iframe-placeholder img#vimeo-thumbnail,
.fullscreen-card .iframe-placeholder img#vimeo-thumbnail {
	height: 577px;
}

.spotlight-video .video-title,
.fullscreen-card .video-title {
	opacity: 0;
	pointer-events: none;
}

@media screen and (max-width: 450px) {
	.spotlight-video {
		width: 100vw;
		margin-top: -80px;
		/* height: calc((100vw * 1.7716) + 52px); */
		height: calc(100vw * 1.7716);
		border-radius: 0;
	}

	.spotlight-video .iframe-placeholder,
	.spotlight-video .iframe-placeholder img#vimeo-thumbnail,
	.fullscreen-card .iframe-placeholder,
	.fullscreen-card .iframe-placeholder img#vimeo-thumbnail {
		width: 100vw;
		height: calc(100vw * 1.7716);
		border-radius: 0;
		margin-top: 0;
	}

	.spotlight-video .iframe-settings,
	.spotlight-video .iframe-settings-inner,
	.fullscreen-card .iframe-settings,
	.fullscreen-card .iframe-settings-inner {
		top: 12px;
		right: 12px;
		gap: 8px;
	}

	.spotlight-video .iframe-settings img,
	.spotlight-video .iframe-settings-inner img,
	.spotlight-video .iframe-actions img,
	.fullscreen-card .iframe-settings img,
	.fullscreen-card .iframe-settings-inner img,
	.fullscreen-card .iframe-actions img {
		height: 38px;
		width: 38px;
		padding: 6px;
	}

	.spotlight-video .iframe-scrubber-wrapper,
	.fullscreen-card .iframe-scrubber-wrapper {
		right: 48px;
	}

	.spotlight-video .iframe-scrubber,
	.spotlight-video .iframe-scrubber-fill,
	.fullscreen-card .iframe-scrubber,
	.fullscreen-card .iframe-scrubber-fill {
		height: 10px;
	}
}

.spotlight-video iframe,
.fullscreen-card iframe {
	width: 325px;
	height: 575px;
}

@media screen and (max-width: 450px) {

	.spotlight-video iframe,
	.fullscreen-card iframe {
		width: 100vw;
		height: calc(100vw * 1.7716);
		border-radius: 0;
	}
}





/* Bottom Sheet Video Uploads */
.bottom-sheet-inner#upload-bottom-sheet-inner {
	height: 70vh;
}

.upload-preview-container {
	display: flex;
	height: 557px;
	width: 310px;
	margin: 0 auto;
	position: relative;
	background: white;
	border-radius: 5px;

	video {
		height: 557px;
		width: 310px;
		object-fit: cover;
		border-radius: 5px;
	}

	img {
		height: 60px;
		width: 60px;
		position: absolute;
		border-radius: 30px;
		left: 0;
		right: 0;
		margin: 0 auto;
		background: black;
		padding: 15px;
		top: calc(50% - 30px);
	}
}

.upload-metadata {
	display: flex;
	margin: 0 auto;
	margin-top: 10px;
	width: 100%;
	max-width: 500px
}

.btn-wrapper#upload-preview-buttons {
	width: 310px;

	.btn.selected {
		background: var(--green) !important;
		border: 2px solid var(--green) !important;
		color: white !important;
	}

	.btn.reselect {
		background: var(--red) !important;
		border: 2px solid var(--red) !important;
		color: white !important;
	}
}

.upload-requirements {
	display: flex;
	gap: 10px;
	flex-direction: column;
	width: fit-content;
	margin: 0 auto;
	padding: 10px;

	p {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 10px;
	}

	img {
		height: 20px;
		width: 20px;
		margin: 0;
	}
}




/* Bottom Sheet Recreation Explanation */
.bottom-sheet-recreation-thumbnails {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	gap: 15px;

	* {
		margin: 0 !important;
		pointer-events: none;
	}

	img#vimeo-thumbnail {
		height: 250px;
		width: 138px;
		object-fit: cover;
		border-radius: 7px;
	}

	img#recreation {
		height: 40px;
		width: 40px;
	}

	.thumbnail-wrapper {
		display: flex;
		flex-direction: column;
		margin: 0 auto;
		justify-content: center;
		position: relative;

		.tag {
			position: absolute;
			bottom: 7px;
			width: fit-content;
			left: 0;
			right: 0;
			margin: 0 auto !important;
		}
	}
}



/* SPA Transitions */
@keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fade-out {
	from {
		opacity: 1;
	}

	to {
		opacity: 0.5;
	}
}

@keyframes slide-up {
	from {
		transform: translateY(100%);
	}

	to {
		transform: translateY(0%);
	}
}

@keyframes slide-down {
	from {
		transform: translateY(0%);
	}

	to {
		transform: translateY(100%);
	}
}

@keyframes slide-in-left {
	from {
		transform: translateX(-100%);
	}

	to {
		transform: translateX(0%);
	}
}

@keyframes slide-out-left {
	from {
		transform: translateX(0%);
	}

	to {
		transform: translateX(-100%);
	}
}

@keyframes slide-in-right {
	from {
		transform: translateX(100%);
	}

	to {
		transform: translateX(0%);
	}
}

@keyframes slide-out-right {
	from {
		transform: translateX(0%);
	}

	to {
		transform: translateX(100%);
	}
}

/* Full Page Transition Classes */
/* .page-forward {
	view-transition-name: page-forward;
}

.page-back {
	view-transition-name: page-back;
}

::view-transition-old(page-forward) {
	animation: slide-out-left 250ms ease forwards;
}

::view-transition-new(page-forward) {
	animation: slide-in-right 250ms ease forwards;
}

::view-transition-old(page-back) {
	animation: slide-out-right 250ms ease forwards;
}

::view-transition-new(page-back) {
	animation: slide-in-left 250ms ease forwards;
}

#app-container,
::view-transition-old(page-forward),
::view-transition-new(page-forward),
::view-transition-old(page-back),
::view-transition-new(page-back) {
	z-index: 1 !important;
}

.btm-nav {
	z-index: 800 !important;
	view-transition-name: none !important;
}

::view-transition-old(root),
::view-transition-new(root) {
	animation: none;
} */






/* Forms */
.signup-form {
	border-radius: 5px;
	padding: 20px;
	background: var(--grey);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	gap: 7px;
	width: 300px;

	input,
	select {
		border: solid 2px white;
	}

	.profile-picture {
		height: 100px;
		width: 100px;
		border: none;
	}
}





/* Bottom Sheet Forms */
.bottom-sheet .form-textarea {
	width: 100%;
	color: black !important;
	height: 120px;
	padding: 10px;
	resize: none;
	margin-top: 10px;
}

.bottom-sheet .form-success-message-wrapper {
	height: 177px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}



/* Accordions */
.accordion {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	background: var(--grey);
	border-radius: 10px;
	padding: 20px 30px 17px;
	width: 500px;
	max-width: 90%;
	position: relative;
	cursor: pointer;

	* {
		pointer-events: none;
	}

	p {
		width: 100%;
		max-height: 0;
		overflow: hidden;
		padding-top: 0px;
		transition: 0.4s ease-in-out;
	}

	#accordion-icon {
		position: absolute;
		top: 23px;
		right: 15px;
		height: 20px;
		width: 20px;
		transition: 0.4s ease-in-out;
	}

	&.open #accordion-icon {
		transform: rotate(180deg);
	}
}


/* Tables */
.table {
	display: flex;
	width: 95%;
	flex-direction: column;
	gap: 5px;
	margin: 0 auto;
}

.table-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 0 auto;
	border: var(--grey) solid 1px;
	border-radius: 5px;
	width: 100%;
	padding: 5px 10px;

	p {
		text-wrap: nowrap;
		text-align: center;

		&:first-child {
			text-align: left;
		}
	}
}








/* PAGE-SPECIFIC STYLES */
/* /profile aka /u/ */
.username-bubble {
	background: var(--grey);
	padding: 5px 10px;
	border-radius: 10px;
	width: fit-content;
	text-align: center;
	cursor: pointer;
}

.profile-picture-wrapper {
	position: relative;
	width: fit-content;
	margin: 0 auto;
}

.settings-icon {
	position: absolute;
	bottom: 0px;
	right: 0px;
	height: 32px;
	width: 32px;
	cursor: pointer;
	background: var(--black);
	padding: 5px;
	border-radius: 50%;
}

.btn-wrapper#account-settings-buttons {
	flex-wrap: wrap;
	flex-direction: row;

	.btn {
		flex: 1 1 40%;
		min-width: 100px;
		margin: 0;
	}
}

.bottom-sheet .profile-picture#upload-photo-preview {
	height: 150px !important;
	width: 150px !important;
}



/* Dashboards */
.dashboard {
	display: flex;
	flex-direction: row;
	gap: 10px;
	width: 100%;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	max-width: 400px;
}

.dashboard-inner {
	background: var(--grey);
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 75px;
	flex: 1;
	flex-direction: column;
	font-family: var(--title-font);

	* {
		pointer-events: none;
	}

	p {
		font-family: var(--title-font);
		text-transform: uppercase;
		font-weight: 600;
	}
}













/* World Map SVG */
.world-map {
	svg {
		height: auto;
		width: 100%;
		padding: 15px;
	}

	path {
		fill: #ddd;
		transition: fill 0.3s ease;

		&.visited {
			fill: var(--red);
		}
	}

	text.country-count {
		font-size: 10px;
		fill: white;
		font-weight: 700;
		pointer-events: none;
	}
}




/* MOD OVERRIDES */
.nav-link,
.mod--clickable {
	cursor: pointer !important;
}

/* Show & Hide */
.mod--trans {
	transition: 0.3s ease-in-out;
}

.mod--rotate {
	transform: rotate(180deg);
}

.mod--flipped {
	transform: scaleX(-1) !important;
}

.mod--hidden {
	opacity: 0 !important;
	pointer-events: none !important;
}

.mod--show {
	opacity: 1 !important;
	pointer-events: auto !important;
}

.mod--show-on-hover {
	opacity: 0;
	transition: 0.4s ease-in-out;
}

.mod--show-on-hover:hover {
	opacity: 1;
}

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

.mod--ignore {
	pointer-events: none !important;
	cursor: auto;
}

.mod--disabled {
	opacity: 0.5 !important;
	pointer-events: none !important;
	cursor: auto;
}

.mod--success {
	background-color: var(--green) !important;
	border: solid var(--green) 2px !important;
	color: white !important;
	pointer-events: none !important;
	cursor: auto !important;
}

@media only screen and (min-width: 800px) {
	.mobile-only {
		display: none;
	}
}

/* Fonts */
.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-big {
	font-size: 20px;
	line-height: 1.2;
}

.text-tiny {
	font-size: 12px;
	line-height: 1.1;
}

.text-white {
	color: white;
}

.text-error {
	color: var(--red) !important;
	transition: 0.4s;
}

.text-ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.text-bold {
	font-weight: 700;
}

/* Buttons */
.a-black {
	background-color: var(--black);
	border: 2px solid var(--black);
	color: white;
}

.a-success,
.a-include {
	background-color: var(--green);
	border: 2px solid var(--green);
	color: white;
}

.a-error,
.a-exclude {
	background-color: var(--red);
	border: 2px solid var(--red);
	color: white;
}

.a-hollow {
	background: none;
	color: black;
	border: 2px solid var(--black);
}

.a-blue {
	color: var(--blue);
	background: none;
	cursor: pointer;
}


/* Flexbox */
.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.flex-col {
	display: flex;
	flex-direction: column;
}

.flex-row {
	display: flex;
	flex-direction: row;
}

.flex-left {
	display: flex;
	flex-direction: row;
	justify-content: left;
	align-items: center;
}


/* Backgrounds */
.bg-none {
	background: none;
}

.bg-black {
	background-color: var(--black);
	color: white;
}

.bg-grey {
	background-color: var(--grey);
	color: black;
}

.bg-white {
	background-color: white;
	color: black;
}

.bg-blue {
	background-color: var(--blue);
	color: white;
}

.bg-success {
	background-color: var(--green);
	color: white;
	pointer-events: none;
	cursor: auto;
}

.bg-error {
	background-color: var(--red);
	color: white;
}

/* Height */
.h-20 {
	height: 20px;
}

.h-30 {
	height: 30px;
}

.h-40 {
	height: 40px;
}

.h-50 {
	height: 50px;
}

.h-60 {
	height: 60px;
}

.h-80 {
	height: 80px;
}

.h-100 {
	height: 100px;
}

.h-150 {
	height: 150px;
}

.h-200 {
	height: 200px;
}

/* Width */
.mod--fill {
	width: 100% !important;
}

.w-50 {
	width: 50px;
}

.w-75 {
	width: 75px;
}

.w-100 {
	width: 100px;
}

.w-150 {
	width: 150px;
}

.w-200 {
	width: 200px;
}

.w-250 {
	width: 250px;
}

.w-300 {
	width: 300px;
}

.w-350 {
	width: 350px;
}

.w-400 {
	width: 400px;
}

.w-500 {
	width: 500px;
}

/* Margin */
.m-5 {
	margin: 5px;
}

.m-10 {
	margin: 10px;
}

.m-15 {
	margin: 15px;
}

.m-20 {
	margin: 20px;
}

.m-t-0 {
	margin-top: 0px;
}

.m-t-5 {
	margin-top: 5px;
}

.m-t-10 {
	margin-top: 10px;
}

.m-t-15 {
	margin-top: 15px;
}

.m-t-20 {
	margin-top: 20px;
}

.m-t-30 {
	margin-top: 30px;
}

.m-t-40 {
	margin-top: 40px;
}

.m-t-60 {
	margin-top: 60px;
}

.m-t-80 {
	margin-top: 80px;
}

.m-t-100 {
	margin-top: 100px;
}

.m-b-0 {
	margin-bottom: 0px;
}

.m-b-5 {
	margin-bottom: 5px;
}

.m-b-10 {
	margin-bottom: 10px;
}

.m-b-15 {
	margin-bottom: 15px;
}

.m-b-20 {
	margin-bottom: 20px;
}

.m-b-30 {
	margin-bottom: 30px;
}

.m-b-40 {
	margin-bottom: 40px;
}

.m-b-60 {
	margin-bottom: 60px;
}

.m-b-80 {
	margin-bottom: 80px;
}

.m-b-100 {
	margin-bottom: 100px;
}

.m-l-0 {
	margin-left: 0px;
}

.m-l-5 {
	margin-left: 5px;
}

.m-l-10 {
	margin-left: 10px;
}

.m-l-15 {
	margin-left: 15px;
}

.m-l-20 {
	margin-left: 20px;
}

.m-l-40 {
	margin-left: 40px;
}

.m-l-60 {
	margin-left: 60px;
}

.m-l-100 {
	margin-left: 100px;
}

.m-r-0 {
	margin-right: 0px;
}

.m-r-5 {
	margin-right: 5px;
}

.m-r-10 {
	margin-right: 10px;
}

.m-r-15 {
	margin-right: 15px;
}

.m-r-20 {
	margin-right: 20px;
}

.m-r-40 {
	margin-right: 40px;
}

.m-r-60 {
	margin-right: 60px;
}

.m-r-100 {
	margin-right: 100px;
}

/* Padding */
.p-none {
	padding: 0px;
}

.p-5 {
	padding: 5px;
}

.p-10 {
	padding: 10px;
}

.p-15 {
	padding: 15px;
}

.p-20 {
	padding: 20px;
}

.p-5-10 {
	padding: 5px 10px;
}

.p-t-5 {
	padding-top: 5px;
}

.p-t-10 {
	padding-top: 10px;
}

.p-t-20 {
	padding-top: 20px;
}

.p-t-40 {
	padding-top: 40px;
}

.p-t-60 {
	padding-top: 60px;
}

.p-t-60 {
	padding-top: 80px;
}

.p-t-100 {
	padding-top: 100px;
}

.p-b-5 {
	padding-bottom: 5px;
}

.p-b-10 {
	padding-bottom: 10px;
}

.p-b-20 {
	padding-bottom: 20px;
}

.p-b-40 {
	padding-bottom: 40px;
}

.p-b-60 {
	padding-bottom: 60px;
}

.p-b-80 {
	padding-bottom: 80px;
}

.p-b-100 {
	padding-bottom: 100px;
}

.p-l-5 {
	padding-left: 5px;
}

.p-l-10 {
	padding-left: 10px;
}

.p-l-20 {
	padding-left: 20px;
}

.p-l-30 {
	padding-left: 30px;
}

.p-r-5 {
	padding-right: 5px;
}

.p-r-10 {
	padding-right: 10px;
}

.p-r-20 {
	padding-right: 20px;
}

.p-r-30 {
	padding-right: 30px;
}

/* Flex Gaps */
.g-5 {
	gap: 5px;
}

.g-8 {
	gap: 8px;
}

.g-10 {
	gap: 10px;
}

.g-15 {
	gap: 15px;
}

/* Borders */
.border-black {
	border: 2px solid black;
	border-radius: 5px;
}

.border-grey {
	border: 2px solid #d3d3d3;
	border-radius: 5px;
}

.border-error {
	border: 2px solid var(--red);
	border-radius: 5px;
}

/* Border Radius */
.br-5 {
	border-radius: 5px;
}

.br-8 {
	border-radius: 8px;
}

.br-10 {
	border-radius: 10px;
}