.weekend_checkbox{
	display: block;
	position: relative;
	padding-left: 35px;
	margin-top: 6px;
	margin-bottom: 6px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.weekend_checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.weekend_checkbox_ico {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #ccc;
}

.weekend_checkbox:hover input ~ .weekend_checkbox_ico {
  border-color: #5c70c3;
}

.weekend_checkbox input:checked ~ .weekend_checkbox_ico {
  background-color: #2196F3;
  border-color: #2196F3;
}

.weekend_checkbox_ico:after {
  content: "";
  position: absolute;
  display: none;
}

.weekend_checkbox input:checked ~ .weekend_checkbox_ico:after {
  display: block;
}

.weekend_checkbox .weekend_checkbox_ico:after {
  left: 9px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.workDayItem tr td .input-group-text{padding: 3px;}

.table .row_active, .table .row_active:hover {
    background: aliceblue;
    font-weight: 500;
}

.grafik-test {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	width: 100%;
}

.grafik-test div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 10px;
    background: #fff;
    border-radius: 5px;
    margin: 10px;
    box-shadow: 0 0 10px #bebebe;
	width: 115px;
	text-transform: capitalize;
}

.grafik-test div.today {
    background: #ef7f11;
    color: #fff
}

.grShortTitle{display:none}
.grSetShortTitle .grFullTitle{display:none}
.grSetShortTitle .grShortTitle{display:block}

@media screen and (max-width: 480px) {
	.workDayItem {font-size:14px}
	.workDayItem .input-group input.form-control{padding: 0 4px;}
}
@media screen and (max-width: 420px) {
	.workDayItem {font-size:12px}
	.workDayItem .input-group input.form-control{padding: 0 2px;font-size:12px}
	.workDayItem .table th, .workDayItem .table td{padding: 4px;}
	.workDayItem tr td .input-group-text {padding: 0px;}
}