
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
}

body{
	margin:0;
	padding:0;
	font-family: 'Lato', sans-serif;
	font-size:13px;
	height: 100vh;
}

img{
	max-width:100% !important;
	height: auto !important;
	}

a{
	text-decoration: none;
	color:#139b73;
}

.overflowScroll{
	overflow: auto;
	min-width: 700px
}

.loginBody{
	display: block;
	width: 100%;
	height: calc(100vh - (env(safe-area-inset-top) + env(safe-area-inset-bottom)));
	background: #00d496;
	color:#fff;
}

.loginBody p{
	font-size:15px;
}

.loginBody input[type=text],.loginBody input[type=password]{
	border:none;
	padding:10px;
	width: calc(100% - 40px);
}

.loginBody input[type=submit]{
	border:none;
	#margin-top:20px;
	padding:10px;
	width: calc(100% - 20px);
}

.loginBody a{
	color:#fff;
}

.loginBody .small{
	font-size:11px;
	font-weight: bold;
}

.loginBody img{
	border-radius: 10px;
}

hr{
	border-top:1px #f1f1f1 solid;
	border-bottom:0px #fff solid;
	padding:0;
	margin:0;
}

.loginBody hr{
	border-top:1px #16f1b1 solid;
	border-bottom:0px #fff solid;
	padding:0;
	margin:0;
}

header{
	background: #eee;
	padding:0;
	margin:0;
	height: 50px;
}

header .logo{
	float:left;
	width: 50px;
	padding: 0;
	margin: 0;
	border-right:1px #fff solid;
}

header nav{
	float:left;
	padding:0;
	margin: 0;
}

header nav .item{
	float:left;
	position: relative;
	background: #eee;
	padding:0 20px;
	line-height: 50px;
	font-weight: bold;
	border-right:1px #fff solid;
	cursor: pointer;
	transition: .3s;
}
header nav .item:hover{
	background: #00d496;
}
header nav .item.on{
	background: #00d496;
}

header nav .item.on .onArrow{
	position: absolute;
	bottom: -13px;
	left:0;
	right:0;
	margin: 0 auto;
	width: 26px;
	height:13px;
	background-image: url("/admin/img/onArrow.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

header .profile{
	float:right;
	margin:10px 10px 0 0;
	cursor: pointer;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background-position: center center;
	background-size: cover !important;
	background-repeat: no-repeat;
	background:#fff;
}

main{
	padding: 20px;
}

main .left{
	float:left;
	width: 300px;
	overflow: hidden;

}

main .right{
	float:left;
	overflow: hidden;
	width: calc(100% - 340px);
	padding:20px;
	overflow: hidden;
}








.calenderTitle{
	padding-left:10px;
}

.calenderTitle select.bigNameSelector{
	border:none;
	font-size: 20px;
	font-weight: bold;
}

.delete a{
	color:red;
}

.calTitle{
	text-align: center;
	color: gray;
	font-size: 10px;
}
.calItem{
	text-align: center;
	cursor: pointer;
}
.calMonthTitle{
	font-weight: bold;
	text-transform: uppercase;
	font-size: 15px;
}
.calWeek{
	width: 5px;
	font-size: 11px;
	color: gray;
	text-align: center;
}
.calWeekTitle{
	width: 5px;
	font-size: 10px;
	color:gray;
	text-align: center;
}

.thisday{
	background: #f1f1f1;
	border-radius: 100%;
}
.activities{
	font-weight: 900;
	color:#139b73;
}

.selectedday{
	background: #00d496;
	border-radius: 100%;
	color:#000;
}

.calender{
	display: block;
}

.calender .grid{
	width: 100%;
	overflow: hidden;
	z-index: 1;
	background: #fff;
}

.calender .list{
	display: block;
}

.dayHead{
	display: block;
	float: none !important;
	clear: both;
	width: 100%;
	padding: 0 0 10px 0;
	text-align: center;
	text-transform: uppercase;
	color:gray;
	font-weight: bold;
	font-size: 16px;
	border-bottom: 1px #f1f1f1 solid;
	#background: pink;
}

.calender .list .item{
	display: block;
	float: none !important;
	padding:10px 10px;
	margin:2px 1px;
	border-left:5px #00d496 solid;
	overflow: hidden;
	cursor: pointer;
}
.calender .list .item:active{
	background:#00d496;
}
.calender .list .item.createdByAdmin{
	border-left:5px #FBCA54 solid;
}
.calender .list .item .title{
	float:left;
	padding: 0;
	margin: 0;
	width: calc(100% - 100px);
}
.calender .list .item .time{
	float:left;
	padding: 0;
	margin: 0;
	width: calc(100px);
	font-size: 12px;
	color:gray;
	text-align: right;
}
.calender .list .item .location{
	padding: 0;
	margin: 0;
	font-size: 12px;
	color:gray;
}


table thead tr td{
	font-weight: bold;
}

table tbody.list tr:hover{
	background: #eee;
}

table thead tr td.red{
	color:red;
	font-size: 10px;
}

table thead tr td.weekday{
	color:#999;
	font-size: 10px;
}



table.primary-list thead tr td{
	font-weight: bold;
}

table.primary-list tbody tr.highlight{
	transition: .3s;
}
table.primary-list tbody tr.highlight:hover{
	background: #eee;
	transition: .3s;
}

table.primary-list tbody tr.highlight td{
	cursor: pointer;
}

table.primary-list tbody tr.line td{
	border-top: 1px #000 solid;
}

.profileimage{
	width: 30px;
	height: 30px;
	border-radius: 100%;
	background-position: center center;
	background-size: cover !important;
	background-repeat: no-repeat;
	background:#fff;
}

.profileimage.small{
	width: 15px;
	height: 15px;
}

.addCalenderButton{
	position: fixed;
	z-index: 1;
	#bottom: calc(env(safe-area-inset-bottom) + 20px);
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	cursor: pointer;
	background: #00d496;
	background-image: url("/img/icons/plusW.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 30px;
	border-radius: 100%;
	box-shadow: 5px 5px 10px rgba(0,0,0,0.25);
}

form.adminForm input[type=text],form.adminForm input[type=email],form.adminForm input[type=password],select,form.adminForm textarea{
	padding: 5px;
	width: 100%;
}

form.adminForm input.button
{
	background: #00d496;
	border:none;
	border-radius: 5px;
	padding:10px 20px;
	font-weight: bold;
}

form.adminForm input[type=text].err{
	border-color:red;
}

.mess{
	display: inline-block;
	padding:10px;
	background: #eee;
}
.mess.err{
	background: red;
	color:#fff;
}


table thead tr td.weekTop{
	background:#f1f1f1;
	color:#999;
	padding:5px;
	border-radius: 10px;
}
table thead tr td.monthTop{
	text-transform: uppercase;
	text-align: right;
	padding-right: 10px;
}

table tbody tr td.name{
	text-align: right;
	padding-right: 10px;
}

table tbody tr td.noactivitiesView{
	background:#00d496;
	cursor: pointer;
	transition: .2s;
}
table tbody tr td.noactivitiesView:hover{
	background:#19e0a6;
}
table tbody tr td.activitiesView{
	background:#108b67;
	cursor: pointer;
	transition: .2s;
}
table tbody tr td.activitiesView:hover{
	background:#0e976f;
}

table tbody tr td.date{
	font-size: 10px;
}
table tbody tr td.today{
	background:#f1f1f1;
	border-radius: 10px 10px 0 0;
}

.button-filter{
	float: left;
	background:#f1f1f1;
	padding:10px 20px;
	margin:0 0 0 1px;
	cursor: pointer;
}
.button-filter:hover, .button-filter.on{
	background: #19e0a6;
}

.leftCal{
	padding-top:20px;
	background: #fff;
	margin: 0;
}

.leftCalSticky{
  position: fixed;
  width: 300px;
  top: 0px;
  z-index: 10;
  
}

#left-scroll{
	z-index: 1;
	position: fixed;
	bottom:0;
	left: 0;
	padding: 5px;
	width: 50%;
	background: #19e0a6;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
}
#right-scroll{
	z-index: 1;
	position: fixed;
	bottom:0;
	right: 0;
	padding: 5px;
	width: calc(50% - 1px);
	border-left: 1px #fff solid;
	text-align: right;
	background: #19e0a6;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
}

#left-scroll:hover, #right-scroll:hover{
	background: #38f1bb;
	cursor: pointer;
}

.hidden
{
	display: none;
}

.dayViewWrap{
	position: relative;
	float:left;
	width: calc(100%);
	#overflow: visible !important;
	overflow: auto;
	#direction:ltr;
	background: #fff;
}

.dayView{
	overflow-x: auto;
	position: relative;

}

.dayView .objects{
	z-index: 2;

}

.dayViewObjectsScrolled
{
	position: fixed;
	width: 100%;
	top:0;
}

.dayView .objects .obj{
	float: left;
	display: inline-block;
	width: calc(50px - 6px);
	height: calc(20px - 6px);
	padding:3px;
	text-align: center;
}

.dayView .objects .objItem{
	float: left;
	display: inline-block;
	overflow: hidden;
	background: #ddd;
	width: calc(150px - 20px);
	height: calc(20px - 6px);
	padding:10px;
	margin-right: 1px;
	background: #fff;
	font-size: 11px;
	font-weight: bold;
	cursor: pointer;
}
.dayView .objects .objItem:hover{
	background: #f1f1f1;
}

.dayView .timeRow{
	clear: both;
}

.dayView .timeRow .hour{
	float: left;
	display: inline-block;
	width: calc(50px - 2px);
	height: calc(100px - 3px);
	border-top: 1px #fff solid;
	text-align: center;
	padding:1px;
	background: #fff;
}

.dayView .timeRow .box{
	float: left;
	display: inline-block;
	width: calc(150px - 2px);
	height: calc(100px - 3px);
	max-height: calc(100px - 3px);
	border-top: 1px #fff solid;
	padding:1px;
	margin-right: 1px;
	background: #f9f9f9;
	border-radius: 5px;
	overflow: visible;
	cursor: pointer;
}
.dayView .timeRow .box:hover{
	background: #eee;
}

.dayView .timeRow .box .item{
	position: absolute;
	width: calc(150px - 11px);
	padding:5px;
	border-radius: 4px;
	#background: #19e0a6;
	background: rgba(25,224,166,0.6);
	height: calc(100px - 10px - 2px);
	overflow:hidden;
	cursor: pointer;
}
.dayView .timeRow .box .item.noendtoday{
	border-radius: 4px 4px 0 0;
}
.dayView .timeRow .box .item.nostarttoday{
	border-radius: 0 0 4px 4px;
}
.dayView .timeRow .box .item.nostartorendtoday{
	border-radius: 0;
}
.dayView .timeRow .box .item:hover{
	background: rgba(25,224,166,1);
}

.dayView .timeRow .box .item .title{
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 1px;
}

.dayView .timeRow .box .item .location{
	font-size: 10px;
	font-weight: bold;
	color: gray
}

.dayView .timeRow .box .item .notes{
	font-size: 10px;
	font-weight: normal;
	color: gray
}

.addTask{
	display: none;
}

table.clickInfo tr td{
	font-size: 12px;
}

.calenderRepeat{
	display: none;
}