/**********************************************************/
/***					GENERAL							***/
/**********************************************************/
body{
	background-color:#F0EDE1;
}

.modal-body {
    float: left;
}
#topBar{
	margin: 0px 0px 10px 0px;
}
p.spacer{
	float: left;
	width: 100%;
	margin: 5px 0px;
}

#mask{
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}

.customScrollBar::-webkit-scrollbar
{
	width: 0.6rem;
	height: 0.6rem;
}

.customScrollBar::-webkit-scrollbar-track
{
	background: rgba(0, 0, 0, 0.1);
}

.customScrollBar::-webkit-scrollbar-thumb
{
	background: rgba(0, 0, 0, 0.5);
}

div#message-box {
    position: fixed;
    z-index: 999;
    width: 100%;
    text-align: center;
}
/**********************************************************/
/***				LOGIN FORM							***/
/**********************************************************/
.login-container{
    position: relative;
    width: 300px;
    margin: 80px auto;
    padding: 20px 40px 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
}

#output{
    position: absolute;
    width: 300px;
    top: -75px;
    left: 0;
    color: #fff;
}

#output.alert-success{
    background: rgb(25, 204, 25);
}

#output.alert-danger{
    background: rgb(228, 105, 105);
}


.login-container::before,.login-container::after{
    content: "";
    position: absolute;
    width: 100%;height: 100%;
    top: 3.5px;left: 0;
    background: #fff;
    z-index: -1;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    border: 1px solid #ccc;

}

.login-container::after{
    top: 5px;
    z-index: -2;
    -webkit-transform: rotateZ(-2deg);
     -moz-transform: rotateZ(-2deg);
      -ms-transform: rotateZ(-2deg);

}

.avatar{
    width: 100px;
	height: 100px;
    margin: 10px auto 30px;
    border-radius: 100%;
    border: 2px solid #aaa;
    background-size: 80%;
	background-color: #fafafa;
	background-image:url(./../images/webondemand.png);
	background-repeat:no-repeat;
	background-position:50%;
}

.form-box input{
    width: 100%;
    padding: 10px;
    text-align: center;
    height:40px;
    border: 1px solid #ccc;
    background: #fafafa;
    transition:0.2s ease-in-out;

}

.form-box input:focus{
    outline: 0;
    background: #eee;
}

.form-box input[type="text"]{
    border-radius: 5px 5px 0 0;
}

.form-box input[type="password"]{
    border-radius: 0 0 5px 5px;
    border-top: 0;
}

.form-box button.login{
    margin-top:15px;
    padding: 10px 20px;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
/**********************************************************/
/***					DASHBOARD						***/
/**********************************************************/

.taskElement{
    text-align: center;
	padding: 5px;
    margin: 5px 0px 4px 0px;
    float: left;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, 0.5);
}
.dropabpleDiv{
    /*height: 72vh;*/
	height: calc(100vh - 160px - 20px);
    min-height: 100px;
    border: 1px dashed #ccc;
	border-radius: 0.25rem;
    overflow-y: auto;
    padding: 5px 10px;
}
.text-left{text-align:left;}
.text-right{text-align:right;}
.text-center{text-align:center;}

#anamoni{background-color: rgba(239, 243, 172, 0.6);}
#anamoni_pelati{background-color: rgba(235, 172, 243, 0.6);}
#ekteleitai{background-color: rgba(243, 211, 172, 0.6);}
#jobDone{background-color: rgba(183, 243, 172, 0.6);}


/**********************************************************/
/***					JOBS							***/
/**********************************************************/
.jobs.inactive{
	opacity:0.6;
}

.jobs.anamoni{background-color: rgba(239, 243, 172, 1);}
.jobs.anamoni_pelati{background-color: rgba(235, 172, 243, 1);}
.jobs.ekteleitai{background-color: rgba(243, 211, 172, 1);}
.jobs.jobDone{background-color: rgba(183, 243, 172, 1);}

.jobs{
	padding: 0.6rem;
	border-radius: 4px;
	border: 1px solid #91d614;
	margin: 0px 0px 5px 0px;
}
.jobs a{
	color: #fa4d07;
	text-decoration: none;
}

.jobs a:hover{
	color: #fa4d07;
}

textarea#job_code {
    min-height: 400px;
}

/**********************************************************/
/***					CLIENTS							***/
/**********************************************************/
.clients{
	padding: 0.6rem;
	border-radius: 4px;
	border: 1px solid #91d614;
	margin: 0px 0px 5px 0px;
	background-color: rgb(164, 221, 62);
}

.clients a{
	color: #f8f8f8;
	text-decoration: none;
}

.clients a:hover{
	color: #fa4d07;
}

/**********************************************************/
/***				CONTEXT MENU						***/
/**********************************************************/
.custom_context_menu {
	z-index:999;
	float: left;
	box-shadow: 0 4px 5px 3px rgba(0, 0, 0, 0.2);
	position: absolute;
	background-color: rgba(255,255,255,0.95);
	border-radius: 0.25em;
	display: none;
}
.custom_context_menu .menu-options {
	list-style: none;
    padding: 0px 0;
    margin-bottom: 0px;
}

.custom_context_menu .menu-options .menu-option {
    font-weight: 500;
    font-size: 14px;
    padding: 10px;
    text-align: left;
    cursor: pointer;
}
.custom_context_menu .menu-options .menu-option:hover {
	background: rgba(0, 77, 255, 0.5);
}
/***********************************************************/
/****						AGENDA						****/
/***********************************************************/
.calendar_day{
	
}

.calendar_day:hover{
	background-color:#ffffff;
}

.calendar_day.active{
	
}

.calendar_day.has_events{
	background-color:rgba(240, 173, 78, 0.5)!important;
}
.calendar_day.has_events a{
	color:#ffffff!important;
}

.calendar_day.active.has_events{
	background-color:rgba(240, 173, 78, 1)!important;
}
.calendar_day.active.has_events a{
	color:#ffffff!important;
}

.calendar_day a{
	text-decoration: none;
	color: #777;
}

.calendar_day a:hover{
	color:#ff8800;
}


.calendar-info-panel{
	background-color:#fff;
	border-width:0px 1px 1px 1px;
	border-color:#ccc;
	border-style:solid;
	padding: 1rem;
}

/***********************************************************/
/****						MENU						****/
/***********************************************************/
.navbar-brand{
	padding:0px;
}
.navbar-brand img{
    height: 100%;
    width: auto;
    max-height: 45px;
    padding: 0px 10px;
    margin: 2.2px 0px 0px 0px;
}

.calendarNotes{
	background-color: #fa4d07;
    padding: 0.4rem;
    color: #fff;
    border-radius: 50%;
    width: 1.8rem;
    height: 1.8rem;
    float: left;
    font-size: 1rem;
    line-height: 1rem;
    text-align: center;
    font-weight: bold;
}

/***********************************************************/
/****						SWITCH						****/
/***********************************************************/
.onoffswitch {
    position: relative; width: 90px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
    display: none;
}
.onoffswitch-label {
	display: block;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid #adadad;
	border-radius: 4px;
}
.onoffswitch-inner {
    display: block;
	width: 200%;
	margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}
.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block;
	float: left;
	width: 50%;
	height: 30px;
	padding: 0;
	line-height: 30px;
    font-size: 14px;
	color: #FFFFFF;
	box-shadow:inset 0 3px 5px rgba(0,0,0,.125);
	font-weight: bold;
    box-sizing: border-box;
}
.onoffswitch-inner:before {
	content: "On";
    padding-right: 13.59px;
    background-color: #5CB85C;
    color: #FFFFFF;
    text-align: center;
}
.onoffswitch-inner:after {
    content: "Off";
    padding-left: 13.59px;
    background-color: #F0AD4E;
    color: #FFFFFF;
    text-align: center;
}
.onoffswitch-switch {
    display: block;
    width: 13.59px;
    height: 32px;
    margin: 0px;
    background: #FFFFFF;
    position: absolute;
    top: 0px;
    bottom: 0;
    right: 76px;
    border: 1px solid #adadad;
	box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    border-radius: 4px;
    transition: all 0.3s ease-in 0s;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px; 
}

/******************/
#days_of_week_switch .onoffswitch-inner:before {
	content: "Εβδομάδα";
    padding-right: 13.59px;
    background-color: #5CB85C;
    color: #FFFFFF;
    text-align: center;
}
#days_of_week_switch .onoffswitch-inner:after {
    content: "Ημέρα";
    padding-left: 13.59px;
    background-color: #F0AD4E;
    color: #FFFFFF;
    text-align: center;
}
/******************/
#today_all_days_switch .onoffswitch-inner:before {
	content: "Αυτή";
    padding-right: 13.59px;
    background-color: #5CB85C;
    color: #FFFFFF;
    text-align: center;
}
#today_all_days_switch .onoffswitch-inner:after {
    content: "Όλες";
    padding-left: 13.59px;
    background-color: #F0AD4E;
    color: #FFFFFF;
    text-align: center;
}
/******************/
#hidden_jobs_switch .onoffswitch-inner:before {
	content: "Όλες";
    padding-right: 13.59px;
    background-color: #5CB85C;
    color: #FFFFFF;
    text-align: center;
}
#hidden_jobs_switch .onoffswitch-inner:after {
    content: "Φανερές";
    padding-left: 13.59px;
    background-color: #F0AD4E;
    color: #FFFFFF;
    text-align: center;
}
/******************/
#hidden_job_switch .onoffswitch-inner:before {
	content: "Ναι";
    padding-right: 13.59px;
    background-color: #5CB85C;
    color: #FFFFFF;
    text-align: center;
}
#hidden_job_switch .onoffswitch-inner:after {
    content: "Όχι";
    padding-left: 13.59px;
    background-color: #F0AD4E;
    color: #FFFFFF;
    text-align: center;
}

/***********************************************************/
/****					PINBOARD						****/
/***********************************************************/
#pinboard {
	background-image: url("./../images/pinboard.jpg");  
	border: 2rem ridge #75521a;
	height: calc(100vh - 72px - 20px);
	overflow: auto;
}

#pinboard .postit:nth-child(2n+1) {
	-ms-transform: rotate(2deg);
	-webkit-transform: rotate(2deg);
	-moz-transform: rotate(2deg);
	transform: rotate(2deg);
}

#pinboard .postit:nth-child(2n+2) {
	-ms-transform: rotate(-2deg);
	-webkit-transform: rotate(-2deg);
	-moz-transform: rotate(-2deg);
	transform: rotate(-2deg);
}

#pinboard .postit:hover img {
	-webkit-filter: none;
	filter: none;
}

#pinboard .postit:hover {
	-ms-transform: scale(1.2, 1.2) rotate(0deg);
	-webkit-transform: scale(1.2, 1.2) rotate(0deg);
	-moz-transform: scale(1.2, 1.2) rotate(0deg);
	transform: scale(1.2, 1.2) rotate(0deg);
}

.postit img {
	width: 100%;
	border-top: 10px;
	border-bottom: 45px;
	-webkit-filter: grayscale(0.9);
	filter: grayscale(0.9);
}

.postit p {
	text-align: center;
	width: 100%;
	font-size: 1em;
	font-family: serif;
	color: black;
}

.postit {
	position: relative;
	float: left;
	z-index: 99;
	margin: 1% calc(20vw - 20.05%);
	padding: 2%;
	width: auto;
	background-image: url(./../images/pin-1.png);
	background-repeat:no-repeat;
	background-position:50% 0%;
	background-size:2rem auto;
	background-color: #ffff9a;
	-moz-box-shadow: 3px 3px 3px rgba(105, 105, 105, 0.52);
	-webkit-box-shadow: 3px 3px 3px rgba(105, 105, 105, 0.52);
	box-shadow: 3px 3px 3px rgba(105, 105, 105, 0.52);
	text-decoration: none;
	transition: transform 0.5s;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: clip;
}

.postit.pin1{
	background-image: url(./../images/pin-1.png);
	background-size:4rem auto;
}
.postit.pin2{
	background-image: url(./../images/pin-2.png);
}
.postit.pin3{
	background-image: url(./../images/pin-3.png);
}

/***********************************************************/
/****				Google Authenticator				****/
/***********************************************************/

#toogle-me {
    border: 1px solid;
    border-radius: 0.25rem;
}

/***********************************************************/
/****					Overrides						****/
/***********************************************************/
.cke_reset {
    min-height: 600px;
}
.postit hr,
hr{
    margin-top: 10px;
    margin-bottom: 10px;
    border: 0;
    border-top: 1px solid #9adeff;
}