@font-face {
	font-family: 'Unbounded';
	src: url('../fonts/Unbounded-VariableFont_wght.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Unbounded-light';
	src: url('../fonts/Unbounded-VariableFont_wght.ttf') format('truetype');
	font-weight: lighter;
	font-style: normal;
}

@font-face {
	font-family: 'Ubuntu-Regular';
	src: url('../fonts/Ubuntu-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Ubuntu-Medium';
	src: url('../fonts/Ubuntu-Medium.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Ubuntu-Light';
	src: url('../fonts/Ubuntu-Light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

* {
	scroll-behavior: smooth;
	scroll-padding-top: 80px; /* this pixel should match fixed header height */
}

body {
	background: url('../gfx/gray_vintage.jpg');
	background-size: 100% auto;
	background-position: left top;
	background-repeat: repeat-y;

	text-shadow: 1px 1px rgba(0,0,0,0.05);
	font-family: 'Ubuntu-Regular';
	font-size: 1.6em;

/*	background-color: Canvas;
	color: CanvasText;
	color-scheme: light dark;*/
}

code {
	font-size: 0.95em;
	color: rgba(55,55,55,1);
	background-color: transparent;
	word-break: break-all;
	padding: 0px 0px;
}

mark {
	background-color: rgba(55,200,55,0.3);
	color: rgba(55,55,55,1);
	padding: 0px 0px;
}

.error {
	background-color: rgba(200,55,55,0.3);
	color: rgba(55,55,55,1);
	font-weight: bold;
	transition:all 1s ease;
}

.red {
	color: rgba(200,55,55,0.7);
	font-weight: bold;
	transition:all 1s ease;
}

.green {
	color: rgba(55,200,155,0.7);
	transition:all 1s ease;
}

.blue {
	color: rgba(55,55,200,0.7);
	transition:all 1s ease;
}

.yellow {
	color: rgba(155,155,55,0.7);

	border: 5px double rgba(255,165,0,0.8);
	border-top-style: none;
	border-bottom-style: none;
	transition:all 1s ease;
}

.strikethrough {
	text-decoration: line-through solid;
}

.message-body {
	border: 2px solid rgba(255,255,255,0.8);
	background-color: rgba(200,200,155,0.3);
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);
	border-radius: 8px;
	padding: 2px;
	margin: 2px;
	-webkit-transform: scale(1.0);
	-ms-transform: scale(1.0);
	transform: scale(1.0);
	transition:all 0.3s ease;
	overflow: hidden;
}

.message-body > img {
	width: auto;
	max-width: 100%;
}

table {
	width: 100%;
}

thead {
	border: 2px solid rgba(255,255,255,0.8);
	background-color: rgba(200,200,155,0.3);
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);
	border-radius: 4px;
	padding: 2px;
	margin: 2px;
	-webkit-transform: scale(1.0);
	-ms-transform: scale(1.0);
	transform: scale(1.0);
	transition:all 0.3s ease;
}

th,td,tr {
	border: 2px solid rgba(255,255,255,0.1);
	background-color: rgba(255,255,200,0.1);
	border-radius: 4px;
	padding: 1px;
	margin: 2px;
	-webkit-transform: scale(1.0);
	-ms-transform: scale(1.0);
	transform: scale(1.0);
	transition:all 0.3s ease;
}

tr:nth-child(even) {
	background-color: rgba(225,225,200,0.5);
}

input, select {
	border: 2px solid rgba(255,255,255,0.1);
	background-color: rgba(255,255,200,0.1);
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);
	padding: 2px;
	margin: 2px;
	-webkit-transform: scale(1.0);
	-ms-transform: scale(1.0);
	transform: scale(1.0);
	transition:all 0.3s ease;
	width: 100%;
}

textarea {
	border: 2px solid rgba(255,255,255,0.1);
	background-color: rgba(255,255,200,0.1);
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);
	padding: 2px;
	margin: 2px;
	-webkit-transform: scale(1.0);
	-ms-transform: scale(1.0);
	transform: scale(1.0);
	transition:all 0.3s ease;
	width: 100%;
	height: 150px;
	resize: none;
}

fieldset {
	padding: 2px;
	margin: 2px;
	-webkit-transform: scale(1.0);
	-ms-transform: scale(1.0);
	transform: scale(1.0);
	transition:all 0.3s ease;
	width: 100%;
}

legend {
	padding: 2px;
	margin: 2px;
	-webkit-transform: scale(1.0);
	-ms-transform: scale(1.0);
	transform: scale(1.0);
	transition:all 0.3s ease;
	width: 100%;
	font-size: 1.2em;
}

input:active, input:focus-visible, textarea:active, textarea:focus-visible, select:active, select:focus-visible, .form-control:focus {
	border-color: #ffa500;
	outline: 2px solid rgba(255,165,0,0.2);
	-webkit-box-shadow: 3px 3px 10px rgba(255,165,0,0.2);
	box-shadow: 3px 3px 10px rgba(255,165,0,0.2);
}

input:focus, input:hover, select:focus, select:hover, textarea:focus, textarea:hover, fieldset:hover, fieldset:focus, th:hover, th:focus, td:hover, td:focus {
	-webkit-transform: scale(1.01);
	-ms-transform: scale(1.01);
	transform: scale(1.01);
	transition:all 0.3s ease;
}

thead:hover, thead:focus, tr:hover, tr:focus {
	-webkit-transform: scale(1.01);
	-ms-transform: scale(1.01);
	transform: scale(1.01);
	transition:all 0.3s ease;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);
}

.big-icon:focus, .big-icon:hover, .small-icon:focus, .small-icon:hover, .icon:focus, .icon:hover {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	transition:all 0.3s ease;
	text-decoration: none;
}

a:hover, a:focus {
	-webkit-transform: scale(1.01);
	-ms-transform: scale(1.01);
	transform: scale(1.01);
	transition:all 0.3s ease;
	text-decoration: none;
}

a {
	-webkit-transform: scale(1.00);
	-ms-transform: scale(1.00);
	transform: scale(1.00);
	transition:all 0.3s ease;
	text-decoration: none;
}

.nav a, .navbar a, .nav>li>a {
	background-color: transparent;
	border-radius: 4px;
	-webkit-transform: scale(1.00);
	-ms-transform: scale(1.00);
	transform: scale(1.00);
	transition:all 0.3s ease;
}

.nav a:focus, .nav a:hover, .navbar a:focus, .navbar a:hover, .nav>li>a:focus, .nav>li>a:hover {
	background-color: transparent;
	border-radius: 4px;
	-webkit-transform: scale(1.01);
	-ms-transform: scale(1.01);
	transform: scale(1.01);
	transition:all 0.3s ease;
}

.picture {
	margin: 2px;
/*	-webkit-filter: drop-shadow(3px 3px 2px rgba(8,7,16,0.5));
	filter: drop-shadow(3px 3px 2px rgba(8,7,16,0.5));
	-webkit-transform: scale(1.0);
	-ms-transform: scale(1.0);
	transform: scale(1.0);
	transition:all 0.3s ease; */
	max-width: 40vw;
}

.big-icon {
	margin: 2px;
	height: 192px;
	-webkit-filter: drop-shadow(3px 3px 2px rgba(8,7,16,0.5));
	filter: drop-shadow(3px 3px 2px rgba(8,7,16,0.5));
	-webkit-transform: scale(1.0);
	-ms-transform: scale(1.0);
	transform: scale(1.0);
	transition:all 0.3s ease;
}

.icon {
	margin: 2px;
	height: 96px;
	-webkit-filter: drop-shadow(3px 3px 2px rgba(8,7,16,0.5));
	filter: drop-shadow(3px 3px 2px rgba(8,7,16,0.5));
	-webkit-transform: scale(1.0);
	-ms-transform: scale(1.0);
	transform: scale(1.0);
	transition:all 0.3s ease;
}

.small-icon {
	margin: 2px;
	height: 32px;
	-webkit-filter: drop-shadow(3px 3px 2px rgba(8,7,16,0.5));
	filter: drop-shadow(3px 3px 2px rgba(8,7,16,0.5));
	-webkit-transform: scale(1.0);
	-ms-transform: scale(1.0);
	transform: scale(1.0);
	transition:all 0.3s ease;
}

.text-section {
	border: 2px solid rgba(255,255,255,0.2);
	background-color: rgba(255,255,200,0.2);
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);
	padding: 2px;
	margin: 2px;
}

.tiny-text {
	font-size: 0.8em;
}

.bubble {
	border: 2px solid rgba(55,55,55,0.3);
	background-color: rgba(155,55,55,0.2);
	border-radius: 50%;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.3);
	padding: 10px;
	margin-left: 80%;
	position: absolute;
}

.add-icon {
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/add.png') no-repeat left rgba(55,255,55,0.3);
	background-size: contain;
}

.export-icon {
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/export.png') no-repeat left rgba(155,55,255,0.2);
	background-size: contain;
}

.sync-icon {
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/sync.png') no-repeat left rgba(55,255,55,0.3);
	background-size: contain;
}

.cutting-icon {
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/cutting.png') no-repeat left rgba(55,155,55,0.3);
	background-size: contain;
}

.production-icon {
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/work.png') no-repeat left rgba(225,155,225,0.3);
	background-size: contain;
}

.properties-icon {
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/properties.png') no-repeat left rgba(155,225,155,0.3);
	background-size: contain;
}

.work-icon {
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/working_steps.png') no-repeat left rgba(225,155,225,0.3);
	background-size: contain;
}

.step-finish-icon {
	color: rgba(55,55,55,1);
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/working_steps_check.png') no-repeat left rgba(155,255,55,0.3);
	background-size: contain;
}

.photo-icon {
	color: rgba(55,55,55,1);
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/photo.png') no-repeat left rgba(155,155,255,0.3);
	background-size: contain;
}

.reorder-save-icon {
	color: rgba(55,55,55,1);
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/reorder_save.png') no-repeat left rgba(0,255,0,0.3);
	background-size: contain;
}


.print-icon {
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/print.png') no-repeat left rgba(55,155,255,0.3);
	background-size: contain;
}

.delete-icon {
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/trash.png') no-repeat left rgba(255,55,55,0.3);
	background-size: contain;
}

.copy-icon {
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/copy.png') no-repeat left rgba(55,155,255,0.3);
	background-size: contain;
}

.detail-icon {
	color: rgb(51,51,51);
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/details.png') no-repeat left rgba(255,255,55,0.3);
	background-size: contain;
}

.permission-icon {
	color: rgb(51,51,51);
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/permissions.png') no-repeat left rgba(55,155,155,0.3);
	background-size: contain;
}

.complete-icon {
	color: rgb(51,51,51);
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/complete.png') no-repeat left rgba(55,255,55,0.3);
	background-size: contain;
}

.send-icon {
	color: rgb(51,51,51);
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/send.png') no-repeat left rgba(55,55,255,0.3);
	background-size: contain;
}

.offer-icon {
	color: rgb(51,51,51);
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/offer.png') no-repeat left rgba(155,255,55,0.3);
	background-size: contain;
}

.pdf-icon {
	color: rgb(51,51,51);
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/pdf.png') no-repeat left rgba(155,255,55,0.3);
	background-size: contain;
}

.accept-icon {
	color: rgb(51,51,51);
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/accept.png') no-repeat left rgba(155,255,55,0.3);
	background-size: contain;
}

.legend-icon {
	display: inline-block;
	padding: 0px;
	padding-left: 28px;
	margin-bottom: -4px;
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);

	cursor: pointer;
	background: url('../gfx/symbols.png') no-repeat left rgba(105,55,105,0.3);
	background-size: contain;
}

.page-icon {
	display: inline-block;
	padding: 2px 2px 2px 2px;

	margin: 0px;
	height: 28px;

	cursor: pointer;
	background: transparent;
}

.selected-icon {
	border: 0;
	background-color: rgba(55,55,155,0.2);
	border-radius: 4px;
	box-shadow: 3px 3px 10px rgba(8,7,16,0.2);
	-webkit-transform: scale(1.01);
	-ms-transform: scale(1.01);
	transform: scale(1.01);
}

.selected-value {
	border: 0px;
	background-color: rgba(200,200,155,0.2);
	border-radius: 4px;
}

.restriction_data {
	display: none;
	color: rgb(155,55,55);
	font-size: 0.8em;
	word-break: break-all;
}

.paper {
	height: 100%;
	min-height: 50px;
	background: #ffa;
	position: relative;
}

.paper::before {
	content: "";
	position: absolute;
	display: block;
}

.paper::after {
	content: "";
	position: absolute;
	display: block;
}

.paper::before {
	top: -3px;
	border: 32px white solid;
	border-top-color: rgba(200,200,180,0.4);
	border-left-color: rgba(200,200,180,0.4);
	right: -2px;
	box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.5);
	transform: rotate(88deg);
	z-index: 0;
	border-radius: 0% 0% 10%;
}

.paper::after {
	background: transparent;
	position: absolute;
	height: 57px;
	width: calc(100% - 60px);
	top: 0px;
}

.paper .content {
	padding: 0 2.5em;
	position: relative;
	top: -1em;
	z-index: -2;
	margin-top: 50px;
}

.page-header {
	background: transparent;
	border-radius: 6px;
	padding: 10px 2px 10px 2px;
}

.main {
	background-color: rgba(255,255,235,1);
	border-radius: 10px;
	border: 2px solid rgba(255,255,255,0.1);
	box-shadow: 6px 6px 40px rgba(8,7,16,0.6);
	padding-top: 0px;
	padding-right: 15px;
	padding-left: 15px;
	padding-bottom: 20px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	width: 80%;
	width: 80vw;
	float: left;
	z-index: 1;
}

img.navbar-brand {
	width: 150px;
	height: auto;
	margin-top: 3px;
	padding-right: -4px;
	margin-right: 4px;
	border-radius: 4px;
	background: linear-gradient(to bottom, rgba(0,0,0,0.15) 50%, transparent 50%);
	background-size: 100% 200%;
	background-position: bottom right;
	filter: hue-rotate(0deg);
	transition: all 1s ease-out;
}

img.navbar-brand:hover {
	background: linear-gradient(to bottom, rgba(0,0,0,0.15) 50%, transparent 50%);
	background-size: 100% 200%;
	background-position: up right;
	filter: hue-rotate(35deg);
	transition: all 1s ease-in;
}

.navbar-inverse {
	background-color: rgba(0,0,0,0.7);
	border-radius: 10px;
	backdrop-filter: blur(3px);
	border: 2px solid rgba(255,255,255,0.1);
	box-shadow: 6px 6px 20px rgba(8,7,16,0.3);
	padding-bottom: 20px;
	padding: 10px;
	margin-right: 10px;
	margin-left: 10px;
	margin-top: 0px;
	float: left;
	z-index: 10;
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > .open > a:hover {
	background-color: transparent;
	border-radius: 10px;
	z-index: 10;
}

.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
	overflow: hidden;
	z-index: 10;
}

.navbar-form {
	width: min-content;
}

.navbar-inverse .navbar-nav > li > .dropdown-menu {
	background-color: rgba(100,100,100,0.7);
	color: rgba(255,255,255,0.7);
	border-radius: 10px;
}

#navbar > form > input {
	width: fit-content;
	background-color: rgba(255,255,235,1);
}

/*
.open > .dropdown-menu {
	opacity: 1;
	visibility: visible;
}

.dropdown-menu {
	display: block;
	opacity: 0;
	transition: visibility 0.2s ease-out, opacity 0.2s ease-out;
	visibility: hidden;
}*/

.dropdown.open > .dropdown-menu {
	position: relative;
	background: transparent;
	border: 0;
	width: 100%;
	max-height: 30vh;
	overflow-y: auto;
}

.dropdown > .dropdown-menu {
}

.container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: 10px;
	margin-left: 10px;
	margin-top: 60px;
	margin-bottom: 20px;
}

.sidebar{
	height: auto;
	width: auto;
	background-color: rgba(220,255,240,0.5);
	position: fixed;
	float: right;
	right: 10px;
	border-radius: 10px;
	border: 2px solid rgba(255,255,255,0.1);
	box-shadow: 6px 6px 20px rgba(8,7,16,0.3);
	padding: 10px;
	margin-right: 0px;
	margin-top: 20px;
	z-index: 0;
}

.pagination {
	float: right;
}

.footer {
	bottom: 0px;
	position: fixed;
	z-index: -1;
	width: 100%;
	margin: 10px;
	padding: 10px;
}

.loader {
	width: 128px;
	height: 128px;
	border-radius: 50%;
	display: inline-block;
	border-top: 3px solid black;
	border-right: 3px solid transparent;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -64px;
	margin-left: -64px;
	z-index: 999;
	animation: rotation 1s linear infinite;
}

.modal-backdrop.in {
	z-index: 1;
}

.modal {
	position: fixed;
	top: 80px;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 7;
	display: none;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	outline: 0;
}

.modal-header {
	background-color: rgba(255,255,235,0.9);
	border-radius: 10px 10px 0px 0px;
	border: 0px;
	box-shadow: 6px 6px 40px rgba(8,7,16,0.3);
}

.modal-content {
	background-color: rgba(255,255,235,0.9);
	border-radius: 10px;
	border: 0px;
}

.modal-footer {
	background-color: rgba(255,255,235,0.9);
	border-radius: 0px 0px 10px 10px;
	border: 0px;
}

.btn-primary.btn {
	background-color: rgba(55,155,55,0.5);
	border-radius: 4px;
	border: 0px;
	box-shadow: 6px 6px 10px rgba(8,7,16,0.3);
}

.btn-success.btn {
	background-color: rgba(55,155,55,0.5);
	border-radius: 4px;
	border: 0px;
	box-shadow: 6px 6px 10px rgba(8,7,16,0.3);
}

.btn-default.btn, .btn-default.active, .btn-default:active, .btn-default:focus, .btn-default:active:focus {
	background-color: rgba(55,155,155,0.9) !important;
	color: rgba(255,255,255,0.9) !important;
	border-radius: 6px;
	border: 0px;
	box-shadow: 6px 6px 10px rgba(8,7,16,0.3);
}

a.btn-default.btn, a.btn-default.active, a.btn-default:active, a.btn-default:focus, a.btn-default:active:focus, .open>.dropdown-toggle.btn-default {
	background-color: transparent !important;
	color: rgba(55,55,55,0.9) !important;
	border-radius: 6px;
	border: 0px;
	box-shadow: none;
}

div.btn-group.open > ul.dropdown-menu {
	background-color: rgba(100,100,100,0.7);
	color: rgba(255,255,255,0.7);
	border-radius: 6px;
}

.btn-danger.btn {
	background-color: rgba(155,55,55,0.5);
	border-radius: 4px;
	border: 0px;
	box-shadow: 6px 6px 10px rgba(8,7,16,0.3);
}

.btn {
	-webkit-transform: scale(1.00);
	-ms-transform: scale(1.00);
	transform: scale(1.00);
	transition:all 0.3s ease;
}

.btn:hover, .btn:focus {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	transition:all 0.3s ease;
}

.value {
	cursor: pointer;
	border-radius: 4px;
	position: relative;
	max-width: 100%;
	border: 0 none;
	margin: 6px;
	padding: 4px 10px 4px 10px;
}

.value:hover {
	cursor: pointer;
	border-radius: 4px;
	background: rgba(235,235,200,1);
	position: relative;
	max-width: 100%;
	border: 0 none;
	margin: 6px;
	padding: 4px 10px 4px 10px;
}

.autocomplete {
	cursor: pointer;
	border-radius: 6px;
	background: rgba(255,255,225,1);
	position: relative;
	max-height: 20em;
	max-width: 100%;
	border: 0 none;
	overflow-x: hidden;
	overflow-y: auto;
	margin: auto;
	scrollbar-color: orange;
	scrollbar-width: thin;
}

.autocomplete-element {
	color: rgba(55,0,55,0.7);
	background: rgba(255,255,225,0.3);
	font-size: 1em;
	border-radius: 0px;
	padding: 0px 8px 0px 8px;
	margin: auto;
	overflow-y: hidden;
	-webkit-transform: scale(1.00);
	-ms-transform: scale(1.00);
	transform: scale(1.00);
	transition:all 0.3s ease;
}

.autocomplete-element.active {
	color: rgba(55,0,55,0.8);
	background: rgba(55,55,235,0.3);
	font-size: 1em;
	border-radius: 6px;
	padding: 0px 8px 0px 8px;
	margin: auto;
	overflow-y: hidden;
	-webkit-transform: scale(1.01);
	-ms-transform: scale(1.01);
	transform: scale(1.01);
	transition:all 0.3s ease;
}

.autocomplete-element > p {
	margin: auto;
	width: 100%;
	float: left;
}

.autocomplete-element > img {
	margin: auto;
	width: 85%;
	max-width: 400px;
	float: left;
}

.autocomplete-element:hover, .autocomplete-element:focus, .autocomplete-element.selected {
	color: rgba(55,0,55,1);
	background: rgba(255,255,235,0.3);
	border-radius: 6px;
	padding: 0px 8px 0px 8px;
	margin: auto;
	-webkit-transform: scale(1.01);
	-ms-transform: scale(1.01);
	transform: scale(1.01);
	transition:all 0.3s ease;
	box-shadow: 6px 6px 15px rgba(55,55,55,0.5);
}

.blank {
	position: absolute;
	z-index: -9;
	visibility: hidden;
}

.drag-list {
	cursor: pointer;
}

.drag-item {
	cursor: pointer;
}

.dragged-item {
	cursor: pointer;

	border: 5px double rgba(255,165,0,0.8);
	border-top-style: none;
	border-bottom-style: none;
}

.embed {
	box-shadow: 6px 6px 15px rgba(55,55,55,0.5);

	width: 100%;
	width: -moz-available;		/* For Mozilla */
	width: -webkit-fill-available;	/* For Chrome */
	width: stretch;			/* Unprefixed */

	height: 100%;
	height: -moz-available;		/* For Mozzila */
	height: -webkit-fill-available;	/* For Chrome */
	height: stretch;		/* Unprefixed */
}

img {
	border: 0;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

.tooltip {
	position: absolute;
	display: block;
	z-index: 9;
	visibility: visible;
	padding: 2px;
	font-size: 0.9em;
	font-family: 'Ubuntu-Regular';
	opacity: 0;
	filter:alpha(opacity=0);
}

.tooltip.in {
	opacity:.85;
	filter:alpha(opacity=85);
}

.tooltip-inner {
	padding: 2px 16px;
	color: rgba(255,255,200,0.9);
	text-align: center;
	background: rgba(55,55,55,0.9);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 2px solid rgba(55,55,55,0.9);
	box-shadow: 6px 6px 15px rgba(55,55,55,1);
	max-width: 50vw;
}

.tooltip-arrow {
	position: absolute;
	width: 5px;
	height: 0;
}

 /* width */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #888;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #ff8c00;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #ffa500;
}

/* Thin Scrollbar - firefox */
:root {
	scrollbar-color: #ff8c00 #888 !important;
	scrollbar-width: thin !important;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
} 

/* disable print */
@media print {body {display:none;}}


@media all and (max-width: 383px) {
	.main		{ width: 100%; }
	.sidebar	{ display: none; }
	.flex-font-size { font-size: 0.85vw; }
	.modal-dialog	{ font-size: 0.85vw; }
	.small-icon	{ height: 20px; padding-left: 16px; }
	.icon		{ height: 48px; padding-left: 40px; }
}

@media all and (max-width: 767px) and (min-width: 384px) {
	#navbar > form > input { width: 85vw; }
	.main		{ width: 100%; }
	.sidebar	{ display: none; }
	.flex-font-size { font-size: 1.65vw; }
	.modal-dialog	{ font-size: 1.65vw; }
	.small-icon	{ height: 20px; padding-left: 16px; }
	.icon		{ height: 48px; padding-left: 40px; }
}

@media all and (max-width: 921px) and (min-width: 768px) {
	#navbar > form > input { display: none; }
	.flex-font-size { font-size: 0.64em; }
	.modal-dialog	{ font-size: 0.64em; }
}

@media all and (max-width: 1050px) and (min-width: 922px) {
	#navbar > form > input { width: 240px; }
	.flex-font-size { font-size: 0.82em; }
	.modal-dialog	{ font-size: 0.82em; }
}

@media all and (max-width: 1200px) and (min-width: 1051px) {
	#navbar > form > input { width: 350px; }
	.flex-font-size { font-size: 1.0em; }
	.modal-dialog	{ font-size: 1.0em; }
}

@media all and (min-width: 1201px) {
	#navbar > form > input { width: 450px; }
	.flex-font-size { font-size: 1.1em; }
	.modal-dialog	{ font-size: 1.1em; }
}
