
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');*/

:root{

	--default-padding: 20px;
	--aside-width: calc(400px - 80px);
	--main-width: calc(100% - var(--aside-width) - 80px);
	--standard-icon-theme: invert(0);

	--calender-today-border-color: #cddbe0;
	--calender-today-border-width: 1px;
	--calender-today-border-radius: 10px;
	
}

body{
	margin:0;
	padding:0;
	font-family: 'Open Sans', sans-serif;
	/*font-family: "Jost", sans-serif;*/
	/*font-family: "Reddit Sans", sans-serif;*/
  	font-optical-sizing: auto;
	font-size: 13px;
	background: var(--body-bgColor);
	color: var(--body-textColor);
}

.preload *{
 transition: none !important;
}

img{
	max-width: 100%;
}

a,.linkstyle{
	color:#117383;
	text-decoration: none;
	cursor: pointer;
}

hr{
	border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    clear:both;
}

input, textarea:not(.prodComment), select{
	font-family: 'Open Sans', sans-serif;
	padding:5px;
	border-radius: 7px;
	border: 1px #bebebe solid;
	box-sizing: border-box;
}

input.delete{
	color:red;
}

form.formstyle input[type=text],form.formstyle input[type=password],form.formstyle input[type=date],form.formstyle select{
	padding:10px;
	width: calc(100% - 20px);
	background: var(--input-text-bgColor);
	color: var(--input-text-textColor);
	border: 1px var(--input-text-borderColor) solid;
}


main{
	width: var(--main-width);
	padding: var(--default-padding);
	float:left;
}

aside{
	width: var(--aside-width);
	padding: var(--default-padding);
	float:left;
	height: calc(100vh - 140px);
	background-color: var(--main-aside--bgColor);
}

.wrap{
	position:relative;
    margin-left:auto;
	margin-right:auto;
	padding:0 20px;
	word-wrap: break-word;
}


.wrap img{
	max-width:100% !important;
	height: auto !important;
	}

.sticky-header{
	/*
	position: fixed;
	width: 100%;
	background-color: pink;
	z-index: 1;
	*/
}

header{
	background: var(--header-bgColor);
	height:57px;
	z-index: 2;
}

header nav{
	float:left;
}

header .mobile-menu{
	display: none;
}

.mobile-menu-panel{
	display: none;
	position: relative;
	background: #fff;
}

.mobile-menu-panel .item{
	padding: 10px 20px;
	cursor: pointer;
	font-weight: bold;
	border-bottom: 1px #f1f1f1 solid;
}

.mobile-menu-panel .item.on{
	background: #c8d7a4;
}

.only-in-mobile{
		display: none;
	}

header .logo{
	float:right;
	width:100px;
	padding:11.5px 20px;
	cursor: pointer;
}

header .navRight .item{
	position: relative;
	float:right;
	padding:20px 0;
	height: 14px;
	color:#fff;
	font-weight: bold;
	font-size: 12px;
	text-transform: uppercase;
	text-align: center;
	background:#143e45;
	cursor: pointer;
	transition: .2s;
	white-space: nowrap;
	display: flex;
}


header nav .item{
	float:left;
	position: relative;
	padding:20px 30px;
	color: var(--header-nav-buttons-textColor);
	font-weight: bold;
	font-size: 12px;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	transition: .2s;
}
header nav .item:hover,header .navRight .item:hover{
	background: var(--header-nav-buttons-hover-bgColor);
	transition: .8s;
}

header nav .item.on,header .navRight .item.on{
	color: var(--header-nav-buttons-on-textColor);
	background: var(--header-nav-buttons-on-bgColor);
}

header nav .item .dropdown{
	display: none;
	position: absolute;
	width: 150px;
	top: 57px;
	left: 0;
	background: #fff;
	box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
	color: #000;
	z-index: 2;
}
header nav .dropdown .dropitem{
	padding: 10px;
}
header nav .dropdown .dropitem.on{
	background: #f5f5f5;
}
header nav .dropdown .dropitem:hover{
	background: #f1f1f1;
}

.iconSize img{
	min-width:13px;
}

header nav .item.icon{
	padding-left:50px;
	background-size: 16px 16px;
	background-position: center left 20px;
	background-repeat: no-repeat;
	text-align: center;
}
header .navRight .item.icon{
	padding-left:50px;
	padding-top:21px;
	padding-bottom:22px;
	background-size: 16px 16px;
	background-position: center center;
	background-repeat: no-repeat;
}

.tasksWrap{
	display: none;
	z-index: 10;
	position: fixed;
	top: 57px;
	right: 0px;
	background: #fff;
	width: 700px;
	height: calc(100vh - 57px);
	overflow: auto;
	color:#000;
	font-size: 12px;
	box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    user-select: none; /* supported by Chrome and Opera */
   -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
   -moz-user-select: none; /* Firefox */
   -ms-user-select: none; /* Internet Explorer/Edge */
}
.tasksWrap .title{
	font-weight: bold;
	font-size: 20px;
}
.tasksWrapScrolled{
	top:0;
	height: calc(100vh - 0px);
	transition: .3s;
}
.tasksWrapScrolledRemove{
	transition: .3s;
}





.scheduleWrap{
	display: none;
	z-index: 10;
	position: fixed;
	top: 57px;
	right: 0px;
	background: #fff;
	width: 700px;
	height: calc(100vh - 57px);
	overflow: auto;
	color:#000;
	font-size: 12px;
	box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    user-select: none; /* supported by Chrome and Opera */
   -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
   -moz-user-select: none; /* Firefox */
   -ms-user-select: none; /* Internet Explorer/Edge */
}
.scheduleWrap .title{
	font-weight: bold;
	font-size: 20px;
}
.titleDesc{
	font-size: 11px;
	
}
.scheduleWrapScrolled{
	top:0;
	height: calc(100vh - 0px);
	transition: .3s;
}
.scheduleWrapScrolledRemove{
	transition: .3s;
}



header .navRight .item.icon.multiview .multiviewWrap{
	display: none;
	z-index: 10;
	position: absolute;
	top: 57px;
	left: 0px;
	background: #fff;
	width: 200px;
	color:#000;
	font-size: 12px;
	box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    user-select: none; /* supported by Chrome and Opera */
   -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
   -moz-user-select: none; /* Firefox */
   -ms-user-select: none; /* Internet Explorer/Edge */
}
header .navRight .item.icon.multiview .multiviewWrap .mv-item{
	margin: 0 0 1px 0;
}

header .navRight .item.icon.multiview .multiviewWrap .mv-item .conButton.on{
	background: #add66b;
}
header .navRight .item.icon.multiview .multiviewWrap .mv-item .conButton{
	float: left;
	width: calc(100% - 67px);
	height: auto;
	background: #fff;
	background-size: 14px !important;
	background-image: url("/img/icons/monitor_64.png") !important;
	background-position: left 5px top 11px !important;
	background-repeat: no-repeat !important;
	padding:10px 10px 10px 27px;
	font-size: 11px;
	font-weight: bold;
	text-align: left;
	text-transform: none;
	cursor: pointer;
	overflow: hidden;
}
header .navRight .item.icon.multiview .multiviewWrap .mv-item .conButton:hover{
	background: #f1f1f1;
}
header .navRight .item.icon.multiview .multiviewWrap .mv-item .disButton{
	float: left;
	width: 10px;
	height: 27px;
	padding: 10px;
	background: #d40000;
	background-image: url("/img/icons/disconnect_64.png");
	background-position: center center;
	background-size: 15px;
	background-repeat: no-repeat;
}

header .navRight .item.icon.multiview .multiviewWrap .mv-item .nod{
	font-size: 8px;
	color: gray;
	font-weight: normal;
	cursor: pointer;
}




#printQr{
	z-index: 10;
	display: none;
	position: fixed;
	margin: 0 auto;
	width: 100%;
	height: 100%;
	padding-top: 100px;
	text-align: center;
	background: rgba(0,0,0,.5);

}
#printQr .inner{
	padding: 20px;
	border-radius: 10px;
	background: #fff;
}



.multiviewWrap2{
	display: none;
	z-index: 10;
	position: absolute;
	top: 57px;
	left: 0px;
	background: #fff;
	width: 200px;
	color:#000;
	font-size: 12px;
	box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    user-select: none; /* supported by Chrome and Opera */
   -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
   -moz-user-select: none; /* Firefox */
   -ms-user-select: none; /* Internet Explorer/Edge */
}
.multiviewWrap2 .mv-item{
	margin: 0 0 1px 0;
}

.multiviewWrap2 .mv-item .conButton.on{
	background: #add66b;
}
.multiviewWrap2 .mv-item .conButton{
	float: left;
	width: calc(100% - 67px);
	height: 27px;
	background: #fff;
	background-size: 14px !important;
	background-image: url("/img/icons/monitor_64.png") !important;
	background-position: left 5px top 11px !important;
	background-repeat: no-repeat !important;
	padding:10px 10px 10px 27px;
	font-size: 11px;
	font-weight: bold;
	text-align: left;
	text-transform: none;
	cursor: pointer;
	overflow: hidden;
}
.multiviewWrap2 .mv-item .conButton:hover{
	background: #f1f1f1;
}
.multiviewWrap2 .mv-item .disButton{
	float: left;
	width: 10px;
	height: 27px;
	padding: 10px;
	background: #d40000;
	background-image: url("/img/icons/disconnect_64.png");
	background-position: center center;
	background-size: 15px;
	background-repeat: no-repeat;
}

.multiviewWrap2 .mv-item .nod{
	font-size: 8px;
	color: gray;
	font-weight: normal;
	cursor: pointer;
}




.advancedSearchOptions{
	display: none;
	background: #f1f1f1;
	box-shadow: inset 0px 4px 3px rgba(50, 50, 50, 0.1);
	padding: 10px 0 0 0;
}




header .navRight .item.icon.notifications #notificationsIcon,header .navRight .item.icon.tasks #notificationsIcon{
	position: absolute;
	top:9px;
	left: 23px;
	background: #add66b;
	width: 15px;
	height: 15px;
	border-radius: 100%;
	color:#000;
	font-size: 10px;
}

header .navRight .item.icon.tasks #notificationsIconAlert{
	position: absolute;
	top:9px;
	left: 10px;
	background: #cf0000;
	width: 15px;
	height: 15px;
	border-radius: 100%;
	color:rgb(255, 255, 255);
	font-size: 10px;
}

header .navRight .item.icon.notifications .notificationsWrap{
	display: none;
	z-index: 10;
	position: absolute;
	top: 57px;
	left: 0px;
	background: #fff;
	width: 200px;
	color:#000;
	font-size: 12px;
	box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
    user-select: none; /* supported by Chrome and Opera */
   -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
   -moz-user-select: none; /* Firefox */
   -ms-user-select: none; /* Internet Explorer/Edge */
}

header .navRight .item.icon.notifications .notificationsWrap #notificationsList{
	max-height: 400px;
	overflow-x: auto;

}

header .navRight .item.icon.notifications .notificationsWrap .footer{
	padding:5px;
	background: #f5f5f5;
	font-weight: bold;
	text-transform: none;
	font-size: 10px;
	color:#a31d1d;
}

header .navRight .item.icon.notifications .notificationsWrap .footer .notfoot_item{
	display: inline-block;
	padding:2px 5px 2px 15px;
	margin: 0 1px;
	color:#000;
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 10px;
}

header .navRight .item.icon.notifications .notificationsWrap .footer .notfoot_item.trash{
	background-image: url("/img/icons/trash_64.png");
}
header .navRight .item.icon.notifications .notificationsWrap .footer .notfoot_item.center{
	background-image: url("/img/icons/center_64.png");
}

header .navRight .item.icon.notifications .notificationsWrap .ListItem{
	background: #e2f1cb;
	background-size: 14px !important;
	background-image: url("/img/icons/messageGreen_64.png") !important;
	background-position: left 5px top 11px !important;
	background-repeat: no-repeat !important;
	padding:10px 10px 10px 27px;
	font-size: 11px;
	font-weight: bold;
	text-align: left;
	text-transform: none;
	cursor: pointer;
}
header .navRight .item.icon.notifications .notificationsWrap .ListItem.completed{
	background-image: url("/img/icons/message_64.png") !important;
}
header .navRight .item.icon.notifications .notificationsWrap .ListItem.shown{
	background: #fff;
	font-weight: normal;
}
header .navRight .item.icon.notifications .notificationsWrap .ListItem.shown:hover{
	background: #f3f3f3;
}
header .navRight .item.icon.notifications .notificationsWrap .ListItem:hover{
	background: #d2ebab;
}
header .navRight .item.icon.notifications .notificationsWrap .ListItem .content{
	font-weight: normal !important;
	font-size: 9px;
	white-space: normal;
}
header .navRight .item.icon.notifications .notificationsWrap .ListItem .time{
	font-size: 8px;
	color: gray;
}
header .navRight .item.icon.notifications .notificationsWrap .ListItem.empty{
	cursor: default !important;
}

header nav .item.icon.switch{
	background-image: url('/img/icons/switch_64w.png');
}
header nav .item.icon.switch.on{
	background-image: url('/img/icons/switch_64.png');
}

header .navRight .item.icon.settings{
	background-image: url('/img/icons/settings_64w.png');
}
header .navRight .item.icon.settings.on{
	background-image: url('/img/icons/settings_64.png');
}
header .navRight .item.icon.profile{
	background-image: url('/img/icons/profile_64w.png');
}
header .navRight .item.icon.profile.on{
	background-image: url('/img/icons/profile_64.png');
}
header .navRight .item.icon.notifications{
	background-image: url('/img/icons/notifications_64w.png');
}
header .navRight .item.icon.notifications.on{
	background-image: url('/img/icons/notifications_64.png');
}
header .navRight .item.icon.multiview{
	background-image: url('/img/icons/monitor_64w.png');
}
header .navRight .item.icon.multiview.on{
	background-image: url('/img/icons/monitor_64.png');
}
header .navRight .item.icon.tasks{
	background-image: url('/img/icons/tasks_64w.png');
}
header .navRight .item.icon.tasks.on{
	background-image: url('/img/icons/tasks_64.png');
}
header .navRight .item.icon.schedule{
	background-image: url('/img/icons/scheduleW.png');
}
header .navRight .item.icon.schedule.on{
	background-image: url('/img/icons/schedule.png');
}
header nav .item.icon.bookings{
	background-image: url('/img/icons/bookings_64w.png');
}
header nav .item.icon.bookings.on{
	background-image: url('/img/icons/bookings_64.png');
}
header nav .item.icon.dashboard{
	background-image: url('/img/icons/dashboard_64w.png');
}
header nav .item.icon.dashboard.on{
	background-image: url('/img/icons/dashboard_64.png');
}
header nav .item.icon.beta{
	background-image: url('/img/icons/beta_64w.png');
}
header nav .item.icon.beta.on{
	background-image: url('/img/icons/beta_64.png');
}

header nav .item.icon.productions{
	background-image: url('/img/icons/productions_64w.png');
}
header nav .item.icon.productions.on{
	background-image: url('/img/icons/productions_64.png');
}

header .navRight .item.icon.logout{
	background-image: url('/img/icons/logout_64w.png');
}

.svg-icon{
	filter: var(--standard-icon-theme);
	width: 20px;
}

section.submenu{
	background: var(--header-navSubmenu-bgColor);
	color: var(--header-navSubmenu-textColor);
	overflow: hidden;

}

section.submenu .item{
	float:left;
	padding:10px 22px;
	font-size:11px;
	font-weight: bold;
	text-transform: uppercase;
	cursor: pointer;
}
section.submenu .item:hover{
	background: var(--header-navSubmenu-hover-bgColor);
}
section.submenu .item.on{
	background: var(--header-navSubmenu-on-bgColor);
}

section.actions{
	background: var(--section-action-bgColor);
	padding: 5px 0;
	overflow: hidden;
}

section.actions .title{
	display: none;
	float:left;
	width:calc(100% - 300px);
	font-size: 15px;
	font-weight: bold;
	padding:8px 0;
}

.connectButton{
	border:none;
}

section.actions .buttons{
	float:right;
	max-width: 300px;	
	text-align: right;
}
section.actions .buttons .button, .connectButton{
	display: inline-block;
	padding:10px 25px;
	background:#000;
	color:#fff;
	font-weight: bold;
	cursor: pointer;
	transition: .2s;
}
section.actions .buttons .button:hover, .connectButton:hover{
	background:#375217;
	transition: .2s;
	background-image: url("/img/icons/connect_64w.png");
}
section.actions .buttons .button:active, .connectButton:active{
	background:#629a1f;
}
.connectButton.highlight{
	background-color: #3e5e12;
}
.connectButton.highlight:hover{
	background-color: #59861a;
}

section.actions .buttons .button.icon, .connectButton.icon{
	padding-left:40px;
	padding-right:15px;
	background-size: 16px;
	background-repeat:no-repeat;
	background-position: center left 15px;
}
section.actions .buttons .button.icon.refresh{
	background-image: url("/img/icons/refresh_64w.png");
}
section.actions .buttons .button.icon.connect, .connectButton{
	background-image: url("/img/icons/connect_64w.png");
}

.connectButton.cancel{
	background-image: url();	
}


.connectButton.invert{
	background-image: url();	
	background-color: #3e5e12;
}
.connectButton.invert:hover{
	background-color: #59861a;
}

.button{
	display: inline-block;
	border-radius: 5px;
	background: #f1f1f1;
	color:#000;
	padding:10px 20px;
	margin-top:3px;
	font-weight: bold;
	font-size: 11px;
	cursor: pointer;
	text-transform: uppercase;
}
.button.small{
	font-size: 10px;
	padding:5px 10px;
}

.button.green{
	background-color: #4e770c;
	color:#fff;
}
.button.green:hover{
	background-color: #699e14;
}
.button.red{
	background-color: rgb(168, 19, 19);
	color:#fff;
}
.button.red:hover{
	background-color: rgb(201, 29, 29);
}
.button.orange{
	background-color: orange;
	color:#000;
}

.button.on, .buttonOn{
	background: var(--header-navSubmenu-on-bgColor);
}
.button:hover{
	background: var(--header-navSubmenu-hover-bgColor);
}

.switchTabPanel{
	display: none;
}
.tabPanel{
	padding: 10px;
	border: 1px #f1f1f1 solid;
	box-shadow: 3px 3px 3px #ddd;
	overflow: auto;
}

.sideScroll{
}

.tabButton{
	display: inline-block;
	z-index: 1;
	margin-bottom: -1px;
	border-top: 1px #f1f1f1 solid;
	border-left: 1px #f1f1f1 solid;
	border-right: 1px #f1f1f1 solid;
	background: #f1f1f1;
	padding:10px 30px;
	color:gray;
	font-weight: bold;
	cursor: pointer;
}
.tabButton:hover{
	color:#000;
}
.tabButton.on{
	background: #fff;
	color:#000;
}

.button-sub{
	display: inline-block;
	padding:10px 25px;
	background:#000;
	color:#fff;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	border-radius: 5px;
	border:none;
	white-space: nowrap;
	margin: 0 2px 0 0;
	transition: .2s;
}
.button-sub img{
	min-width:min-content;
}
.button-sub.on{
	background: #6c8926;
}
.button-sub.mini{
	padding:5px 10px;
	font-size: 10px;
	border-radius: 5px;
}
.button-sub.bright{
	background: #d1d1d1;
	color: #000;
}
.button-sub.bright:hover{
	background: #e1e1e1;
	color: #000;
}
.button-sub.mini.disconnect{
	background: #a11b1b;
}
.button-sub.mini.disconnect:hover{
	background: #d41616;
}
.button-sub.mini.connect{
	background: #6c8926;
}
.button-sub.mini.connect:hover{
	background: #87af26;
}

.button-sub.mini.clrOrange{
	background: orange;
}
.button-sub.mini.clrOrange:hover{
	background: orange;
}



.button-sub:hover{
	background:#375217;
	transition: .2s;
}
.button-sub:active{
	background:#629a1f;
}

.button-sub.icon{
	padding-left:40px;
	padding-right:15px;
	background-size: 16px;
	background-repeat:no-repeat;
	background-position: center left 15px;
}
.button-sub.icon.refresh{
	background-image: url("/img/icons/refresh_64w.png");
}
.button-sub.icon.connect{
	background-image: url("/img/icons/connect_64w.png");
}


.button-sub.pos:hover, .button-sub.pos:active, .button-sub.pos.on{
	background: #7FC41C;
	transition: .2s;
}
.button-sub.neg:hover, .button-sub.neg:active, .button-sub.neg.on{
	background: #D11B1B;
	transition: .2s;
}

.button-sub.disabled{
	color:#aaa;
	background:gray;
}
.button-sub.disabled:hover,.button-sub.disabled:active{
	background:#000;
}

.whitetext{
	color:#fff;
}

table.prodHead thead tr th{
	text-align: left;
	vertical-align: top;
}
table.prodHead tbody tr td{
	text-align: left;
	vertical-align: top;
}

.bookingsTable thead td{
	border-bottom: 1px #d1d1d1 solid;
	font-weight: bold;
}
.bookingsTable tbody td{
	border-bottom: 1px #d1d1d1 solid;
	position: relative;
	overflow: visible;
}
.bookingsTable tbody tr{
	background: #f1f1f1;
}
.bookingsTable tbody tr:hover{
	background: #fff;
}

.bookingsBar{
	width: calc(100% - 3px);
	height: 23px;
	background: rgba(80, 141, 0, .5);
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	font-size: 11px;
	z-index: 1;
	padding-left: 3px;
	white-space: nowrap;
	line-height: 10px;
}

.bookingsBar .title{
	font-weight: bold;
	padding-top: 3px;
}

.bookingsBar .undertext{
	color: rgba(0, 0, 0, .5);
}

.bookingsTable tbody td.contentCell{
	padding: 0;
}

.bookingsTable3 tr td{
	border-bottom: 1px #f1f1f1 solid;
	/*border-left: 1px #f5f5f5 solid;*/
}
.bookingsTable3 tr td:last-child{
	overflow: hidden;
}
.bookingsTable3 thead tr td{
	font-weight: bold;
}
.bookingsTable3 thead tr td.node,.bookingsTable3 thead tr td.port{
	padding:5px;
	
}
.bookingsTable3 tbody tr{
	transition: .9s;
	
}
.bookingsTable3 tbody tr:hover{
	background-color: #f5f5f5;
	transition: .2s;
	
}
.bookingsTable3 tbody tr td{
	vertical-align: top;
	position: relative;
	height: 27px;
}
.bookingsTable3 tbody tr td.node,.bookingsTable3 tbody tr td.port{
	padding:5px;
	white-space: nowrap;
	overflow: hidden;
    max-width: 200px;
    
    /* gradient fade-out */
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: linear-gradient(to right, black 80%, transparent 100%);
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
	
}
.bookingsTable3 tbody tr td.node{
	font-weight: bold;
	padding-top: 9px;
	padding-bottom: 0px;
}
.bookingsTable3 tbody tr td.node .headProd{
	font-size: 9px;
	font-weight: normal;
	display: none;
}
.bookingsTable3 tbody tr.person, .bookingsTable3 tbody tr.person td{
	background-color: #e1f5fe;
	font-weight: normal;
}
.bookingsTable3 tr td .item{
	position: absolute;
	background-color: #b9e2ff;
	height:25px;
	color:#0a5b94;
	font-size: 12px;
	width:100%;
	overflow: visible;
	left:0;
	border-radius: 4px;
	cursor: pointer;
	z-index: 1;
	transition: .2s;
}
.bookingsTable3 tr td .item.person{
	background-color: #d1ecff;
	color:#0a5b94;
}
.bookingsTable3 tr td .item:hover{
	background-color: #92c4e7;
	transition: .2s;
}
.bookingsTable3 tr td .item.double{
	background: rgb(182, 58, 0);
	color: #fff;
}
.bookingsTable3 tr td .item.double:hover{
	background: rgb(117, 0, 0);
	color: #fff;
	transition: .2s;
}
.bookingsTable3 tr td .item.beforeStart {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.bookingsTable3 tr td .item.afterEnd {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.bookingsTable3 tr td .item .inside{
	padding:2px 4px;
	white-space: nowrap;
	overflow: hidden;
}
.bookingsTable3 tr td .item .inside .title{
	font-weight: bold;
}
.bookingsTable3 tr td .item .inside .time{
	font-size: 11px;
	line-height: 10px;
}
.bookingsTable3 tr td.rowinfo{
	text-align: center;
	font-size: 11px;
	padding-top: 10px;
}

.prodRow { 
	cursor:pointer; 
	background:#f9f9f9;
}
.prodRow.active {
    background-color: #e1f5fe; /* ljusblå t.ex. */
}
.personRow { 
	display:none; 
}
.personRow.show { 
	display:table-row; 
}

.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space:inherit;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-tooltip {
	padding: 8px;
    border-radius: 4px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
	-webkit-box-shadow: 0 0 5px #aaa;
	box-shadow: 0 0 5px #aaa;
    background:#000;
    color:#fff;
}


.dubble{
	background: rgba(176, 0, 0, .5);
}
.dubbleOk{
	/*
	background: rgba(17, 132, 104, .5);
	margin-top:24px;
	*/
}
.sim{
	background: rgba(236, 232, 2, 0.5);
}

.multiview2Menu{
	display: none;
	z-index: 1;
	position: absolute;
	width: 100px;
	height: 100px;
	background: pink;
}

.clock{
	font-weight: bold;
	height: 25px;
}

#showBookingExplain{
	cursor: pointer;
}

.bookingExplain{
	position: absolute;
	z-index: 4;
	right: 20px;
	top: 10px;
	text-align: right;
}

.bookingColorExplain{
	width: 150px;
	background: #fff;
	padding: 10px;
	display: none;
	text-align: left;
	border: 1px #f1f1f1 solid;
	box-shadow: 3px 3px 3px rgba(0, 0, 0, .2);
}

.bookingColorExplain .dot{
	display: inline-block;
	vertical-align: middle;
	width: 15px;
	height: 15px;
}
.bookingColorExplain .text{
	display: inline-block;
	vertical-align: middle;
}

.scheduleProdStatus{
	width:13px;
}


  .scheduleStatusIcons{
	font-weight: bold;
	color:#000;
  }
  .scheduleStatusIcons div{
	display: inline-block;
	vertical-align: middle;
	font-size: 11px;
	margin-right:1px;
	width:16px;
	height:16px;
	text-align: center;
	border-radius: 4px;
}
.scheduleStatusIcons div.green{
	background-color: #629a1f;
	color:#fff;
}
.scheduleStatusIcons div.blue{
	background-color: #3769ac;
	color:#fff;
}
.scheduleStatusIcons div.orange{
	background-color: #dba800;
	color:#fff;
}
.scheduleStatusIcons div.red{
	background-color: #c40404;
	color:#fff;
}

#showProductionLog{
	cursor: pointer;
}



.ProductionLog{
	border: 2px #ddd dashed;
	padding: 10px;
	display: none;
}



.infoflip{
	display: none;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	z-index: 5;
	background: rgba(0, 0, 0, .6);
}
.infoflip-sidebar{
	display: none;
	position: absolute;
	right: 0;
	height: 100vh;
	min-width: 50%;
	max-width: 100%;
	background: #fff;
	padding: 30px;
	z-index: 6;
	box-shadow: 0 0 10px rgba(0, 0, 0, .3);
	overflow: auto;
}

.infoflip-highlight-row td{
	background: #dde8d5;
}
.infoflip-row{
	cursor: pointer;
}

table.infoflip-table-list tr td{
	white-space: nowrap;
	overflow: hidden;
}

.infoflip-closearea{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 5;
}

.infoflip-close-button{
	float: right;
	cursor: pointer;
}

table tr td.offline{
	color:red;
}

section.main{
	padding-bottom: 70px;
}

section.main.sub{
	/*
	max-height: calc(100vh - 156px);
	min-height: calc(100vh - 156px);
	*/
}

section.main .inputs .listhead,section.main .outputs .listhead{
	position: fixed;
	width: calc(50% - 17px);
	height:50px;
	background:rgba(255,255,255,0.9);
	z-index: 1;
}

section.main .inputs table,section.main .outputs table{
	/*
	margin:50px 0 0 0;
	*/
}

section.main .inputs .listhead .title,section.main .outputs .listhead .title{
	float:left;
	width: calc(50% - 10px);
	padding:10px 5px;
	font-size: 15px;
	font-weight: bold;
}
section.main .inputs .listhead .filter input[type=search],section.main .outputs .listhead .filter input[type=search]{
	border: 1px var(--input-text-borderColor) solid;
	padding:5px 5px 5px 25px;
	width:150px;
	background-image: url("/img/icons/search_64.png");
	background-position: center left 5px;
	background-repeat: no-repeat;
	background-size: 13px 13px;
}

section.main .inputs .listhead .filter,section.main .outputs .listhead .filter{
	float:left;
	width: calc(50% - 10px);
	padding:10px 5px;
	text-align: right;
}

section.main .inputs, section.main .outputs{
	float:left;
	width: 50%;
	overflow-y: auto;
	max-height: calc(100vh - 200px);
	min-height: calc(100vh - 200px);
}


.inputs table, .outputs table{
	width: 100%;
}
.inputs tbody,.outputs tbody{
	transition: .5s;
}
.inputs tbody:hover,.outputs tbody:hover{
	background:#f6f6f6;
	transition: .2s;
}
.inputs th,.outputs th{
	padding: 5px;
	font-weight: bold;
	text-align: left;
}
.inputs td,.outputs td{
	padding: 5px;
	cursor: pointer;
}

.inputs .selected,.outputs .selected {
    background-color: #c8d3d5;
}
.inputs tbody.selected:hover,.outputs tbody.selected:hover {
    /*background-color: #a7bfc3;*/
    background-color: #c8d3d5;
}
.switchActive{
	background:#add66b;
	color:#000;
	font-weight: bold;
}
.statusPoint{
	display: inline-block;
	background: gray;
	width: 12px;
	height: 12px;
	border-radius: 8px;
}
.statusPoint.blue{
	background:#1a9bff;
}
.statusPoint.green{
	background:#80a820;
}
.statusPoint.red{
	background:#be0000;
}
.statusPoint.orange{
	background:#e77b07;
}

.pointer{
	cursor: pointer;
}

.disabledText{
	color:#aaa;
}

.alert{
	position: fixed;
	width: 100%;
	height: 100%;
	background:rgba(0,0,0,0.4);
	z-index: 10;
	
	opacity: 1;
	animation: fadeIn 1s;
	animation-delay: 2s;
	animation-fill-mode: forwards;
	display: block;
}
@keyframes fadeIn {
	from { opacity: 1; }
	to { opacity: 0;visibility: hidden; }
}
.displaynone{
	display: none;
}

.alert .panel{
	position: absolute;
	top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
	padding:20px 30px;
	background: #fff;
	text-align: center;
}

.alert .panel .title{
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
}
.alert .panel .title.icon{
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center left;
	padding-left:30px;
}
.alert .panel .title.icon.check{
	background-image: url("/img/icons/check_64.png");
}
.alert .panel .title.icon.error{
	background-image: url("/img/icons/error_64.png");
}

.alert .panel .content{
	margin:10px 0 0 0;
}

.topMess{
	z-index: 10;
	display: block;
	padding:8px 10px;
	background: rgb(255, 213, 0);
	color:#000;
	font-weight: bold;
}

.topMess.icon{
	padding-left:35px;
	background-position: center left 10px;
	background-size: 16px;
	background-repeat: no-repeat;
	background-image: url("/img/icons/error_64.png");
}

.scroll{
	overflow-y: auto;
}

.moreinfo{
	display: none;
}
.moreinfo td{
	border: none !important;
}



.completePrompt, .defaultPrompt{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background:rgba(0,0,0,0.4);
	z-index: 10;

}

.completePrompt.show, .defaultPrompt.show{
	display: block;
}

.completePrompt .panel, .defaultPrompt .panel{
	position: absolute;
	min-width: 600px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
	padding:20px 30px;
	background: #fff;
	text-align: center;
}



.prompt{
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background:rgba(0,0,0,0.4);
	z-index: 10;
}

.prompt .panel{
	position: absolute;
	min-width: 400px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
	padding:20px 30px;
	background: #fff;
	text-align: center;
}

.prompt .panel .title{
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
}
.prompt .panel .title.icon{
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center left;
	padding-left:30px;
}
.prompt .panel .title.icon.check{
	background-image: url("/img/icons/check_64.png");
}
.prompt .panel .title.icon.error{
	background-image: url("/img/icons/error_64.png");
}

.prompt .panel .content{
	margin:10px 0 0 0;
}


.prodComment{
	width: calc(100% - 20px);
	height:15px;
	padding:10px;
	border: none;
	outline: none;
	resize: none;
	overflow: hidden;
}


.hoverlist:hover{
	background: #f3f3f3;

}

.list table{
	width: 100%;
}
.list tbody{
	transition: .5s;
}
.list tbody:hover{
	background:#f6f6f6;
	transition: .2s;
}
.list th{
	padding: 5px;
	font-weight: bold;
	text-align: left;
}
.list tr.selected{
	background: #f0f1c7;
}
.list td{
	padding: 5px;
	border-top: 6px solid #f1f1f1;
}
.list.click td{
	cursor: pointer;
}
table.list tr.highlight td{
	background-color: #e6e5c2;
}


.logFilter{
	display: none;
}
.logFilter.show{
	display: block;
}

.sub-button {
	cursor: pointer;
	font-weight: bold;
}




.swflist table{
	width: 100%;
}
.swflist tbody{
	transition: .5s;
}
.swflist tbody:hover{
	/*background:#f6f6f6;*/
	transition: .2s;
}
.swflist th{
	padding: 5px;
	font-weight: bold;
	text-align: left;
}
.swflist tr.selected{
	background: #e8f1c7;
}
.swflist td{
	padding: 5px;
	cursor: pointer;
}


.infobox{
	display: inline-block;
	padding: 5px 20px;
	background: #f1f1f1;
	font-weight: bold;
}


.rowHighlight tbody tr:hover, table tr.rowHighlight:hover{
	background:#f6f6f6;
	transition: .2s;
}

.taskStatusDot{
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background: gray;
}

.taskStatusDot.clrOk{
	background:green;
}
.taskStatusDot.clrSoon{
	background:orange;
}
.taskStatusDot.clrPassed{
	background:red;
}

.hidden{
	display: none;
}

.redtext{
	color:red;
}

.updateAlert{
	padding: 10px;
	border-radius: 0 0 5px 5px;
	background: orange;
	display: inline-block;
	margin:0;

}

.updateAlert .button-prompt{
	display: inline-block;
	margin: 0 0 0 6px;
	padding: 5px 10px;
	border-radius: 5px;
	background: #87a520;
	color: #fff;
	cursor: pointer;
}
.updateAlert .button-prompt:hover{
	background: #6c841a;
	color: #fff;
}

.updateAlert .button-prompt.neg{
	background: #cf7013;
	color: #fff;
}
.updateAlert .button-prompt.neg:hover{
	background: #bb6512;
	color: #fff;
}

.closeTaskList{
	position: absolute;
	right:20px;
	top:20px;
	cursor: pointer;
}


#loading{
	display: none;
	position: fixed;
	width: 100%;
	text-align: center;
    height: calc(100% - 200px);
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
	z-index: 3;
}
#loadingInside{
	display: none;
	position: fixed;
	width: 100%;
	text-align: center;
    height: calc(100% - 200px);
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}



.flash{
	background: rgba(255,255,255,0);
	animation: flash 3s;
	animation-delay: 0s;
	animation-fill-mode: forwards;

}


.sendingProgressBar{
	z-index: 100;
	display: none;
	position: fixed;
	width:100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,0.4);
}
.sendingProgressBar .inside{
	position: absolute;
	top: 40%;
	left: 0; 
	right: 0; 
	margin-left: auto; 
	margin-right: auto; 
	width: 100px;
	height: 180px;
	background-image: url("/img/progress1.gif");
	background-position: center center;
	background-size: contain;
	color: #fff;
}

@keyframes flash {
	from { background: #bdde4d; }
	to { background: rgba(255,255,255,0); }
}

.grayed{
	color:rgb(187, 187, 187);
}

table tr.gray td{
	background:#f1f1f1;
	padding:10px 1px;
}


table tbody tr.updated td{
	background: orange;
}

table tbody tr td.updated{
	font-weight: bold;
	color: #fff;
}

table tr.head td{
	font-weight: bold;
	border-bottom: 1px #ddd solid;
}

table.log tr td{
	border-bottom: 1px #ddd solid;
}

table.log tr.deviation td{
	color:red;
}

table.log tr.hover:hover{
	background: #f1f1f1;
	cursor: pointer;
}

.showClass{
	cursor: pointer;
}

.left{
	float:left;
	width: calc(50% - 20px);
	padding:0 20px 0 0;
}
.right{
	float:left;
	width: calc(50% - 20px);
	padding:0 0 0 20px;
}

.tab-wrap{
	max-width: 100%;
}

.tab-panel{
	padding: 10px;
	/*border: 1px #000 solid;*/
	background: #f1f1f1;
}
.tab-button{
	display: inline-block;
	padding: 10px 20px;
	background: #fff;
	cursor: pointer;
	font-weight: bold;
}
.tab-button.on, .tab-button-on{
	background: #f1f1f1;
}



.actionMessWrap{
	position: relative;
	padding:0px;
}

.actionMess{
	padding:10px;
	margin-bottom:1px;
	background: #f1f1f1;
	color: #000;
}
.actionMess.succ{
	display:block;
	background: green;
	color: #fff;
}
.actionMess.err{
	display:block;
	background: red;
	color: #fff;
}


.showinfoflip{
	cursor: pointer;
	z-index: 1;
}


#idIframe1, #idIframe2{
	pointer-events: none;
}

.setbox{
	display: inline-block;
	padding: 20px;
	margin:0 2px 4px 0;
	border: 1px #f1f1f1 solid;
	box-shadow: 2px 2px 0 rgba(0, 0, 0, .2);
	vertical-align: top;
}

.hoverlink{
	cursor: pointer;
}
.hoverlink:hover{
	background: #f1f1f1;
}

.rowHighlight:hover{
	background:#d9e9cb;
}




.multiselect {
	width: 200px;
	font-size: 12px;
	position: absolute;
	top:-17px;
	background:#fff;
	z-index: 1;
  }
  
  .selectBox {
	position: relative;
  }
  
  .selectBox select {
	width: 100%;
	font-weight: bold;
  }
  
  .overSelect {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
  }
  
  #checkboxes {
	display: none;
	border: 1px #dadada solid;
  }
  
  #checkboxes label {
	display: block;
  }
  
  #checkboxes label:hover {
	background-color: #1e90ff;
  }


.multiConnectActionButtons{
	display: none;
}



footer{
	background: var(--footer-bgColor);
	padding:10px 0;
	z-index: 1;
	position: fixed;
	bottom: 0;
	width: 100%;
}



.resourceTags {
	display: block;
	width: 300px;
  }
  .select2-results,
  .select2-selection,
  .select2-dropdown {
	display: none;
  }
  .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
  .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
  }


table.calender tr td{
	border-bottom: 1px #f1f1f1 solid;
}
table.calender tr td .plus{
	display: inline-block;
	margin-top: 10px;;
	padding:0;
	width: 40px;
	height:40px;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	color:#000;
	line-height: 40px;
	vertical-align: middle;	
	border-radius: 5px;
	cursor: pointer;
}
table.calender tr td .plus:hover{
	background-color: #f7f7f7;
}

table.calender tr.today td{
	border-top:var(--calender-today-border-width) var(--calender-today-border-color) solid;
	border-bottom:var(--calender-today-border-width) var(--calender-today-border-color) solid;
}
table.calender tr.today td:first-child{
	border-radius: var(--calender-today-border-radius) 0 0 var(--calender-today-border-radius); 
	border-left:var(--calender-today-border-width) var(--calender-today-border-color) solid;
}
table.calender tr.today td:last-child{
	border-radius: 0 var(--calender-today-border-radius) var(--calender-today-border-radius) 0; 
	border-right:var(--calender-today-border-width) var(--calender-today-border-color) solid;
}

.sticky-div{
	position: absolute;
	margin-right:20px;
	top: 79px;
	min-width: 1120px;
}

.sticky-div.is-fixed {
    position: fixed;
    top: 0;
	margin-right:40px;
	z-index: 2;
}
@media screen and (max-width: 1120px) {
	.sticky-div.is-fixed{
		position: absolute;
	}
}


.scheduleOneWeekBack,.scheduleOneWeekForward,#scheduleOneMonthBack,#scheduleOneMonthForward{
	cursor: pointer;
}

table.calender.week {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed; /* Fixerar layouten */
}

table.calender.week thead tr th:not(:first-child) {
	background-color: rgba(243, 243, 243, 0.9);
	text-align: center;
	border: 1px #f1f1f1 solid;
}

table.calender.week tbody tr td{
	height:60px;
}

table.calender.week tr:hover:not(.nohover) td {
	background-color: #f9f9f9;
}

table.calender.week tr:not(.nohover) td:not(:first-child):hover {
	background-color: #eef8ff;
}

table.calender.week tr td.today {
	background-color: rgb(250, 255, 178, 0.2);
}
table.calender.week tr td.today:hover {
	background-color: rgb(250, 255, 178, 0.6);
}

table.calender.week tr td:first-child{
	width: 200px; /* Fast bredd på första cellen */
	border-top: 1px #f1f1f1 solid;
	border-left: 1px #f1f1f1 solid;
}

table.calender.week tbody tr td:not(:first-child) {
	width: calc((100% - 200px) / 7); /* Jämnt fördelad bredd på de andra */
	border-left: 1px #f1f1f1 solid;
	padding:5px;
}

table.calender.week tbody tr td:last-child {
	border-right: 1px #f1f1f1 solid;
}


table.calender.week {
    width: 100%;
    border-collapse: collapse;
}

.calenderIcon{
	display: inline-block;
	width:50px;
	box-shadow: 0 0 5px rgba(0,0,0,.2);
	text-align: center;
	background-color: #fff;
}
.calenderIcon.week{
	width:100%;
	display: block;
}
.calenderIcon.today{
	background: rgb(250, 255, 178);
}
.calenderIcon .day{
	font-weight: bold;
	font-size: 16px;
}
.calenderIcon .month{
	text-transform: uppercase;
	font-size:12px;
	background-color: #117383;
	color:#fff;
}
.calenderIcon .month.sunday, .calenderIcon .month.redday{
	background-color: rgb(190, 7, 7);
	color:#fff;
}
.calenderIcon .dayname{
	text-transform: uppercase;
	text-align: center;
}

.calenderContainer {
    display: flex;
    flex-direction: column;
    gap: 4px; /* Mellanrum mellan alla divar utan att sista får margin */
}

.calenderItem{
	display: block;
	padding: 5px 10px;
	border-left: 3px #117383 solid;
	margin-bottom:1px;
	background-color: #f7f7f7;
	border-radius: 5px;
	cursor: pointer;
}
.calenderItem.notapproved{
	color:gray;
	border-color: rgb(255, 136, 0);
}
.calenderItem.declined{
	color:rgb(158, 158, 158);
	border-color: rgb(185, 11, 11);
	background-color: rgb(253, 253, 255);
}
.calenderItem.production{
	border-left: 3px #0003c0 solid;
	background-color: #edf4f5;
}
.calenderItem.production:hover{
	background-color: #daf0f3;
}
.calenderItem.production.declined{
	color:rgb(158, 158, 158);
	border-color: rgb(185, 11, 11);
	background-color: rgb(253, 253, 255);
}
.calenderItem.schedule{
	background-color: #edf4f5;
}
.calenderItem.schedule:hover{
	background-color: #daf0f3;
}
.calenderItem.holidays{
	background-color: #f3f3f3;
	border-color: rgb(211, 211, 211);
}
.calenderItem:hover{
	background-color: #e3edff;
}

.calenderItem .title{
	font-size: 13px;
	font-weight: bold;
}

.schedulePeriodForm{
	padding:10px;
	background-color: #fff;
}

.scheduleWeekSelector div{
	display: inline-block;
}
.scheduleWeekSelector img{
	width:16px;
}

.availOption{
	text-transform: uppercase;
	font-size: 10px;
	color:rgb(37, 157, 179);
}


/* Bakgrund lager (dimma) */
.scheduleFilters {
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;
    overflow-y: auto;
}

/* Själva popup-rutan */
.scheduleFilters .popup-box {
    margin: auto;
    max-width: 700px;          /* begränsar maxbredd */
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 30px 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    animation: fadeInScale 0.15s ease-out;
}

/* En liten popup animation (valfritt) */
@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.93); }
    to   { opacity: 1; transform: scale(1);    }
}


.thisWeekBtn{
	cursor: pointer;
}

.rows {
	margin: 0;
	padding: 0;
  }
  
  .row {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 1rem;
	padding: 0.75rem 0;
  }
  
  .row + .row {
	border-top: 1px solid #e5e7eb;
  }
  
  .col-left {
	font-weight: 600;
	color: #111827;
  }
  
  .col-right {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	color: #374151;
  }
  
  /* Checkboxar */
  .checkbox-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
	user-select: none;
  }
  
  .checkbox-item input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
  }
  
  /* Responsivt */
  @media (max-width: 640px) {
	.row {
	  grid-template-columns: 1fr;
	}
	.col-left {
	  margin-bottom: 0.25rem;
	}
  }

  

.calenderPrompt{
	display: none;
	position:fixed;
	width: 800px;
	max-width: 800px;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Flyttar div:en så att den centreras */
	z-index: 3;
	padding:30px;
	background-color: #fff;
	border: 1px #f1f1f1 solid;
	border-radius: 7px;
	box-shadow: 0 0 20px rgba(0, 0, 0, .1);
	
}
.calenderPrompt .inside {
	max-height: 80vh; /* eller en fast höjd, t.ex. 600px */
	overflow-y: auto;
	overflow-x: hidden;
}

.prodReady{
	display: inline-block;
	padding:3px;
	background-color: orange;
}
.prodReady.on{
	background-color: rgb(113, 196, 4);
}

.search-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.search-wrapper input[type="text"] {
    width: 100%;
    padding: 10px 35px 10px 35px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

.search-wrapper .search-icon,
.search-wrapper .clear-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.search-wrapper .search-icon {
    left: 10px;
    width: 16px;
    height: 16px;
    fill: #999;
    pointer-events: none;
}

.search-wrapper .clear-button {
    right: 10px;
    font-size: 14px;
    color: #999;
    cursor: pointer;
    pointer-events: auto;
    display: none;
}


@media (max-width: 850px) {
	.calenderPrompt {
		width: 90%;
		max-width: none;
		padding: 20px;
	}

	.calenderPrompt .inside {
		max-height: 70vh;
	}
}





.custom-select {
    position: relative;
    width: 100%;
	margin-top:-10px;
}

.select-box {
	padding:6px;
	border-radius: 7px;
	border: 1px #b1b1b1 solid;
	background-color: #fff;
	color: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    
}

.options-container {
    display: none;
    position: absolute;
    width: 100%;
    background-color: #fff;
    border-radius: 7px;
    border: 1px solid #ccc;
    max-height: 350px;
    overflow-y: auto;
    z-index: 10;
}

.options-container label {
    display: block;
    padding: 5px;
    cursor: pointer;
}

.options-container label:hover {
    background-color: var(--input-background-color-hover);
    color: var(--input-text-color-hover);
}

.options-container input {
    margin-right: 5px;
}


.remove-invite{
	cursor: pointer;
}


@media screen and (max-width: 1300px) {


	header nav,.not-in-mobile{
		display: none !important;
	}

	.only-in-mobile{
		display: block !important;
	}
	

	header .mobile-menu{
		display: inline-block;
		float: left;
		width: 20px;
		padding: 16px;
		cursor: pointer;
	}	

	header .logo{
		display: none;
	}

	 .list.list td{
		padding: 2px !important;
	}

	.addresses-box{
		float:none;
		width: 100%;
	}

	header .navRight .item.icon.notifications .notificationsWrap{
		left: -50px;
	}

	footer{
		text-align: center;
		padding:0px 0;

	}
}

@media screen and (max-width: 800px) {

	main{
		float:none;
		width: calc(100% - 40px);
		height: initial;
	}
	
	aside{
		float:none;
		width: calc(100% - 40px);
		height: initial;
	}

	.left, .right{
		float:none;
		width: 100%;
		padding:0;
	}


	.tasksWrap{
		width: 100%;
	}

	
	.scheduleWrap{
		width: 100%;
	}
}

