
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root{
	--dark-color: #187b5e;
	--theme: #168866;
	--nav-bar-height: 60px;
	color-scheme: dark;
}

body{
	font-family: sans-serif;
	background-color: #222123;
	margin: 0;
	min-width: 360px;
	font-family: "Ubuntu", sans-serif;
}

#snTopbar{
	width: 100%;
    background-color: var(--theme);
	display: flex;
	height: var(--nav-bar-height);
	line-height: var(--nav-bar-height);
	justify-content: center;

	position: sticky;
    top: 0;
    z-index: 9999999999;
	align-items: center;
	overflow: hidden;
}



#snTopbar .menuBurger{
	width: 32px;
    height: 32px;
    padding: 10px;
    display: block;
    margin-left: 10px;
    border-radius: 5px;
}


#snTopbar .menuBurger:hover{
    background-color: #00000033;
}
#snTopbar .menuBurger:active{
    background-color: #00000055;
}


#snTopbar .logobox{
	display: flex;
	margin-right: 10px;
}

#snTopbar .logo{
	width: 36px;
    margin: 5px;
}

#snTopbar .logobox h1{
	color: white;
	margin: 0;
	font-family: 'Ubuntu', sans-serif;
	font-weight: normal;
	font-size: 24px;;
}

#snTopbar .logobox h1:after{
	content: ".uk";
	font-size: 20px;
	color: #a8d0c4;
	margin-left: 4px;
}

#snTopbar .navbar{
	color: white;
	display: flex;
	position: relative;
	overflow: hidden;
    height: 100%;
    overflow: hidden;
    flex-wrap: wrap;
	flex-grow: 1;
	align-items: center;
}

#snTopbar .navbar span{
	width: 1px;
    background-color: #ffffff73;
    height: 35px;
    margin: 0 5px;
}

#snTopbar .navbar a{
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    padding: 0 10px;
    margin: 10px 0;
	height: calc(100% - 20px);
    cursor: default;
    position: relative;
    border-radius: 5px;
	display: flex;
	align-items: center;
	color: white;
	text-decoration: none;
	line-height: 0.8em;
}

#snTopbar .navbar a img{
	margin-right: 2px;
}

#snTopbar .navbar a:hover{
	background-color: #00000033;
}

#snTopbar .navbar a.sel:after{  /* like this to avoid curved border*/
	content: "";
	height: 3px;
	width: 100%;
	background-color: #ffffffc4;
	position: absolute;
	bottom: -6px;
	left: 0;
	border-radius: 30px;
}



#snTopbar .navbarAllapps{display:none}

/* Nav All Apps button ------------------------------- *
#snTopbar .menuBurger{
	display: none;
}
#snTopbar .navbar{
	flex-grow: 0;
}
#snTopbar .logobox{
	margin-left: 10px;
}

#snTopbar .navbarAllapps{
	color: white;
	display: flex;
	position: relative;
	overflow: hidden;
    height: 100%;
    overflow: hidden;
    flex-wrap: wrap;
	flex-grow: 1;
	flex-shrink: 0;
}

#snTopbar .navbarAllapps a{
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    padding: 0 10px;
    margin: 10px 0;
	height: calc(100% - 20px);
    cursor: default;
    position: relative;
    border-radius: 5px;
	display: flex;
	align-items: center;
	color: white;
	text-decoration: none;
	line-height: 0.8em;
}

#snTopbar .navbarAllapps a img{
	margin-right: 2px;
}

#snTopbar .navbarAllapps a:hover{
	background-color: #00000033;
}
/* Nav All Apps button -------------------------------- */


#snTopbar .userbox{
	display: flex;
    align-items: center;
    margin: 0 2px 0 10px;
    padding: 0 10px;
    height: 50px;
	border-radius: 5px;
}

#snTopbar .userbox:hover{
	background-color: #00000033;
}

#snTopbar .userbox img{
	background-color: #00000063;
	width: 40px;
	height: 40px;
	border-radius: 100%;
}

#snTopbar .userbox span{
	color: white;
    margin-right: 10px;
    font-size: 18px;
}

#snTopbar .versionbox{
	display: flex;
	align-items: center;
    background-color: #195d48;
	height: 20px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 20px;
	text-align: center;
	white-space: nowrap;
	transition: 0.2s;
	z-index: 1;
    font-size: 0px;
	margin-right: 9px;
	padding: 9px 4px 9px 9px;
}

#snTopbar .versionbox a{
	display: flex;
	align-items: center;
	text-decoration: none;
}

#snTopbar .versionbox img{
	width: 22px;
    height: 22px;
	margin-right: 3px;
}

#snTopbar .versionbox span{
	display: inline-block;
    color: white;
    font-weight: normal;
    vertical-align: top;
    margin: 0;
    text-align: left;
	transition: 0.2s;
}

#snTopbar .versionbox:hover{
	font-size: 16px;
	padding-right: 10px;
}

#selbar{
	height: 4px;
	background-color: #8fcab8;
	width: 0;
	position: absolute;
	left: 0;
	bottom: 2px;
	border-radius: 2px;
	transition: 0.3s;
}



#allNavigation{
	display: none;
	background-color: #0000001a;
	position: fixed;
	height: calc(100% - var(--nav-bar-height));
	width: 100%;
	left: 0;
	top: var(--nav-bar-height);
	z-index: 99999999999999999;
}
#allNavigation .menu{
	background-color: #353337;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 5px 0;
    color: white;
    border-radius: 5px;
    max-height: calc(100% - 20px);
    overflow: auto;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
	box-sizing: border-box;
}

#allNavigation span{
	height: 1px;
    background-color: #ffffff73;
    width: 100%;
    margin: 5px 0;
}

#allNavigation a{
	display: flex;
	align-items: center;
	padding: 8px 30px 8px 20px;
	color: #dddddd;
	text-decoration: none;
}
#allNavigation a:hover{
	background-color: grey;
}
#allNavigation a img{
	margin-right: 5px;
	opacity: 0.7;
}
#allNavigation a.sel{
	border-right: solid 3px #ffffffab;
    color: white;
    font-weight: bold;
}
#allNavigation a.sel img{
	opacity: 1;
}






#userMenu{
	display: none;
	background-color: #0000001a;
	position: fixed;
	height: calc(100% - var(--nav-bar-height));
	width: 100%;
	left: 0;
	top: var(--nav-bar-height);
	z-index: 99999999999999999;
}
#userMenu .menu{
	background-color: #353337;
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 10px;
    top: 10px;
    padding: 25px;
    color: white;
    border-radius: 5px;
    max-height: calc(100% - 20px);
    overflow: auto;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
	box-sizing: border-box;
}





@media (max-width: 800px) {
	#allNavigation .menu{
		height: 100%;
        max-height: 100%;
		min-width: 250px;
		padding: 10px 0;
        top: 0;
        left: 0 !important;
        border-radius: 0;
		box-shadow: 10px 0 20px #00000021;
	}
	#snTopbar .navbar a, #snTopbar .navbar span{
		display: none;
	}
}

@media (max-width: 500px) {
	#snTopbar .userbox span{
		display:none;
	}
}

.greenstrip{
	width: 100%;
	background-color: var(--theme);
}




#loadPage{
	position: fixed;
	width: 100%;
	height: calc(100% - 70px);
    left: 0;
    top: 70px;
	background-color: #177156;
    z-index: 999999999;
	display: none;
	transform: translateY(0%);
	transition: 0.3s;
}

#loadPage div{
	width: 80px;
	height: 80px;
	display: block;
    color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    font-family: 'Ubuntu';
}

#loadPage div img{
	width: 100%;
	height: 100%;
	position: absolute;
	animation-name: spin;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

#loadPage div img:nth-child(1){	animation-duration: 0.8s; }
#loadPage div img:nth-child(2){	animation-duration: 1.3s; }
#loadPage div img:nth-child(3){	animation-duration: 2s; }

@keyframes spin {
  from {transform: rotate(0deg)}
  to {transform: rotate(360deg)}
}













#mainbar {
    width: 100%;
    height: 60px;
    background-color: #126149;
	color: white;
	font-size: 18px;
	line-height: 60px;
}

#sidebar{
	width: 260px;
    height: calc(100% - 130px);
    background-color: #302e31;
}

#mainpanel{
	width: calc(100% - 260px);
    height: calc(100% - 130px);
    position: absolute;
    bottom: 0;
    left: 260px;
}

.texticon{
    width: 35px;
    padding: 13px 10px;
    vertical-align: middle;
}

#internetusage{
    width: 940px;
    height: auto;
    border: solid 1px #313031;
    background-color: #1e1d1f;
    margin: 3em auto 1.5em;
    display: block;
    border-radius: 10px;
}

#internetusage circle{
	transition: 0.2s;
}

#internetusage circle:hover {
    fill: white;
	r: 10;
}

#worldmap{
	width: 760px;
    margin: auto;
    display: block;
    height: 320px;
    overflow: hidden;
    padding: 20px 20px 20px 0;
    background-color: #1e1d1f;
    border-radius: 10px;
    border: solid 1px #313031;
}

#worldmap .cont{
	position: relative;
	width: 100%;
}

#worldmap img{
	width: 100%;
}

.point{
	position: absolute;
	width: 10px;
	height: 10px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-color: #16886642;
	border: solid 1px #168866;
	/*background: radial-gradient(#76d2b6b3, #76d2b647);*/
	left: 50%;
	top: 50%;
}