/* @import "http://fonts.googleapis.com/css?family=Raleway"; */

/*----------------------------------------------
CSS settings for HTML div Exact Center
------------------------------------------------*/

.projectItem {
  display:flex;
  flex-direction: column;
  position: relative;
  height: 300px;
  overflow: hidden;
  /* pointer-events: none; */
  /* max-width: 400px; */
  background-color: var(--profile-project-background);
  border: var(--profile-border);
  border-radius: var(--border-radius);
  margin: auto;
  /* padding: 10px; */
  
}

.projectImageBox {
  height: 60%;
  position:relative;
  border-bottom: var(--profile-border);
}

.projectImage {
  height: 100%;
  width: 80%;
  object-fit: cover;
  padding-left: 20%;
}

.projectItem i {
  color: white;
}

.projectItem div {
  color: var(--profile-text-color);
}

.projectImageButton {
  height: 16px;
  position:relative;
  top:0%;
  float: right;
  margin:4px;
  filter: grayscale(10%);
}

.projectTitle {
    position: relative;
    /* z-index: 2; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 30%;
    font-weight: bold;
    line-height: 1.3em;
    font-size: 18px;
    font-family: "Heebo", Sans-serif;
    text-decoration: none;
    padding: 0px 10px;
}

.projectText {
  font-family: "Heebo", Sans-serif;
  font-size: 14px;
    position: relative;
    padding: 0px 15px;
    line-height: 1.36;
    font-weight: 400;
    text-align: left;
    text-decoration: none;
    flex: 1;
}

.projectOwnerDate {
    font-size: 12px;
    flex:1;
    /* padding: 0px 15px; */
    line-height: 1.36;
    font-weight: 400;
    text-align: left;
    text-decoration: none;
    /* height: 8%; */
}

.projectLinkBox {
  display: none;
  height: 20%;
  position:absolute;
  top:10px;
  right: 10px;
}


.searchBar {
  display:flex;
  margin-top: 0.75rem;
  justify-content: flex-end;
}

.searchBarLabel {
  flex:1;
}

.column1 {
  padding: 5px;
}

.column1 i {
  color: var(--universal-black);
  color: var(--universal-gray-50);
}


.sortProjectColumn {
  width: 10%;
  min-width: 110px;
}

.createProjectColumn {
  width: 15%;
  min-width: 200px;
}

.projectListHeather {
    width: 15%;
  font-size: 14px;
  padding: 10px 10px;
  /* border-radius: 5px; */
}

#addNewProjectButton {
  background-color: var(--c1);
  float: right;
  color: white;
  font-size: 14px;
  font-weight: bold;
    border: 2px solid var(--c1);
/*  border-style: none;*/
}

#projectListPageHeather {
    margin-bottom: 30px
}

#createNewProjectButton {
  background-color: var(--c1);
  color: white;
  margin-right: 10px;
}

#createNewProjectButton:hover {
  background-color: var(--c1);
  border-color: var(--c1);
}

#cancelNewProjectButton:hover {
  color: var(--c1);
  border-color: var(--c1);
}

.projectDescription{
  height: 40%;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.projectBottom {
  display: flex;
  align-items: center;
  padding: 0px 15px;
}

.column:hover .projectBottom i {
  filter: invert(60%)
}

.projectLink {
    text-decoration: none;
    position:absolute;
  left:0; top:0; bottom:0; right:0;
}


.projectImageButton {
  pointer-events: all;
}

.projectLinkBox img:hover {
  /* filter: invert(30%); */
  filter: grayscale(0);
} 

.projectLinkBox img {
  /* filter: invert(30%); */
  filter: grayscale(1);
} 

/* .column:hover .projectItem div {
    color: whitesmoke;
} */

.column:hover .projectLinkBox {
  display:block;
}

.column:hover .projectDescription,.column:hover  .projectImageBox {
  background-color: var(--universal-gray-241);
  /* border: 1px solid var(--profile-project-background-hover); */
}

.column:hover .projectItem {
  /* background-color: var(--universal-gray-241); */
  /* border: 1px solid var(--profile-project-background-hover); */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Adjust the values to control the shadow appearance */
}

.projectLinkBoximg:hover {
  /* filter: invert(0%); */
  /* background-color: var(--universalBlue); */
  /* border-radius: 50%;  */
  /* filter: invert(50%); */
  height: 18px;
}

.newProjectIcon {
  font-size: 16px;
  margin: 0 5px;
}

.search {
  width: 100%;
  position: relative;
  display: flex;
  border-radius: 5px;
}

.searchTerm {
  /* background-color: var(--universalBackground); */
  width: 100%;
  border: var(--profile-border);
  border-right: none;
  border-radius: 0;
  padding: 5px;
  height: 40px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  outline: none;
  color: var(--universalTextBlack);
  font-size: 14px;
  font-weight: 600;;
}

.searchTerm:focus{
  color: var(--universalTextBlack);
}

.searchButton {
  width: 60px;
  height: 40px;
  border: var(--profile-border);
  border-radius: 0;
  /* border-left:0; */
  background: var(--universal-gray-241);
  text-align: center;
  /* color: #fff; */
  cursor: pointer;
  font-size: 18px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.displayProjects, .sortProjects {
  width: 40px;
  height: 40px;
  border: var(--profile-border);
  /* border:0; */
  background-color: var(--universalBackground);
  /* text-align: center; */
  /* color: #fff; */
  border-radius: 0;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0;
  /* border-top-right-radius: 5px;
  border-bottom-right-radius: 5px; */
}

.sortProjects {
  width: 100px;
}

.leftBtn {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-left: 0;
}

.rightBtn {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.centerBtn {
  border-left: 0;
}

.clickedListGripBtn {
  background-color: var(--universal-gray-225);
  /* color:#fff */
}

/* #projectSort {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
} */

#projectType, #projectSort, .searchTerm {
  padding-left: 10px;
  background-color: var(--universalBackground);
}

.dropbtn {
  /* background-color: var(--universalBackground); */
  color: var(--f0);
  padding: auto 16px;
  height: 40px;
  font-size: 14px;
  border: var(--profile-border);
  width: 100%;
  border-radius: 5px;
  font-weight: 600;
}

.dropbtn-custom {
  font-size: 16px;
  background-color: var(--button-save-background);
  color: white;
  border: 1px solid var(--button-save-background);
}

.dropdown {
  position: relative;
  display: inline-block;
  border-radius: 0px;
  width: 100%;
  align-items: center;
  height: 100%
}

.dropdown-custom2 {
  width: auto;
}

.dropdown a {
  height: 100%;
}

.dropdown-content {
  display: none;
  position: absolute;
  /* position: fixed; */
  /* left: 0; */
  background-color: #f1f1f1;
  background-color: #ffffff;
  min-width: 200px;
  border: 1px solid #f1f1f1;;
  box-shadow: 8px 8px 16px 8px rgba(138, 138, 138, 0.2);
  z-index: 1;
  width: 100%;
  /* width: 100vw; */
}

.dropdown-content a {
  font-weight: 600;
  color: black;
  padding: 10px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: var(--unversalTextBlack);
  font-size: 1rem;
}

.dropdown-content2 {
  display: none;
  position: absolute;
  /* position: fixed; */
  /* left: -50px; */
  right: 0;
  background-color: #f1f1f1;
  background-color: #ffffff;
  min-width: 150px;
  border: 1px solid #f1f1f1;;
  box-shadow: 8px 8px 16px 8px rgba(138, 138, 138, 0.2);
  z-index: 10;
  width: 100%;
}

.dropdown-content2 a {
  font-weight: 400;
  color: black;
  padding: 2px 4px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: var(--unversalTextBlack);
  font-size: 0.9375rem;
}

.dropdownImgDiv {
  height: 1rem;
  width: 2rem;
}

.dropdown img {
  height: 100%;
}

.dropdown-content a:hover {background-color: var(--background-gray);}
.dropdown-content a:hover {color: var(--universal-blue);}

.dropdown-content2 a:hover {background-color: var(--background-gray);}
.dropdown-content2 a:hover {color: var(--universal-blue);}

.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropdown-content2 {display: block;}

.dropdown:hover .navbar-item {
  color: var(--universal-blue);
  border-bottom: 3px solid var(--universal-blue);
}
a.navbar-item:hover {
  color: var(--universal-blue);
  border-bottom: 3px solid var(--universal-blue);}
/* .option:hover {background-color: var(--globalButton);} */
.navbar-brand a.navbar-item:hover {
  border-bottom: 0;}

.title {
  font-size: 20px;
  color: var(--f0);
}

.newProjectButton {
  background-color: rgb(256, 256, 256);
  color: var(--textColor);
  border:1px solid var(--textColor);
  border-radius: 5px;
  display:inline-block;
  padding: 10px 24px;
  margin-top: 20px;
  margin-right: 5px;
  font-size: 16px;
  /* float:right; */
}

.cancelProjectButton:hover {
  color: black;
  border-color: black;
}

.createProjectButton {
  background-color: var(--universalBlue);
  border: 1px solid var(--universalBlue);
  color: #fff;
}

.createProjectButton:hover {
  background-color: var(--universalGreen);
  border-color: var(--universalGreen);
}

.editButtonBox {
  /* float:right; */
  text-align: right;
}

.input {
  border-radius: 0px;
  border-color: var(--f0);
  color: var(--f0);
}

.radio {
  margin-left: 20px;
}

.editButtonBox1 {
  overflow: hidden
}

.newProjectBox {
  margin:0 10%;
  padding:0 auto;
}

.myDashboard {
  font-size: 20px;
  font-weight: 600;
}

.projectItemList {
  height: 100px;
}

.projectLinkBoxList{
  position: absolute;
  top:10px;
  right: 15px;
  z-index: 2;
}
.projectTitleList {
  position: relative;
  display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: left;
    -webkit-align-items: left;
    -ms-flex-align: left;
    align-items: left;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    -ms-flex-pack: left;
    justify-content: left;
  width: 100%;
  font-weight: bold;
  line-height: 1.0em;
  font-size: 16px;
  font-family: "Heebo", Sans-serif;
  text-decoration: none;
  padding: 0px 15px;
}

.projectTextList {
font-family: "Heebo", Sans-serif;
font-size: 12px;
height: 12px;
  position: relative;
  padding: 0px 15px;
  line-height: 1.0em;
  font-weight: 400;
  text-align: left;
  text-decoration: none;
  flex: 1;
}

.projectImageList {
  display: none;
}

.projectDescriptionList {
  height: 100%;
}

.projectOwnerDateList {
  font-size: 12px;
  flex:1;
  line-height: 1.0em;
  font-weight: 400;
  text-align: left;
  text-decoration: none;
}

progress[value] {
  -webkit-appearance: none;
  appearance: none;
  width: 200px;
  height: 15px;
}

progress[value] {
  -webkit-appearance: none;
  appearance: none;
  width: 200px;
  height: 15px;
}
progress[value]::-webkit-progress-bar {
  background-color: #cccccc;
  border-radius: 0px;
}
progress[value]::-webkit-progress-value {
  background-color: #359900;
  border-radius: 0px;
  background-size: 20px 15px, 100% 100%, 100% 100%;
}