button.sc-washing-overlay-button{margin-bottom: 25px;}
.sc-washing-overlay-button, .sc-close-overlay{
	margin-top: 10px; 
	padding: 10px 20px; 
	background-color: #0073aa; 
	color: #fff; border: none; 
	cursor: pointer;
	border-radius: 3px;
}
.sc-listen-instruction{
	margin-top: 10px; 
	padding: 10px 20px; 
	background-color: #222222; 
	color: #fff; border: none; 
	cursor: pointer;
	border-radius: 3px;
}
.sc-listen-instruction:hover{
	background-color: #0073aa; 

}


.sc-washing-overlay {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999999999999 !important;
}

.sc-washing-overlay-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	text-align: center;
	border-radius: 3px;
}
@media (max-width: 768px) {
    .sc-washing-overlay-content {
        min-width: 300px;
        width: 100%; 
        max-width: 90%;
    }
}
.sc-washing-overlay-content p{
	color: #222222;
}

