/******************************************
* Variable
******************************************/

:root {
	--main-text--color: #333;
	--main-link--color: #2196f9;
	--main-link-visit-color: #215bf9;
}

/******************************************
* Style general
******************************************/

html, body {
	margin : 0px;
	padding : 0px;
	font-family : Roboto, Sans-serif;
	width: 100%;
	height: 100%;
	color: var(--main-text--color);
	background: rgba(245,245,245, 1);
	font-size : 16px;
}

body {
	position: relative;
	user-select: none;
}

/******************************************
* Liens couleur générale
******************************************/

a {
    color : var(--main-link--color);
    text-decoration : none;
}
a:hover {
    color : var(--main-link-visit-color);
    text-decoration : none;
}
a:active {
	color : var(--main-link-visit-color);
    text-decoration : none;
}

/******************************************
* Liens couleur générale
******************************************/
div#nav-bar {
	box-sizing: border-box;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	width: 100%;
	height: 70px;
	z-index: 2;
	background: #fff;
	box-shadow: 0 8px 9px -4px #dedede;
	align-items: center;
	display: flex;
	padding-top: 8px;
}

#nav-bar div.nav-color {
	background: #215bf9 none repeat scroll 0% 0%;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 8px;
}

#nav-bar div.file {
	display: inline-block;
	padding-left: 36px;
	width: calc(100%);
	min-width: 440px;
	border-right: 1px solid #e5e6e6;
}

#nav-bar div.file .title {
	font-size: 18px;
	line-height: 23px;
	display: inline;
}

#nav-bar div.file .desc {
	font-size: 14px;
	line-height: 18px;
	color: #aaa;
}

#nav-bar div.site {
	display: inline-block;
	min-width: 188px;
	margin: 0 36px 0 25px;
}

#nav-bar div.site .logo {
	display: inline-block;
}

#nav-bar div.site .logo img {
	position: relative;
	width: 36px;
	vertical-align: middle;
	top: -2px;
	margin-right: 8px;
}

#nav-bar div.site .name {
	display: inline-block;
	line-height: 36px;
}

div#MsgBox {
	width: 460px;
	padding: 44px 30px;
	background-color: #fff;
	box-shadow: 0 3px 8px 0 #dedede;
	border-radius: 3px;
	text-align: center;
	box-sizing: border-box;
	position: relative;
	top: 50%;
	transform: translate(0, calc(-50% + 35px));
	margin: 0 auto;
}

div#MsgBox .icoBox {
	position: relative;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: #66181b;
	line-height: 100px;
	margin: 0 auto;
}

div#MsgBox .icoBox img {
	position: relative;
	width: 48px;
	height: 48px;
	vertical-align: middle;
}

div#MsgBox .title {
	margin: 28px 0 13px;
	font-size: 20px;
}
div#MsgBox .desc {
	margin-top: 6px;
	color: #888;
	font-size: 12px;
}
div#MsgBox .download {
	margin-top: 28px;
}

div#MsgBox .download a label {
	border-radius: 4px;
	background-color: #3469f9;
	padding: 10px 18px 10px 18px;
	color: #fff;
	cursor: pointer;
}

div#MsgBox .download a:hover label {
	background-color: #215bf9;
}