/* Tile */
.adp-tile {
  float: left;
  width: 32.33333%;
  min-height: 0px !important;
  display: inline-block;
  background-color: rgba(248, 248, 248, 0.75);
  border-radius: 3px;
  box-shadow: 0 0 2px 0 #d2d2d2;
  padding: 10px 15px;
  margin-top: 12px;
}
.adp-tile.two-columns-tile {
  width: 66.16667%;
}
.adp-tile.three-columns-tile {
  width: 100%;
}
.adp-tile:hover {
  background-color: rgba(252, 252, 252, 0.9);
  box-shadow: #d2d2d2 0px 0px 8px 0px;
}
.adp-tile:hover .tasks-line-text {
  background: #F8F8F8;
}
.adp-tile .tile-close {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 20px;
}
.adp-tile .tile-close:hover {
  opacity: .5;
  color: inherit;
  cursor: pointer;
}
.adp-tile .btn-secondary:disabled,
.adp-tile .btn-bordered:disabled {
  color: #ffffff;
  border: 2px solid #959595;
}
.adp-tile .tile-message {
  clear: both;
}
.adp-tile .tile-message .tile-message-icon {
  float: left;
  margin-right: 5px;
}
.adp-tile .tile-message .tile-message-text {
  width: 80%;
  display: block;
  margin-bottom: 0;
  float: left;
}
.adp-tile .btn-container {
  padding: 0 0 10px 0;
}
.tile-content {
  min-height: 100px;
  position: relative;
}
.hidden-tile {
  display: none;
}
.tile-title {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid #d2d2d2;
  padding: 0 0 5px;
}
.adp-hidden-content {
  max-height: 0;
  overflow: hidden;
  padding-bottom: 20px;
  -webkit-transition-property: max-height;
          transition-property: max-height;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  -webkit-transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
          transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
.adp-hidden-content.active {
  max-height: 500px;
}
@media (min-width: 768px) and (max-width: 992px) {
  .adp-tile {
    width: 49%;
  }
}
@media (max-width: 768px) {
  .adp-tile {
    width: 100%;
  }
}
/* Small */
@media (min-width: 768px) {
  .adp-tile,
  .hidden-tile {
    padding: 10px 15px;
  }
}
