
#homeScreen_settings_window {
	color: #ffffff;
    border-radius: 0.4em;
    border: 1px solid #191919;
    box-shadow: 0 5px 10px 5px rgb(0 0 0 / 20%);
    background: linear-gradient( 
154deg
 , rgb(14 14 14 / 91%), rgb(0 0 0 / 88%));
    backdrop-filter: blur(6px);
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 170px);
    width: 340px;
    z-index: 1;
	transition: 0.25s;
	opacity: 0;
	pointer-events: none;
}

#homeScreen_settings_button {
	color: #ffffff;
    border-radius: 0.4em;
    border: 1px solid #333333;
    box-shadow: 0 5px 10px 5px rgb(0 0 0 / 20%);
    background: linear-gradient(154deg, rgb(14 14 14 / 91%), rgb(0 0 0 / 88%));
    backdrop-filter: blur(6px);
    /* width: 50px; */
    /* height: 50px; */
    position: absolute;
    bottom: 11px;
    left: 320px;
    font-family: Material Icons;
    font-weight: 400;
    text-align: center;
    font-size: 32px;
    padding: 12px;
	display: none;
}

#homeScreen_settings_button:hover {
	opacity: 0.8;
	cursor: pointer;
}

#homeScreen_settings_closeWindow_button {
    position: absolute;
    top: 6px;
    right: 5px;
    padding: 2px;
    color: #ffffff;
    border-radius: 6px;
    border: 1px solid #a2a2a2;
    box-shadow: 0 5px 10px 5px rgb(0 0 0 / 20%);
    background: linear-gradient(
154deg
, rgb(117 10 10 / 91%), rgb(220 34 34 / 88%));
    font-family: Material Icons;
    font-weight: 400;
    text-align: center;
    font-size: 17px;
}

#homeScreen_settings_closeWindow_button:hover {
	opacity: 0.8;
	cursor: pointer;
}

.homeScreen_divHover:hover {
	opacity: 0.5;
}