/* General Styling */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

::-webkit-scrollbar {
	display: none;
}

textarea, input.text, input[type="date"], select {
	-webkit-appearance: none;
} 

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

input::-webkit-date-and-time-value {
	text-align: left;
}

.material-symbols-outlined {
	font-variation-settings:
	'FILL' 0,
	'wght' 350,
	'GRAD' 0,
	'opsz' 24
}

.material-symbols-rounded {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 100,
  'opsz' 24
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-fg-100: #9A9BA0;
	--primary-fg-200: #818181;
	--primary-fg-300: #4f4f4f;
	--primary-fg-400: #363333;
	--primary-fg-500: #000000;
	
	--primary-bg-100: #979797;
	--primary-bg-200: #c1bdbd;
	--primary-bg-300: #E9E9E9;
	--primary-bg-400: color(display-p3 0.968 0.968 0.968);
	--primary-bg-500: #FFFFFF;
	
	--secondary-yellow: #FFD65D;
	--secondary-blue: #50B2F1;
	
	--tertiary-blue: #7BDAFA;
	--tertiary-pink: #FFACDF;
	--tertiary-yellow: #FEDA73;
	--tertiary-purple: #C5A4E5;
	--tertiary-orange: #FFBF70;
	--tertiary-red: #e9422c;
	--tertiary-green: #2cc930;
	
	--map-FadeOut: 217,217,217;
	--map-FadeIn: 233,233,233;
}

html {
	width: 100%;
	height: 100vh;
	background: var(--primary-bg-300);
}

body {
	position: fixed;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	font-family: "Poppins", sans-serif;
	line-height: 122%;
	color: var(--primary-fg-500);
	background: inherit;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}

body.loaded {
	opacity: 1;
}

a {
	text-decoration: none;
	color: inherit;
}

h1 {
	font-size: 28px;
	font-weight: 500;
}

h2 {
	font-size: 23px;
	font-weight: 400;
}

h3 {
	font-size: 22px;
	font-weight: 700;
}

h4 {
	font-size: 19px;
	font-weight: 500;
}

h5 {
	font-size: 18px;
	font-weight: 500;
}

h6 {
	font-size: 16px;
	font-weight: 300;
}

p, .p01, form input, button, select, label {
	font-size: 13px;
	font-weight: 400;
	color: var(--primary-fg-500);
}

input, select, button {
	width: 100%;
	height: 51px;
	border: solid 1px var(--primary-bg-200);
	border-radius: 25px;
	padding: 0px 25px;
	font-size: 14px;
	background: var(--primary-bg-500);
}

input[type=submit], #registerFormButtonNext {
	background: var(--secondary-yellow);
	border: none;
	box-shadow: 0px 5px 20px rgb(232 174 80 / 40%);
	margin-top: 10px;
	cursor: pointer;
}

input[type=submit]:active, #registerFormButtonNext:active {
	background: var(--secondary-yellow);
	border: none;
	box-shadow: 0px 1px 5px rgb(232 174 80 / 60%);
}

form {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 17px;
}

.p02 {
	font-size: 12px;
	font-weight: 400;
}

.p03 {
	font-size: 11px;
	font-weight: 400;
}

.p04 {
	font-size: 11px;
	font-weight: 400;
	color: var(--primary-bg-400);
}

/* Message Dialog Window */
#messagePopUp {
	position: absolute;
	display: flex;
	top: -100px;
	width: 70%;
	color: var(--primary-fg-300);
	background: var(--primary-bg-500);
	border-radius: 25px;
	padding: 22px 28px;
	text-align: center;
	transition: top 0.4s ease;
	overflow: hidden;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	left: 50%;
	transform: translateX(-50%);
}

#messagePopUp span {
	position: absolute;
	color: var(--tertiary-red);
	opacity: 0.2;
	font-size: 70px;
	top: -20px;
	right: -20px;
}

#messagePopUp p {
	z-index: 2;
}

#messagePopUp.on {
	top: 90px;
}

/* Form Error Styling */
.incomplete {
	border: 1px solid red;
	animation: shake 0.3s ease;
}

@keyframes shake {
	0% { transform: translateX(0); }
	25% { transform: translateX(-5px); }
	50% { transform: translateX(5px); }
	75% { transform: translateX(-5px); }
	100% { transform: translateX(0); }
}

/* Login & Register Styling */
body.loginPage {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: var(--primary-bg-500);
}

body.loginPage::after {
	position: absolute;
	display: block;
	top: 0px;
	width: 100%;
	height: 100vh;
	z-index: -1;
	content: "";
	background-image: url("images/blurryBG.jpg");
	background-position: center;
	opacity: 0.5;
}

body.loginPage h4 {
	color: var(--primary-fg-400);
	margin-bottom: 45px;
}

body.loginPage a {
	position: relative;
	top: 3px;
	color: var(--primary-fg-100);
}

#cardSlider {
	width: 90%;
	height: 300px;
	overflow: hidden;
	transition: height 0.5s ease;
	transition-delay: 200ms;
}

#connectionCard, #registerCard {
	position: absolute;
	top: 50%;
	transform: translateY(-44%);
	width: 90%;
	background: var(--primary-bg-400);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.244);
	border-radius: 25px;
	padding: 30px 22px;
	text-align: center;
	margin-left: 0;
	transition: margin-left 0.7s ease;
	transition-delay: 200ms;
}

#connectionCard form {
	margin-bottom: 20px;
}

#connectionCard.hideCard {
	margin-left: -110%;
	transition-delay: 0ms;
}

#registerCard.hideCard {
	margin-left: 110%;
	transition-delay: 0ms;
}

#cardSlider.hideCard {
	height: 450px;
	transition-delay: 0ms;
}

#registerForm {
	position: relative;
	height: 370px;
	width: calc(100% + 44px);
	left: -22px;
	margin-top: -10px;
	overflow-y: hidden;
	overflow-x: visible;
}

.registerStepOne, .registerStepTwo {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	flex-wrap: wrap;
	padding: 22px;
	gap: 13px;
	width: 100%;
	margin-left: 0px;
	transition: margin-left 0.7s ease;
}

.registerStepTwo {
	margin-left: 110%;
	margin-top: 30px;
}

.registerStepOne.onStepTwo {
	margin-left: -110%;
}

.registerStepTwo.onStepTwo {
	margin-left: 0%;
}

@property --angle {
	syntax: '<angle>';
	inherits: false;
	initial-value: 0deg;
}

#registerFormProfilePictureHolder {
	position: relative;
	margin: auto;
	width: 107px;
	height: 107px;
	border-radius: 50%;
	background: conic-gradient(var(--tertiary-green) var(--angle), transparent 0deg);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: --angle 1s ease;
	margin-bottom: 15px;
}

#registerFormProfilePictureSelector {
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

#registerFormProfilePicturePreview {
	position: absolute;
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 50%;
	transition: transform 0.6s ease-in-out;
	transform-style: preserve-3d;
}

#registerFormProfilePicturePreview.flip {
	transform: rotateY(180deg);
}

#registerFormProfilePictureHolder::after {
	content: "📷";
	position: absolute;
	top: 0px;
	left: calc(50% + 25px);
	height: 38px;
	width: 38px;
	padding-top: 8px;
	font-size: 14px;
	box-sizing: border-box;
	background: var(--secondary-blue);
	border-radius: 50%;
	transition: background-color 0.5s ease;
}

#registerFormProfilePictureHolder.incomplete {
	border: none;
}

#registerFormProfilePictureHolder.incomplete::after {
	background: var(--tertiary-red);
}

#registerFormProfilePictureHolder.complete::after {
	background: var(--tertiary-green);
}

.registerStepOne span, .registerStepTwo span {
	display: flex;
	justify-content: space-between;
}

.registerStepOne span *, .registerStepTwo span * {
	width: 48.5%;
}

.registerStepTwo label {
	position: relative;
	top: 5px;
	font-size: 13px;
	text-align: left;
	margin-left: 20px;
	color: var(--primary-fg-100);
}

.registerStepTwo span:last-of-type {
	margin-top: 15px;
}

#registerFormButtonBack {
	width: 52px;
	padding-left: 12px;
	font-size: 28px;
	color: var(--primary-bg-500);
	background: var(--secondary-blue);
}

#registerFormButtonSubmit {
	position: relative;
	width: 100%;
	margin-left: 12px;
	top: -10px;
}

/* UserPage Styling */

#map {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
	opacity: 0;
	transition: opacity 3s ease;
}

#map::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 300px;
	bottom: 0px;
	background: linear-gradient(180deg, rgba(var(--map-FadeOut), 0) 0%, rgba(var(--map-FadeIn), 1) 39%);
}

#pulse {
  background-color: rgba(255, 255, 255, 0);
  border-radius: 50%;
  height: 12px;
  width: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: background-color 1000ms linear;
}

.pulseOn {
	background-color: var(--secondary-blue)!important;
	animation: pulse 3s linear;
	animation-iteration-count: infinite;
}

.activeTask {
	background-color: var(--tertiary-red)!important;
}

#pulse.pulseOn:after {
  content: "";
  border-radius: 50%;
  height: 1000px;
  width: 1000px;
  position: absolute;
  margin: -495px 0 0 -495px;
  animation: pulsate 5s ease-out;
  animation-iteration-count: infinite;
  opacity: 0;
  box-shadow: 0 0 5px 5px var(--tertiary-blue);
  transition: all 1s ease-out;
  animation-delay: 1.6s;
}

#pulse.activeTask:after {
  box-shadow: 0 0 5px 5px var(--tertiary-red);
}

@keyframes pulse {
  0% {
	opacity: 1;
  }

  50% {
	opacity: 0.5;
  }

  100% {
	opacity: 1;
  }
}

@keyframes pulsate {
  0% {
	transform: scale(-0.1, -0.1);
	opacity: 0;
  }

  20% {
	opacity: 1;
  }

  100% {
	transform: scale(1.2, 1.2);
	opacity: 0;
  }
}

#landingScroller {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	overflow-x: hidden;
	scroll-snap-type: y mandatory;
	z-index: 2;
}

#headerBellButton {
	position: absolute;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	padding: 6px;
	font-size: 19px;
	bottom: 45px;
	right: 45px;
	z-index: 200;
	opacity: 0;
	color: var(--primary-bg-500);
	background: var(--primary-fg-500);
	transition: background 1s ease, opacity 0.3s ease;
}

#scrollerSpaceA {
	position: relative;
	width: 40px;
	height: 128px;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	background: rebeccapurple;
	z-index: 100;
	opacity: 0;
}

#scrollerSpaceB {
	position: relative;
	width: 0px;
	height: 50px;
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

#profilePageMain {
	position: sticky;
	width: 100%;
	height: 400px;
	background: var(--primary-bg-500);
	border-radius: 35px;
	top: -210px;
	margin-top: calc(64vh - 100px);
	box-shadow: 0px 0px 15px rgb(0, 0, 0, 0.4);
	z-index: 4;
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#profilePageMain h1 {
	position: absolute;
	top: 30px;
	left: 30px;
	transform: translateY(0px);
	transition: transform 0.3s ease;
}

#profilePageMain.closedProfile h1 {
	transform: translateY(310px);
	transition: transform 0.2s ease;
}

#profilePageMain h1::before {
	content: "Hello";
	position: absolute;
	margin-top: -30px;
	font-weight: 400;
	opacity: 0;
	transition: opacity 0.3s ease-out;
}

#profilePageMain.closedProfile h1::before {
	opacity: 1;
}

#profilePageMain *:not(h1, #headerBellButton) {
	opacity: 1;
	transition: opacity 0.3s ease;
	transition-delay: 0.3s;
}

#profilePageMain.closedProfile *:not(h1, #headerBellButton) {
	opacity: 0;
	transition-delay: 0s;
}

#profilePageMain.closedProfile #headerBellButton {
	opacity: 1;
}

#profilePageMain.openSettings *:not(h1) {
	opacity: 0.6;
	transition-delay: 0s;
}

#profilePageInfoBar, #riggerInfoBar, #bunnyInfoBar {
	width: 100%;
	height: 23px;
	margin-bottom: 5px;
	margin-top: 32px;
	color: var(--primary-fg-100);
	display: flex;
	justify-content: space-between;
	overflow: hidden;
	transition: height 1s ease;
}

#profilePageInfoBar span, #riggerInfoBar span, #bunnyInfoBar span {
	font-weight: 500;
	font-size: 20px;
	margin-top: -5px;
}

.userAge::after {
	content: " ans";
	font-size: 13px;
}

.userHeight::after {
	content: " cm";
	font-size: 13px;
}

.userSex {
	position: relative;
	top: 3px;
}

.flexUserType {
	display: inherit;
	justify-content: space-around;
	width: 135px;
}

.flexUserType h6 {
	margin-left: 8px;
	width: auto;
	white-space: nowrap;
}

.flexUserType span {
  height: 30px;
  text-align: center;
  letter-spacing: 3px;
  overflow: hidden;
}

#profilePageStats, #profilePageEditButton, #profilePageDisconnectDeleteButtons {
	border-radius: 23px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.roundedLabel {
	background: rgb(255, 255, 255, 0.3);
	padding: 2px 14px;
	border-radius: 20px;
	width: auto;
	font-size: 11px;
	width: fit-content;
}

#profilePageStats {
	width: calc(50% - 6px);
	height: 220px;
	background: var(--tertiary-orange);
	margin-top: -50px;
	position: relative;
	overflow: hidden;
}

#profilePageStats *:not(.levelNumber) {
	position: relative;
	z-index: 1;
}

#profilePageStats h3 {
	
}

.levelNumber {
	position: absolute;
	height: 100px;
	top: 28px;
	right: -10px;
	font-size: 110px;
	color: #F9AB4B;
	z-index: 0;
}

#flexSpace {
	width: calc(50% - 6px);
	margin-top: -50px;
}

#profilePageEditButton {
	height: 143px;
	background: var(--tertiary-blue);
}

#profilePageDisconnectDeleteButtons {
	margin-top: 12px;
	height: 65px;
	background: var(--tertiary-pink);
	overflow: hidden;
	padding: 11px 23px;
	flex-direction: row;
}

#profilePageDisconnectDeleteButtons button {
	width: 43px;
	height: 43px;
	border: none;
	border-radius: 50%;
	text-align: center;
	padding: 0px;
	color: var(--primary-bg-500);
	background: rgb(255, 255, 225, 0.3);
}

#profilePagePicture {
	position: sticky;
	bottom: 36vh;
	width: 100%;
	height: 64vh;
	margin-top: -64vh;
	z-index: 2;
	transition: opacity 0.5s ease-in-out;
	background: var(--primary-fg-400);
	border-radius: 35px !important;
	overflow: hidden;
}

#profilePagePicture::after {
	content: "Your Profile";
	position: absolute;
	width: 100%;
	height: 250px;
	background: linear-gradient(rgba(0, 0, 0, 0.8), transparent);
	top: 0px;
	left: 0px;
	color: var(--primary-bg-400);
	text-align: center;
	font-size: 21px;
	font-weight: 500;
	padding: 90px 0px;
	box-sizing: border-box;
	z-index: 2;
}

#profilePagePicture img {
	opacity: 1;
	transition: opacity 0.5s ease;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

#profilePictureDisplay {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

#profilePagePictureEditButton {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translateX(-50%);
	width: 220px;
	height: 52px;
	border-radius: 26px;
	z-index: 3;
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-bg-400);
	background: rgba(24, 24, 24, 0.704);
	border: none;
	opacity: 0;
	transition: opacity 0.5s ease, background 0.3s ease;
	pointer-events: none;
	overflow: hidden;
}

#profilePagePictureEditButton.openSettings {
	pointer-events: auto;
	opacity: 1;
}

#profilePageSettings {
	position: sticky;
	bottom: calc(36vh - 140px);
	width: 100%;
	height: 190px;
	margin-top: -190px;
	background: var(--primary-fg-100);
	border-radius: 35px;
	box-shadow: 0px 0px 15px rgb(0, 0, 0, 0.2);
	z-index: 2;
	border: 5px solid var(--primary-fg-100);
	padding: 10px;
	display: flex;
	overflow: scroll;
	white-space: nowrap;
	gap: 12px;
}

.profilePageSettingsButton {
	position: relative;
	width: fit-content;
	max-width: 300px;
	height: 95px;
	border-radius: 23px;
	top: 0px;
	padding: 25px;
	color: var(--primary-bg-400) !important;
	background: #373434;
	box-shadow: 0px 4px 4px rgb(0, 0, 0, 0.5);
}

.profilePageSettingsButton:not(:first-of-type) {
	background: #4E4C4C;
}

.profilePageSettingsButton h3.material-symbols-outlined {
	position: relative;
	top: -10px;
	font-size: 50px;
	width: 85px;
	text-align: center;
}

.profilePageSettingsButton .p04 {
	position: absolute;
	bottom: 13px;
}

.profilePageSettingsButton select {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.profilePageSettingsButton input {
	color: var(--primary-bg-400);
	background: transparent;
	margin-top: -7px;
	border: none;
	padding: 0px;
	border-radius: 0;
	text-align: left;
	font-size: 22px;
	font-weight: 700;
	position: absolute;
	z-index: 5;
}

.profilePageSettingsButton h3:not(.material-symbols-outlined) {
	position: relative;
	top: 10px;
	min-width: 50px;
}

#settingsUsername h3 {
	letter-spacing: -1px;
}

#settingsPassword h3 {
	letter-spacing: 1px;
}

#settingsAge h3::after {
	content: " ans";
	font-size: 12px;
	font-weight: 500;
}

#settingsHeight h3 {
	visibility: hidden;
}

#settingsHeight h3::after {
	content: " cm";
	font-size: 12px;
	font-weight: 500;
	visibility: visible;
}


#landingMainWindow {
	position: sticky;
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	height: 200px;
	top: 72vh;
	margin-top: 52vh;
	background: var(--primary-bg-500);
	scroll-margin: 40px;
	scroll-snap-align: end;
	scroll-snap-stop: always;
	border-radius: 25px;
	margin-bottom: 100px;
	box-shadow: 0px 0px 15px rgb(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	z-index: 300;
}

#landingMainWindow::before {
	content: "Overview";
	position: absolute;
	top: -35px;
	left: 25px;
	color: var(--primary-fg-100);
	font-weight: 500;
	font-size: 18px;
}

#landingAccentWindow {
	background: var(--secondary-yellow);
	border-radius: 25px;
	height: 100px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}

#landingAccentWindow img {
	width: 62px;
	height: 62px;
	object-fit: cover;
	border-radius: 50%;
	margin-left: 22px;
	margin-right: 20px;
}

#landingAccentWindow h4 {
	width: 220px;
	margin-bottom: 4px;
}

#landingTimerSelect {
	width: 100%;
	height: 100px;
	padding: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

#landingTimerSelect span, #landingTimerSelect p {
	color: var(--primary-fg-100);
}

#landingTimerSelect span h2 {
	margin-top: 4px;
}

#timerSelectButton {
	width: 155px;
	height: 55px;
	margin-top: 0px;
	background: var(--secondary-blue);
	color: var(--primary-bg-500);
	border-radius: 40px;
	border: none;
	font-weight: 500;
	transition: background 0.3s ease, width 0.3s ease;
	box-shadow: 0px 4px 4px color(display-p3 0.416 0.69 0.922 / 0.2);
	display: flex;
	justify-content: space-between;
	font-size: 17px;
	padding: 16px 18px 15px 24px;
}

#timerSelectButton span {
	color: var(--primary-bg-500);
	margin-top: -1px;
}

#timerSelectButton.confirmTask {
	width: 145px;
	background: var(--tertiary-orange);
	box-shadow: 0px 4px 4px color(display-p3 0.901 0.562 0.213 / 0.2);
}

#timerSelectButton.activeTask {
	width: 145px;
	background: var(--tertiary-red);
	box-shadow: 0px 4px 4px color(display-p3 0.88 0.164 0.164 / 0.2);
}

#timerSelectButton.validateTask {
	width: 145px;
	background: var(--tertiary-green);
	box-shadow: 0px 4px 4px color(display-p3 0.366 0.877 0.329 / 0.2);
}

#landingPreferenceWindow {
	position: relative;
	padding: 30px 22px;
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	height: 460px;
	background: var(--primary-bg-500);
	scroll-snap-align: end;
	scroll-snap-stop: always;
	scroll-margin-bottom: 35px;
	margin-bottom: 100px;
	border-radius: 25px;
	box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.1);
	z-index: 300;
}

#preferenceWindowMasonry, #bunnyPreferences {
	width: 100%;
	height: 370px;
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 12px;
}

.preferenceWindowMasonryCol {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

#preferenceWindowMasonry form, #bunnyPreferences form {
	position: relative;
	border-radius: 15px;
	padding: 22px 18px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 0px;
}

#preferenceWindowMasonry span.material-symbols-rounded, #bunnyPreferences span.material-symbols-rounded {
	font-size: 30px;
}

#preferenceWindowMasonry form select {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	top: 0px;
	left: 0px;
	margin: 0px;
	padding: 0px;
}

#preferenceSW, #bunnySW {
	height: 203px;
	background: var(--tertiary-blue);
}

#preferenceSWInput {
	display: inline-block;
	background: none;
	width: 100%;
	height: 80px;
	font-size: 22px;
	font-weight: 700;
	word-wrap: break-word;
	resize: none;
	border: none;
}

#preferenceNud, #bunnyNud {
	height: 148px;
	background: var(--tertiary-pink);
}

#preferencePos, #bunnyPos {
	height: 148px;
	background: var(--tertiary-yellow);
}

#preferenceSen, #bunnySen {
	height: 203px;
	background: var(--tertiary-purple);
}

.preferenceWindowMasonryCol h3, .preferenceWindowMasonryCol textarea {
	line-height: 122%;
}

#riggerPicture {
	position: relative;
	width: 100%;
	height:80vh;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	border-radius: 25px;
	box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.2);
	overflow: hidden;
	z-index: 100;
	margin-bottom: 800px;
	scroll-margin: -5px;
}

#bunnyPicture {
	position: sticky;
	top: 0px;
	width: 100%;
	height:62vh;
	scroll-snap-align: start;
	scroll-snap-stop: always;
	border-radius: 25px;
	box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.2);
	overflow: hidden;
	z-index: 500;
	scroll-margin: -5px;
}

#riggerPicture img, #bunnyPicture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#riggerPicture::after {
	content: "Your Rigger";
	position: absolute;
	width: 100%;
	height: 250px;
	background: linear-gradient(rgba(0, 0, 0, 0.8), transparent);
	top: 0px;
	left: 0px;
	color: var(--primary-bg-400);
	text-align: center;
	font-size: 21px;
	font-weight: 500;
	padding: 90px 0px;
	box-sizing: border-box;
	z-index: 2;
}

#bunnyPicture::after {
	content: "The Bunny";
	position: absolute;
	width: 100%;
	height: 250px;
	background: linear-gradient(rgba(0, 0, 0, 0.8), transparent);
	top: 0px;
	left: 0px;
	color: var(--primary-bg-400);
	text-align: center;
	font-size: 21px;
	font-weight: 500;
	padding: 90px 0px;
	box-sizing: border-box;
	z-index: 2;
}

#riggerProfile {
	background: var(--secondary-yellow);
	border-radius: 25px;
	height: 100px;
	position: fixed;
	flex-wrap: wrap;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 95%;
	left: 50%;
	transform: translateX(-50%);
	bottom: 140px;
	z-index: 500;
	padding: 25px;
	opacity: 1;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

#riggerProfile.disabled {
	opacity: 0;
}

#riggerProfile h1 {
	text-transform: capitalize;
	font-size: 22px;
}

#riggerInfoBar {
	margin-top: 10px;
	color: var(--primary-fg-400);
}

#rateRigger {
	position: absolute;
	display: block;
	width: 85%;
	height: 200px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--primary-bg-500);
	box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.2);
	border-radius: 25px;
	z-index: 1000;
	padding: 30px;
	text-align: center;
	opacity : 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}

#rateRigger.active {
	opacity: 1;
	pointer-events: all;
	transition: opacity 0.5s ease;
}

#rateRigger img {
	position: absolute;
	top: -60px;
	left: 50%;
	transform: translateX(-50%);
	box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.2);
	border-radius: 100%;
	width: 100px;
	height: 100px;
	object-fit: cover;
}

#rateRigger p {
	font-size: 14px;
	font-weight: 300;
	margin-top: 30px;
	margin-bottom: 10px;
}

#rateRigger p span {
	font-weight: 500;
	text-transform: capitalize;
}

#rateRigger button {
	display: inline-block;
	height: 35px;
	width: auto;
	padding: 4px 25px;
	color: var(--primary-bg-500);
	border: none;
	font-weight: 500;
}

#rateRigger button:first-of-type {
	background: var(--tertiary-blue);
	margin-right: 30px;
}

#rateRigger button:last-of-type {
	background: var(--tertiary-orange);
}

.star-rating {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: center;
	user-select: none;
	font-family: 'Material Symbols Rounded';
	margin-top: 20px;
	margin-bottom: 22px;
}

.star-rating label {
	cursor: pointer;
	transition: color 0.3s ease;
	font-size: 38px;
	color: var(--secondary-yellow);
	font-variation-settings:
	  'FILL' 0,
	  'wght' 300,
	  'GRAD' 0,
	  'opsz' 40
}

.star-rating input {
	display: none;
}

.star-rating input:checked ~ label {
	font-variation-settings:
	  'FILL' 1;
	  color: var(--secondary-yellow);
}

.star-rating input:checked + label,
.star-rating input:hover + label,
.star-rating label:hover ~ label {
	color: #FFD700;
}

#bunnyProfile {
	position: relative;
	width: 100%;
	height: 550px;
	background: var(--primary-bg-500);
	border-radius: 35px;
	box-shadow: 0px 0px 15px rgb(0, 0, 0, 0.4);
	margin-top: -50px;
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	scroll-snap-align: end;
	z-index: 505;
}

#bunnyInfoBar {
	margin-top: -25px;
	margin-bottom: 0px;
}

#bunnyPreferences {
	margin-top: -25px;
}

.disabled {
	display: none !important;
}

@media (prefers-color-scheme: dark) {
  :root {
	--primary-fg-100: #868686;
	--primary-fg-200: #adadad;
	--primary-fg-300: #cecece;
	--primary-fg-400: #e9e9e9;
	--primary-fg-500: #FFFFFF;

	--primary-bg-100: #1a1a1a;
	--primary-bg-200: #333333;
	--primary-bg-300: #444444;
	--primary-bg-400: #0F1114;
	--primary-bg-500: #22272F;  /* Dark background */

	--secondary-yellow: #30353F;
	--secondary-blue: #52879E;

	--tertiary-blue: #4FC3F7;
	--tertiary-pink: #F48FB1;
	--tertiary-yellow: #FFEB3B;
	--tertiary-purple: #9575CD;
	--tertiary-orange: #FF9800;
	--tertiary-red: #F44336;
	--tertiary-green: #4CAF50;
	
	--map-FadeOut: 15, 17, 20;
	--map-FadeIn: 15, 17, 20;

  }
  
  #profilePagePicture::after {
	  color: var(--primary-fg-400) !important;
  }
  
  #timerSelectButton {
	  color: var(--primary-fg-500)!important;
	  box-shadow: 0px 4px 4px color(display-p3 0.06 0.15 0.227 / 0.2)!important;
  }
  
  #timerSelectButton span {
	  color: var(--primary-fg-500)!important;
  }
  
  #profilePageStats {
	  background: var(--secondary-yellow)!important;
  }
  
  .levelNumber {
	  color: #444A57!important;
  }
  
  .roundedLabel {
	  background: #444A57!important;
  }
  
  #profilePageEditButton {
	  background: var(--secondary-yellow)!important;
  }
  
  #profilePageDisconnectDeleteButtons {
	  background: var(--secondary-yellow)!important;
  }
  
  #profilePageDisconnectDeleteButtons button {
	  color: var(--primary-fg-500)!important;
	  background: #444A57!important;
  }
  
  #profilePagePictureEditButton {
	  color: var(--primary-fg-400) !important;
  }
  
  #profilePageSettings {
	  background: var(--primary-bg-400);
	  border: 5px solid var(--primary-bg-400);
  }
  
  .profilePageSettingsButton {
	  color: var(--primary-fg-400) !important;
	  background: color(display-p3 0.103 0.117 0.14);
	  box-shadow: 0px 4px 4px rgb(0, 0, 0, 0.5);
  }
  
  .profilePageSettingsButton:not(:first-of-type) {
	  background: var(--primary-bg-500);
  }
  
  .profilePageSettingsButton .p04 {
	  color: var(--primary-fg-400) !important;
  }
  .profilePageSettingsButton input {
	  color: var(--primary-fg-400);
  }
  
  #preferenceSW, #bunnySW, #preferenceNud, #bunnyNud, #preferencePos, #bunnyPos, #preferenceSen, #bunnySen {
	  background: var(--secondary-yellow);
  }
  
  #preferenceSWInput {
	  color: var(--primary-fg-500);
  }
  
  #preferenceSW span.material-symbols-rounded, #bunnySW span.material-symbols-rounded {
		color: var(--tertiary-blue);
  }
  
  #preferenceNud span.material-symbols-rounded, #bunnyNud span.material-symbols-rounded {
		color: var(--tertiary-pink);
  }
  
  #preferencePos span.material-symbols-rounded, #bunnyPos span.material-symbols-rounded {
		color: var(--tertiary-yellow);
  }
  
  #preferenceSen span.material-symbols-rounded, #bunnySen span.material-symbols-rounded {
		color: var(--tertiary-purple);
  }
}

