.hidden_element {
	display: none;
}

.logo_box {
    width: 133px;
    background: url(/img/make-connect-logo.png) no-repeat center center;
}

.demo-container {
	box-sizing: border-box;
	width: 100%;
	height: 450px;
	padding: 20px 15px 15px 15px;
	margin: 15px auto 30px auto;
	border: 1px solid #ddd;
	background: #fff;
	background: linear-gradient(#f6f6f6 0, #fff 50px);
	background: -o-linear-gradient(#f6f6f6 0, #fff 50px);
	background: -ms-linear-gradient(#f6f6f6 0, #fff 50px);
	background: -moz-linear-gradient(#f6f6f6 0, #fff 50px);
	background: -webkit-linear-gradient(#f6f6f6 0, #fff 50px);
	box-shadow: 0 3px 10px rgba(0,0,0,0.15);
	-o-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	-ms-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.demo-placeholder {
	width: 100%;
	height: 100%;
	font-size: 14px;
	line-height: 1.2em;
}

.bluff-tooltip .label {
	color: #000000;
}

.goal-client-delete {
	font-size: 20px;
	color: #cccccc;
}

.goal-client-delete:hover {
	color: #DC0D07;
}

.client-info-icon {
	color: #cccccc;
	cursor: help;
}

.client-info-icon:hover {
	color: #000000;
}

.text-hide {
	display: none;
	cursor: pointer;
	cursor: hand;
}
tr.hidden {
	display: none;
	cursor: pointer;
}

.goal-system-success {
	border: 0;
	padding: 5px 5px 5px 5px;
	font-size: 14px;
	background-color: #5CB85C;
	color: #ffffff;
}

.goal-system-danger {
	border: 0;
	padding: 5px 5px 5px 5px;
	font-size: 14px;
	background-color: #D9534F;
	color: #ffffff;
}

.goal-system-default {
	border: 0;
	padding: 5px 5px 5px 5px;
	font-size: 14px;
	background-color: #aaaaaa;
	color: #ffffff;
}

.goal-system-na-success {
	border: 0;
	padding: 5px 5px 5px 5px;
	font-size: 14px;
	background-color: #D6F1D6;
	color: #ffffff;
}

.goal-system-na-danger {
	border: 0;
	padding: 5px 5px 5px 5px;
	font-size: 14px;
	background-color: #F0D4CA;
	color: #ffffff;
}

.goal-system-na-default {
	border: 0;
	padding: 5px 5px 5px 5px;
	font-size: 14px;
	background-color: #cccccc;
	color: #ffffff;
}

.dt_mark {
	background-color: #90F190;
}


.uline {
	text-decoration: underline;
}

.comment-edit {
	border: 1px solid #dddddd;
}

#graph_horisontal {
	width		: 100%;
	height		: 500px;
	font-size	: 11px;
}

#graph_hours {
	width		: 100%;
	height		: 500px;
	font-size	: 11px;
}

#chartdiv {
	width	: 100%;
	height	: 500px;
}

.text-black {
	color: #000000;
}

.input-full {
	background-color: #ffffcc;
}

.input-dtc {
	padding-bottom: 10px;
}
.input-dtc:last-of-type {
	padding-bottom: 0px;
}

.tagElement {
	display: inline-block;
	border: 1px solid #999999;
	white-space: nowrap;
	margin: 2px 10px 2px 0px;
	padding: 3px 14px 3px 5px;
	font-size: 11px;
	background: url(/img/tag_up.gif) no-repeat right center;
	cursor: pointer;
}

.tagElementSelected {
	display: inline-block;
	border: 1px solid #999999;
	white-space: nowrap;
	margin: 2px 10px 2px 0px;
	padding: 3px 14px 3px 5px;
	font-size: 11px;
	background: url(/img/tag_del.gif) no-repeat right center;
	cursor: pointer;
}

.tagElementNoVisible {
	display: none;
}

.tagHead {
	margin: 5px 0 0 0;
}

/* For Globalstat */
.tagIndexElement {
	display: inline-block;
	border: 1px solid #999999;
	white-space: nowrap;
	margin: 2px 3px 2px 0px;
	padding: 2px 3px 2px 3px;
	font-size: 11px;
	cursor: pointer;
	color: #000000;
}

.tagInfoElement {
	display: inline-block;
	border: 1px solid #999999;
	white-space: nowrap;
	margin: 2px 3px 2px 0px;
	padding: 4px 5px 4px 5px;
	color: #000000;
}

.tagIndexElement a {
     height: 100%; /* Высота на весь слой */
     color: #000000; /* Цвет ссылки */
}



.material-switch > input[type="checkbox"] {
    display: none;
}
.material-switch > label {
    cursor: pointer;
    height: 0px;
    position: relative;
    width: 40px;
}
.material-switch > label::before {
    background: rgb(0, 0, 0);
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    content: '';
    height: 16px;
    margin-top: -8px;
    position:absolute;
    opacity: 0.3;
    transition: all 0.4s ease-in-out;
    width: 40px;
}
.material-switch > label::after {
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    content: '';
    height: 24px;
    left: -4px;
    margin-top: -8px;
    position: absolute;
    top: -4px;
    transition: all 0.3s ease-in-out;
    width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
    background: inherit;
    opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label::after {
    background: inherit;
    left: 20px;
}

.tableExplain {
	font-size: 11px;
	color: #cccccc;
}

.in {
	display: block !important;
}

.recall-color_1 {
	background-color: #3870B3
}
.recall-color_2 {
	background-color: #4A925E
}
.recall-color_3 {
	background-color: #BF4AA6
}
.recall-color_4 {
	background-color: #6F549C
}
.recall-color_5 {
	background-color: #907252
}
.recall-color_6 {
	background-color: #A54E50
}

@media (min-width: 992px) {
	.navbar-expand-lg .navbar-nav:last-child .dropdown-menu {
		right: 0;
		left: calc(-100% - 59px);
		width: max-content;
	}
}

.form__content-input .modal-select{
	margin-left: 16px;
	cursor: pointer;
	height: 32px;
}

.form__content-input .modal-select:hover{
	background-color: rgba(33, 37, 41, .05);
	border: 1px solid rgba(33, 37, 41, .4);
	color: #212529;
}

.form__content-input .modal-select:focus{
	border: 1px solid rgba(33, 37, 41, .6);
}

.font-mono {font-family: 'Roboto Mono', monospace;}
