/* Initial settings */
* { -webkit-user-select: none; /* content-visibility: auto; */ } form input, form textarea { -webkit-user-select: initial; }
*:focus { outline: none; }
*:target { background-image: linear-gradient(to right, rgba(106, 238, 193, 0.345), rgba(175, 99, 224, 0.23), rgba(106, 238, 193, 0.345)); }
:active:not(:hover) { cursor: not-allowed; pointer-events: none; }
/* Scrollbar */
::-webkit-scrollbar { width: 11.5px; height: 11.5px; }
::-webkit-scrollbar-track { background: #F0E2AC; box-shadow: inset 0 0 5px #A7A086; }
::-webkit-scrollbar-thumb { background: #D9C267; }
::-webkit-scrollbar-thumb:active { background: #C1AE60; }
.hscroll { -ms-overflow-style: none !important; } .hscroll::-webkit-scrollbar { display: none !important; }
.sscroll:hover { -ms-overflow-style: block !important; } .sscroll:hover::-webkit-scrollbar { display: block !important; }
.slider { overflow-x: auto !important; }
.slider::-webkit-scrollbar { height: 5.75px !important; }
.slider::-webkit-scrollbar-track { background: transparent !important; box-shadow: none !important; }
.slider::-webkit-scrollbar-thumb { background: rgba(99, 99, 99, 0.23) !important; border-radius: 2.875px !important; }
.slider::-webkit-scrollbar-thumb:active { background: rgba(77, 77, 77, 0.345) !important; }
/* Texts & Inputs & Images */
.txtoe, div.box div.cinfo div.name, div.box div.cinfo div.teach { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }
input, select, textarea {
	margin: 0px; padding: 0px;
	border-radius: none; border: none; box-shadow: none;
	-webkit-user-select: initial;
}
/* img { pointer-events: none; } */
/* Glass morphism */
.glass {
	background: rgba(250, 250, 250, 0.25) !important;
	box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(10px);
	border: 1.25px solid rgba(250, 250, 250, 0.25);
	border-top: 1.25px solid rgba(250, 250, 250, 0.5);
	border-left: 1.25px solid rgba(250, 250, 250, 0.5);
}
.glass *:not(button):not(input):not(select):not(textarea) { background: transparent !important; }
/* Code section */
code {
	margin: 1.25px 0px; padding: 0px 0.5px;
	background-color: var(--clr-pp-grey-300); border: 1.25px solid var(--clr-pp-grey-400); border-radius: 2.5px;
	display: inline-block;
}
code br { display: block; }