/*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;
}

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;
}

.splash-screen 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;
}

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

.top-nav h1 {
	color: white;
}

.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;
}

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

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

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

.btm-nav a img {
	height: 30px;
	width: 30px;
	background: none;
}

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

/* 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;
}

.pill-wrapper 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;
}

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

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

	.btn {
		width: 50%;
	}
}


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

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

.reset-pill {
	padding: 0;
}

.reset-pill 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;
}

.toast-wrapper * {
	color: white !important;
}

.toast-wrapper::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;
}

.toast-inverted h3 {
	color: black !important;
}

.toast-inverted::after {
	background: black;
}

/* 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;
}

.modal p,
.modal .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);
}

.search-bar-icon#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;
}

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

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

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

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

.bottom-sheet h1,
.bottom-sheet h2,
.bottom-sheet h3,
.bottom-sheet p,
.bottom-sheet span {
	color: white;
}

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

.bottom-sheet h2 {
	margin: 0px 0px 10px;
}

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

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

.bottom-sheet-inner::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));
}

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

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

.bottom-sheet input {
	max-width: 500px;
	margin: 0 auto;
	display: flex;
}

.bottom-sheet input:disabled {
	background: white !important;
}

.bottom-sheet .btn-wrapper .btn {
	max-width: unset;
}

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

.bottom-sheet .pill.a-black {
	background: white;
	border: 2px solid white;
	color: black;
}




/* Chat */
.chat-input-wrapper {
	display: flex;
	flex-direction: row;
	position: absolute;
	bottom: 40px;
	left: 20px;
	right: 20px;
	width: auto;
	height: 45px;
	gap: 10px;
}

.chat-input-wrapper input {
	border-radius: 22px;
	background: var(--black);
	border: solid 1.5px white;
	padding: 8px 16px;
	color: white;
}

.chat-input-wrapper img {
	height: 45px;
	width: 45px;
	border-radius: 50%;
}

.chat-input-wrapper .post-comment-icon {
	background: white;
	padding: 12px;
	cursor: pointer;
}

.chat-comment {
	display: flex;
	flex-direction: row;
	gap: 0;
	cursor: pointer;
	margin-bottom: 15px;
}

.chat-comment img {
	height: 30px;
	width: 30px;
	border-radius: 15px;
}

.chat-comment img#deleteComment {
	padding: 5px;
	cursor: pointer;
	pointer-events: auto;
}

.chat-comment p {
	padding-top: 5px;
	margin-left: 10px;
	width: 100%;
	background: var(--black);
}

.bottom-sheet span#replying-to {
	position: absolute;
	bottom: 52px;
	left: 0;
	right: 0;
	margin: 0 auto;
	font-family: var(--body-font);
	text-align: center;
	transition: 0.5s ease-in-out;
}

.chat-input-wrapper span.chat-action {
	cursor: pointer;
	color: var(--blue) !important;
}


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

.nav-action:last-child {
	margin-bottom: 0px;
}

.nav-action * {
	pointer-events: none !important;
}

.nav-action img {
	height: 50px;
	width: 50px;
	margin: 0;
	padding: 5px;
}

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

.nav-action-inner h2,
.nav-action-inner 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;
}

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

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

.carousel-wrapper li#video-card {
	min-width: 262px;
	/* video width plus padding */
	height: 452px;
}

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

.carousel-wrapper li:last-child {
	margin-right: 8px !important;
}

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

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


/* Video Carousel Cards */
.video-card {
	width: 254px;
	height: fit-content;
	position: relative;
	border-radius: 10px 10px 7px 7px;
	transition: 0.2s ease-in-out;
	overflow: hidden;
}

.carousel-wrapper.no-results {
	height: 452px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

li#video-card .video-card * {
	transition: 0.2s ease-in-out;
	cursor: pointer;
	pointer-events: auto;
}

iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 254px;
	height: 452px;
	border-radius: 10px 10px 7px 7px;
	transition: 0.4s ease-in-out;
	border: none;
	pointer-events: none !important;
}

.video-card .video-title {
	position: absolute;
	top: 8px;
	left: 8px;
	width: fit-content;
	max-width: 80%;
	text-wrap: balance;
	background: white;
	color: black;
	border-radius: 4px;
	padding: 5px 8px 4px;
}

.iframe-placeholder {
	display: flex;
	height: 450px;
	width: 254px;
	background: var(--grey);
	border-radius: 10px 10px 7px 7px;
	justify-content: center;
	align-items: center;
	position: relative;
	cursor: pointer;
	border: none;
}

.iframe-settings,
.iframe-settings-inner {
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: absolute;
	top: 8px;
	right: 8px;
}

.iframe-settings img,
.iframe-settings-inner img {
	height: 30px;
	width: 30px;
	padding: 5px;
	border-radius: 5px;
	background: white;
}

.iframe-settings,
.iframe-settings-inner {
	transition: 0.4s ease-in-out !important;
}

.video-card .video-title,
.iframe-settings,
.iframe-settings img {
	z-index: 250 !important;
}

.iframe-settings-inner,
.iframe-settings-inner img {
	z-index: 240 !important;
}

.iframe-scrubber-wrapper,
.iframe-actions {
	z-index: 100 !important;
}

.iframe-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: absolute;
	bottom: 8px;
	right: 8px;
}

.iframe-actions img {
	height: 30px;
	width: 30px;
	background: white;
	border-radius: 5px;
	padding: 5px;
}

.iframe-placeholder img#vimeo-thumbnail {
	position: absolute;
	height: 452px;
	width: -webkit-fill-available;
	object-fit: cover;
	border-radius: 10px 10px 7px 7px;
	border: none;
}

.iframe-placeholder img#vimeo-thumbnail.shimmer::after {
	content: "";
	position: absolute;
	inset: 0;
	transform: translateX(-100%);
	background: linear-gradient(110deg,
			transparent 0%,
			rgba(255, 255, 255, 0.08) 40%,
			rgba(255, 255, 255, 0.14) 50%,
			rgba(255, 255, 255, 0.08) 60%,
			transparent 100%);
	animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
	100% {
		transform: translateX(100%);
	}
}

.iframe-placeholder img#vimeo-thumbnail.processing {
	filter: blur(5px);
}

.scroll-locked {
	overflow: hidden !important;
	position: fixed;
	width: 100vw;
	height: 100vh;
}

.fullscreen-card {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 0;
	width: 100vw;
	height: 100vh;
	z-index: 700;
	overflow-x: scroll;
	background: white;
	contain: none !important;
}



.iframe-scrubber-wrapper {
	position: absolute;
	height: auto;
	left: 0;
	bottom: 0;
	padding: 10px;
	right: 38px;
	cursor: pointer;
}

.iframe-scrubber {
	background: white;
	height: 8px;
	border-radius: 5px;
	pointer-events: none;
}

.iframe-scrubber-fill {
	background: black;
	height: 8px;
	border-radius: 5px;
	width: 0%;
	pointer-events: none;
	transition: width 0.05s linear;
}



/* 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;
}

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

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

.upload-preview-container 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);
}

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

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

.btn-wrapper#upload-preview-buttons .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;
}

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

.upload-requirements 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;
}

.bottom-sheet-recreation-thumbnails * {
	margin: 0 !important;
	pointer-events: none;
}

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

.bottom-sheet-recreation-thumbnails img#recreation {
	height: 40px;
	width: 40px;
}

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

.bottom-sheet .thumbnail-wrapper .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;
}

.signup-form input,
.signup-form select {
	border: solid 2px white;
}

.signup-form .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;
}

.accordion * {
	pointer-events: none;
}

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

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

.accordion.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;
}

.table-row p {
	text-wrap: nowrap;
	text-align: center;
}

.table-row p:first-child {
	text-align: left;
}



/* Tracklist */
.bottom-sheet-inner#tracklist {
	width: 100%;
	margin: 0 auto;
}

.tracklist-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: start;
	cursor: pointer;
	margin-bottom: 15px;
}

.tracklist-item * {
	pointer-events: none;
}

.tracklist-item img {
	height: 35px;
	width: 35px;
	border-radius: 3px;
	margin-left: 0;
	margin-right: 0;
}

.tracklist-text-wrapper {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

.tracklist-text-wrapper p {
	width: 100%;
	margin-left: 15px;
}



/* Spotify Auth */
.spotify-auth-wrapper {
	background: #191414;
	border-radius: 30px;
	width: fit-content;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 20px;
	padding: 40px;
}

.spotify-auth-wrapper * {
	color: white !important;
}

.spotify-auth-wrapper h1 {
	color: #1DB954 !important;
	display: flex;
	justify-content: center;
	margin: 0 auto;
}

.spotify-auth-wrapper img {
	height: 37px;
	width: 37px;
	margin: 0;
	margin-left: 10px;
}

.spotify-auth-wrapper .btn {
	background: #1DB954 !important;
	color: #191414 !important;
}

.spotify-auth-wrapper p {
	width: 100%;
	text-align: center;
}





/* PAGE-SPECIFIC STYLES */
/* /landing /welcome /login /join/pricing */
#mobile-landing-topnav-wrapper {
	display: flex;
	width: 100vw;
	gap: 10px;
	padding: 10px 10px 5px;
	transition: 0.5s ease-in-out;
	position: fixed;
	top: 0;
	z-index: 50;
	background: white;
	box-shadow: white 0px 10px 10px;
}

#reviews-title,
#features-title,
#pricing-title {
	scroll-margin-block: 100px;
}

#mobile-landing-topnav-wrapper img {
	height: 45px;
	width: 45px;
	border-radius: 5px;
}

#testimonial-carousel {
	gap: 10px;
}

#testimonial-carousel li {
	text-transform: unset;
	text-align: left;
	justify-content: space-between;
	min-height: 350px;
}

#testimonial-carousel li:first-child {
	margin-left: 10px;
}

#testimonial-carousel li:last-child {
	margin-right: 10px;
}

.testimonial-card {
	flex-direction: column;
	position: relative;
	width: 400px;
	max-width: 80vw;
	border: 1px lightgrey solid;
	border-radius: 10px;
	padding: 20px;
	height: 100%;
}

.testimonial-card img {
	height: 50px;
	width: 50px;
	border-radius: 50%;
	position: absolute;
	top: 15px;
	left: 15px;
}

.testimonial-name-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: start;
	padding-left: 55px;
}

#app-features-carousel li {
	text-transform: unset;
}

.app-feature-card {
	display: flex;
	flex-direction: column;
	width: 300px;
	justify-content: flex-start;
	height: 100%;
}

.app-feature-card p {
	width: 90%;
}



#pricing-carousel {
	gap: 10px;
	justify-content: center;
	overflow-y: visible;
}

@media screen and (max-width: 800px) {
	#pricing-carousel {
		justify-content: left;
	}
}

.carousel-wrapper .payment-plan-card {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	justify-content: start;
	align-items: center;
	border: solid 2px lightgrey;
	border-radius: 10px;
	transition: 0.3s ease-in-out;
	text-transform: unset;
	width: 250px;
	padding: 8px 8px 12px !important;
	cursor: pointer;
	position: relative;
	margin-top: 12px;
	margin-bottom: 10px;
}


.carousel-wrapper .payment-plan-card.selected {
	background: var(--grey);
	border: solid 2px var(--grey);
	transform: scale(1.02);
}

#pricing-carousel li.payment-plan-card:first-child {
	margin-left: 10px;
}

#pricing-carousel li.payment-plan-card:last-child {
	margin-right: 10px;
}

.payment-plan-card * {
	pointer-events: none;
}

.payment-plan-card p {
	text-wrap: nowrap;
	margin: 0;
}

#price-plan-cost {
	background: var(--grey);
	padding: 20px 20px 15px;
	border-radius: 5px;
	width: 100%;
}

#price-plan-cost h1 {
	line-height: 32px;
}

.payment-plan-card-features {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-align: left;
	gap: 5px;
	padding: 0px 7px;
}

.payment-plan-card-features p img {
	height: 15px;
	padding-right: 5px;
	margin: 0;
	display: inline;
	transform: translate(0px, 2px);
}

.payment-plan-card span {
	position: absolute;
	top: -8px;
	left: 0;
	right: 0;
	text-transform: uppercase;
	background: black;
	color: white;
	padding: 2px 5px 1px;
	border-radius: 3px;
	margin: 0 auto;
	width: fit-content;
}

.payment-plan-card .btn-wrapper {
	position: absolute;
	bottom: 8px;
	padding-left: 8px;
	padding-right: 8px;
}

#currency-pills a {
	background: none;
	color: black;
	border: solid 1.5px white;
	padding-left: 5px;
	padding-right: 5px;
}

#currency-pills a.a-black {
	background: none;
	border: solid 1.5px var(--black);
}

#currency-pills .pill.a-black img {
	filter: invert(0);
}

#currency-pills img {
	height: 14px;
	width: 21px;
	border-radius: 2px;
	margin-right: 4px;
	transform: translate(0px, -1px);
}


.bottom-sheet .payment-plan-card img {
	filter: invert(1);
}

.bottom-sheet #price-plan-cost {
	background: none;
	padding: 15px 20px !important;
	margin: 0 !important;
}



/* /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-wrapper#account-settings-buttons .btn {
	flex: 1 1 40%;
	min-width: 100px;
	margin: 0;
}

/* Theme Picker */
.theme-picker {
	display: grid;
	grid-template-columns: repeat(4, 50px);
	gap: 5px;
	justify-content: center;
}

.theme-option {
	height: 50px;
	width: 50px;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
}

.theme-option img {
	filter: invert(1);
	height: 25px;
	width: 25px;
	transition: 0.3s ease-in-out;
}

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


/* /discover */
.explore-carousel-card {
	height: 108px;
	width: 230px;
	position: relative;
}

.explore-carousel-card,
.skill-types-carousel-card,
.community-group-carousel-card,
.playlist-carousel-card {
	border-radius: 10px;
}

.explore-carousel-card img,
.skill-types-carousel-card img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.explore-carousel-card h3 {
	position: absolute;
	top: 8px;
	left: 8px;
	right: 100px;
	color: white;
	font-size: 25px;
	text-align: left;
}

.explore-carousel-card span {
	position: absolute;
	top: 7px;
	right: 7px;
}

.community-group-carousel-card {
	height: 130px;
	width: 200px;
	position: relative;
	flex-direction: column;
	padding: 15px 15px 35px;
	gap: 10px;
}

.community-group-carousel-card img {
	object-fit: contain;
	width: -webkit-fill-available;
	height: 80px;
	border-radius: 10px;
}

.community-group-carousel-card p {
	text-transform: none;
	font-weight: 700;
	color: white;
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
}

.skill-types-carousel-card {
	width: 135px;
	height: 248px;
	position: relative;
}

.skill-types-carousel-card h3 {
	position: absolute;
	top: 8px;
	left: 0px;
	right: 0px;
	color: white;
	font-size: 25px;
}

.playlist-carousel-card {
	width: 160px;
	height: 160px;
}

.playlist-carousel-card img {
	border-radius: 10px;
}

/* /meetups */
.event-card {
	width: 220px;
	height: 181px;
	position: relative;
	cursor: pointer;
	border-radius: 10px;
	background: var(--grey);
	height: fit-content;
	padding-bottom: 10px;
}

.event-card img {
	height: 120px;
	width: 100%;
	object-fit: cover;
	border-radius: 10px 10px 0px 0px;
	margin-bottom: 10px;
}

.event-card p {
	text-transform: none;
	width: 100%;
	line-height: 1;
}

.brand-logo-wrapper {
	display: flex;
	flex-direction: row;
	gap: 5px;
	position: absolute;
	top: 6px;
	left: 6px;
	z-index: 10;
}

.brand-logo-wrapper img {
	height: 28px;
	width: 28px;
	border-radius: 50%;
	object-fit: cover;
	z-index: 10;
	position: relative;
	box-shadow: grey 0px 0px 2px 0px;
}

.brand-logo-wrapper img:not(:first-child) {
	margin-left: -10px;
}

.brand-logo-wrapper img:nth-child(1) {
	z-index: 10;
}

.brand-logo-wrapper img:nth-child(2) {
	z-index: 9;
}

.brand-logo-wrapper img:nth-child(3) {
	z-index: 8;
}

.brand-logo-wrapper img:nth-child(4) {
	z-index: 7;
}

.brand-logo-wrapper img:nth-child(5) {
	z-index: 6;
}

.brand-logo-wrapper img:nth-child(6) {
	z-index: 5;
}

.brand-logo-wrapper img:nth-child(7) {
	z-index: 4;
}

.event-card .tag {
	position: absolute;
	padding: 1px 6px 0px;
	z-index: 10;
}

.event-card .tag#countdown {
	top: 6px;
	right: 6px;
}

.event-card .tag#attendance {
	bottom: 52px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: fit-content;
}

.event-card-date {
	width: 90%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


.event-host-icon {
	pointer-events: auto !important;
	cursor: pointer !important;
}



/* Event Photos Bottom Sheet Collage*/
.event-photos-bottom-sheet-collage {
	display: flex;
	flex-direction: row;
	gap: 0;
	height: 100px;
	width: 100%;
	margin: 0 auto;
	justify-content: center;
	overflow: hidden;
	border-radius: 10px;
}

.event-photos-bottom-sheet-collage img {
	margin: 0;
	flex: 1;
	height: 100%;
	width: 100%;
	object-fit: cover;
	display: block;
	overflow: hidden;
	max-width: 25%;
}

.event-photos-bottom-sheet-collage img:first-child {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.event-photos-bottom-sheet-collage img:last-child {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}


/* /event */
.event-banner {
	width: 500px;
	height: 273px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 10px;
}

#event-countdown {
	position: absolute;
	top: 88px;
	right: calc(25vw + 8px);
	width: fit-content;
}

#event-attendance {
	position: absolute;
	width: fit-content;
	top: calc(50vw / 1.8333 + 62px);
	left: 0;
	right: 0;
	margin: 0 auto;
}

#event-brands {
	position: absolute;
	top: 88px;
	left: calc(25vw + 8px);
}

.event-details p {
	width: 100%;
}

.event-details-inner {
	width: 300px;
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	justify-content: center;
}

.event-details-inner p {
	margin-left: 35px;
	width: calc(100% - 70px);
}

.event-details-icon {
	height: 28px;
	width: 28px;
	position: absolute;
	top: 0;
	left: 0;
}

.event-details-icon#host-logo {
	border-radius: 14px;
	border: solid black 1.5px;
}

.event-details-inner#attendance-pills {
	flex-direction: row;
	align-items: center;
}

.event-details-inner#attendance-pills * {
	width: fit-content;
	margin: 0;
}

.google-maps-iframe-wrapper {
	width: 500px;
	height: 273px;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	margin: 0 auto;
}

.google-maps-iframe-wrapper img {
	margin: 0;
	width: 100%;
}

.event-hosts-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	gap: 10px;
}

.carousel-wrapper#event-host-cards-carousel {
	justify-content: center;
}

.host-card {
	background: var(--grey);
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	padding: 15px;
	width: 150px;
	height: fit-content;
}

.host-card * {
	pointer-events: none;
	text-transform: none !important;
}

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

.host-card img {
	height: 80px;
	width: 80px;
	border-radius: 40px;
}

.host-card-inner {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin: 0 auto;
}

.host-card-inner .stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.event-attendees-pics-wrapper {
	display: flex;
	flex-direction: row;
	gap: 0;
	width: fit-content;
	margin-left: 25px;
}

.event-attendees-pics-wrapper * {
	height: 44px;
	width: 44px;
	border-radius: 22px;
	border: solid white 3px;
	margin-left: -15px;
}

.event-attendees-pics-wrapper img:first-child {
	margin-left: 0;
}

.event-attendees-pics-wrapper .attendee-more-bubble {
	font-family: var(--title-font);
	text-align: center;
	background: var(--green);
	line-height: 40px;
	font-size: 22px;
	color: white;
	font-weight: 500;
}

.btn#leaveEvent {
	padding-top: 5px;
	padding-bottom: 4px;
	width: 55px;
	transition: 0.4s ease-in-out;
}

.btn#leaveEvent img {
	height: 28px;
	width: 28px;
	transform: rotate(90deg);
}

.attendee-list {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0 auto;
	width: fit-content;
}

.attendee-list-item {
	display: flex;
	flex-direction: row;
	width: 100%;
	width: 350px;
	border-top: 2px var(--grey) solid;
	padding: 10px;
}

.attendee-list-item:first-child {
	border-top: none;
}

.attendee-list-item img {
	height: 40px;
	width: 40px;
	border-radius: 20px;
	margin: 0;
}

.attendee-list-item * {
	pointer-events: none;
}

.btn-wrapper#event-attendance-buttons {
	width: 300px;
	padding: 0;
}

@media screen and (max-width: 600px) {
	.event-banner {
		margin-top: -80px;
	}

	.event-banner,
	.google-maps-iframe-wrapper {
		width: 100vw;
		height: calc(100vw / 1.8333);
		border-radius: 0;
	}

	#event-countdown {
		top: 10px;
		right: 10px;
		left: unset;
	}

	#event-attendance {
		top: calc(100vw / 1.8333 - 18px);
	}

	#event-brands {
		top: 10px;
		left: 10px;
		right: unset;
	}

	.event-details-inner {
		width: calc(100% - 50px);
	}

	.btn-wrapper#event-attendance-buttons {
		width: 100%;
		padding: 0px 10px;
	}

	.attendee-list-item {
		width: calc(100vw - 40px);
	}
}




/* /totd */
.your-streak {
	background: var(--grey);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	width: fit-content;
	padding: 20px 30px 30px;
}

.your-streak-counter {
	display: flex;
	flex-direction: row;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.your-streak-counter img {
	display: flex;
	height: 40px;
	width: 40px;
	margin-right: 5px;
}

.your-streak-counter h1 {
	transform: translate(0px, 3px);
}

.your-streak p {
	width: 100%;
}

.streak-this-week {
	display: flex;
	flex-direction: row;
	gap: 7px;
	justify-content: center;
	margin-top: 10px;
}

.streak-icon {
	width: 25px;
	height: 25px;
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
	display: inline-block;
}

.streak-icon.g {
	background-image: url('/assets/icons/g/totd_streak.png');
}

.streak-icon.b {
	background-image: url('/assets/icons/b/totd_streak.png');
}

.streak-icon::after {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 18px;
	color: black;
	font-family: var(--title-font);
	font-weight: 700;
}

/* days */
.streak-icon:nth-child(1)::after {
	content: "M";
}

.streak-icon:nth-child(2)::after {
	content: "T";
}

.streak-icon:nth-child(3)::after {
	content: "W";
}

.streak-icon:nth-child(4)::after {
	content: "T";
}

.streak-icon:nth-child(5)::after {
	content: "F";
}

.streak-icon:nth-child(6)::after {
	content: "S";
}

.streak-icon:nth-child(7)::after {
	content: "S";
}



/* 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);
}

.dashboard-inner * {
	pointer-events: none;
}

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


/* /profile */
.carousel-wrapper#profile-upcoming-meetups {
	flex-direction: row;
}

.carousel-wrapper#profile-past-meetups {
	flex-direction: column;
}

.carousel-wrapper#profile-past-meetups li {
	width: 60%;
	max-width: 400px;
	margin: 0 auto;
	margin-bottom: 10px;
}

.carousel-wrapper#profile-past-meetups .event-card {
	width: 100%;
}

.carousel-wrapper#profile-past-meetups .event-card img {
	height: 200px;
}








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

.world-map path {
	fill: #ddd;
	transition: fill 0.3s ease;
}

.world-map path.visited {
	fill: var(--red);
}

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









/* Skeleton Elements */
.skeleton {
	position: relative !important;
	overflow: hidden !important;
	background-color: var(--grey) !important;
}

.skeleton-h1,
.skeleton-h2,
.skeleton-h3,
.skeleton-p {
	position: relative !important;
	overflow: hidden !important;
	background-color: var(--grey) !important;
	display: flex;
	margin: 0 auto;
	box-sizing: content-box;
}

/* For skeleton lines, text[font-size] === skeleton[height+borders] */
/* h3 font-size: 40px */
.skeleton-h1 {
	height: 28px;
	border-top: 5px solid white;
	border-bottom: 7px solid white;
	border-radius: 20px;
}

/* h3 font-size: 32px */
.skeleton-h2 {
	height: 20px;
	border-top: 5px solid white;
	border-bottom: 7px solid white;
	border-radius: 18px;
}

/* h3 font-size: 25px */
.skeleton-h3 {
	height: 17px;
	border-top: 3px solid white;
	border-bottom: 6px solid white;
	border-radius: 14px 14px 16px 16px;
}

/* p font-size: 16px */
.skeleton-p {
	height: 9px;
	border-top: 7px solid white;
	border-bottom: 4px solid white;
	border-radius: 14px 14px 11px 11px;
}

.skeleton::after,
.skeleton-h1::after,
.skeleton-h2::after,
.skeleton-h3::after,
.skeleton-p::after {
	content: "";
	position: absolute;
	top: 0;
	left: -150%;
	height: 100%;
	width: 150%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
	animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
	100% {
		left: 100%;
	}
}

/* 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;
	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;
}