* {
	margin: 0;
	padding: 0;
}
html, body {
	font: normal 14px Calibri;
}
body {
	background: #777;
	color: #fff;
	width: 100%;
}
a {
	color: #fff;
	text-decoration: none;
}
a:hover {
	color: #2493d8;
	text-decoration: underline;
}
ol, ul {
	list-style-type:none;
}
input {
	background: #fff;
	font-family: Calibri;
	border: none;
	outline: none;
	outline-offset: 0;
	text-align: center;
}
select {
	background: #fff;
	font-family: Calibri;
	border: none;
	outline: 1px solid #ddd;
	outline-offset: 0;
	text-align: center;
}
h1, h2, h3, h4, h5, h6 {
	text-transform: uppercase;
}

strong, b {
	font-weight: bold;
}

img {
	border: none;
}

.fl { float: left;}
.fr { float: right;}
.clear { clear: both; }

.fl { float: left;}
.fr { float: right;}
.clear { clear: both; }

.lTitle {
	font-size: 20px;
	height: 25px;
	line-height: 25px;
}

#login {
	display: block;
	/* width: 300px; */
	/* height: 330px; */
	margin: 50px auto 0px auto;
	text-align: center;
}

#login input {
	display: block;
	margin: 10px auto;
}

#login input[type=text], #login input[type=password], #login select{
	width: 120px;
	height: 30px;
	line-height: 30px;
	font-size: 16px;
	text-align: center;
	border: none;
	outline: none;
	box-sizing: border-box;
}
#login input[type=submit] {
	width: 120px;
	height: 30px;
	line-height: 30px;
	font-size: 12px;
	text-transform: uppercase;
	text-align: center;
	background: #001727;
	color: #fff;
	border: none;
	cursor: pointer;
}
#login input[type=submit]:hover {
	background: #2493d8;
}

#version {
	float: left;
	margin: 0px 0px 0px 10px;
	font-size: 12px;
}

#logo {
	width: 106px;
	height: 130px;
	margin: 0px auto;
	background: url('../images/logo.png');
}

#m-logo {
	display: block;
	float: right;
	width: 92px;
	height: 30px;
	margin-right: 10px;
	background: url('../images/m-logo.jpg');
}

#message {
	display: none;
	position: absolute;
	top: 0px;
	width: 100%;
	height: 40px;
	line-height: 40px;
	color: #fff;
	text-align: center;
}

.okMsg {
	background: #006917;
}
.errorMsg {
	background: #960e00;
}

.error {
	color: red;
}

.todo {
	background: antiquewhite;
}

#title {
	float: left;
	font-size: 20px;
	height: 40px;
	line-height: 40px;
	margin: 0px 0px 0px 10px;
}

#loguot {
	float: right;
	margin: 10px 10px 0px 0px;
}

#loguot input[type=submit]{
	float: right;
	width: 80px;
	height: 20px;
	line-height: 20px;
	font-size: 10px;
	text-transform: uppercase;
	text-align: center;
	background: #001727;
	color: #fff;
	border: none;
	cursor: pointer;
}
#loguot input[type=submit]:hover {
	background: #2493d8;
}

#menu {
	height: 30px;
	line-height: 30px;
	background: #001727;
	text-align: center;
}

#menu a {
	margin: 0px 15px;
	font-size: 14px;
}
#menu .active {
	text-decoration: underline;
}

#main {
	overflow: auto;
}

.inner {
	background: #fff;
	color: #555;
	min-height: 500px;
}

#selectfile {
	margin: 50px 0px 0px 0px;
	font-size: 20px;
	cursor: pointer;
}

input[type="text"][disabled], input.disabled {
	color: #aaaaaa !important;
}

.strikeout {
	text-decoration: line-through !important;
}

.pointer {
	cursor: pointer;
}

.no-pointer {
	cursor: default !important;
}

a {
	text-decoration: none !important;
}

.table.dataTable.no-footer {
	border: none !important;
}

.table.dataTable > tbody > tr {
	border-color: #dee2e6;
}

table.dataTable thead th, table.dataTable thead td {
    padding: 8px 10px !important;
}

.canceled-invoice > td {
	color: #00000030 !important;
	border-color: inherit;
}
.canceled-invoice > td > span,
.canceled-invoice > td > a {
	opacity: 0.30;
}

#invoices > tbody > tr:last-child {
  border-color: white;
}

#invoices > tbody > tr > td > span.badge, #invoices > tbody > tr > td > a.badge {
	margin-left: 0rem !important;
	margin: 2px;
}

.bg-black-ni {
	background-color: black;
}

.bg-darkorange {
	background-color: darkorange !important;
}

.text-darkorange {
	color: darkorange !important;
}

.future-event {
	background: repeating-linear-gradient(
        57deg,
        white,
        white 10px,
        #f0f0f0 10px,
        #f0f0f0 20px
        );
}

.future-event.bg-lightorange {
	background: repeating-linear-gradient(
        57deg,
        white,
        white 10px,
        rgba(250, 104, 46, 0.25) 10px,
        rgba(250, 104, 46, 0.25) 20px
        );
}

.future-event > td {
	opacity: 0.5;
}

#invoices > tbody > tr > td > i {
	margin-left: 0.25rem!important;
}

.bg-anim-gradient {
	background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 300% 300%;
	animation: gradient 4s ease-in-out infinite;
	height: 100vh;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.bg-lightblue {
	background-color: rgb(13 110 253 / 25%);
}

.bg-lightorange {
	background-color: rgba(250, 104, 46, 0.25);
}

.bg-lightgreen {
	background-color: rgba(0, 255, 0, 0.25);
}

.opacity-10 {
	opacity: 0.1 !important;
}

.no-hover {
	pointer-events: none !important;
}

@media all and (min-width: 1350px) {
	.col-events {
		width: 70% !important;
  }
}

@media all and (max-width: 1350px) and (min-width: 910px) {
	.col-events {
		width: 80% !important;
  }
}

@media all and (max-width: 910px) and (min-width: 200px) {
  .col-events {
   width: 90% !important;
  }
}

#event > div.actions > p.save.no-hover.disabled,
#event > .disabled .skip, 
#event > .disabled .remove, 
#event > .disabled .inv,
#event > .disabled .save,
#event > .disabled .delete,
#event > .disabled .save-note,
#event > .disabled .add-student-btn,
#event > .disabled select {
	background: lightgray !important;
	color: black !important;
}

@media print {
	.pagebreak { page-break-before: always; } /* page-break-after works, as well */

	@page {
		overflow: hidden !important;
	}

	.no-print, .no-print *
	{
		display: none !important;
		overflow: hidden !important;
	}

	#main {
		overflow: hidden !important;
	}

	div {
    break-inside: avoid;
  }

	.no-print-outline {
		outline: none !important;
	}
}

.non-uppercase {
	text-transform: none;
}

.dropdown:hover>.dropdown-menu {
  display: block;
}

.dropdown>.dropdown-toggle:active {
  /*Without this, clicking will make it sticky*/
    pointer-events: none;
}

div.dropdown-col{
  display: inline-block;
  width: 32%;
}

.border-yellow {
	border-color: yellow!important;
}

.capitalize-first-letter::first-letter {
	text-transform: uppercase;
}

.bg-lightgrey {
	background: #eeeeee !important;
}

.bg-red10 {
	background-color: #ff000010 !important;
}

.bg-green10 {
	background-color: #00ff0010 !important;
}

.bg-blue10 {
	background-color: #0000ff10 !important;
}

.bg-razmen {
	background: repeating-linear-gradient(
		57deg,
		#198754,
		#198754 10px,
		#6CB291 10px,
		#6CB291 20px
		);
}

/* nal */
.finreport-table>:not(caption)>tr>:nth-child(6) {
    background-color: #19875425 !important;
}

/* erip */
.finreport-table>:not(caption)>tr>:nth-child(7) {
    background-color: #ffc10725 !important;
}

/* card */
.finreport-table>:not(caption)>tr>:nth-child(8) {
    background-color: #0d6efd25 !important;
}

/* daroo */
.finreport-table>:not(caption)>tr>:nth-child(10) {
    background-color: #dc354525 !important;
}

/* surp */
.finreport-table>:not(caption)>tr>:nth-child(11) {
    background-color: #dc354525 !important;
}

/* expense */
.finreport-table>:not(caption)>tr>:nth-child(14) {
    background-color: #dc354525 !important;
}

/* expire */
.finreport-table>:not(caption)>tr>:nth-child(15) {
    background-color: #dc354525 !important;
}

.cursor-pointer {
	cursor: pointer;
}

.search-modal-open {
	position: relative;
	display: inline-block;
	margin-right: 20px;
	color: white;
}

#search-modal-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0,0,0,.3);
	z-index: 1;
}

.hidden {
	display: none;
}

#search-modal {
	width: 80vw; /* Mobile-first approach */
	padding: 10px;
	color: black;
	border: 1px solid #198754;
	background: white;
	position: absolute;
	top: calc(100% + 4px);
	z-index: 2;
}

/* Desktop and tablet styles */
@media (min-width: 768px) {
	#search-modal {
		width: 550px;
	}
}

#search-modal form {
	display: flex;
	gap: 10px;
}

#search-modal form > input[type="text"] {
	flex: 1;
	text-align: left;
	border: 1px solid #000000;
	padding: 5px;
}