.is-style-scroll-focus {
	position: relative;
	transition: all 0.3s ease;
}
.spotlight-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}
.spotlight-active {
    position: relative;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
	background-color: white;
	padding: 20px;
	border-radius: 10px;
}
.spotlight-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9999;
    background: white;
    color: black;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
	padding: 5px;
    border-radius: 4px;
    width: 35px;
    height: 35px;
    box-shadow: 0px 0px 4px #00000021;
    display: none;
}
