/*落耳白噪音样式*/

/* 按钮样式 */
.stop-all {
	padding: 50px 0 0;
	display: flex;
	justify-content: center;
}

.mute-all {
	background-repeat: no-repeat;
	background-position: 20px center;
	display: inline-block;
	border: 2px solid var(--color-primary);
	width: 146px;
	text-decoration: none;
	padding: 15px 25px;
	border-radius: 25px;
	text-align: center;
	text-transform: uppercase;
	font-size: 13px;
	font-size: 13px;
}

/* .mute-all:hover {
	border-color: #DA2424;
} */

/* SOUND */
.sounds{
 text-align: center;
}

.sound {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 10px;
	text-align: center;
	background-color:var(--color-grey-40);
	border-radius: 20px;
	cursor: pointer;
}

.dark .sound {
	background-color: hsl(0deg 0% 100% / 5%);
}

/* .sound:hover {
	background-color: color-mix(in srgb, var(--color-primary), transparent 60%);
	box-shadow:0 .2rem 1rem 0 hsl(0deg 0% 15% / 10%); 
} */

.sound[data-play="1"] {
	opacity: .8;
	background-color: color-mix(in srgb, var(--color-primary), transparent 60%);
	
}
.sound[data-play="1"] .cover{
	opacity: 1;
   	filter: none;
}

.sound[data-play="1"] .noise-tooltip{
	opacity: 1;
	color: #fff;
}

.sound[data-play="1"] input.horrorli-range {
	opacity: 1;
}

.cover {
	width: 60px;
	height: 60px;
	opacity: 0.5;
	transition: all 0.5s ease;
	cursor: pointer;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	margin: 20px auto;
	max-width: 100%;
	filter: invert(1) sepia(1) saturate(5) hue-rotate(180deg);
}

.dark .cover {
	filter: none;
}

.cover[data-tooltip]:after {
	display: none;
	content: attr(data-tooltip);
	position: absolute;
	width: 100%;
	height: auto;
	color: #fff;
	text-align: center;
	top: -15px;
	font-size: 12px;
	line-height: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.5s ease;
}

.cover[data-tooltip]:hover:after {
	display: block;
}

.noise-tooltip{
    color: inherit;
	opacity: 0.5;
}

/** 音量条 RANGE */
input[type=range].horrorli-range {
	opacity: 0;
	-webkit-appearance: none;
	margin: 0 auto 0;
	border: 0;
	max-width: 100%;
	background: transparent;
}

input[type=range].horrorli-range:focus {
	outline: none;
}

input[type=range].horrorli-range::-webkit-slider-runnable-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	box-shadow: none;
	background: #fff;
	border-radius: 25px;
	border: 0;
}

input[type=range].horrorli-range::-webkit-slider-thumb {
	box-shadow: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 18px;
	background: #fff;
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -6px;
}

@media only screen and (max-width:420px) {
	.sound{
		width: 45%;
		margin: 8px;
	}
}