/* adds space for footer without covering content */
#subBody{
  margin-bottom: 70px;
}


/*backgroun image*/
.myBackground{
    position: fixed;
    height: 100%;
    width: 100%;
    top:0;
    z-index: -1
}
/* You could use :after - it doesn't really matter */
.myBackground:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
    background-image: url('/./assets/images/doug-zuba-6Yp99zMrsAI-unsplash.jpg');
    background-repeat: no-repeat;
    background-position: 50% 100%;
    -ms-background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    image-rendering: pixelated;
}

/*shadow for divs with page images*/
.divShadow{
  background-color: rgba(250, 250, 250, 0.8); 
  padding: 3% 3%; 
  box-shadow: 0 0 10px 15px rgba(250, 250, 250, 0.8);
}


.ui.segment{
  padding: 35px 20px 15px;
}

.calendar-width{
    width: 100% !important;
}

.link {
    cursor: pointer;
}

.ui.segment {background-color: #f9f9f9;}

body{
    background-color: #f9f9f9;
    font-family: 'roboto', sans-serif !important; 
}

.expandEntryIcon{
	float: right;
	transition: 0.4s linear;
}


/*collapse all fields on open except for general info*/
.collapsible{
    display:none;
}

#default-open{
    display: block;
}


:root {
  --check-height: 1.5em;
  --check-width: calc(var(--check-height)/2);
  --check-left: calc(var(--check-height)/3 + var(--check-height)/6);
}

/*right float checkbox*/
.ui.toggle.checkbox[class*="right floated"] {
    float: right !important;
    margin-right: 0em !important;
    margin-left: 1em !important;
}

.submitCandidate {
    position: relative;
}

.deleteBtn {
    position: relative;
}

.btnTrash {
    position: absolute;
    top: 0.8em;
    left: 2.6em;
}

/* Timesheet */
.timesheet td{
  padding: unset !important;
}

.timesheet td input{
  max-width: 150px !important;
  border: none !important;
  text-align: center;
}

.timesheet th {
  /*width: 150px !important;*/
  max-width: 150px !important;
}

td.name{
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

td.title{
  max-width: 175px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

div [class*="right floated"] {
  right: 0;
   margin-right: 0.25em;
} 