* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}
img {
	max-width: 100%;
}
a {
	color: #ffffff;
	text-decoration: underline;
}
input:focus,
textarea:focus {
	outline: 1px solid #ffffff !important;
}
.top {
	display: flex;
	justify-content: center;
	align-items: center;
}
.top img {
	max-width: 50px;
	margin: 0 1em;
}
html.asmr-scape,
.asmr-scape body {
	margin: 0;
	padding: 0;
	background-color: #4a533b;
	color: #ffffff;
	font-family: "Caveat Brush", serif;
	font-weight: 100;
	font-size: 16px;
	letter-spacing: 1px;
	scrollbar-width: thin;
	scrollbar-color: #888888 #f1f1f1;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 100;
	text-shadow: -1px -1px 0 black,
	1px -1px 0 black,
	-1px 1px 0 black,
	1px 1px 0 black;
}
.asmr-scape ::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
.asmr-scape ::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 5px;
}
.asmr-scape ::-webkit-scrollbar-thumb {
	background: #888888;
	border-radius: 5px;
}
.asmr-scape ::-webkit-scrollbar-thumb:hover {
	background: #555555;
}
.asmr-scape main {
	position: relative;
	z-index: 2;
	max-width: 1400px;
	margin: 2em auto;
}
.asmr-scape h1 {
	font-family: "Pacifico", serif;
	font-size: 3em;
	margin-top: 0;
	margin-bottom: 0;
}
.asmr-scape h2 {
	font-size: 2em;
	margin-bottom: 0;
}
.asmr-scape h4 {
	font-size: 1.2em;
	margin-top: 0;
}
.asmr-scape h5 {
	font-size: 1em;
}
.divider {
	height: 2em;
	display: block;
}
.text-center {
	text-align: center;
}
input[type="range"] {
	-webkit-appearance: none; /* Remove default styling */
	width: 100%;
	height: 8px;
	background: #dddddd;
	border-radius: 4px;
	outline: none;
	cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	position: relative;
	bottom: 2px;
	border-radius: 50%;
	background: #4a533b; /* Thumb color */
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
input[type="range"]::-moz-range-thumb {
	width: 16px;
	height: 16px;
	position: relative;
	bottom: 2px;
	border-radius: 50%;
	background: #4a533b; /* Thumb color */
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
input[type="range"]::-ms-thumb {
	width: 16px;
	height: 16px;
	position: relative;
	bottom: 2px;
	border-radius: 50%;
	background: #4a533b; /* Thumb color */
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
input[type="range"]::-webkit-slider-runnable-track {
	background: linear-gradient(90deg, #4a533b 0%, #dddddd 100%); /* Track color */
	border-radius: 4px;
	height: 12px;
}
input[type="range"]::-moz-range-progress {
	background: #4a533b; /* Filled part in Firefox */
}
input[type="range"]::-moz-range-track {
	background: #dddddd; /* Unfilled part in Firefox */
	border-radius: 4px;
	height: 8px;
}
input[type="range"]::-ms-fill-lower {
	background: #4a533b; /* Filled part in IE/Edge */
}
input[type="range"]::-ms-fill-upper {
	background: #dddddd; /* Unfilled part in IE/Edge */
}
#background-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	opacity: 0.3;
	object-fit: cover;
	background-image: url(images/bg.jpg);
	background-position: center;
	background-size: cover;
	pointer-events: none;
	z-index: -1;
}
.main-container {
	display: flex;
	z-index: 3;
	position: relative;
}
#master-controls {
	width: 15%;
}
#right-sidebar {
	width: 20%;
}
#right-sidebar {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#master-controls > div,
#right-sidebar > div {
	position: sticky;
	top: 2em;
	padding: 1em;
}
#sounds {
	width: 65%;
	display: flex;
	gap: 1em;
	flex-direction: column;
	padding: 1em;
}
.sound-accordion {
	padding: 1em;
	border-radius: 0.5em;
}
.sound-accordion:first-of-type {
	margin-top: 0;
}
.sound-accordion:last-of-type {
	border-bottom: 1px solid transparent;
}
.sound-accordion-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1em;
	margin-top: 0.5em;
}
.sound-category-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	font-size: 1.4em;
	margin-bottom: 0;
	position: relative;
}
.sound-category-title:after {
	font-family: "Font Awesome 6 Free";
	content: "\f107";
	font-weight: 900;
	padding-left: 0.5em;
	vertical-align: middle;
}
.sound-accordion.open .sound-category-title:after {
	content: "\f106";
}
.video-list {
	display: none !important;
}
.sound-container {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	background: rgba(255, 255, 255, 0.2);
	padding: 1em;
	border-radius: 5px;
}
.play-container {
	display: flex;
	margin-bottom: 0.7em;
	align-items: center;
}
.play-container h4 {
	margin-bottom: 0;
	align-items: center;
}
.play {
	margin-right: 10px;
	margin-bottom: auto;
}
.play .fa-play {
	margin-right: 12px;
}
.play .fa-pause {
	margin-right: 8px;
	color: #d57878;
}
.btn-icon {
	background: none;
	border: none;
	outline: none;
	color: #ffffff;
	padding: 0;
	font-size: 2em;
	text-align: center;
	width: 45px;
	cursor: pointer;
}
.btn-icon:hover {
	color: #dddddd;
}
.volume-control-container {
	margin-top: auto;
}
.volume-control-container,
.balance-control-container {
	display: flex;
	align-items: center;
	margin-bottom: 0.5em;
	align-self: normal;
}
.volume-control-container input,
.balance-control-container input {
	margin: 0 0.5em;
}
.volume-indicator,
.balance-indicator {
	text-align: right;
	width: 20px;
}
.slider-label {
	font-size: 1.5em;
	text-align: center;
	width: 60px;
	cursor: pointer;
}
i.fa-volume-mute,
i.fa-video-slash {
	color: #d57878;
}
.balance-reset .fa-headphones {
	margin-right: 4px;
}
.balance-reset:hover {
	color: #dddddd;
}
#playing-controls,
#video-controls,
#copy-load-controls,
#copy-load-controls > div:first-child {
	display: flex;
	gap: 2em;
	margin-bottom: 1.5em;
	justify-content: space-between;
}
#copy-load-controls > div:first-child {
	margin-bottom: 0;
}
#next-video,
#prev-video {
	align-items: center;
	gap: 1em;
}
.volume-mute:hover i,
#mute-all:hover,
#video-disable:hover {
	color: #d57878;
}
.tippy-box[data-theme~="asmr"] {
	background-color: #ffffff;
	color: #4a533b;
}
.tippy-box[data-theme~="asmr"][data-placement^="top"] > .tippy-arrow::before {
	border-top-color: #ffffff;
}
#copy-load-controls {
	margin-bottom: 0;
	flex-direction: column;
	gap: 10px;
}
#mix-data {
	width: 100%;
	height: 3em;
	resize: none;
	border-radius: 5px;
	padding: 0.5em;
	box-sizing: border-box;
}
div.asmr-toastify {
	color: #4a533b;
}
div.asmr-toastify .toast-close {
	display: none;
}
#quote {
	position: fixed;
	left: 0;
	bottom: 0;
	font-size: 1.5em;
	transform: translateY(100%) rotate(-90deg);
	transform-origin: left top;
	max-width: calc(100vh - 1em);
	padding: 0.5em;
}
#random-asmr-video {
	min-height: 150px;
	position: relative;
	border: 1px solid #ffffff;
	border-radius: 3px;
	cursor: pointer;
}
#random-asmr-video:after {
	content: "YT Random ASMR Video";
	position: absolute;
	opacity: 0.5;
	font-size: 1.4em;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	text-align: center;
	z-index: -1;
}
#get-random-asmr-video {
	margin-bottom: 0.5em;
	text-align: left;
}
#random-asmr-video iframe {
	max-width: 100%;
	height: auto;
}
#load-mix-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	align-items: center;
	justify-content: center;
	z-index: 1000000;
}
.load-mix-overlay-content {
	text-align: center;
}
.load-mix-overlay-content .btn-icon {
	margin-top: 1em;
	display: inline-flex;
	justify-content: center;
}
.load-mix-overlay-content > div,
.load-mix-overlay-content i {
	font-size: 3em;
}
#feedback-form-container {
	margin-top: 2em;
}
#feedback-form input,
#feedback-form textarea {
	width: 100%;
	margin: 0.5em 0;
	padding: 0.5em;
	font-size: 0.7em;
	outline: none;
	border: 1px solid #ffffff;
	box-sizing: border-box;
	border-radius: 3px;
}
#feedback-form button {
	padding: 0.5em;
	display: block;
	border: none;
	border-radius: 5px;
	background-color: #4a533b;
	color: white;
	font-weight: bold;
	cursor: pointer;
	width: 100%;
	outline: 1px solid #ffffff;
}
#feedback-form button:hover {
	background-color: #4a533b;
}
#feedback-message {
	margin-bottom: 0.5em;
}
#master-controls .btn-icon {
	font-size: 1.4em;
	line-height: 1;
}
#save-mix-container {
	margin-bottom: 1em;
}
#save-mix-name {
	width: 50%;
	flex-grow: 1;
	margin: 0.5em 0;
	padding: 0.5em;
	font-size: 0.7em;
	outline: none;
	border: 1px solid #ffffff;
	box-sizing: border-box;
	border-radius: 3px;
}
#save-mix-controls {
	display: flex;
}
#save-mix-list {
	margin-top: 0.5em;
}
#save-mix-list .btn-icon {
	font-size: 1em;
}
#save-mix-list > div {
	margin-bottom: 0.5em;
	white-space: nowrap;
	display: flex;
	justify-content: space-between;
}
#save-mix-list a {
	overflow: hidden;
	text-overflow: ellipsis;
	width: 50%;
	flex-grow: 1;
}
.delete-mix:hover {
	color: #d57878;
}
#other-master-controls {
	display: flex;
	gap: 2em;
	justify-content: space-between;
	align-items: flex-start;
}
.master-controls-trigger {
	display: none;
}
.master-controls-trigger i {
	font-size: 2em;
}
.grecaptcha-badge {
	visibility: hidden;
}
.asmr-mmm {
	display: none;
}
.size-warning {
	cursor: pointer;
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	color: #d57878;
}
.duration i {
	margin-left: 10px;
	margin-right: 10px;
}
#randomize-sound-limit {
	outline: none;
	border-radius: 3px;
}
#toggle-browser-fullscreen,
#save-mix,
.delete-mix {
	text-align: right;
}
.delete-mix {
	padding-right: 3px;
}
#soundscape-button .fa-solid {
	color: #40dca5;
}
#randomize-button,
#soundscape-button {
	animation: pulsate 0.7s infinite alternate;
}
@keyframes pulsate {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.15);
	}
}
@media (max-width: 1400px) {
	#quote {
		display: none;
	}
	#sounds {
		width: 50%;
	}
	#master-controls {
		width: 20%;
	}
	#right-sidebar {
		width: 30%;
	}
	.sound-accordion-content {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 1023px) {
	.main-container {
		flex-direction: column;
		margin-top: 1em;
	}
	#master-controls {
		width: 100vw;
		height: 100vh;
		position: fixed;
		top: 0;
		left: -100vw;
		z-index: 1000;
		background-color: #4a533b;
		overflow-y: auto;
		display: block;
		flex-direction: column;
		justify-content: center;
		transition: left 0.3s ease-in-out;
	}
	.master-controls-visible #master-controls {
		left: 0;
	}
	.master-controls-visible {
		overflow: hidden;
	}
	#master-controls > div {
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
		position: static;
	}
	.master-controls-trigger {
		display: block;
		position: fixed;
		top: 1.5em;
		right: 1.5em;
		justify-content: flex-end;
		z-index: 1001;
	}
	.master-controls-visible .master-controls-trigger {
		z-index: -2;
	}
	#master-controls .master-controls-trigger {
		margin-top: 0.5em;
		margin-right: 0.5em;
	}
	#sounds {
		width: 100%;
		order: 3;
	}
	#playing-controls,
	#video-controls,
	#copy-load-controls,
	#copy-load-controls > div {
		display: inline-flex;
		flex: 0 1 50%;
		justify-content: flex-start;
		gap: 0.5em;
	}
	#playing-controls,
	#video-controls {
		max-width: 50%;
	}
	#copy-load-controls > div:first-child {
		justify-content: flex-start;
		gap: 0.5em;
	}
	#copy-load-controls {
		flex: 0 1 100%;
		flex-direction: row;
		margin-bottom: 1.5em;
		align-items: center;
	}
	#feedback-form-container {
		width: 100%;
	}
	#right-sidebar {
		display: none;
		width: 100%;
		order: 2;
	}
	#save-mix-container {
		width: 100%;
	}
	.asmr-scape h1 {
		font-size: 2em;
	}
	.asmr-scape h2 {
		font-size: 1.5em;
	}
	#random-asmr-video {
		width: 100%;
	}
	.asmr-scape main {
		margin: 3em auto;
	}
	.divider {
		display: none;
	}
	.sound-accordion-content {
		display: none;
		grid-template-columns: repeat(1, 1fr);
	}
	#toggle-browser-fullscreen {
		display: none;
	}
	#master-controls h5 {
		margin-bottom: 0.5em;
	}
	#master-controls h6 {
		margin-top: 0;
	}
	.sound-category-title {
		padding: 0.5em 0;
	}
}