body
{
	margin: 0;
	padding: 0;
	color: #555;
	font: normal 10pt Arial,Helvetica,sans-serif;
	background: #EFEFEF;
}

.halloween-web-left {
    position: fixed;
    top: 0;
    left: 0;
    opacity: .6;
    pointer-events: none;
}

.halloween-web-right {
    position: fixed;
    top: 0;
    right: 0;
    opacity: .6;
    pointer-events: none;
}

#page
{
	/*margin-top: 5px;*/
	margin-top: 0px;
	margin-bottom: 5px;
	background: white;
	/*border: 1px solid #C9E0ED;*/
	border: 0;
}

#header
{
	margin: 0;
	padding: 0;
	border-top: 3px solid #C9E0ED;
}

#content
{
/*    padding: 20px;*/
    min-height: 600px;
	margin: 0 10px;
}

#sidebar
{
	padding: 20px 20px 20px 0;
}

#footer
{
	padding: 10px;
	margin: 10px 20px;
	font-size: 0.8em;
	text-align: center;
	border-top: 1px solid #C9E0ED;
}

#logo
{
	padding: 10px 20px;
	font-size: 200%;
}

#mainmenu
{
	background:white url(bg.gif) repeat-x left top;
}

#mainmenu ul
{
	padding:6px 20px 5px 20px;
	margin:0px;
}

#mainmenu ul li
{
	display: inline;
}

#mainmenu ul li a
{
	color:#ffffff;
	background-color:transparent;
	font-size:12px;
	font-weight:bold;
	text-decoration:none;
	padding:5px 8px;
}

#mainmenu ul li a:hover, #mainmenu ul li.active a
{
	color: #6399cd;
	background-color:#EFF4FA;
	text-decoration:none;
}

div.flash-error, div.flash-notice, div.flash-success
{
	padding:.8em;
	margin-bottom:1em;
	border:2px solid #ddd;
}

div.flash-error
{
	background:#FBE3E4;
	color:#8a1f11;
	border-color:#FBC2C4;
}

div.flash-notice
{
	background:#FFF6BF;
	color:#514721;
	border-color:#FFD324;
}

div.flash-success
{
	background:#E6EFC2;
	color:#264409;
	border-color:#C6D880;
}

div.flash-error a
{
	color:#8a1f11;
}

div.flash-notice a
{
	color:#514721;
}

div.flash-success a
{
	color:#264409;
}

div.form .rememberMe label
{
	display: inline;
}

div.view
{
	padding: 10px;
	margin: 10px 0;
	border: 1px solid #C9E0ED;
}

div.breadcrumbs
{
	font-size: 0.9em;
	padding: 5px 20px;
}

div.breadcrumbs span
{
	font-weight: bold;
}

div.search-form
{
	padding: 10px;
	margin: 10px 0;
	background: #eee;
}

.portlet
{

}

.portlet-decoration
{
	padding: 3px 8px;
	background: #B7D6E7;
	border-left: 5px solid #6FACCF;
}

.portlet-title
{
	font-size: 12px;
	font-weight: bold;
	padding: 0;
	margin: 0;
	color: #298dcd;
}

.portlet-content
{
	font-size:0.9em;
	margin: 0 0 15px 0;
	padding: 5px 8px;
	background:#EFFDFF;
}

.portlet-content ul
{
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	margin: 0;
	padding: 0;
}

.portlet-content li
{
	padding: 2px 0 4px 0px;
}

.operations
{
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.operations li
{
	padding-bottom: 2px;
}

.operations li a
{
	font: bold 12px Arial;
	color: #0066A4;
	display: block;
	padding: 2px 0 2px 8px;
	line-height: 15px;
	text-decoration: none;
}

.operations li a:visited
{
	color: #0066A4;
}

.operations li a:hover
{
	background: #80CFFF;
}


/* Martin modal window */
#martin_modal_bg {
    position: fixed;
    z-index:100;
    top: 0px;
    left: 0px;
    height:100%;
    width:100%;
    background: #000;
    display: none;
}

#martin_popup_bg {
    position: fixed;
    z-index:100;
    top: 0px;
    left: 0px;
    height:100%;
    width:100%;
    display: none;
}

.modal-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
}

.martin2 {
	font-size: 20px;
	color: #fff;
	cursor: pointer;
}

.modal_close {
	cursor: pointer;
}
/* Martin modal window */




/* **************** Fancy checkbox *************** */
/* *********************************************** */

	/* The container */
	.fancy-checkbox-container {
	    display: block;
	    position: relative;
	    padding-left: 35px;
	    margin-bottom: 12px;
	    cursor: pointer;
	    font-size: 22px;
	    -webkit-user-select: none;
	    -moz-user-select: none;
	    -ms-user-select: none;
	    user-select: none;
	}

	/* Hide the browser's default checkbox */
	.fancy-checkbox-container input {
	    position: absolute;
	    opacity: 0;
	    cursor: pointer;
	}

	/* Create a custom checkbox */
	.fancy-checkbox-checkmark {
	    position: absolute;
	    top: 0;
	    left: 0;
	    height: 25px;
	    width: 25px;
	    background-color: #eee;
	}

	/* On mouse-over, add a grey background color */
	.fancy-checkbox-container:hover input ~ .fancy-checkbox-checkmark {
	    background-color: #e8e8e8;
	}

	/* When the checkbox is checked, add a blue background */
	.fancy-checkbox-container input:checked ~ .fancy-checkbox-checkmark {
	    background-color: #77b4e8;
	}

	/* Create the checkmark/indicator (hidden when not checked) */
	.fancy-checkbox-checkmark:after {
	    content: "";
	    position: absolute;
	    display: none;
	}

	/* Show the checkmark when checked */
	.fancy-checkbox-container input:checked ~ .fancy-checkbox-checkmark:after {
	    display: block;
	}

	/* Style the checkmark/indicator */
	.fancy-checkbox-container .fancy-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);
	}

/* **************** Fancy checkbox *************** */
/* *********************************************** */




/* ****** ML Audio recordings widget ******* */
.ml-audio-rec-box {
    background: #f6f8fb;
    border-radius: 10px;
    cursor: default;
    position: relative;
    border: 2px solid transparent;
}

.ml-audio-rec-box-container {
	padding: 30px;
}

.ml-audio-rec-grid {
	display: block;
}

.ml-audio-rec-items {
	display: none;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	grid-template-rows: repeat(auto-fill, minmax(100px, 1fr));
	grid-gap: 28px;
	grid-auto-rows: 100px;
}

.ml-audio-rec-item {
	background: #fff;
	border-radius: 19px;
	box-shadow: 0px 1px 9px -6px rgba(0,0,0,0.49);
	position: relative;
	padding: 15px 19px;
}

.ml-audio-rec-item audio {
    height: 40px;
    width: 100%;
}

.ml-audio-rec-item b {
    font-size: 15px;
    color: #484848;
    margin-bottom: 10px;
    display: block;
    font-weight: normal;
}

.ml-audio-rec-link-btn {
	display: flex;
    background: #f1f3f4;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 54px;
    margin-left: 10px;
    transition: .2s;
    cursor: pointer !important;
}

.ml-audio-rec-link-btn * {
    cursor: pointer !important;
}

.ml-audio-rec-link-btn:hover {
	background: #e6e6e6;
}

.ml-audio-rec-link-btn:hover:active {
	background: #dadada;
}

.ml-audio-rec-link-btn span {
	color: #6d6d6d;
}

.ml-audio-rec-flex {
	display: flex;
    justify-content: center;
    align-items: center;
}

.ml-audio-rec-login {
	position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: #ffffff5c;
    border-radius: inherit;
    z-index: 2;
    backdrop-filter: blur(1.1px);
    justify-content: center;
    align-items: center;
    display: none;
}

.ml-audio-rec-login-btn {
	border-radius: 5px;
    padding: 10px 50px;
    font-size: 16px;
    background: url(gridview/bg.gif);
    opacity: .8;
    color: #fff;
    cursor: pointer !important;
    transition: .2s;
}

.ml-audio-rec-login-btn:hover {
    opacity: .9;
}

.ml-audio-rec-loading {
	background: #fff;
	border-radius: 19px;
	box-shadow: 0px 1px 9px -6px rgba(0,0,0,0.49);
	width: 31%;
    height: 90px;
}

.ml-audio-rec-loading .ml-phloads {
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #b7b7b7;
    font-size: 14px;
    border-radius: inherit;
}

.ml-spacer-b-10 {
	height: 30px;
}

.ml-spacer-h-10 {
	height: 30px;
}
/* ****** ML Audio recordings widget ******* */





/* ****** ML Files box widget ******* */

.ml-files-box {
	background: #f6f8fb;
    border-radius: 10px;
    margin-top: 35px;
    padding: 30px;
    cursor: default;
    position: relative;
    border: 2px solid transparent;
}

.ml-files-box-form {
	opacity: 0;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
}

.ml-files-box-form input {
	width: inherit;
	height: inherit;
}

.ml-files-drop-here {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    color: #bdbdbd;
    background: #00000001;
    z-index: 2;
    border-radius: inherit;
    display: none;
}

.ml-files-box-main-files {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	grid-template-rows: repeat(auto-fill, minmax(230px, 1fr));
	grid-gap: 28px;
	grid-auto-rows: 230px;
}

.ml-files-box * {
    cursor: default;
}

.ml-files-password-lock {
	position: absolute;
	bottom: 12px;
	left: 12px;
}

.ml-files-password-lock i {
	color: #b8b8b8;
}

.ml-files-file {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 1px 9px -6px rgba(0,0,0,0.49);
	position: relative;
}

.ml-files-header {
    padding: 10px;
    margin-top: 24px;
    padding-left: 14px;
}

.ml-files-file-word .ml-files-header {
	border-left: 2px solid #4984f3;
}

.ml-files-file-excel .ml-files-header {
	border-left: 2px solid #31875e;
}

.ml-files-file-pdf .ml-files-header {
	border-left: 2px solid #f34949;
}

.ml-files-file-img .ml-files-header {
	border-left: 2px solid #f34949;
}

.ml-files-file-zip .ml-files-header {
	border-left: 2px solid #747474;
}

.ml-files-file-xml .ml-files-header {
	border-left: 2px solid #ffad49;
}

.ml-files-header-top {
	display: flex;
    align-items: center;
}

.ml-files-author {
	color: #9c9c9c;
    font-size: 12px;
    margin-left: 10px;
    position: relative;
    top: 1px;
}

.ml-files-header-title {
	color: #2d2d2d;
    font-size: 12px;
    font-weight: bold;
    margin-top: 8px;
    word-break: break-word;
}

.ml-files-preview-border {
	width: 75%;
	height: 115px;
	margin: 0 auto;
	box-shadow: 0px 0px 0px #d1d1d11a, 0px 0px 3px #c3c3c34d;
	border-left: 1px solid #b5b5b53d;
	border-top: 1px solid #b5b5b53d;
	border-right: 1px solid #b5b5b53d;
	border-radius: 3px 3px 0 0;
	overflow: hidden;
}

.ml-files-preview-border img {
	width: 100%;
}

.ml-files-preview {
	position: absolute;
	bottom: 0;
	min-width: 100%;
}

.ml-files-new {
	box-shadow: none;
	border: 2px dashed #dcdcdccc;
	background: #fdfdfd;
	border-radius: 10px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: .2s;
}

.ml-files-new:hover {
	background: #fafafa;
}

.ml-files-new:hover:active {
	background: #ededed;
}

.ml-files-new img {
	opacity: .5;
    width: 46%;
}

.ml-files-new div {
	color: #aaa;
	margin-top: 17px;
	font-size: 17px;
}

.ml-files-file-selected {
	background: #dde9fb;
}

.ml-files-menu {
	box-shadow: 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12), 0 5px 5px -3px rgba(0,0,0,0.2);
	background: #fff;
	border-radius: 6px;
	display: none;
	position: absolute;
	cursor: default;
}

.ml-files-menu * {
	cursor: default;
}

.ml-files-menu-item {
	display: flex;
	align-items: center;
	padding: 10px 15px;
	transition: .2s;
	border-radius: inherit;
}

.ml-files-menu-item:hover {
	background: #ededed;
}

.ml-files-menu-item:hover:active {
	background: #dbdbdb;
}

.ml-files-menu-item-icon {
	margin-right: 10px;
}

.ml-files-menu-item-icon .material-icons {
	font-size: 21px;
    color: #757575;
    margin-left: 2px;
}

.ml-files-menu-item-text {
	font-size: 14px;
    color: #434343;
}

.ml-phloads {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: ml-placeload;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: #eeeeee;
    background: -webkit-gradient(linear, left top, right top, color-stop(8%, #eeeeee), color-stop(18%, #dddddd), color-stop(33%, #eeeeee));
    background: -webkit-linear-gradient(left, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background-size: 1200px 104px;
    position: relative;
}

@keyframes ml-placeload {
	0% {
		background-position: -468px 0;
	}

	100% {
		background-position: 468px 0;
	}
}

.ml-files-loading {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 1px 9px -6px rgba(0,0,0,0.49);
}

.ml-files-loading .ml-phloads {
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #b7b7b7;
    font-size: 14px;
}

ml-files {
	display: none;
}

.ml-files-box-drag {
	border: 2px dashed #c6c6c6;
    background: #f3f6fa;
}

.ml-files-open-modal {
	display: none;
	position: fixed;
	width: 720px;
	height: 95vh;
	background: #fff;
	left: 50%;
	top: 50%;
	margin: 0 auto;
	box-shadow: 0 2px 23px -4px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
	border-radius: 8px;
	transform: translate(-50%,-50%);
	z-index: 30;
	color: #000;
}

.ml-files-open-modal iframe {
	border-radius: inherit inherit 0 0;
}

.ml-files-download-btn {
	padding: 15px 45px;
	background: #59a6c0;
	display: inline-block;
	border-radius: 4px;
	margin: 10px 11px;
	color: #fff;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	cursor: pointer;
	margin-top: 22px;
	transition: .2s;
	bottom: 10px;
}

.ml-files-download-btn:hover { 
	background: #5397ae;
	color: #fff;
}

.ml-files-download-btn:hover:active { 
	background: #3b6a7a;
	color: #fff;
}

.ml-files-download-btn:focus { 
	color: #fff;
}

.ml-files-open-modal-backdrop {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #00000012;
	z-index: 25;
}

.ml-files-password-box {
	position: absolute;
    box-shadow: 0 2px 23px -4px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
    border-radius: 6px;
    background: #fff;
    padding: 15px 15px;
    width: 200px;
    display: none;
}

.ml-files-password-box-inner {
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 3px;
}

.ml-files-password-box-inner input {
    background: transparent !important;
    border: 0 !important;
    position: relative !important;
    top: -6px !important;
    left: 7px !important;
}

.ml-files-password-box-inner i {
    font-size: 24px;
    color: #989898;
}

/* ****** ML Files box widget ******* */