/***   Profile   ***/


.container {
  overflow: hidden;
}

.filterDiv {
  float: left;
  background-color: #000;
  color: #fff;
  width: 100px;
  line-height: 100px;
  text-align: center;
  margin: 2px;
  display: none; /* Hidden by default */
}

.container-filter li {
  display: inline-block;
}

.container-filter li a {
  font-size: 11px;
  padding: 0px 15px;
  margin: 5px 3px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  line-height: 34px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.container-filter li a.active, .container-filter li a:hover {
  color: #e3872d !important;
  border-color: #e3872d !important;
}


/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
 .btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color:#eff1f4;
  color: #161c2d;
  cursor: pointer;
}

/* Add a light grey background on mouse-over */
.btn:hover {
  background-color: #e3872d;
  color: #f1f1f1 ;
}

/* Add a dark background to the active button */
.btn.active {
  background-color: #666;
  color: white;
}

      /* Gallery */
.item-box {
  margin-top: .5rem !important;
  margin-bottom: 0.5rem;
  margin-left: -0.5rem;
  margin-right: -.5rem;
}
.item-box .item-container {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.item-box .item-mask {
  position: absolute;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: none repeat scroll 0 0 #e9a15a;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.item-box .item-mask .tag {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #ffffff;
}

.item-box .item-mask .item-caption {
  position: absolute;
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  left: 0px;
  right: 0px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}

.item-box:hover .item-mask {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.item-box:hover .item-mask .item-caption {
  opacity: 1;
}

.item-box:hover .item-container {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*
.spacing {
  padding-left: 3px;
  padding-right: 3px;
}
*/