/* brand buttons */
.brand-button-color.primary:not(:has(.color-target)),
.brand-button-color.primary .color-target {
	color: var(--back-color-primary);
}
:is(.clickable, [onclick], a[href]).brand-button-color.primary:hover:not(:has(.color-target)),
:is(.clickable, [onclick], a[href]).brand-button-color.primary:hover .color-target {
	color: var(--back-color-primary-hover-strong);
}
html body :is(.clickable, [onclick], a[href]).brand-button-color.hover-primary:hover:not(:has(.color-target)),
html body :is(.clickable, [onclick], a[href]).brand-button-color.hover-primary:hover .color-target {
	color: var(--back-color-primary-hover);
}

.brand-button-color.secondary:not(:has(.color-target)),
.brand-button-color.secondary .color-target {
	color: var(--back-color-secondary);
}
:is(.clickable, [onclick], a[href]).brand-button-color.secondary:hover:not(:has(.color-target)),
:is(.clickable, [onclick], a[href]).brand-button-color.secondary:hover .color-target {
	color: var(--back-color-secondary-hover-strong);
}
html body :is(.clickable, [onclick], a[href]).brand-button-color.hover-secondary:hover:not(:has(.color-target)),
html body :is(.clickable, [onclick], a[href]).brand-button-color.hover-secondary:hover .color-target {
	color: var(--back-color-secondary-hover);
}

.brand-button-color.edit:not(:has(.color-target)),
.brand-button-color.edit .color-target {
	color: var(--back-color-edit);
}
:is(.clickable, [onclick], a[href]).brand-button-color.edit:hover:not(:has(.color-target)),
:is(.clickable, [onclick], a[href]).brand-button-color.edit:hover .color-target {
	color: var(--back-color-edit-hover-strong);
}
html body :is(.clickable, [onclick], a[href]).brand-button-color.hover-edit:hover:not(:has(.color-target)),
html body :is(.clickable, [onclick], a[href]).brand-button-color.hover-edit:hover .color-target {
	color: var(--back-color-edit-hover);
}

.brand-button-color.info:not(:has(.color-target)),
.brand-button-color.info .color-target {
	color: var(--back-color-info);
}
:is(.clickable, [onclick], a[href]).brand-button-color.info:hover:not(:has(.color-target)),
:is(.clickable, [onclick], a[href]).brand-button-color.info:hover .color-target {
	color: var(--back-color-info-hover-strong);
}
html body :is(.clickable, [onclick], a[href]).brand-button-color.hover-info:hover:not(:has(.color-target)),
html body :is(.clickable, [onclick], a[href]).brand-button-color.hover-info:hover .color-target {
	color: var(--back-color-info-hover);
}

.brand-button-color.success:not(:has(.color-target)),
.brand-button-color.success .color-target {
    color: var(--back-color-success);
}
:is(.clickable, [onclick], a[href]).brand-button-color.success:hover:not(:has(.color-target)),
:is(.clickable, [onclick], a[href]).brand-button-color.success:hover .color-target {
    color: var(--back-color-success-hover-strong);
}
html body :is(.clickable, [onclick], a[href]).brand-button-color.hover-success:hover:not(:has(.color-target)),
html body :is(.clickable, [onclick], a[href]).brand-button-color.hover-success:hover .color-target {
    color: var(--back-color-success-hover);
}

.brand-button-color.warning:not(:has(.color-target)),
.brand-button-color.warning .color-target {
    color: var(--back-color-warning);
}
:is(.clickable, [onclick], a[href]).brand-button-color.warning:hover:not(:has(.color-target)),
:is(.clickable, [onclick], a[href]).brand-button-color.warning:hover .color-target {
    color: var(--back-color-warning-hover-strong);
}
html body :is(.clickable, [onclick], a[href]).brand-button-color.hover-warning:hover:not(:has(.color-target)),
html body :is(.clickable, [onclick], a[href]).brand-button-color.hover-warning:hover .color-target {
    color: var(--back-color-warning-hover);
}

.brand-button-color.danger:not(:has(.color-target)),
.brand-button-color.danger .color-target {
	color: var(--back-color-danger);
}
:is(.clickable, [onclick], a[href]).brand-button-color.danger:hover:not(:has(.color-target)),
:is(.clickable, [onclick], a[href]).brand-button-color.danger:hover .color-target {
	color: var(--back-color-danger-hover-strong);
}
html body :is(.clickable, [onclick], a[href]).brand-button-color.hover-danger:hover:not(:has(.color-target)),
html body :is(.clickable, [onclick], a[href]).brand-button-color.hover-danger:hover .color-target {
	color: var(--back-color-danger-hover);
}

.brand-button-size {
	font-size: 1.5em;
}

.brand-icon-size {
    font-size: 1.4em;
}

.brand-button-size.row {
	font-size: 1.15em;
}

.brand-button-size.row.n-th {
	margin-left: 6px;
}

.brand-button {
	border-radius: 4px;
    border: none;
	font: normal 13px/100% Arial, Helvetica, sans-serif;
	cursor: pointer;
	text-align: center;
}
.brand-button:not(.style) {
	display: inline-block;
	text-decoration: none;
	padding: 9px;
	color: #fff;
}

.brand-button.high,
.brand-button.primary {
	background: var(--back-color-primary);
	color: #fff;
}
.brand-button.high:hover,
.brand-button.primary:hover,
html body .brand-button.hover-primary:hover {
    background: var(--back-color-primary-hover);
}
.component-double-button-icon .brand-button.high:first-child {
    margin-bottom: 1px;
}

.brand-button.medium {
	border: var(--back-color-primary) 1px solid;
	background: #fff;
	color: var(--back-color-primary);
}
.brand-button.medium:hover,
html body .brand-button.hover-medium:hover {
	border: var(--back-color-primary-hover) 1px solid;
	background: #dfdfdf;
	color: var(--back-color-primary-hover);
}

.brand-button.low {
	background: none;
	color: var(--back-color-primary);
}

.brand-button.secondary {
	background: var(--back-color-secondary);
}
.brand-button.secondary:hover,
html body .brand-button.hover-secondary:hover {
	background: var(--back-color-secondary-hover);
}

.brand-button.success {
	background: var(--back-color-success);
}
.brand-button.success:hover,
html body .brand-button.hover-success:hover {
	background: var(--back-color-success-hover);
}

.brand-button.warning {
	background: var(--back-color-warning);
}
.brand-button.warning:hover,
html body .brand-button.hover-warning:hover {
	background: var(--back-color-warning-hover);
}

.brand-button.danger {
	background: var(--back-color-danger);
}
.brand-button.danger:hover,
html body .brand-button.hover-danger:hover {
	background: var(--back-color-danger-hover);
}

.brand-button.blk {
	width: 100%;
}

.brand-button img {
    width: 48px;
    height: 48px;
    padding-right: 6px;
}

.brand-button img,
.brand-button div {
    vertical-align: middle;
    display: inline-block;
}

.brand-button div span {
    display: block;
    line-height: 1.3em;
}

.brand-button.result {
    width: 100%;
    min-height: 60px;
}

.brand-button.result:not(:last-child) {
    margin-bottom: 12px;
}

.brand-button-light {
    font-weight: 200 !important;
}

/* Buttonset */

.buttonset {
	display: inline-block !important;
	width: 60px;
	padding: 0 !important;
	margin: 0 !important;
	border-radius: 3px;
	/* box-shadow: inset 0px 0px 2px 0px #000;*/
}

.button, #sidebar_slider {
	display: inline-block;
	padding: 2px;
	margin: 0 !important;
	float: left;
	width: 18px !important;
	height: 18px;
	background: #175369;
	border-radius: 4px;
}

div.buttonset a.button {
	background: transparent !important;
}

.bs_button {
	display: inline-block;
	width: 16px;
	height: 16px;
	position: absolute;
}

.button.verybig {
	display: inline-block;
	width: 46px !important;
	height: 46px !important;
	margin: 2px 2px !important;
}

.button.big {
	display: inline-block;
	width: 36px !important;
	height: 36px !important;
	margin: 2px 2px !important;
}

.button.medium {
	display: inline-block;
	width: 22px !important;
	height: 22px !important;
	margin: 2px 2px !important;
}

.button.small {
	display: inline-block;
	width: 16px !important;
	height: 16px !important;
	margin: 2px 2px !important;
}

.button.verybig {
	display: inline-block;
	width: 46px;
	height: 46px;
	position: absolute;
}

.button.big span {
	display: inline-block;
	width: 36px;
	height: 36px;
	position: absolute;
}

.button.medium span {
	display: inline-block;
	width: 22px;
	height: 22px;
	position: absolute;
}

.button.small span {
	display: inline-block;
	width: 16px;
	height: 16px;
	position: absolute;
}

.button:hover, #sidebar_slider.sidebar_off:hover {
	background: #30576e !important;
}

#sidebar_slider.sidebar_on i:hover::before {
	content: '\f061';
}

#sidebar_slider.sidebar_off i:hover::before {
	content: '\f060';
}

#sidebar_slider.sidebar_on {
	background: rgb(63, 63, 63);
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 4px;
	border-top-left-radius: 4px;
}

/* ################################################################################## */

/* Spezialfälle */

#add_button {
	margin: 0px 5px 5px 0px !important;
}

#user_button {
	display: inline-block;
	width: 15px !important;
	height: 15px !important;
	margin: 0px 5px -3px 0px !important;
}

#twofa_button {
	display: inline-block;
	width: 15px !important;
	height: 15px !important;
	margin: 0px 5px -3px 0px !important;
}

/* #main_login_button {
	display: inline-block;
	margin-left: 15px !important;
	margin-top: -25px !important;
	position: absolute;
} */

#login_button {
	display: inline-block;
	width: 15px !important;
	height: 15px !important;
	margin: 0px 5px -3px 0px !important;
}

#logout_button {
	display: inline-block;
	width: 15px !important;
	height: 15px !important;
	margin: 0px 5px -3px 0px !important;
}

#guest_image {
	display: inline-block;
	width: 25px !important;
	height: 24px !important;
	margin-top: -8px;
}

#guest_image_container {
	display: inline-block;
	width: 20px !important;
	height: 20px !important;
}

a.page-mover.next, a.page-mover.previous {
	display: inline-block;
	width: 16px;
	height: 16px;
	padding: 1px;
}

a.page-mover.next:hover, a.page-mover.previous:hover {
	border-radius: 9px;
	background: rgb(34, 143, 182);
	background: rgba(34, 143, 182, 0.35);
}

.status {
	border-radius: 9px;
	margin-left: -8px;
}

#server_status_light {
	display: inline-block;
	position: absolute;
	width: 22px;
	height: 22px;
	border-radius: 11px;
	margin-left: -50px;
}

input.button.accept, input.button.cancel {
	position: relative;
	display: block;
	left: 10px;
}

input.button.accept:before {
	content: '';
	width: 40px;
	height: 40px;
	display: block;
	background: url('../images/icons/bs_accept.png') no-repeat center center;
	background-size: contain;
	margin: 3px;
}

input.button.cancel:before {
	content: '';
	width: 40px;
	height: 40px;
	display: block;
	background: url('../images/icons/bs_cancel.png') no-repeat center center;
	background-size: contain;
	margin: 3px;
}

input.button.cam, input.button.reload, input.button.config {
	position: relative;
	display: block;
	margin-top: 10px;
	left: 20px;
}

input.button.cam:before, input.button.reload:before, input.button.config:before {
	content: '';
	width: 30px;
	height: 30px;
	display: block;
	margin: 3px;
}

#sidebar_slider {
	display: inline-block;
	width: fit-content !important;
	height: fit-content;
	color: #fff;
}

#sidebar_slider i {
	margin: 3px;
}


input.button.generate_pw {
	position: absolute;
	height: 19px;
	width: 19px !important;
	margin-top: -35px !important;
	margin-left: 195px !important;
}

/* ################################################################################## */

.edit {
	margin-top: 0px;
	margin-left: 1px;
	background: url('../images/icons/bs_edit.png') no-repeat center center;
	background-size: contain;
}

.bs_button.edit {
	background: url('../images/icons/edit.gif') no-repeat center center !important;
	width: 19px;
	height: 18px;
	/*background:url('../images/icons/bs_edit_invert.png') no-repeat center center !important; */
	background-size: contain !important;
}

/*.delete
{
	width: 12px;
	height: 12px;
	margin-left:2px;
	margin-top:2px;
	background:url('../images/icons/16x16remove.png') no-repeat center center;
	background-size: contain;
}*/

.bs_button.delete {
	background: url('../images/icons/16x16remove.png') no-repeat center center !important;
	/*background:url('../images/icons/bs_delete_invert.png') no-repeat center center !important; */
	background-size: contain !important;
	padding: 1px;
	width: 12px;
	height: 12px;
	margin-left: 2px;
	margin-top: 2px;
}

.bs_button.delete:hover {
	background: url('../images/icons/16x16remove.png') no-repeat center center !important;
	/*background:url('../images/icons/bs_delete_invert.png') #f66 no-repeat center center !important; */
	background-size: contain !important;
	padding: 1px;
	border-radius: 8px;
}

.add {
	background: url('../images/icons/bs_add.png') no-repeat center center;
	background-size: contain;
}

.add_ticket {
	background: url('../images/icons/bs_add_ticket.png') no-repeat center center;
	background-size: contain;
}

.bs_button.add_ticket {
	background: url('../images/icons/add.gif') no-repeat center center;
	/*background:url('../images/icons/bs_ticket_invert.png') no-repeat center center !important; */
	background-size: contain !important;
}

.message {
	background: url('../images/icons/bs_message.png') no-repeat center center;
	background-size: contain;
}

.bs_button.message {
	margin-left: 1px;
	/* background:url('../images/icons/bs_message_invert.png') no-repeat center center !important; */
	background: url('../images/icons/chat.png') no-repeat center center !important;
	background-size: contain !important;
}

.information {
	background: url('../images/icons/bs_information.png') no-repeat center center;
	background-size: contain;
}

.previous {
	background: url('../images/icons/bs_previous.png') no-repeat center center;
	background-size: contain;
}

.next {
	background: url('../images/icons/bs_next.png') no-repeat center center;
	background-size: contain;
}

.login {
	background: url('../images/icons/bs_login.png') no-repeat center center;
	background-size: contain;
}

.logout {
	background: url('../images/icons/bs_shutdown.png') no-repeat center center;
	background-size: contain;
}

.user {
	background: url('../images/icons/bs_user.png') no-repeat center center;
	background-size: contain;
}

.dash_bar {
	background: url(../images/icons/bs_data-bar-chart_invert.png) no-repeat center center;
	background-size: contain;
}

.nav-menu-icon-container {
	/* background: url(../images/icons/bs-doughnut-chart_invert.png) no-repeat center center;
	background-size: contain; */
	font-size: 1.9em;
}

#dash_button {
	display: inline-block;
	/* width: 24px !important; */
	/* height: 24px !important; */
	/* margin: 3px 5px 5px 0px !important; */
}

.nav-menu-button {
	padding: 14px 14px 12px 14px !important;
}

.lang_a {
	padding: 12px 14px 12px !important;
}

.twofa {
	background: url('../images/icons/bs_ident_type_qr.png') no-repeat center center;
	background-size: contain;
}

.guest {
	background: url('../images/icons/bs_guest_invert.png') no-repeat center center;
	background-size: contain;
}

.save {
	background: url('../images/icons/bs_save_invert.png') no-repeat center center;
	background-size: contain;
}

.status.ball_green, #server_status_light.on {
	background: rgb(140, 232, 82);
	background: -moz-linear-gradient(top, rgba(140, 232, 82, 1) 0%, rgba(73, 228, 26, 1) 50%, rgba(40, 200, 0, 1) 51%, rgba(89, 231, 41, 1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(140, 232, 82, 1)), color-stop(50%, rgba(73, 228, 26, 1)), color-stop(51%, rgba(40, 200, 0, 1)), color-stop(100%, rgba(89, 231, 41, 1)));
	background: -webkit-linear-gradient(top, rgba(140, 232, 82, 1) 0%, rgba(73, 228, 26, 1) 50%, rgba(40, 200, 0, 1) 51%, rgba(89, 231, 41, 1) 100%);
	background: -o-linear-gradient(top, rgba(140, 232, 82, 1) 0%, rgba(73, 228, 26, 1) 50%, rgba(40, 200, 0, 1) 51%, rgba(89, 231, 41, 1) 100%);
	background: -ms-linear-gradient(top, rgba(140, 232, 82, 1) 0%, rgba(73, 228, 26, 1) 50%, rgba(40, 200, 0, 1) 51%, rgba(89, 231, 41, 1) 100%);
	background: linear-gradient(to bottom, rgba(140, 232, 82, 1) 0%, rgba(73, 228, 26, 1) 50%, rgba(40, 200, 0, 1) 51%, rgba(89, 231, 41, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8ce852', endColorstr='#59e729', GradientType=0);
	box-shadow: inset 0px 0px 1px 1px #050, 0px 0px 2px #000;
}

#server_status_light.on {
	border: 1px solid #060;
	box-shadow: inset 0px 0px 3px #040, 0px 0px 5px #0a0, 0px 0px 1px 0px #000;
}

.status.ball_yellow, #server_status_light.req {
	background: rgb(252, 234, 187);
	background: -moz-linear-gradient(top, rgba(252, 234, 187, 1) 0%, rgba(252, 205, 77, 1) 50%, rgba(248, 181, 0, 1) 51%, rgba(251, 223, 147, 1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(252, 234, 187, 1)), color-stop(50%, rgba(252, 205, 77, 1)), color-stop(51%, rgba(248, 181, 0, 1)), color-stop(100%, rgba(251, 223, 147, 1)));
	background: -webkit-linear-gradient(top, rgba(252, 234, 187, 1) 0%, rgba(252, 205, 77, 1) 50%, rgba(248, 181, 0, 1) 51%, rgba(251, 223, 147, 1) 100%);
	background: -o-linear-gradient(top, rgba(252, 234, 187, 1) 0%, rgba(252, 205, 77, 1) 50%, rgba(248, 181, 0, 1) 51%, rgba(251, 223, 147, 1) 100%);
	background: -ms-linear-gradient(top, rgba(252, 234, 187, 1) 0%, rgba(252, 205, 77, 1) 50%, rgba(248, 181, 0, 1) 51%, rgba(251, 223, 147, 1) 100%);
	background: linear-gradient(to bottom, rgba(252, 234, 187, 1) 0%, rgba(252, 205, 77, 1) 50%, rgba(248, 181, 0, 1) 51%, rgba(251, 223, 147, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fceabb', endColorstr='#fbdf93', GradientType=0);
	box-shadow: inset 0px 0px 1px 1px #550, 0px 0px 2px #000;
}

#server_status_light.req {
	border: 1px solid #660;
	box-shadow: inset 0px 0px 3px #440, 0px 0px 5px #aa0, 0px 0px 1px 0px #000;
}

.status.ball_red, #server_status_light.off {
	background: rgb(250, 174, 170);
	background: -moz-linear-gradient(top, rgba(250, 174, 170, 1) 0%, rgba(246, 73, 64, 1) 50%, rgba(227, 16, 1, 1) 51%, rgba(248, 74, 0, 1) 75%, rgba(194, 13, 0, 1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(250, 174, 170, 1)), color-stop(50%, rgba(246, 73, 64, 1)), color-stop(51%, rgba(227, 16, 1, 1)), color-stop(75%, rgba(248, 74, 0, 1)), color-stop(100%, rgba(194, 13, 0, 1)));
	background: -webkit-linear-gradient(top, rgba(250, 174, 170, 1) 0%, rgba(246, 73, 64, 1) 50%, rgba(227, 16, 1, 1) 51%, rgba(248, 74, 0, 1) 75%, rgba(194, 13, 0, 1) 100%);
	background: -o-linear-gradient(top, rgba(250, 174, 170, 1) 0%, rgba(246, 73, 64, 1) 50%, rgba(227, 16, 1, 1) 51%, rgba(248, 74, 0, 1) 75%, rgba(194, 13, 0, 1) 100%);
	background: -ms-linear-gradient(top, rgba(250, 174, 170, 1) 0%, rgba(246, 73, 64, 1) 50%, rgba(227, 16, 1, 1) 51%, rgba(248, 74, 0, 1) 75%, rgba(194, 13, 0, 1) 100%);
	background: linear-gradient(to bottom, rgba(250, 174, 170, 1) 0%, rgba(246, 73, 64, 1) 50%, rgba(227, 16, 1, 1) 51%, rgba(248, 74, 0, 1) 75%, rgba(194, 13, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#faaeaa', endColorstr='#c20d00', GradientType=0);
	box-shadow: inset 0px 0px 1px 1px #500, 0px 0px 2px #000;
}

#server_status_light.off {
	border: 1px solid #600;
	box-shadow: inset 0px 0px 3px #400, 0px 0px 5px #a00, 0px 0px 1px 0px #000;
}

.status {
	margin-left: -8px !important;
	margin-top: 1px;
}

.status.kicked {
	background: url('../images/icons/bs_kicked.png') #f00 no-repeat center center;
	background-size: contain;
	border: 2px solid #600;
	border-radius: 10px;
	margin-top: -1px;
	margin-left: -10px !important;
	box-shadow: inset 0px 0px 1px 1px #c00, 0px 0px 2px #000;
}

.status.missing_payments {
	background: url('../images/icons/bs_missing_payment.png') #f00 no-repeat center center;
	background-size: contain;
	border: 2px solid #600;
	border-radius: 10px;
	margin-top: -1px;
	margin-left: -10px !important;
	box-shadow: inset 0px 0px 1px 1px #c00, 0px 0px 2px #000;
}

input.button.cam:before {
	background: url('../images/icons/bs_cam.png') no-repeat center center;
	background-size: contain;
}

input.button.reload:before {
	background: url('../images/icons/bs_reload.png') no-repeat center center;
	background-size: contain;
}

input.button.config:before {
	background: url('../images/icons/bs_config.png') no-repeat center center;
	background-size: contain;
}

input.button.generate_pw:before {
	display: block;
	width: 20px;
	height: 20px;
	background: url('../images/icons/bs_key.png') no-repeat left top;
	background-size: contain;
}

#guest_image_container, #guest_image_container:hover {
	background: transparent !important;
	cursor: default;
}

a.page-mover.next:before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	padding: 1px;
	margin-left: -1px;
	margin-top: -1px;
	background: url('../images/icons/bs_next_invert.png') no-repeat center center;
	background-size: contain;
}

a.page-mover.previous:before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	padding: 1px;
	margin-left: -1px;
	margin-top: -1px;
	background: url('../images/icons/bs_previous_invert.png') no-repeat center center;
	background-size: contain;
}

#sidebar_slider.sidebar_off:before {
	/* content: '';
	display: inline-block;
	width: 26px;
	height: 26px;
	margin-left: -3px;
	background: url('../images/icons/bs_submenue_out.png') no-repeat center center;
	background-size: contain; */
}

#sidebar_slider.sidebar_on:before {
	/* content: '';
	display: inline-block;
	width: 26px;
	height: 26px;
	margin-left: -3px;
	background: url('../images/icons/bs_submenue_in.png') no-repeat center center;
	background-size: contain; */
}

/* ADDITIONAL ICONS */

.ident_type {
	display: inline-block;
	width: 20px;
	height: 20px;
}

.IdentType_1 {
	background: url('../images/icons/24x24_IdentType_1.png') no-repeat center center;
	background-size: contain;
}

.IdentType_2 {
	background: url('../images/icons/24x24_IdentType_2.png') no-repeat center center;
	background-size: contain;
}

.IdentType_3 {
	background: url('../images/icons/24x24_IdentType_3.png') no-repeat center center;
	background-size: contain;
}

/* .scanmedia.home {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url('../images/icons/bs_home_invert.png') no-repeat center center;
	background-size: contain;
}

.scanmedia.customer {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url('../images/icons/bs_customer_invert.png') no-repeat center center;
	background-size: contain;
} */

.scanmedia:after {
	content: '';
	background: none !important;
}

.buttonset span.checkbox {
	margin-top: 3px !important;
}

.save_icon {
	visibility: hidden;
	position: absolute;
	/* margin-top: -20px !important;
	margin-left: 75px !important; */
}

.hidden {
	display: none;
	/*visibility: hidden !important;*/
}

.input_edit {
	background: url("../images/icons/edit.gif") no-repeat scroll right center rgba(0, 0, 0, 0);
}

#action_marker {
	float: left;
	display: none;
	width: 16px;
	height: 16px;
}

.success_marker {
	background: url("../images/icons/16x16check.png") no-repeat scroll right center rgba(0, 0, 0, 0);
}

.error_marker {
	background: url("../images/icons/16x16remove.png") no-repeat scroll right center rgba(0, 0, 0, 0);
}

.participants_marker {
	margin-top: 9px;
}

#add_all_positions {
	background: linear-gradient(to bottom, #228fb6 0%, #175369 100%);
	border-radius: 3px;
	padding: 5px;
	cursor: pointer;
	color: white;
}

.checkbox.fa-check.inactive {
    color: #6c757d !important;
}

.checkbox.fa-check.active {
    color: #28a745 !important;
}