@font-face {
    font-family: MiadProLight;
    src: url('../fonts/MyriadPro-Light.ttf');
}

::-webkit-scrollbar {
    width: 12px;
}
 
/* Track */
::-webkit-scrollbar-track {
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #2d2d2d;
    -webkit-box-shadow: inset 0 0 0px 3px #fff; 
}
::-webkit-scrollbar-thumb:window-inactive {
	background: #ccc; 
}

html, body {
	margin: 0px;
	padding: 0px;
	font-family: MiadProLight, sans-serif;
}

.header {
	position: fixed;
	width: 100%;
	top: 0px;
	left: 0px;
	z-index: 99;
}

/*main header*/
.gui-main-header {
	display: table;
	height: 50px;
	background-color: #2d2d2d;
	color: #fff;
    width: calc(100% - 20px);
    padding-left: 20px;
}

.gui-main-header>span {
	display: table-cell;
	vertical-align: middle;
}

.gui-main-header .header-nav {
	text-align: right;
}

.gui-main-header .header-nav img{
	width: 25px;
    vertical-align: middle;
}

.gui-main-header .header-title h1{
	font-size: 20px;
    text-transform: uppercase;
    font-weight: lighter;
}

.header-title img {
	width: 158px;
    vertical-align: middle;
}

.gui-main-header .header-nav>a{
	color: #fff;
    display: inline-block;
    height: 100%;
    border-left: 1px solid #6fb543;
    padding: 0 10px;
    font-size: 18px;
    line-height: 50px;
    text-decoration: none;
    text-align: -webkit-auto;
}

/*sub header*/
.gui-sub-header {
	background-color: #6fb543;
    color: #fff;
    width: 100%;
    display: flex;
}

.sub-calendar-option {
	width : calc(100% - 350px);
	display: table;
	height: 40px;
}

.sub-search-option {
	width: 350px;
	display: table;
	padding-top: 8px;
}

.sub-calendar-option>span{
	display: table-cell;
	vertical-align: middle;
}

.sub-calendar-option .date-select {
	padding-left: 70px;
}

.sub-calendar-option .view-select {
	padding-right: 20px;
    width: 234px;
}

.sub-search-option>*{
	display: table-cell;
	vertical-align: middle;
}

.select-month {
    border-bottom: 1px solid #fff !important;
}

@media(max-width: 855px) {
    .gui-sub-header {
        display: block;
        padding-left: 50px;
        padding-right: 50px;
        width: auto;
    }

    .sub-calendar-option {
        width : 100%;
    }

    .sub-search-option {
        /*width: 100%;
        text-align: right;
        padding-bottom: 10px;*/
        display: none;
    }

    .sub-calendar-option .date-select {
        padding-left: 0px;
    }

    /*.sub-calendar-option .view-select {
    }

    .sub-search-option>*{
        display: inline-block;
    }*/
}

@media(max-width: 525px) {
    .gui-sub-header {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 10px;
        padding-bottom: 10px;
        text-align: center;
    }

    .sub-calendar-option {
        width : 100%;
    }

    .sub-calendar-option .date-select {
        display: block;
    }

    .sub-calendar-option .attr-select {
        display: block;
    }

    .sub-calendar-option .view-select {
        display: block;
        width: 100%;
        text-align: center;
    }
}

.select-styled {
	display: inline-block;
    position: relative;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.select-styled option {
	color: #333;
}

.select-options {
	position: absolute;
    z-index: 999999999999999;
    background: #fff;
    color: #333;
    border: 1px solid #e5e5e5;
    min-width: 140px;
}

.view-select {
	text-align: right;
}

.view-select a {
	color: #fff;
	text-decoration: none;
	padding: 0 10px;
}

.view-select a.active {
	border-bottom: 2px solid #fff;
}

.sub-search-option>label {
	font-weight: bold;
    font-size: 15px;
    padding: 0 10px;
    border-left: 1px solid #67a044;
    width: 87px;
    color: #2c2c2c;
}

.search-input-group {
	background-color: #fff;
    border-radius: 5px;
    width: 178px;
    overflow: hidden;
    border: 1px solid #ccc;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.search-input-group input {
	max-width: 150px;
    outline: none;
    border: none;
    padding: 4px;
}

.search-input-group button {
	display: inline-block;
    border: none;
    outline: none;
    background-color: #f5f5f5;
    width: 30px;
    position: absolute;
    height: 100%;
    border-left: 1px solid #ccc;
}

.date-nav {
    display: inline-block;
}

@media(max-width: 1105px) {
    .nav-cal-text {
        display: none;
    }
}

/*main-content*/
.main-content {
	position: fixed;
    top: 90px;
    left: 0px;
    width: 100%;
    height: calc(100% - 90px);
    display: flex;
}

.calendar-container {
	width: calc(100% - 350px);
}

.nav-container {
	width: 350px;
	display: flex;
	background-color: #1a6288;
	color: #fff;
}

.nav-show-list-li {
    display: none;
}

.project-search-hid {
    padding: 10px;
    text-align: center;
    display: none;
}

.project-search-hid .search-input-group input {
    margin-left: -32px;
}

@media(max-width: 855px) {
    .main-content {
        /*top: 133px;*/
        display: block;
    }

    .calendar-container {
        width: calc(100% - 50px);
        float: left;
    }

    .nav-container {
        z-index: 999;
        width:50px;
        position: absolute;
        right: 0px;
        max-height: calc(100vh - 90px);
    }

    .nav-show-list-li {
        display: block;
    }

    .project-search-hid {
        display: block;
    }

    .fc-head th {
        font-size: 15px;
    }
}

@media(max-width: 525px) {
    .main-content {
        top: 133px;
    }

    .fc-head th {
        font-size: 12px;
    }

    .nav-container {
        max-height: calc(100vh - 130px);
    }
}

.list-container {
	width: calc(100% - 50px);
	background-color: #2d2d2d;
	padding: 0px;
	overflow-y: auto;
	overflow-x: hidden;
	position: relative;
}

.list-container .loading {
	position: absolute;
    width: 100%;
    height: 100%;
    z-index: 999;
    top: 0px;
    left: 0px;
    background-color: rgba(255, 255, 255, 0.11);
    text-align: center;
}

.loading-content-container {
	height: 100%;
	display: table;
	width: 100%;
}

.loading-content-container .loading-content{
	display: table-cell;
	height: 100%;
	vertical-align: middle;
}

.nav-content {
	width: 50px;
	background-color: #222222;
	text-align: center;
	overflow-y: auto;
}

.nav-content a{
	color: #fff;
	position: relative;
}

.list-container ul, .nav-content ul{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

.list-container li {
    padding: 10px;
}

.list-container li span{
    padding: 4px;
    line-height: 22px;
}

.nav-content li img {
	width: 32px;
}

.nav-content li {
	padding: 10px 0;
    border-bottom: 1px solid #16617c;
    margin: 0 6px;
}

.list-container li:nth-child(odd) {
    background-color: #393939;
}

.list-container li:nth-child(even) {
    background-color: #2d2d2d;
}

.proj-draggable{
	cursor: move;
}

.calendar-container {
	overflow-y: auto;
}

.popup {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(237, 237, 237, 0.42);
	z-index: 9999;
}

.popup-window {
	width: 300px;
    background: white;
    vertical-align: middle;
    display: table;
    margin: auto;
    margin-top: 10%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 1px 7px #999595;
}

.popup .head {
	padding: 10px;
    background-color: #6fb543;
    color: #fff;
}

.popup .body li{
	padding: 10px;
	border-bottom: 1px solid #d1d1d1;
	cursor: pointer;
}

.popup .body li a{
	display: block;
	text-decoration: none;
	color: #333;
	text-align: center;
}


.popup .body li:last-child{
	border-bottom: none;
}

.popup .body li:hover{
	background-color: #e7e7e7;
}


.popup .body ul{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

.color-box {
	width: 10px;
	height: 10px;
	display: inline-block;
	border:1px solid #333;
}

.btn-search img {
	width: 17px;
}

.project-filter-container ul{
	padding: 0px;
	margin: 0px;
	list-style-type: none;
	display: table;
}

.project-filter-container ul li {
	display: block;
	float: left;
	padding: 0px;
	border-right: 1px solid #fff;
}

.project-filter-container ul li a {
	display: block;
    color: #fff;
    text-decoration: none;
    padding: 4px 10px;
    background-color: #2d2d2d;
}

.project-filter-container ul li a.active {
	background-color: #6fb543;
}

.side-sections {
	position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    top:0px;
    left: 0px;
    background-color: transparent;

}

.side-sections-window {
    width: 300px;
    height: calc(100% - 110px);
    position: absolute;
    top: 100px;
    right: 60px;
    background-color: #fff;
    box-shadow: 0px 1px 10px #878787;
    overflow-y: auto;
    border-radius: 5px;
}

.side-sections .side-section-container{
	padding: 10px;
}

.color-picker-frm{
	margin-top: 8px;
    margin-bottom: 8px;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    overflow: hidden;
}

.color-picker-frm .color-pick-inp{
	border: none;
    padding: 8px;
    outline: none;
    width: 80px;
}

.color-picker-frm .color-label-inp{
    border: none;
    padding: 8px;
    outline: none;
    width: 134px;
    border-left: 1px solid #c9c9c9;
}

.color-picker-frm .btn-addColor{
	padding: 8px 9px;
    border: none;
    float: right;
    background-color: #e3e3e3;
    border-left: 1px solid #c9c9c9;
    color: #333;
}

.saved-colors ul {
	margin: 0px;
    padding: 0px;
    margin-top: 10px;
}

.saved-colors li {
	list-style-type: none;
    padding: 0px !important;
    background-color: #fff;
    border-left: 10px solid #fff;
    margin-bottom: 5px;
    margin-right: 5px;
    border-radius: 0px;
    color: #333;
    padding: 5px 2px !important;
    padding-left: 10px !important;
    overflow: hidden;
}

.day-view-details {
	color: #fff;
	background-color: #222;
	padding: 10px 30px;
	display: flex;
	max-height: 290px;
}

.day-view-month-calendar {
	width: 40%;
}

.day-view-project-details {
	width: 60%;
}

.day-view-date-label {
	font-size: 25px;
}

.day-view-project-item {
	display: flex;
}

.dv-color-container {
	width: 30px;
}

.dv-project-detail {
	width: calc(100% - 30px);
}

.day-view-project-item {
	margin-bottom: 8px;
}

.circ-evnt-color {
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: red;
}

.pd-time {
	float: right;
    font-size: 18px;
}

.pd-title {
	margin: 0px;
    font-size: 18px;
    font-weight: normal;
}

.pd-descrition {
	max-height: 53px;
    text-overflow: ellipsis;
    overflow-y: hidden;
    white-space: normal;
    font-size: 14px;
}

.day-view-head {
	padding: 10px;
    padding-top: 15px;
    font-size: 18px;
}

.btn-cal-nav {
	background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 10px;
    border-radius: 50px;
    outline: none;
}

.nav-trash-li {transition: background-color 0.5s}
.nav-trash-li.ui-droppable-hover {
	background-color: #ef9a9a;
}

#project-list-container-cont {
	position: relative;
}

.rem-color {
	color: #333 !important;
    display: inline-block !important;
    border-left: 1px solid #eee;
    padding: 0px 5px;
    float: right;
}

.frm-login-container {
	width: 300px;
    margin: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 1px 10px #eee;
    margin-top: 100px;
}

.frm-head {
	padding: 3px 10px;
    border-bottom: 1px solid #ccc;
    background-color: #37474F;
    color: #fff;
}

.frm-head h1{
	margin: 0px;
    font-size: 23px;
}

.frm-body {
	padding: 10px;
	color: #333;
}

.frm-inpt-group {
	margin-bottom: 8px;
}

.frm-inpt-group input{
    width: 100%;
    padding: 8px 3px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.btn-login {
	background-color: #37474f;
    border: 1px solid #ccc;
    color: #fff;
    border-radius: 3px;
    padding: 15px 10px;
    width: 100%;
}

.profile-option {
	position: fixed;
    z-index: 9999;
    background-color: #fff;
    margin: 0px;
    right: 0px;
    top: 50px;
    text-align: center;
    padding: 0px;
    width: 200px;
    list-style-type: none;
    box-shadow: 0 1px 10px #696969;
}

.profile-option a {
	display: block;
    padding: 5px 10px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #ccc;
}

.profile-option a:hover {
	background-color: #ccc;
}

.color-filter {
	cursor: pointer;
    margin-left: 10px;
    margin-right: 10px;
}

#frm-account input, #frm-emp-account input{
	width: 290px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #333;
}

.btn-acc-save, .btn-emp-acc-save {
	width: 100%;
    padding: 10px;
    border: 1px solid #2d2d2d;
    color: #fff;
    background-color: #2d2d2d;
}

.ev-detail-label {
	width: 79px;
	display: inline-block;
}

.popup-body-cont {
	padding: 10px;
}

.input-group {
	margin-bottom: 8px;
}

.input-group label {
	min-width: 90px;
	display: inline-block;
}

.input-group input, .input-group textarea {
	width: 290px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #333;
}

.btn-add-project{
	width: 100%;
    padding: 10px;
    border: 1px solid #2d2d2d;
    color: #fff;
    background-color: #2d2d2d;
}

.proj-option-icon, .proj-close-icon {
	width: 22px;
	float: right;
    margin-left:3px;
}

.proj-option-icon img, .proj-close-icon img{
	width: 100%;
}

.ev-icon {
	width: 10px;
	float: left;
	display: inline-block;
}

.ev-icon img{
	width: 100%;
}

.ui-tooltip, .arrow:after {
    background: black;
    border: 1px solid white;
  }
  .ui-tooltip {
    padding: 10px 20px;
    color: white;
    border-radius: 20px;
    box-shadow: 0 0 7px black;
    width: auto;
    max-width: 250px;
  }
  .arrow {
    width: 70px;
    height: 16px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    bottom: -16px;
  }
  .arrow.top {
    top: -16px;
    bottom: auto;
  }
  .arrow.left {
    left: 20%;
  }
  .arrow:after {
    content: "";
    position: absolute;
    left: 20px;
    top: -20px;
    width: 25px;
    height: 25px;
    box-shadow: 6px 5px 9px -9px black;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .arrow.top:after {
    bottom: -20px;
    top: auto;
  }

  .event-lock {
    float: left;
    color: #fff;
    opacity: 0.5;
  }

  .event-lock.active {
    opacity: 1;
    color: #ff4040;
    background: #000;
    padding: 0px 3px;
  }

  #inp-project-amount {
    border: 1px solid #d1d1d1;
    margin: 20px auto;
    box-sizing: border-box;
    padding: 3px;
    border-radius: 3px;
    font-size: 1em;
    width: 175px;
    text-align: center;
    height: 35px;
    color: #8a8a8a;
  }

  #btn-edit-icon {
    float: right;
  }

  #inp-pro-amount {
    width: 100px;
  }