@import url('https://fonts.googleapis.com/css2?family=Overpass&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: transparent;
	font-family: 'Overpass', sans-serif;
}

:root{
	--dark: #252525;
	--sky: #2FA8FF;
	--sky-v2: #2b8bc9;
	--gray: #F6F6F6;
}

html{
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
    overflow-x: hidden;
}

body{
    overflow-x: hidden;
	color: #333;
}

.not_admin {
	display: none !important;
}

.admin_logged .not_admin,
.admin_logged .not_admin span{
	display: inline-block !important;
}

.hide-desktop{
	display: none !important;
}

@media(max-width: 992px){
	.hide-mobile{
		display: none !important;
	}
	.hide-desktop{
		display: block !important;
	}
}

ul.glossary {
	margin-left: 15px;
	margin-top: 15px;
}

.glossary {
	font-size: 12px;
}