/* [I USE AUTO PREFIX
* you can re-compile its css if you want it without prefix or tell me. I will do it 😊
] */

/* [FONTS]
--------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* [TABLE]
--------------------------*/
:root {
	--color-danger: #e3383b;
	--color-success: #759d47;
	--color-primary-light: #79c0e9;
	--color-primary-lighter: #d2eafc;
	--color-primary: #12b3f8;
	--color-primary-dark: #009fe3;
	--color-dark: #707070;
	--color-dark-100: #888888;
}

/* [BROWSER RESET] */

/*
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
*/

/* [BUTTONS]
--------------------------*/
.calendar-week-view-nakedButton {
	position: relative;
	background: none;
	border-radius: 50%;
	border: none;
	outline: none;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 4px 0 16px
}

.calendar-week-view-cell-flex {
	display: flex;
	align-items: center;
}

.calendar-week-view-nakedButton .calendar-week-view-folder-add-new {
	color: #fff;
	position: absolute;
	top: 14px;
	font-size: 8px;
	opacity: 0;
}

.calendar-week-view-header-folder-btn-base .calendar-week-view-folder-add-cancel {
	position: absolute;
	color: #A9A9A9;
	font-size: 21px;
	display: none;
}

.calendar-week-view-nakedButton:hover .calendar-week-view-folder-add-new {
	opacity: 1;
	transition: .3s opacity;
}

.calendar-week-view-folder-name {
	width: 100%;
	height: 35px;
}

.calendar-week-view-folder-name-error {
	border-color: var(--color-danger);
}

.calendar-week-view-folder-image-wrapper {
	display: flex;
	width: 35px;
	height: 35px;
	justify-content: center;
	align-items: center;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 3px 6px #00000029;
}

.calendar-week-view-folder-image {
	width: 20px;
}

.calendar-week-view-folder-name-wrapper {
	display: flex;
	flex: 1;
	position: relative;
	align-items: center;
	opacity: 0;
	transition: .3s all;
}

.calendar-week-view-header-folder-btn-base-cancel .calendar-week-view-folder-image-wrapper, .calendar-week-view-header-folder-btn-base-cancel .calendar-week-view-folder-name {
	border: 1px solid #999999;
}

.calendar-week-view-header-folder-btn-base-cancel .calendar-week-view-folder-image, .calendar-week-view-header-folder-btn-base-cancel .calendar-week-view-folder-add-new, .calendar-week-view-header-folder-btn-base .calendar-week-view-folder-add-cancel {
	display: none;
}

.calendar-week-view-header-folder-btn-base-cancel .calendar-week-view-folder-add-cancel {
	display: block;
}

.calendar-week-view-header-folder-btn-base-cancel + .calendar-week-view-folder-name-wrapper {
	opacity: 1;
}

.calendar-week-view-header-folder-btn-add-new {
	display: flex;
	position: absolute;
	right: 12px;
	padding: 0;
	background: none;
	border: none;
	color: #A9A9A9;
	font-size: 15px;
	-webkit-appearance: none;
}

.calendar-week-view-group-table {
	width: 100%;
}

.calendar-week-view-group-table-cell {
	width: 31.5%;
}

	/* [TABLE CONTENT]
    --------------------------*/
.table-scroller {
	width: 100vw;
	padding-bottom: 50px;
	margin-bottom: 20px;
}

.table-scroller::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

.table-scroller::-webkit-scrollbar-button {
	width: 0px;
	height: 0px;
}

.table-scroller::-webkit-scrollbar-thumb {
	background: var(--color-primary-dark);
	border: 0px none #ffffff;
	border-radius: 50px;
}

.table-scroller::-webkit-scrollbar-thumb:hover {
	background: var(--color-primary-light);
}

.table-scroller::-webkit-scrollbar-thumb:active {
	background: var(--color-primary);
}

.table-scroller::-webkit-scrollbar-track {
	background: var(--color-primary-lighter);
	border: 0px none #ffffff;
	border-radius: 50px;
}

.table-scroller::-webkit-scrollbar-corner {
	background: transparent;
}

.calendar-week-view-table {
	border-collapse: collapse;
	min-width: calc(100% - 10px);
	width: calc(100% - 10px);
	max-width: calc(100% - 10px);
	color: var(--color-dark);
	font-family: 'Open Sans', sans-serif;
}

.calendar-week-view-table .table-head {
	top: -1px;
	background: #fff;
	z-index: 99;
}

.table-head th {
	background-image: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(255, 255, 255, 0.5)),
		color-stop(50%, rgba(136, 136, 136, 0.507))
	);
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(136, 136, 136, 0.507) 50%);
	font-weight: bold;
	border: 1px solid black;
	outline: 1px solid black;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

#calendar-week-view-timeline-search {
	width: 20.66%;
}

.calendar-week-view-timeline-header-base {
	width: 10.82%;
}

.calendar-week-view-timeline-div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 5px;
}

.calendar-week-view-timeline-element {
	padding: 5px 0px 5px 0px;
}

.calendar-week-view-table .search {
	max-width: 185px;
	margin: 0px 12px;
}

.calendar-week-view-table .search::before {
	inset: -4px auto 0 12px;
}

.calendar-week-view-table .search input {
	padding: 4px 4px 4px 2rem;
}

.calendar-week-view-table tr[data-hide='true'] {
	display: none;
}

#calendar-week-view-header-ma .calendar-week-view-timeline-element {
	text-align: center;
	color: #fff;
}

.calendar-week-view-timeline-div-input {
	width: 184px;
}

.calendar-week-view-timeline-div-input input {
	width: 100%;
	height: 35px;
	border-radius: 15px;
	background-color: white;
	border: 1px solid var(--color-dark);
	padding-left: 40px;
	padding-right: 10px;
	outline: none;
	color: inherit;
	font-size: inherit;
}

.calendar-week-view-timeline-div-input input::-webkit-input-placeholder {
	color: inherit;
}

.calendar-week-view-timeline-div-input input:-ms-input-placeholder {
	color: inherit;
}

.calendar-week-view-timeline-div-input input::-ms-input-placeholder {
	color: inherit;
}

.calendar-week-view-timeline-div-input input::placeholder {
	color: inherit;
}

.calendar-week-view-timeline-div-input input:focus ~ label,
.calendar-week-view-timeline-div-input input:focus {
	border-color: var(--color-primary-light);
}

.calendar-week-view-timeline-div-input input:focus::-webkit-input-placeholder {
	color: var(--color-dark-100);
}

.calendar-week-view-timeline-div-input input:focus:-ms-input-placeholder {
	color: var(--color-dark-100);
}

.calendar-week-view-timeline-div-input input:focus::-ms-input-placeholder {
	color: var(--color-dark-100);
}

.calendar-week-view-timeline-div-input input:focus::placeholder {
	color: var(--color-dark-100);
}

.calendar-week-view-row-header-base {
	background: -webkit-gradient(linear, left top, left bottom, from(#12b3f8), to(#009fe3));
	background: linear-gradient(180deg, #12b3f8 0%, #009fe3 100%);
}

.calendar-week-view-row-header-base th:first-child {
	text-align: left;
	padding: 6px 10px;
}

/* -----------------> [2ND THEAD] */
#calendar-week-view-row-header-once {
	background: -webkit-gradient(linear, left top, left bottom, from(#faa87d), to(#fb935c));
	background: linear-gradient(180deg, #faa87d 0%, #fb935c 100%);
}

/* -----------------> [THIRD THEAD] */
#calendar-week-view-row-header-ma {
	background: var(--color-dark-100);
}

.calendar-week-view-header-title-base {
	color: white;
	padding: 6px 10px;
	font-family: 'Open Sans', sans-serif;
	font-weight: bold;
	font-size: 22px;
	text-align: center;
}

.calendar-week-view-objekt-container {
	background: #e5e5e5;
}

.comment-row {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
	max-width: 100%;
	min-width: 100%;
	height: 100%;
	max-height: 100%;
	min-height: 100%;
}

.comment-row, .comment-edit-user {
	position: relative;
}
[data-type='tooltip'].comment-edit-user::after {
	top: 35px;
	left: -50px;
	transform: none;
}
[data-type='tooltip'].comment-edit-user.tooltip-active::after {
	width: fit-content;
	font-size: 12px;
	border: 2px solid #00000066;
	border-radius: 14px;
}

[data-type='tooltip'].comment-row.tooltip-active::after {
	width: fit-content;
	min-width: 200px;
	font-size: 12px;
	border: 2px solid #00000066;
	top: 50px;
    transform: none;
	border-radius: 14px;
}

[data-type='tooltip'].comment-row::after {
	top: 50px;
    transform: none;
}

[data-type='tooltip'].comment-row.comment-row-tasks::after {
	top: 50px;
	height: fit-content;
	transform: none;
}

[data-type='tooltip'].comment-row-tasks::after {
	top: 50px;
	height: fit-content;
	transform: none;
}

.box-comment {
	padding: 4px 12px;
	border-radius: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border: 1px solid white;
	width: 100%;
	max-width: 100%;
	min-width: 100%;
}

.full-width {
	width: 100%;
}

.calendar-week-view-leistung-container {
	background-color: var(--color-primary-lighter);
	height: 100%;
}

.calendar-week-view-job-custom-id,
.calendar-week-view-leistung-name,
.calendar-week-view-objekt-custom-id {
	text-align: left;
	font-size: 12px;
	letter-spacing: 0.6px;
	color: var(--color-primary-dark);
}

.calendar-week-view-job-comment,
.calendar-week-view-objekt-name {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.6px;
	color: var(--color-dark);
}

/* [EDiT PEN] */
.edit-pen {
	font-size: 16px;
	color: var(--color-dark);
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.edit-pen:hover {
	color: var(--color-primary-dark);
	cursor: pointer;
}

.empty-dark-row {
	background-color: #e5e5e5;
}

/* [COMMENT EDIT]
--------------------------*/
.comment-edit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	background-color: var(--color-primary-light);
	color: white;
	height: 45px;
	gap: 5px;
}

.comment-edit.comment-orange {
	background-color: #ffbc99;
}

/* -----------------> [SC-hour_red_green] */
.SC-hour_red_green {
	width: 30px;
	max-width: 30px;
	min-width: 30px;
	height: 45px;
	color: white;
	font-size: 10px;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 0px;
	text-align: center;
	padding-top: 13px;
}

.calendar-week-view-clickable:hover {
	cursor: pointer;
	color: var(--color-danger);
}

.sc-hour_green {
	background-color: var(--color-success);
}

.sc-hour_red {
	background-color: var(--color-danger);
}

.comment-edit-close {
	color: white;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	margin: 3px;
}

.comment-edit-close:hover {
	cursor: pointer;
	color: var(--color-danger);
}

.comment-edit-user {
	display: flex;
	align-items: center;
	padding-left: 3px;
}

/* -----------------> [CHAT BUTTON]
* change id name with that you wan to show icon
*/
.ic_checkmark_white,
.ic_new_message,
.ic_chat_written_white,
.ic_chat_blank_white {
	position: relative;
	width: 38px;
	display: inline-block;
	height: 45px;
	background-color: rgba(112, 112, 112, 0.4);
	text-align: center;
	padding-top: 10px;
}

.ic_checkmark_white::before,
.ic_new_message::before,
.ic_chat_written_white::before,
.ic_chat_blank_white::before {
	content: '';
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	font-size: 22px;
	font-weight: 400;
	font-family: 'Font Awesome 5 Pro';
}

.ic_chat_blank_white::before {
	content: '\f27a';
}

.ic_chat_written_white::before {
	content: '\f4a6';
}

.ic_new_message {
	background-color: var(--color-danger);
}

.ic_new_message::before {
	content: '\f0f3';
	font-weight: 900;
}

.comment-edit-cross-edit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 7px;
}

.hour-boxes {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	gap: 20px;
}

/* [TAGS] */
.tags-btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-width: 100%;
}

.tag-blue-light,
.tag-blue-dark {
	background: #d2eafc;
	border: 1px solid white;
	height: 48px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.8px;
	color: var(--color-dark);
	margin-left: auto;
	margin-right: auto;
}

.tag-blue-dark {
	background-color: #d2eafc;
}

.tag-blue-light {
	background-color: #e7f5ff;
}

/* [HOTEL DETAIL]
--------------------------*/
.hotel-detail {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
	border: 1px solid #429edd;
	min-height: 44px;
}

@media only screen and (max-width: 1500px) {
	.hotel-detail {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 3px;
		padding-bottom: 4px;
	}
	.hotel-detail-hour {
		width: 100% !important;
	}
}
.hotel-detail-hour {
	width: 50px;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	background-color: var(--color-primary-light);
	color: white;
	font-size: 14px;
	font-weight: normal;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.hotel-detail-list {
	text-align: left;
	font-size: 10px;
	letter-spacing: 0.5px;
	color: #429edd;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	line-height: 14px;
}

.hotel-detail-list span {
	display: block;
}

.away-type {
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	color: #fff;
	border: 1px solid #fff;
}

.away-type-holiday {
	background: #429EDD;
}

.away-type-holiday-illness {
	background: #E3383B;
}

.away-type-not-available {
	background: #707070;
}

/* [TABLE NAV]
--------------------------*/
.table-nav {
	padding-left: 20px;
	padding-right: 20px;
	max-width: 950px;
	width: 100%;
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px;
	margin-top: 20px;
	margin-bottom: 28px;
}

.table-nav > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
}

.table-nav-plus {
	max-width: 40px;
	width: 40px;
	height: 40px;
	margin-right: 30px;
	border-radius: 50%;
	font-size: 20px;
	-webkit-box-flex: 70px;
	-ms-flex: 70px;
	flex: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: none;
	outline: none;
	color: #fff;
	background-color: #009fe3;
	-webkit-box-shadow: 0px 3px 6px #a9a9a9;
	box-shadow: 0px 3px 6px #a9a9a9;
	cursor: pointer;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.table-nav-plus:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.table-nav-plus:active {
	-webkit-box-shadow: 0px 0 0 4px rgba(201, 201, 201, 0.705);
	box-shadow: 0px 0 0 4px rgba(201, 201, 201, 0.705);
}

.table-nav-cal {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 7px 10px;
	border-radius: 20px;
	border: 1px solid #00000066;
	-webkit-box-shadow: 0px 5px 10px #85848429;
	box-shadow: 0px 5px 10px #85848429;
	max-width: 250px;
	width: 100%;
	gap: 8px;
}

.table-nav-cal-left,
.table-nav-cal-right {
	background-color: transparent;
	outline: none;
	border: none;
	cursor: pointer;
}

.table-nav-cal-input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.table-nav-cal-input input {
	outline: none;
	border: none;
	font-family: inherit;
	color: inherit;
	width: 100%;
}

.table-nav-cal-input input::-webkit-calendar-picker-indicator {
	background: transparent;
	bottom: 0;
	color: transparent;
	cursor: pointer;
	height: auto;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: auto;
}

.table-nav-cal-input label {
	color: #a9a9a9;
}

.table-nav-woche {
	padding: 7px 33px;
	outline: none;
	border: 1px solid #00000066;
	font-size: 16px;
	letter-spacing: 0.85px;
	font-weight: 600;
	border-radius: 30px;
	background-color: transparent;
}

.calendar__bar--tog {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.calendar__bar--toggle {
	position: relative;
	margin-right: 1.5rem;
	width: 62px;
	height: 24px;
}

.calendar__bar--toggle label {
	background: transparent;
	width: 62px;
	height: 24px;
	display: block;
	z-index: 5;
	position: relative;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border-radius: 12px;
	border: 1px solid #bfbfbf;
}

.calendar__bar--toggle span {
	position: absolute;
	top: 50%;
	left: 0;
	width: 35px;
	height: 35px;
	border-radius: 100%;
	background: #b6b8b9;
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.calendar__bar--toggle input {
	display: none;
}

.calendar__bar--toggle input:checked + span {
	left: auto;
	right: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	background: #009fe3;
}

.calendar__bar--toggle input:checked ~ label {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border-color: #009fe3;
}

.toggle-text {
	font-size: 12px;
	letter-spacing: 0.05em;
	color: #b6b8b9;
	margin-left: 12px;
}

.toggle-text.active {
	color: #009fe3;
}

.calendar-week-view-row--collapse {
	border: solid currentColor;
	border-width: 0 3px 3px 0;
	display: inline-block;
	padding: 3px;
	transition: 180ms ease;
}

.calendar-week-view-header-title-base {
	cursor: pointer;
}

.calendar-week-view-header-title-base .calendar-week-view-row--collapse,
.calendar-week-view-header-title-base[data-expand='true'] .calendar-week-view-row--collapse {
	transform: translateY(-3px) rotate(45deg);
	-webkit-transform: translateY(-3px) rotate(45deg);
}

.calendar-week-view-header-title-base[data-expand='false'] .calendar-week-view-row--collapse {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}

.calendar-week-view-header-folder-rounded {
  background-image: url(./icons/ic_folder_blue_rounded.svg);
}

.calendar-week-view-rows-base[data-expand='false'] {
	display: none;
}

.calendar-week-view-rows-base tr {
	box-sizing: border-box;
}

.calendar-week-view-row-empty {
	height: 48px;
}

.calendar-week-view-row-group {
	height: 48px;
}

[data-type='tooltip'].calendar-week-view-header-folder-btn-base.tooltip-active::after {
	width: fit-content;
	min-width: 200px;
	font-size: 12px;
	border: 2px solid #00000066;
	top: 165px;
	left: 5px;
	border-radius: 14px;
}

[data-type='tooltip'].calendar-week-view-header-folder-btn-base-cancel::after {
	display: none;
}

.calendar-week-view-objekt-group-container {
	height: 46px;
	background: #A9A9A9;
	color: #FFF;
	border-bottom: 0;
	border-top: 0;
}

.empty-dark-row-group {
	background: none;
}

.empty-dark-row-group .comment-row {
	display: flex;
	background: #e5e5e5;
	height: 46px;
}

.calendar-week-view-row-group td {
	padding: 0;
}

.calendar-week-view-row-group > td {
	padding: 1px;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
}

.calendar-week-view-row-group:first-child > td {
	border-top: 2px solid white;
}

.calendar-week-view-row-group:nth-last-child(2) > td {
	border-bottom: 2px solid white;
}

.calendar-week-view-group-info {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}

.calendar-week-view-group-info:hover {
	cursor: pointer;
}

.calendar-week-view-group-name {
	margin-left: 16px;
	font-weight: 600;
}

.calendar-week-view-group-image-wrapper {
	display: flex;
	width: 28px;
	height: 22px;
	justify-content: center;
	align-items: center;
}

.calendar-week-view-group-image, .calendar-week-view-group-image-opened {
	position: absolute;
	display: flex;
	width: 28px;
	height: 22px;
}

.calendar-week-view-group-image-opened, .calendar-week-view-row-group-opened .calendar-week-view-group-image, .calendar-week-view-row-group-opened .calendar-week-view-group-elements-count {
	opacity: 0;
	transition: 0.2s all;
}

.calendar-week-view-row-group-opened .calendar-week-view-group-image-opened {
	opacity: 1;
}

.calendar-week-view-group-elements-count {
	position: relative;
	font-size: 12px;
	font-weight: 600;
}

.calendar-week-view-group-delete {
	transition: 0.2s all;
	cursor: pointer;
}

.calendar-week-view-group-delete:hover {
	color: var(--color-danger);
}

.calendar-week-view-row-job[data-job-columns='5'] td {
	width: calc(68.5% / 5);
}

.calendar-week-view-row-job[data-job-columns='6'] td {
	width: calc(68.5% / 6);
}

.calendar-week-view-row-job[data-job-columns='7'] td {
	width: calc(68.5% / 7);
}

.calendar-week-view-row-job td:first-child {
	width: 20.7%;
}

.calendar-week-view-row-job td:nth-child(2) {
	width: 10.8%;
}

/* drag & drop */
.draggable:hover, .draggable-job-in-group:hover {
	cursor: grab;
}

.draggable:hover:before, .draggable-job-in-group:hover:before {
	content: '';
	display: flex;
	position: absolute;
	width: calc(100% - 190px);
	height: 100%;
	left: 155px;
}

.gu-unselectable {
	user-select: none;
}

.gu-unselectable .comment-row::after {
	display: none;
}

.gu-transit {
	opacity: 0.4;
	border: 1px solid #000;
}

.gu-mirror {
	display: table;
	position: fixed;
	width: 99%;
	opacity: 0.8;
	background: #fff;
	z-index: 999;
}

.gu-mirror.calendar-week-view-row-group {
	display: inline-block;
}

.gu-mirror.calendar-week-view-row-group td:first-child {
	display: flex;
	width: 100%;
}

.gu-mirror.calendar-week-view-row-job > td:first-child {
	width: 20.5%;
}

.gu-mirror.calendar-week-view-row-job > td:nth-child(2) {
	width: 11.4%;
}

.gu-hide, .calendar-week-view-row-group.gu-hide, .calendar-week-view-row-job.gu-hide {
	display: none;
}

