﻿/* -------------------------------------------------- */
/*  css for the 'Employee Wall' (employee photos)
/* -------------------------------------------------- */
/*== begin: set color variables here =====*/
:root {
    --primary-color: #8e9b89;
    --primary-color-opacity: rgba(142,155,137, 0.4);
}
/*== end: color variables =====*/


/* ... remove the margin-left and right from bootstrap row */
#divEmployeeWall {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: center;
    padding:8px 0 0 0;
}

    /* ... set the padding-left and right on bootstrap columns */
    #divEmployeeWall [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;

    }
    #divEmployeeWall img {
        padding:0 4px 8px 4px;
        width:100%;
        height:auto;
    }

/*-- EmployeeWall img hover -----*/
div.imagewrapper p {
  margin: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 4px;
  right: 4px;
  bottom: 8px;
  color:transparent;
  background:transparent;
  opacity: 1;
  text-align: center;
  font-family: serif;
}
    div.imagewrapper p:before {
      content: '';
      display: inline-block;
      height: 100%;
      vertical-align: middle;
    }
    div.imagewrapper p:hover {
      cursor: default;
      transition: opacity 0.5s;
      color: #fffafa;
      background: rgba(0,0,0,0.25);
    }

/*-- Employee Group selection -----*/
.employee-group-text {
    color:#cecece;
    font-size:14pt;
    margin-left:10px;
}
.employee-group-dropdown {
    color: var(--primary-color);
    background-color: #f4f4f4;
    height:34px;
    width:350px;
    margin-left:6px;
    font-size:14pt;
    padding-left:4px;
    border:none;
    outline: none !important;
    box-shadow: inset 0 0 0 1px #fff !important;  /* trick to remove border on Opera browser */
    padding-right: 4px;
}
