/**
 * @file
 * Visual styles for Confea Theme's links views.
 */
.view-links-container .view-header {
  margin-bottom: 30px;
}
.view-links {
  background-color: #ccc;
  border-radius: 25px;
  height: 100px;
  margin-bottom: 30px;
  padding: 10px 15px;
}
.view-links {
  -webkit-transition: background-color .3s ease;
  -moz-transition: background-color .3s ease;
  -ms-transition: background-color .3s ease;
  -o-transition: background-color .3s ease;
  transition: background-color .3s ease;
}
.view-links:hover {
  -webkit-transition: background-color .3s ease;
  -moz-transition: background-color .3s ease;
  -ms-transition: background-color .3s ease;
  -o-transition: background-color .3s ease;
  transition: background-color .3s ease;
}
.view-links .wrapper {
  position: relative;
  height: 100%;
}
.view-links .icon {
  float: left;
}
.view-links .icon img {
  height: 80px;
  width: auto;
}
.view-links .title {
  font-size: 1.71rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  white-space: nowrap;
}
.view-links a {
  transition: none;
}
.view-links .title a:hover {
  text-decoration: none;
}