body {
	background: #333E4E;
	margin: 0;
	display: flex;
	flex-wrap: nowrap;
	flex-flow: column;
}

/* textarea */

textarea {
	background: #EEEEEE !important;
	color: #333E4E;
	border-top: 0 !important;
	border-bottom: 0 !important;
	border-right: 0 !important;
	border-left: 5px solid #FC5F45;
	padding: 5px 0 0 5px;
	width: 100%;
	font-family: monospace;
	word-wrap: break-word;
	outline: none;
	resize: none;
    min-height: 81vh;
	font-size: 13px;
}

.ui-progressbar {
	background-color: transparent;
	z-index: 1;
	border: 0 !important;
}

.ui-progressbar-value {
	background-color: #FC5F45;
	height: inherit;
	transition: width 0.5s;
	-webkit-transition: width 0.5s;
}

#progressbar {
	position: fixed;
	height: 2vh;
	width: 75vw;
	left: 12.5%;
	right: 12.5%;
	top: 97%;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #333E4E;;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: 100%;
    left: 50%;
    margin-left: -60px;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.hljs {
	background: #EEEEEE;
	color: #333E4E;
	display: block;
	border-left: 5px solid #FC5F45;
    word-wrap: break-word;
}

/* the line numbers */

#linenos {
  color: #7d7d7d;
	z-index: -1000;
	width: 30px; /* 30 to get 20 away from box */
	padding-right: 10px;
	font-size: 13px;
	font-family: monospace;
	text-align: right;
}

.text {
	display: flex;
	margin-top: 1vh;
	margin-right: 20px;
	flex-grow: 1;
	margin-bottom: 20px;
}

/* code box when locked */

#box {
	padding: 0;
	margin: 0;
	width: 100%;
	border: 0;
	outline: none;
	font-size: 13px;
	min-height: 81vh;
	overflow-y: hidden;
}

#box code {
	padding: 0;
	background: transparent !important; /* don't hide hastebox */
}

/* key */

#key {
	width: 100%;
	border-bottom: 5px solid #FC5F45;

}

.box-container {
	display: flex;
	justify-content: space-around;
	align-items: center;
	background-color: #1F2630;

}

#box1 {
	padding: 5px;
	text-align: center;
	background: #1F2630;
	color: white;
	font-family: Helvetica, sans-serif;
}

#box2 {
	display: block;
	justify-content: center;
	background: #1F2630;
	font-size: 0;
	padding: 0 5px;
}

#box1 a.logo, #box1 a.logo:visited {
	display: inline-block;
	background: url('logo.png') no-repeat;
	background-size: cover;
	width: 252px;
	height: 84px;
	padding-bottom: 0;
}

#box1 a.logo:hover {
	background-position: 0 bottom;
}

#box2 .function {
	background-color: transparent;
	width: 32px;
	height: 37px;
	display: inline-block;
	position: relative;
	border: none;
	color: #333E4E !important;
	margin-left: 5px;
	margin-right: 5px;
}

#box2 .enabled {
	color: white !important;
	transition-duration: 1s;
	border: none;
}

#box2 .link embed {
	vertical-align: bottom; /* fix for zeroClipboard style */
}

#box2 .function.enabled:hover {
	cursor: pointer;
	color: #DADADA !important;
	border: none;
}

#box2 .function:focus {
	outline: none;
}


#pointer {
	display: block;
	height: 5px;
	width: 10px;
	background: url(hover-dropdown-tip.png);
	bottom: 0;
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
}

#box3, #messages li {
	background: #333E4E;
	font-family: Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	padding: 10px 15px;
}

#box3 .label, #messages li {
	color: #fff;
	font-weight: bold;
}

#box3 .shortcut {
	color: #c4dce3;
	font-weight: normal;
}

#messages {
	position:fixed;
	top:0;
	right:0;
	margin:0;
	padding:0;
	width:10%;
}

#messages li {
	background:rgba(23,62,72,0.8);
	margin:0 auto;
	list-style:none;
}

#messages li.error {
	background:rgba(102,8,0,0.8);
}

#messages li.info {
	background: rgba(31, 38, 48, 1);
}