/*GLOBALS*/

body {
/*    font-family: 'Lato', sans-serif;*/
    font-family: 'Inter', sans-serif;
}

#wrapper {
    position: absolute;
    left: 240px;
    width: calc(100% - 240px);
    padding-bottom: 2%;
}

#wrapper h2, #wrapper h3{
    font-weight: 600;
    color: #0b0b0b;
}

#projects-container, #main-projects-container {
    display:flex;
    flex-direction: column;
    padding: 0% 3% 0% 3%;
}

button, .button{
    border: 1px solid #d9d9d9;
    color: #6B6B6B;
    background-color: #f9f9f9;
    padding: 8px 10px;
    border-radius: 5px;
    margin: 0% 1%;
}

/*HEADINGS*/

.page-head{
    display:flex;
    justify-content: space-between;
    align-items: center;
}

.phead {
    padding: 0% 2% 0% 2%;
    border-bottom: 1px solid #d9d9d9;
}

.subhead {
    flex-direction: column;
    align-items: flex-start;
}

.subhead h3 {
    margin: 2% 0% 1% 0%;
}


/*CSS FOR TABLES*/

table {
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  border-spacing: 0;
  padding:none;
  
}

/*
tbody {
    display: block;
    overflow-y: auto;    
    overflow-x: hidden; 
}
*/

/*
td {
    margin: 1%;
    padding:10px;
    text-align: left;
    border-bottom: 1px solid #D9D9D9;
    font-size: 90%;
    overflow: hidden;
    white-space: nowrap;
}

td a {
    text-decoration: none;
    text-overflow: ellipsis;
    color: #494949;
    display:block;
    overflow: hidden;
}

.head {
    color:#6B6B6B;
    background-color: #F5F5F5;
    padding:10px;
    text-align: left;
    font-weight: 400;
    font-size: 85%;
}

tr:last-child td{
  border: none;
}
*/

/*CSS FOR TABS*/

.tabs {
	overflow-x: auto;
    width: 80%;    
}

.tabs-items {
    display: flex;
    justify-content: space-between;
    padding: 0;
    list-style-type: none;
}
.tabs-items li {
    flex-grow: 1;
    flex-shrink: 0;
    display: block;
    padding: 16px 24px;
    cursor: pointer;
}

.tabs-items li:hover{
    background-color: #D9D9D9;
}


/*CSS FOR MODAL*/

#modal {
  display: none; 
  position: fixed; 
  z-index: 25;
  left: 0;
  top: 0;
  width: 90%; 
  height: 90%; 
  overflow: scroll; 
  background-color: white;
  margin: 2% 5% ;
}

.close {
  font-size: 28px;
  font-weight: bold;
}

#overlay{
  display: none; 
  position: fixed; 
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  background-color:black;
  opacity:.5;
}

/*CSS FOR ACCORDIONS*/

.accordion-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
/*    padding: 1%;*/

}

.accordion-expand {
    font-size: 150%;
    font-weight: 300;
    padding: 2px 9px;
    border-radius: 50%;
}

.accordion-body {
    max-height: 0;
    visibility: hidden; 
    overflow: hidden;
    transition-duration: 800ms; 
    transition-property: max-height, visibility; 
}

.accordion-body.open {
/*    padding: 0% 2% 4% 2%;*/
    visibility: visible; 
    transition-duration: 800ms; 
    transition-property: max-height, visibility; 
}

.accordion-container {
/*    margin: 0% 1%;*/
    border-bottom: 1px solid #d9d9d9;
}

.accordion-container:last-child {
    border-bottom: none;
}

.action {
    color: #fff;
    background-color: #3a7aaf;
    border-color: #2d5d85;
}

.saveBtn {
    border: none;
    background-color: yellow;
    font-size: 90%;
    color: #7ac142;
}

select {
    background-color: #fff;
    font-size:100%;
    margin: 1%;
    border: 1px solid #d9d9d9;
    padding: 5px 0px;
    border-radius: 5px;
}

#dev_site_status {
    font-size: 95%;
    margin: 2% 0%;
    padding: .5rem;
}

i {
    font-size: 80%;
    padding: 0em .5em;
    vertical-align:middle;
}

.sortable {
    cursor: pointer;
    text-align: left!important;
}


.title {
    position: relative;
    top:2px;
}

.sort-icon {
    position: relative;
    left: 10px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-size: 85%;
    line-height: 5px;
}

.sort-icon span:first-child {
    transform: rotate(180deg);
}

.sort-icon span {
}

/*THINGS FOR PROFILE PAGE CHANGE.PHP*/
.table-update {
    margin: 1%;
    border:none;
    margin-top: 3%;
/*    width: 50%;*/
    padding-left: 1%;
}

.update-submit {
    padding-left: 1%;
}

.submit {
/*    width: 20%;*/
}

.table-update label {
    margin-top: 1%;
    font-size: 90%;
}

.table-update .searchfield  {
/*    min-width: 30px;*/
    width: 70%;
    max-width: 700px;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #d9d9d9;
    margin-top: 1%;
}

.table-update textarea {
    min-height: 150px;
    font-family: 'Inter',sans-serif;
    font-size: 90%;
}
