/* Design Elements
// ============ */

.well, .card {
/* background-color: $coolgrey;*/
  padding: 20px 18px;
  border-width: 0 0 1px 0;
  margin: 0;
    .border--right{
     border-right: 1px solid $grey   
    }
    li{
      list-style-type: none;
    }
}

ul.well {
  li {
    line-height: 0.95em;
    margin: 0.25em 0 0.9em;

    pre {
      margin: 7px 0 37px;
    }
  }
}

.card-inverse{
  background: $primarycolour;
  h1, .h1, h2, .h2, h3, .h3,
  h4, .h4, h5, .h5, h6, .h6{
      color: $white;
  }
}

.border--right + div{
  padding-left: calc($spacing-unit * 1.333);
}


.highlightme{
  border-left-color: $primarycolour !important;
/*  animation: highlighter 0.9s ease-in-out;
  background: #fcf8e3;
  padding: 0.7em 0.4em 0.05em 0.4em !important; 
  margin-left: -0.4em;
*/
  
}
.locase{
  text-transform: lowercase !important;
}
.profile-image{
  border-radius: 50%;
  width: 31px;
  height: 31px;
  position: relative;
  display: inline-block;
  margin: auto auto 30px -10px;
  text-align: center;
  .gravatar{
    position: absolute;
    top: -2px;
    left: -1px;
    width: 154%;
    height: 154%;
    z-index: 3;
    border-radius: 50%;
    background-size: cover !important;
  }
  .initials{
    font-family: $heavyweight;
    font-size: 0.85em;
    line-height: 2.2;
    letter-spacing: -4px;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    position: relative;
    left: 24%;
    top: 22%;
    display: block;
    border-radius: 50%;
    text-indent: -4px;
    text-align: center;
    background-size: cover;
    background-color: $primarycolour;
    color: rgba(255,255,255,0.74)
  }
}
.boxshadow{
  box-shadow: 1px 1px 3px $coolgrey2;
}

.bracket-title{
  font-size: 0.7em;
  color: $primarycolour;
  font-family: $regularweight;
  margin: 7px 20px 5px 0;
  padding: 0 0 0 14px;
  height: 10px;
  border-bottom: 1px solid $borders;
  position: relative;
  span{
    background: $basebg;
    padding: 0 13px;
    &:before, &:after{
      position: absolute;
      left: 0px;
      top: 9px;
      content: '';
      background: $borders;
      width: 1px;
      height: 7px;
      display: block;
    }
    &:after{
    left: auto;
    right: 0;
    }
  }
}
/*
@keyframes highlighter {
  0%, 80%, 100% { 
    background: #fcf8e3;
    opacity: 0.5;
  } 40% { 
    background: #fff;
    opacity: 1;
  }
}*/
