/*projects nav*/

.mainnav{
    display: flex;
    justify-content: space-between;
    background-color: chartreuse;   
}

/*personal Projects*/
.mainnav .mn {
    box-sizing: border-box;
    text-align: center;
    border: 1px solid black;
    flex: 1;
    margin: 0px;
    padding: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    position: relative;
    cursor: pointer;
}

/*personal projects sub-menu*/
.mainnav .mn .mna-wrapper{
    height:auto;
    
}
.mn .mna-wrapper {
    display: none;
    position: absolute;
    

}
.mainnav .mn:hover .mna-wrapper {
    display: block;
    background-color:rgba(255, 0, 102, 1);    
}

.mna-wrapper .mna {
  padding: 7px;
  margin: 7px;
  border-bottom: 1px solid black;
}

.mna-wrapper .mna:last-child{
  border-bottom:none;
}

/* business projects nav sub-menu*/
.mainnav .mn .mnb-wrapper{
  height:auto;
  
}
.mn .mnb-wrapper {
  display: none;
  position: absolute;
  

}
.mainnav .mn:hover .mnb-wrapper {
  display: block;
  background-color:rgba(255, 0, 102, 1);    
}

.mnb-wrapper .mnb {
padding: 7px;
margin: 7px;
border-bottom: 1px solid black;
}

.mnb-wrapper .mnb:last-child{
border-bottom:none;
}

/*social projects sub-menu*/
.mainnav .mn .mnc-wrapper{
  height:auto;
  
}
.mn .mnc-wrapper {
  display: none;
  position: absolute;
  

}
.mainnav .mn:hover .mnc-wrapper {
  display: block;
  background-color: rgba(255, 0, 102, 1);    
}

.mnc-wrapper .mnc {
padding: 7px;
margin: 7px;
border-bottom: 1px solid black;
}

.mnc-wrapper .mnc:last-child{
border-bottom:none;
}

/* The Project */
.theproject {
  display: grid;
  
}

.pprofpic {
  max-width: 100px;
}

.pprofpic img {
  width: 100%;
}
.mainpic {
  max-width: 500px;
}

.mainpic img {
  width: 100%;
}

/*The project page Styles*/
.wholeproject {
  padding: 10px;
  padding-top: 0px;
  position: relative;
}

.projectimage {
  width: 100%;
}

.projectimage img {
  width: 100%;
}

.plabel {
  font-weight: bold;
  color: rgba(255, 0, 102, 1);
}

.projectabout {
  background: white;
  padding: 10px;
  border-radius: 5px;
}

.steps {
  color: rgba(255, 0, 102, 1);
}

.whiteline {
  border-bottom: 0.4px solid white;
  margin-bottom: 5px;
}

.crossline {
  border: 1px solid chartreuse;
  margin-bottom: 5px;
}

.whiteline {
  border-bottom: 0.4px solid white;
  margin-bottom: 5px;
}

.formguide {
  color: purple;
  font-weight: normal;
}

.createproject_activity {
  padding: 10px;
  border-radius: 5px;
  background: white;
  border-radius: 5px;
}

.createproject_activity label {
  font-weight: bold;
}

.addActivity {
  padding: 10px;
}

/*Activity Styles*/
.leadtitle {
  font-size: 30px;
  color: purple;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.activitiesofProject {
  position: relative;
}

@media(min-width: 1080px) {
  .activitiesarea {
    padding-top: 65px;
  }
}

@media(max-width: 1080px) {
  .activitiesarea {
    padding-top: 100px;
  }
}

@media(max-width: 768px) {
  .activitiesarea {
    padding-top: 120px;
  }
}

@media(max-width: 560px) {
  .activitiesarea {
    padding-top: 140px;
  }
}

.eachactivity {
  background: honeydew;
  border: 1px solid chartreuse;
  margin: 10px;
  padding: 10px;
  border-radius: 5px;

}

.ordernnameofactivity {
  padding: 10px;
  border-radius: 5px;
  /*background: linear-gradient(to top right, rgba(127, 255, 0, 0.75), rgba(255, 255, 0, 0.75));*/
  background: chartreuse;
  font-weight: bold;
  font-size: 25px;
}

.projectnamecolor {
  background: linear-gradient(to right, black, purple, black);
  display: inline-block;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.finishTime {
  padding: 10px;
  border-radius: 5px;
  background: white;
  color: purple;
  position: absolute;
  top: 0px;
  left: 0px;
  max-height: 140px;
  overflow: auto;
}

.timeStart, .timeFinish, .projectcost {
  color: green;
  font-weight: bold;
}

.projectType {
  position: absolute;
  left: 0px;
  top: 0px;
  background: white;
  padding: 10px;
  border-bottom-right-radius: 5px;
  font-weight: bold;
  color: purple;
}

.timeofactivity {
  background: white;
  border-bottom: 1px solid chartreuse;
  
}

.activitys_time {
  background: aquamarine;
  padding: 5px;
  border-radius: 3px;
  color: green;
  font-weight: bold;
  display: inline-block;
}

.complete_by {
  color: purple;
  font-weight: bold;
}

.timeLocator {
  background: aquamarine;
  padding: 5px;
  border-radius: 3px;
  font-weight: bold;
  display: inline-block;
}
.imageofactivity {
  width: 100%;
}

.imageofactivity img {
  width: 100%;
}

.activitytitle {
  font-size: 22px;
  color: rgba(255, 0, 102, 1);
  font-weight: bold;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.check {
  color: rgba(255, 0, 102, 1);
  font-weight: bold;
}
/*End of Activity Styles*/
/*End - The Project Page Styles*/
/*Start of Project & Materials Page Common Styles*/
.materialsnum, .costofactivity, .jobsnum, .costofhrcapital, .bystepcost {
  font-weight: 18px;
  color: purple;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: bold;
}

.costofactivity, .costofhrcapital, .bystepcost {
  padding: 10px;
  background: white;
  border-radius: 5px;
}

.bystepcost {
  color: green;
}

table, tr, td, th {
  border: 1px solid grey;
  padding: 3px;
  
}

table {
  border-collapse: collapse;
}

thead, tfoot {
  background: aquamarine;
  color: purple;
  font-size: 18px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: bold;
}

.tjobs thead, .tjobs tfoot {
  background: cyan;
  
}

.goend {
  text-align: right;
}

@media(max-width: 768px) {
  table {
    width: 100%;
  }
}

@media(min-width: 768px) {
  table {
    width: 80%;
  }
}

/*HR Page Styles*/
#otherworktimeunit {
  display: none;
  color: purple;
}
/*End of HR Page Styles*/
/*End of Project & Materials Page Common Styles*/

.projectaskbar {
  background: rgba(127, 255, 0, 0.75);
  position: sticky;
  position: -webkit-sticky;
  bottom: 0px;
  width: 100%;
  display: flex;
}

.pnewbuttons {
  background: white;
  color: rgba(255, 0, 102, 1);
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  padding: 5px;
  border-radius: 3px;
  display: inline-block;
  width: initial;
  font-weight: bold;
  margin: 1px;
  font-size: 15px;

}

.pnewbuttons:hover {
  font-weight: bolder;
  color: purple;
  cursor: pointer;
}

/*Project Modal*/
#pStartAll {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: grid;
  place-items: center;
  overflow: auto;
  padding: 10px;
  z-index: 500;
  display: none;
}

.pStartContent {
  max-width: 480px;
  background: white;
  height: auto;
  border-radius: 5px;
  padding: 10px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  padding: 10px;
}

#closeSPM {
  color: rgba(255, 0, 102, 1);
  cursor: pointer;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  padding: 5px;
  border: 0.5px outset;
  border-color: white;
  box-shadow: inset 0 0 0 0 rgb(255, 255, 0);
  transition: ease-out 0.3s;
}

#closeSPM:hover {
  font-weight: bolder;
  box-shadow: inset 0 0 0 100px rgb(255, 255, 0), inset 30px 30px 30px 30px white;
  border: 0.3px inset;
  border-color: white;
}

.pStartHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pStartHeader, .pStartFooter {
  color: purple;
}

#requestStartProject {
  color: green;
  text-align: center;
  background: linear-gradient(to top right, rgba(127, 255, 0, 0.90), rgba(255, 255, 0, 0.90));
  padding: 10px;
  border-radius: 5px;
}

#pollStartProject {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.purple {
  color: purple;
  font-weight: bold;
}

.myProjectInstances {
  display: flex;
  padding: 10px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  justify-content: center;
  align-items: stretch;
  
}

.projectInstance {
  flex: auto;
  text-align: center;
  background:linear-gradient(to top right, white, white, honeydew);
  border-radius: 5px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.instancesCount {
  font-size: 36px;
}

#projectInstancesTimelines, #completedProjectInstancesTimelines, #scheduledProjectInstancesTimelines {
  display: none;
}

#projectInstancesContent {
  padding: 5px;
  border-radius: 3px;
  background: white;
}

.projectInstancesTable {
  margin: 5px;
}

.projectInstancesTable thead, .projectInstancesTable tfoot {
  background: chartreuse;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}

.dateStarted {
  color: rgba(255, 0, 102, 1);
  text-align: center;
  background: white;
}

#completedProjectInstancesTimelines {
  background: rgba(127, 255, 0, 0.25);
}

#projectInstancesTimelines {
  background: rgba(255, 255, 255, 0.75);
}

#scheduledProjectInstancesTimelines {
  background: rgba(127, 255, 212, 0.25);
}
/*End of Project Modal*/