@charset "utf-8";
/* CSS Document */

:root {
  --background-color-1: #ffffff; /*white*/
  --border-color-1: #ffffff; /*white*/
  --text-color-1: #000000; /*black*/
  --red-color: #e43;
  --white-color: #ffffff;
  --black-color: #000000;
}

body {
  background: var(--background-color-1);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--text-color-1);
}

/*RIBBON, PROMPT, MESSAGE*/
#ribbonTest {
  width: 200px;
  background: var(--red-color);
  position: absolute;
  top: 0;
  left: calc(50% - 100px);
  text-align: center;
  line-height: 25px;
  letter-spacing: 1px;
  color: var(--white-color);
  z-index:99;
}

#prompt, 
#message {
  display:none;
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color: rgb(from var(--white-color) r g b / 0.8);
  z-index:999;
}

#prompt-box, 
#message-box {
	position: fixed;
	top: 10%;
	left: 10%;
	width: 80%;
	height: 80%;
	margin: 0;
	padding: 0;
	text-align: center;
	z-index: 999;	
  overflow:hidden;
}

/*TOP HEADER*/
#top-header {
  position: absolute;
  top:0;
  width: 100%;
  height: 40px;
  padding: 10px;
  background: #eeeeee;
}

#footer {
  position: absolute;
  bottom:0;
  width: 100%;
  height: 40px;
  padding: 10px;
  background: #cccccc;
}

/*SIDEBAR*/
#toggleSidebar {
  cursor:pointer;
	position:fixed;
  top:0;
  width:40px;
  height:40px;
  padding:0;
  color:#bbb;
  border:0;
  z-index:99;
  transition: all 0.5s ease;
}
#toggleSidebar:hover {
  color:#133450;
  transition: all 0.5s ease;
}
#toggleSidebar:before {
	font-family: "Font Awesome 5 Free";
	content: "\f0c9";
	display: inline-block;
	vertical-align: middle;
  font-size:20px;
	font-weight: 900;
}
#toggleSidebar.open {
	left: 200px;
  transition: all 0.5s ease;
}

#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100%;
  width: 0;
  background: #133450;
  z-index: 9;
  overflow-x: hidden;
  transition: all 0.5s ease;
}

#sidebar.open {
	width:200px;
	z-index: 9;
	height: 100%;
  transition: all 0.5s ease;
}

/*CONTENT*/
#wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  min-height: 100vh;
  transition: all 0.5s ease;
}

#wrapper.resized {
  margin-left: 200px;
  width: calc(100% - 200px);
  transition: all 0.5s ease;
}

#content {
  background: #dddddd;
  padding: 80px 40px;
  min-height: 100vh;
}