@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');

html,
body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

body {
	min-width: 100vw;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #eee;
	margin: 0;
	padding: 0;
	font-size: 14px;
}

body * {
	font-family: courier, monospace;
}

#page {
	padding: 0 15px;
}

#consoleMailSwitch:after {
    content: 'Switch to Console';
    position: absolute;
    background: #85f1fe;
    width: 100px;
    text-align: center;
    padding: 6px 3px;
    line-height: 15px;
    color: black;
    margin-left: -90px;
    margin-top: 0;
    height: 70px;
    font-weight: bold;
	top: 0;
    padding-top: 24px;
}
#consoleMailSwitch {
    width: 70px;
    height: 70px;
    position: fixed;
    right: 50px;
    bottom: 0;
    background: #85f1fe;
    z-index: 99;
    background-image: url(../images/command-line.png);
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: center;
	cursor: pointer;
}
body.consoleswitch #consoleMailSwitch{
	background-image: url(../images/mail.png);
}
body.consoleswitch #consoleMailSwitch:after {
    content: 'Switch to Mail';
}
body.consoleswitch #mailbox{
	display: none;
}
body.consoleswitch #page{
	display: block !important;
}

.console {
	width: 1080px;
	height: 600px;
	display: flex;
	flex-direction: row;
	margin: auto;
}

.console header {
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	background-color: #1c1c1c;
	height: 45px;
	line-height: 45px;
	text-align: center;
	color: #DDD;
}

.console .consolebody {
	box-sizing: border-box;
	padding: 20px 20px 20px 40px;
	height: calc(100% - 40px);
	min-height: 220px;
	background-color: #0c0c0c;
	color: #63de00;
	max-height: 500px;
	overflow: hidden;
	overflow-y: scroll;
}

.console .consolebody::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 14px;
	height: 14px;
}

.console .consolebody::-webkit-scrollbar-thumb {
	border-radius: 8px;
	background-color: #343434;
}

.console .consolebody p {
	margin: 0;
	line-height: 20px;
	font-weight: bold;
	font-size: 16px;
}

.console .consolebody p a {
	color: #7afff9;
	text-decoration: none;
}

input {
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	width: calc(100%);
	padding: 14px;
	border: none;
	background: #111111;
	outline: none;
	border-top: 1px solid #242424;
	padding-left: 40px;
	color: #63de00;
	font-weight: bold;
}

.inputbefore {
	position: absolute;
	color: #63de00;
	padding: 16px;
}

.blinking {
	animation: blink-animation 1s steps(5, start) infinite;
	-webkit-animation: blink-animation 1s steps(5, start) infinite;
}

footer {
	position: relative;
}

@keyframes blink-animation {
	to {
		visibility: hidden;
	}
}

@-webkit-keyframes blink-animation {
	to {
		visibility: hidden;
	}
}

.writetext {
	color: #555555;
}

.writetext.blinking {
	color: #63de00;
	margin-left: -20px !important;
}

.left {
	float: left;
	width: 75%;
}

.right {
	float: right;
	width: 25%;
}

.codeshere {
	margin: 20px;
	height: 100%;
	padding: 20px;
	line-height: 25px;
}

h3 {
	margin-top: 30px;
}

h1 {
	width: 100%;
	display: block;
	max-width: 1080px;
	margin: 0 auto;
	font-size: 40px;
	

}

.owncode {
	color: #ffd60f;
}
.owncode:before,
.phpcode:before {
	content: ">";
    position: relative;
    margin-left: -20px;
    margin-right: 12px;
}

.writetext:before {
}

.not-front .console .consolebody {
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}



.access_validation_wrapper {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index: 50;
    background: black;
	display: none;
}
#access_validation {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    margin-top: 25vh;
}
#access_validation label {
    color: white;
}
#access_validation input {
    background: white;
    border-radius: 0;
    margin-bottom: 20px;
    color: black;
    padding: 15px;
    margin-top: 5px;
	width: 100%;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
#access_validation input[type="submit"] {
	width: 100%;
	cursor: pointer;
}
#access_validation h2 {
    color: #63de00;
}
.message_data_container {
	display: none;
}

.message-container .from,
.message-container .arrow,
.message-container .to {
	display: inline;
}

@media (max-width: 1000px) {
	.left {
		width: 70%;
	}
	.right {
		width: 30%;
	}
}

@media (max-width: 900px) {
	.console {
		width: 100%;
	}
}

@media (max-width: 768px) {
	body {
		display: block;
		margin-top: 30px;
	}
	.right,
	.left {
		float: left;
		width: 100%;
	}
	.console {
		width: 100%;
		height: inherit;
		display: block;
		flex-direction: row;
		margin: auto;
	}
	.codeshere {
		margin: 0;
		height: 100%;
		padding: 0;
		border-radius: 15px;
		line-height: 25px;
	}
	.codeshere div {
		display: inline-block;
		margin-right: 10px;
	}
	.console .consolebody {
		height: 220px;
	}
}



* {
  box-sizing: border-box;
}
body {
  background: #000;
  font-weight: 400;
  line-height: 1.5em;
  color: #888;
}
h1 {
  font-size: 50px;
  line-height: 40px;
  font-weight: 100;
}
#page h1 {
  	font-size: 34px;
    line-height: 40px;
    font-weight: 100;
    /* font-family: ubuntu; */
    font-weight: bold;
    color: #646464;
}
p {
  margin-bottom: 1em;
}
a {
  color: #63D1FF;
  text-decoration: none;
  transition-duration: 0.3s;
}
a:hover {
  color: #338f7d;
  transition-duration: 0.05s;
  text-decoration: none;
}
.circle-icon {
	width: 30px;
    height: 30px;
    text-align: center;
    line-height: 28px;
    border: 2px solid #B4BBC1;
    border-radius: 100px;
    font-size: 14px;
    color: #B4BBC1;
    cursor: pointer;
    display: block;
    float: left;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.circle-icon.small {
  height: 25px;
  width: 25px;
  line-height: 23px;
  font-size: 11px;
}
.circle-icon:hover {
  color: #57636C;
  border-color: #57636C;
}
.circle-icon.red {
  color: #D23B3D;
  border-color: #D23B3D;
}
.circle-icon.red:hover {
  color: #791C1E;
  border-color: #791C1E;
}
.checkbox-wrapper {
  cursor: pointer;
  height: 20px;
  width: 20px;
  position: relative;
  display: inline-block;
  box-shadow: inset 0 0 0 1px #A3ADB2;
  border-radius: 1px;
}
.checkbox-wrapper input {
  opacity: 0;
  cursor: pointer;
}
.checkbox-wrapper input:checked ~ label {
  opacity: 1;
}
.checkbox-wrapper label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  background: #A3ADB2;
  opacity: 0;
  transition-duration: 0.05s;
}
.checkbox-wrapper label:hover {
  background: #95a1a6;
  opacity: 0.5;
}
.checkbox-wrapper label:active {
  background: #87949b;
}
#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 300px;
  background: #1D2127;
  transition-duration: 0.3s;
  z-index: 5;
}
#sidebar,
#sidebar a {
  color: #77DDFF;
}
#sidebar .logo-container {
  font-weight: 100;
  font-size: 50px;
  line-height: 40px;
  text-align: center;
  margin: 50px 0;
  cursor: pointer;
}
#sidebar .logo-container .logo {
  position: relative;
  top: -6px;
  font-size: 25px;
  margin-right: 15px;
  padding: 10px;
  border: 2px solid #77DDFF;
  border-radius: 100px;
  text-indent: 1px;
  color: #77DDFF;
}
#sidebar .compose-button {
  border-radius: 100px;
  padding: 13px 20px;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  color: #77DDFF;
  border: 2px solid #77DDFF;
  display: block;
  margin: 0 50px 30px 50px;
  cursor: pointer;
}
#sidebar .compose-button:hover {
  color: #ABB4BE;
  border-color: #ABB4BE;
}
#sidebar .menu-segment {
  padding: 0 50px 0 70px;
}
#sidebar .menu-segment ul,
#sidebar .menu-segment li {
  margin: 0;
  padding: 0;
}
#sidebar .menu-segment .ball.pink {
  border-color: #EA4C89;
}
#sidebar .menu-segment .ball.green {
  border-color: #9AE14F;
}
#sidebar .menu-segment .ball.blue {
  border-color: #1BC3E1;
}
#sidebar .menu-segment li.title {
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 0;
  color: #465162;
}
#sidebar .menu-segment li.title .icon {
  float: right;
}
#sidebar .menu-segment li.active a,
#sidebar .menu-segment li.active a:hover {
  background: #282d36;
}
#sidebar .menu-segment li a {
  display: block;
  margin: 0 -50px 0 -70px;
  padding: 10px 50px 10px 70px;
}
#sidebar .menu-segment li a:hover {
  background: #21262d;
}
#sidebar .menu-segment li .italic-link {
  margin-left: -30px;
  font-style: italic;
  color: #465162;
}
#sidebar .menu-segment li .italic-link,
#sidebar .menu-segment li .italic-link:hover {
  background: transparent;
}
#sidebar .menu-segment li .italic-link:hover {
  color: #ABB4BE;
}
#sidebar .menu-segment .labels li a span,
#sidebar .menu-segment .chat li a span {
  display: block;
  border: 5px solid red;
  border-radius: 100px;
  margin-top: 6px;
}
#sidebar .menu-segment .labels.labels li a span,
#sidebar .menu-segment .chat.labels li a span {
  float: right;
}
#sidebar .menu-segment .labels.chat li a span,
#sidebar .menu-segment .chat.chat li a span {
  float: left;
  margin-right: 10px;
}
#sidebar .menu-segment .chat li a {
  padding-left: 50px;
}
#sidebar .separator {
  margin: 30px 35px;
  height: 1px;
  background: #2D3138;
}
#sidebar .bottom-padding {
  height: 100px;
}
#sidebar > .nano-pane {
  background: transparent;
}
#sidebar > .nano-pane .nano-slider {
  background: rgba(255, 255, 255, 0.1);
}
.mail_container .page-title {
    display: block;
    margin: 0;
	color: #77DDFF;
}
#main {
  position: fixed;
  top: 0;
  left: 300px;
  bottom: 0;
  right: 0;
  z-index: 4;
  transition-duration: 0.3s;
  padding-left: 4px;
  box-shadow: inset 4px 0 0 #1d2127, inset 5px 0 0 #1d2127;
  background: black;
}
#main .overlay {
  position: absolute;
  top: 0;
  left: -10px;
  right: 0;
  bottom: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 5;
  opacity: 0;
  transition-duration: 0s;
  transition-property: opacity;
}
.show-main-overlay #main .overlay {
  opacity: 1;
  bottom: 0;
  transition-duration: 0.5s;
}
#main .header {
  padding: 50px 60px;
  border-bottom: 1px solid #1d2127;
  overflow: hidden;
  
  display: flex;
    align-items: center;
    justify-content: space-between;
}
.logout {
	min-width: 90px;
    margin-left: 25px;
}
#main .header .page-title {
  display: block;
}
#main .header .page-title .sidebar-toggle-btn {
  width: 0;
  margin-top: 1px;
  padding: 11px 0 0 0;
  float: left;
  position: relative;
  display: block;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-delay: 0.5s;
  opacity: 0;
  margin-right: 0;
}
.show-sidebar #main .header .page-title .sidebar-toggle-btn {
  transition-delay: 0s;
}
#main .header .page-title .sidebar-toggle-btn .line {
  height: 3px;
  display: block;
  background: #888;
  margin-bottom: 4px;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}
.show-sidebar #main .header .page-title .sidebar-toggle-btn .line-angle1 {
  transform: rotate(-120deg);
}
.show-sidebar #main .header .page-title .sidebar-toggle-btn .line-angle2 {
  transform: rotate(120deg);
}
#main .header .page-title .sidebar-toggle-btn .line-angle1 {
  width: 8px;
  margin: 0;
  position: absolute;
  top: 15px;
  left: -11px;
  transform: rotate(-60deg);
}
#main .header .page-title .sidebar-toggle-btn .line-angle2 {
  width: 8px;
  margin: 0;
  position: absolute;
  top: 21px;
  left: -11px;
  transform: rotate(60deg);
}
#main .header .page-title .icon {
  font-size: 15px;
  margin-left: 20px;
  position: relative;
  top: -5px;
  cursor: pointer;
}
#main .header .search-box {
  float: right;
  width: 150px;
  height: 40px;
  position: relative;
}
#main .header .search-box input,
#main .header .search-box .icon {
  transition-duration: 0.3s;
}
#main .header .search-box input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  text-indent: 15px;
  height: 40px;
  z-index: 2;
  outline: none;
  color: #999;
  background: transparent;
  border: 2px solid #77ddff59;
  border-radius: 5px;
  transition-timing-function: cubic-bezier(0.3, 1.5, 0.6, 1);
}
#main .header .search-box input:focus {
  color: #333;
  border-color: #d6d6d6;
  width: 150%;
}
#main .header .search-box input:focus ~ .icon {
  opacity: 1;
  z-index: 3;
  color: #77DDFF;
}
#main .header .search-box .icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  text-align: center;
  line-height: 40px;
  z-index: 1;
  cursor: pointer;
  opacity: 0.5;
  margin: 0;
}
#main .action-bar {
  padding: 20px 60px;
  border-bottom: 1px solid #1d2127;
  overflow: hidden;
}
#main .action-bar li {
  float: left;
  margin-right: 10px;
}
#main #main-nano-wrapper {
  position: absolute;
  top: 260px;
  bottom: 0;
  height: auto;
}
.action-bar ul {
	padding: 0;
    margin: 0;
	list-style: none;
}
a {
	text-decoration: none;
}
a:hover {
	text-decoration: none !important;
}
#main .message-list {
  display: block;
}
#main .message-list li {
  position: relative;
  display: block;
  height: 50px;
  line-height: 50px;
  cursor: default;
  transition-duration: 0.3s;
    color: #D3FFCF;
}
#main .message-list li:hover,
#main .message-list li.active,
#main .message-list li.selected {
  background: #1d2127;
  transition-duration: 0.05s;
}
#main .message-list li.active,
#main .message-list li.active:hover {
  box-shadow: inset 5px 0 0 #77DDFF;
}
#main .message-list li.unread {
  font-weight: 600;
  color: #04E811;
}
#main .message-list li .col {
  float: left;
  position: relative;
}
#main .message-list li.blue-dot .col-1 .dot {
  border-color: #1BC3E1;
}
#main .message-list li.orange-dot .col-1 .dot {
  border-color: #E2A917;
}
#main .message-list li.green-dot .col-1 .dot {
  border-color: #9AE14F;
}
#main .message-list li .col-1 {
  width: 400px;
}
#main .message-list li .col-1 .star-toggle,
#main .message-list li .col-1 .checkbox-wrapper,
#main .message-list li .col-1 .dot {
  display: block;
  float: left;
}
#main .message-list li .col-1 .dot {
  border: 4px solid transparent;
  border-radius: 100px;
  margin: 22px 26px 0;
  height: 0;
  width: 0;
  line-height: 0;
  font-size: 0;
}
#main .message-list li .col-1 .checkbox-wrapper {
  margin-top: 15px;
  margin-right: 10px;
}
#main .message-list li .col-1 .star-toggle {
  margin-top: 15px;
}
#main .message-list li .col-1 .title {
  position: absolute;
  top: 0;
  left: 140px;
  right: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
	padding: 0;
    margin: 0;
}
#main .message-list li .col-2 {
  position: absolute;
  top: 0;
  left: 400px;
  right: 0;
  bottom: 0;
}
.glyphicon {
    margin-top: 16px;
}
.action-bar a {
	margin-top: 0px;
}
#main .message-list li .col-2 .subject,
#main .message-list li .col-2 .date {
  position: absolute;
  top: 0;
}
#main .message-list li .col-2 .subject {
  left: 0;
  right: 50px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#main .message-list li .col-2 .date {
  right: 0;
  width: 200px;
  padding-left: 80px;
}
#main .load-more-link {
  display: block;
  text-align: center;
  margin: 30px 0 100px 0;
}
#message {
  position: fixed;
  top: 0;
  left: 60%;
  bottom: 0;
  width: 40%;
  z-index: 5;
  transform: translateX(200%);
  transition-duration: 0.5s;
  padding: 50px 30px;
  background: #1d2127;
}
.show-message #message {
  transition-duration: 0.3s;
}
#message .header {
  margin-bottom: 30px;
  padding: 0;
}
#message .header .page-title {
  display: block;
  float: none;
  margin-bottom: 20px;
}
#message .header .page-title .icon {
  margin-top: 4px;
  margin-right: 10px;
}
#message .header .grey {
  margin-left: 10px;
  color: #999;
}
#message #message-nano-wrapper {
  position: absolute;
  top: 165px;
  bottom: 0;
  height: auto;
  left: 0;
  right: 0;
  width: auto;
}
#message .message-container {
  padding: 0 30px;
      list-style: none;
}
#message .message-container li {
  padding: 25px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #FFF;
  margin: 0 0 30px 0;
  position: relative;
}
#message .message-container li:hover .details .left .arrow {
  background: #77DDFF;
  border: 0px solid #77DDFF;
}
#message .message-container li:hover .details .left .arrow.orange {
  background: #E2A917;
  border: 0px solid #E2A917;
}
#message .message-container li .details {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
}
#message .message-container li .details .left {
  float: left;
  font-weight: 600;
  color: #888;
  transition-duration: 0.3s;
  width: 100%;
}
#message .message-container li .details .left .arrow {
  display: inline-block;
  position: relative;
  height: 2px;
  width: 20px;
  background: rgba(0, 0, 0, 0.15);
  vertical-align: top;
  margin-top: 12px;
  margin: 9px 20px 0 15px;
  border: 0px solid rgba(0, 0, 0, 0.15);
  transition-duration: 0.3s;
}
#message .message-container li .details .left .arrow:after {
  position: absolute;
  top: -4px;
  left: 100%;
  height: 0;
  width: 0;
  border: inherit;
  border-width: 7px;
  border-style: solid;
  content: '';
  border-right: 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
}
#message .message-container li .details .right {
  float: right;
  color: #999;
}
#message .message-container li .message {
  margin-bottom: 40px;
}
#message .message-container li .message p:last-child {
  margin-bottom: 0;
}
#message .message-container li:hover .tool-box .red-hover {
  color: #D23B3D;
  border-color: #D23B3D;
}
#message .message-container li:hover .tool-box .red-hover:hover {
  color: #791C1E;
  border-color: #791C1E;
}
#message .message-container li .tool-box {
  position: absolute;
  bottom: 0;
  right: 0;
  border: 0px solid #DDDFE1;
  border-top-width: 1px;
  border-left-width: 1px;
  padding: 8px 10px;
  transition-duration: 0.3s;
}
#message .message-container li .tool-box a {
  margin-right: 10px;
}
#message .message-container li .tool-box a:last-child {
  margin-right: 0;
}
.show-message #message {
  transform: none;
}
.show-message #main {
  margin-right: 40%;
}
@media only screen and (min-width: 1499px) {
  #main .overlay {
    display: none;
  }
}
@media only screen and (max-width: 1500px) {
  .show-message #main {
    margin-right: 0;
  }
  .show-message #message {
    left: 50%;
    width: 50%;
  }
}
@media only screen and (max-width: 1024px) {
  #sidebar {
    transform: translateX(-100%);
  }
  #main {
    left: 0;
    box-shadow: none;
  }
  #main .header .page-title .sidebar-toggle-btn {
    margin-right: 20px;
    opacity: 1;
    width: 20px;
  }
  .show-sidebar #sidebar {
    transform: none;
  }
  .show-sidebar #main {
    transform: translateX(300px);
  }
  .show-message #main {
    margin-right: 0;
  }
  .show-message #message {
    left: 20%;
    width: 80%;
  }
}
@media only screen and (max-width: 600px) {
  #main .header .search-box {
    float: none;
    width: 100%;
    margin-bottom: -110px;
    margin-top: 70px;
  }
  #main .header .search-box input,
  #main .header .search-box input:focus {
    width: 100%;
  }
  #main .header .page-title {
    margin-bottom: 50px;
  }
  #main #main-nano-wrapper {
    position: absolute;
    top: 260px;
    bottom: 0;
    height: auto;
  }
  #main .message-list li .col-1 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 120px;
    width: auto;
  }
  #main .message-list li .col-2 {
    right: 0;
    left: auto;
    width: 120px;
  }
  #main .message-list li .col-2 .date {
    padding-left: 0;
    position: static;
  }
  #main .message-list li .col-2 .subject {
    display: none;
  }
}
/**
 * Nano scroll stuff
*/
.nano {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.nano > .nano-content {
  position: absolute;
  overflow: scroll;
  overflow-x: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.nano > .nano-content:focus {
  outline: none;
}
.nano > .nano-content::-webkit-scrollbar {
  visibility: hidden;
}
.has-scrollbar > .nano-content::-webkit-scrollbar {
  visibility: visible;
}
.nano > .nano-pane {
  background: rgba(117, 117, 117, 0.2);
  position: absolute;
  width: 8px;
  right: 8px;
  top: 8px;
  bottom: 8px;
  visibility: hidden\9;
  /* Target only IE7 and IE8 with this hack */
  opacity: 0.01;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.nano > .nano-pane > .nano-slider {
  background: #444;
  background: #C7C7C7;
  position: relative;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: background;
  -moz-transition-property: background;
  -o-transition-property: background;
  transition-property: background;
}
.nano > .nano-pane:hover > .nano-slider,
.nano > .nano-pane.active > .nano-slider {
  background: #A6A6A6;
}
.nano:hover > .nano-pane,
.nano-pane.active,
.nano-pane.flashed {
  visibility: visible\9;
  /* Target only IE7 and IE8 with this hack */
  opacity: 0.99;
}
.page-title .subject {
	font-size: 28px;
}