.popup-container {
	position: absolute;
	top: 50px;
	left: 50px;
	width: 500px;
	height: 150px;
	transition: all 0.25s;
	background: white;
}
.popup-container.full {
	top: 0;
	left: 0;
	width: 99%;
	height: 99%;
}
.popup-container.full .fa {
	font-size: 1rem;
}
.popup-container.full .fa-floppy-o {
	right: 3rem;
	display: block;
}
.popup-container .fa {
	position: absolute;
	right: 0.5rem;
	top: 0.5rem;
	z-index: 2;
	cursor: pointer;
	transition: all 0.25s;
	color: #999;
}
.popup-container .cmd:hover {
	transform: scale(1.3);
	color: black;
	transition: all .25s ease;
	-webkit-transition: all .25s ease;
}
.forbidden, .forbidden:hover {
	cursor: not-allowed !important;
	transform: none !important;
	color: #999 !important;
	transition: none !important;
}
.popup-container .popup {
	position: relative;
	height: calc(100% - 2rem);
	width: calc(100% - 2rem);
	padding: 1rem;
}
.popup-container .popup textarea {
	position: absolute;
	top: 2rem;
	font-size: 16px;
	font-family: monospace;
	background-color: white;
	width: calc(100% - 3rem);
	height: 94% !important;
	white-space: pre-wrap;
	border: none;
	resize: none;
	outline: none;
	overflow: auto;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
#success, #error {
	display: none;
	position: absolute;
	right: 0;
	margin: 2em;
	padding: 0.5em 1em;
	/* max-width: 20vw; */
	color: white;
	background-color: rgba(25, 180, 40, 0.6);
	text-align: center;
	border-radius: 0.6em;
	font-family: sans-serif;
	font-size: 11pt;
	transition: all 0.5s ease-in-out;
	z-index: 9;
}
#error {
	background-color: rgba(230, 25, 40, 0.6);
}
