/* CSS Document */
* {
	outline:none !important;
}
.font-2 {
	font-family: 'Ubuntu Mono', monospace;
}
:root {
	--main-color: #509cc1;
	--radius: 3px;
  --radius-lg: 10px;
  --radius-xl: 30px;
  --radius-xl: 30px;
	--color: #848484;
	--white: #fbfafa;
  --dark: #333;
  --shade: rgba(0,0,0,0.05);
	--light: #989898;
	--secondary: #fffaf4;
}
body {
	overflow-x:hidden !important;
	background: var(--white);
	color: var(--color);
}
a {
	color: #444;
	text-decoration:none;
	transition:all ease .3s;
	-webkit-transition:all ease .3s;
}
a:hover {
	color: var(--main-color);
	text-decoration:none;
}
hr {
  border-top: 1.5px solid var(--shade);
}
.text-custom {
	color: var(--main-color);
}
.spacing {
	letter-spacing:2px;
}
.error {
	display: inline-block;
	border-radius: var(--radius-xl);
	padding: 2px 15px;
	background: #e65a5a;
	color: var(--white);
	margin-bottom: 7px;
}
.success {
	display: inline-block;
	border-radius: var(--radius-xl);
    padding: 2px 15px;
	background: #5ec85e;
	color:var(--white);
	margin-bottom: 7px;
}
.closer::before{
	content:"\eb46";
	font-family: 'icomoon' !important;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position:relative;
	top:2px;
	left:4px;
	cursor:pointer;
}
.closer {
	display:inline;
	color: var(--danger);
}
.form-control {
	margin-bottom: 7px;
}
form .btn {
	margin-bottom: 7px;
}
/* Customize the label (the container) */
.checkbox {
  display: inline-block;
  position: relative;
  padding-left: 22px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #eee;
  border-radius:var(--radius-xl);
}

/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark {
  background-color: var(--main-color);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
  display: block;
}
/* Style the checkmark/indicator */
.checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    /* 20px */
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
	
    /* 10px 20px */
}

.no-js .inputfile + label {
    display: none;
}
.inputfile + label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    /* 4px */
    margin-right: 0.25em;
    /* 4px */
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 28px;
	margin-bottom: 0px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 5px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--main-color);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--main-color);
}

input:checked + .slider:before {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.my-label {
}
.align-center {
	position: relative;
	top:50%;
	transform: translateY(-50%);
}
.break {
	width:100%;
}
.table {
	display: table;
}
.thead {
	display: table-header-group;
}
.tbody {
	display: table-row-group;
}
.tr {
	display: table-row;
}
.th {
	font-weight: bold;
	white-space: nowrap;
}
.td, .th {
	display: table-cell;
	border-bottom:1.5px solid rgba(0,0,0,0.05);
	padding: 10px;
	vertical-align: middle;
}
.main-form {
  width: 100%;
  max-width: 350px;
  margin:auto;
  padding: 25px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0px 0px 25px var(--shade);
}
.main-form h1 {
  font-size: 24px;
  font-weight: bold;
}
.logo {
  display: block;
  text-align: center;
  font-weight: bold;
  margin: 5% 0%;
}
.logo .tag {
  background-color: var(--main-color);
  color: #fff;
  padding: 2px 6px;
  border-radius: var(--radius);
}
.bold {
	font-weight: bold;
}
.footer {
	margin: 3% 7%;
}
.footer .credit {
	display: block;
	text-align: right;
}
.paginate {
	margin: 25px 0px;
}
.paginate .dropdown {
	display: inline;
}
/*end of default style*/
.left-side, .settings-slide {
	width:100%;
	max-width: 210px;
	left:0;
	top:0;
	bottom:0;
	overflow-x: hidden;
	overflow-y: auto;
	background: #fff;
	position: fixed;
	z-index: 100;
	padding: 25px;
	border-right: 1.5px solid var(--shade);
}
.settings-slide {
	margin: 30px;
	border-radius: var(--radius-lg);
	border-right: 0px;
	box-shadow: 0px 0px 30px var(--shade);
	transition: all ease .3s;
}
.settings-slide h2 {
	font-size: 24px;
	font-weight: bold;
}
.settings-hide {
	margin-left: -120%;
}
.menu {
	margin-top:20%;
}
.menu a {
	display: block;
	width:100%;
	padding: 12px 0px;
}
.menu .icon {
	margin-right: 20px;
	color: var(--main-color);
}
.menu .logout {
	font-weight: bold;
}
.menu a:hover {
	color: var(--main-color);
}
.left-side .logo {
	text-align: left;
}
.block-text {
	padding: 2px 5px;
	background: var(--main-color);
	color:#fff;
	border-radius: var(--radius);
}
.block-text:hover {
	color:#fff;
}
.secondary {
	background: #f2f2f2;
	color: var(--color);
}
.right-side {
	margin-left: 210px;
	min-height: 100vh;
}
.heading {
	padding: 5% 10%;
	padding-bottom: 2%;
}
.main-content {
	padding: 0% 10%;
}
.main-content h1, .modal-body h1, .tagline {
	font-size: 18px !important;
	font-weight: bold;
	border-bottom: 1.5px solid var(--shade);
	display: inline-block;
	padding: 5px 0px;
}
.heading h1 {
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--main-color);
}
.heading h2 {
	font-size: 24px;
	font-weight: bold;
}
.settings-page {
	padding: 10px 0px;
	border-bottom: 1.5px solid var(--shade);
}
.settings-info {
	float:right;
	margin: 15px 0px;
	margin-bottom: 5px;
}
.pan {
	padding: 25px;
	background: #fff;
	border-radius: var(--radius-lg);
	border: 1px solid var(--shade);
	margin-bottom: 25px;
}
.pan-secondary {
	background: #fffaf4;
	border:1px solid #fbecda;
}
.dept-form {
	float: right;
}
.new-dept {
	margin-top: 5px;
	display: none;
}
.show-dept-form {
	display: block;
}
.dept-list .list {
	position: relative;
	margin: 3px 0px;
	display:block;
}
.margin-left {
	margin-left: 25px;
}
.tags-form .form-control{
	height: 25px;
	padding:0px;
	width:60px;
	margin:auto;
}
.tag-key {
	font-weight: bold;
	color: var(--main-color);
	text-align: center;
	display: block;
}
.fixed-tag {
	white-space: nowrap;
	display: block;
	text-align: center;
}
.margin-top {
	margin-top:15px;
}
.only-print {
	display:none;
}
.rekla-form {
	max-width: 650px !important;
}
@media print{
	.only-print {
		display:block;
	}
	body {
		background:#fff;
		color:#000 !important;
	}
	.no-print {
		display:none;
	}
	.right-side {
		margin-left: 0px;
		min-height: 0;
	}
	.main-content {
		padding:0px;
	}
	.pan {
		border: none;
	}
}
.doc-thumb {
	width: 100px;
	height: 80px;
	border-radius: var(--radius-lg);
	margin: 2px;
	border: 5px solid #f7f7f7;
	position: relative;
}
.admin-upload {
	border:2px solid var(--main-color);
}
.doc {
	padding: 0px 10px;
	border-radius:var(--radius-xl);
	background: var(--secondary);
	margin-top:2px;
	display: inline-block;
}
.category {
	padding: 2px 15px;
	margin: 2px;
	border-radius: var(--radius-xl);
	display: inline-block;
	text-align: center;
	font-size: 13px;
}
.d-toggle {
	display: block;
	width:100%;
}
.d-form {
	background: var(--secondary);
	padding-top:15px;
	padding-bottom:15px;
	border-radius: var(--radius-lg);
}
.xl-textarea{
	min-height: 320px;
}
.check:before{
	border:10px solid transparent;
	position: absolute;
	content: "";
	border-right-color: #f7f7f7;
	left:-20px;
	top:-3px;
}
.dots {
	margin-left: 2px;
	width:10px;
	height: 10px;
	border-radius: 50%;
	background: var(--main-color);
	display: inline-block;
}
.green-light {
	background: #28a745 !important
}
.legend {
	display: block;
}
.legend .info {
	float: right;
	display: inline-block;
	font-weight: bold;
}
#auto-input {
	position: relative;
}
.suggestion-box {
	z-index: 100;
	position: absolute;
	left:10%;
	background: var(--secondary);
	border-radius: var(--radius-lg);
	box-shadow: 0px 0px 20px var(--shade);
	padding: 15px 25px;
	top:90%;
	border:2px solid var(--shade);
}
.sugg {
	list-style-type: none;
	cursor: pointer;
}
.no-wrap {
	white-space: nowrap;
}
.dashboard .form-control {
	min-width: 60px;
}
.target-value {
	font-weight: bold;
	color: var(--success);
}
.custom-viewer {
	width: 100%;
	max-width: 850px;
	position: fixed;
	background: #fff;
	padding: 25px;
	border-radius: 3px;
	top: 10%;
	left: 50%;
	bottom: 0;
	margin-left: -450px;
	z-index: 999999;
	box-shadow: 0px 0px 100px #ccc;
	overflow-y: auto;
}
.custom-viewer img {
	width: 100%;
	margin-bottom: 15px;
	margin-top: 15px;
}
.image-block {
	position: relative;
	overflow: hidden;
	display: inline-block;
}
.image-block .closer-image {
	position: absolute;
	top: 10px;
	right: 10px;
	color: red;
	cursor: pointer;
}
#javascript {
	display: none;
}
.display-none {
	display: none;
}
.info-box {
	background: #ffd6a0;
	padding: 2px 5px;
	border-radius: 5px;
	font-weight: bold;
}
.total-errors {
	display: block;
	font-size: 60px;
}
.stamp-thumb {
	height: 45px;
	width: 100%;
	border-radius: var(--radius);
	background-color: #fff;
	margin-bottom: 5px;
}
.sig-prev {
	height: 40px;
	border-radius: var(--radius);
}
.tox-promotion {
	display: none;
}