/*PlotPolygons.css*/

body {
	font-family: 'Quicksand', san-serif;
}

#ID_Canvas {
	border: 1px solid #ccc;
	width: 100%;
	height: 100%;
}

h1 { margin: 0 0 6px 0; border-bottom: 1px solid #ccc; padding-bottom: 6px }

input[type="number"] { 
	width: 45px; 
	font-size: 12px;
	border: none; 
	border-bottom: 1px solid gray;
}

input[type="field"] { width: 50px; border: none; border-bottom: 1px solid gray; }

label {
	font-size: 12px;
}

button {
	font-size: 10px;
}

button:hover {
	background: #dddddd;
}

button:active {
	background: #cccccc;
}

.outerFrame {
	display: grid;
    grid-template-columns: minmax(200px, 25%) 1fr;
    grid-template-rows: minmax(0, 98vh);
}

.topSide {
	height: 98vh;
	padding: 5px;
	box-sizing: border-box;
    overflow-y:auto
}

.vertical-slider {
	overflow-y:scroll;
}

.bottomSide {
	height: 98vh;
	box-sizing: border-box;
}

.dragoverFeedback {
	border: 2px solid blue;
}

.settings-container {
	border: 1px solid #ccc;
	padding: 3px 0px 2px 5px;
}

.cTransformSettings-current {
	/*outline: 3px solid #ccf;*/
	border: 1px solid #88f;
}

.cTransformContainer:hover {
	outline: 3px solid #ccc;
}


.menu-container {
	display: block;
}

.control-label {
}

.label-text {
	display: inline-block;
	width: 50px;
	font-size: 12px;
}

.to-do {
	color: red;
	font-size: 10px;
}

.control-menu {
	font-size: 10px;
}

.checkbox-label {
	width: 100px;
}

.radio-container {
	margin-bottom: 2px;
	border: 1px solid #eee;
}

.radio-div {
	display: inline-block;
	margin: 0px;
	padding: 0px;
}

.round-button {
	border-radius: 10px;
    border: 1px solid #ccc;
    width: 18px;
    height: 18px;
    font-size: 11px;
    margin: 0 3px;
    float: right;
}


.radio-label { }

.sampleButton {
    margin: 1px;
	flex-grow: 1;
    flex-basis: 0;
}

.logo {
	height: 32px;
}

.text {
	font-size: 12px;
}

.info {
	font-size: 12px;
	margin: 6px 0px 4px 0px;
}

.centerControls {
	display: flex;
    align-items: center;
}

.keepTogetherControls {
	display: inline-flex;
}


.hide-element {
	display: none;
}

#ID_Samples {
	display: flex;
	flex-flow: wrap;
    padding: 5px;
}

#ID_Buttons {
	border: 1px solid #ccc;
    padding: 5px;
}

#ID_Buttons button {
    width: calc(50% - 10px);
}


#ID_Name {
	width: unset;
}


/*--------- Message Banner -----------*/
.message-banner {
	position:absolute;
	top: 50px;
	left: 140px;
	border-radius: 20px;
	padding: 20px;
	background-color: #B2BDFF;
	background-color: rgba(178, 189, 255, 0.5);
	width: 50%;
	animation: KEY-message-banner-fadein 0.25s;
}

.message-banner-small {
	width: 20%;
	padding: 10px;
}

.message-banner-bottom {
	top: unset;
	bottom: 50px;
}

.message-banner-fadeout {
	animation: KEY-message-banner-fadeout 0.5s;
}

@keyframes KEY-message-banner-fadein {
 from { opacity: 0.0 }
 to { opacity: 1.0 }
}

@keyframes KEY-message-banner-fadeout {
 from { opacity: 1.0 }
 to { opacity: 0.0 }
}
