:host {
  margin: 5px;
  /*border-radius: 9px;*/
  font-size: 16px;
  font-weight: bold;

  transition: box-shadow .15s ease;
  position: relative;
  display: block;

  box-shadow: 0 2px 2px rgba(0,0,0,0.15);


  &:hover {
    box-shadow: 0 4px 5px rgba(0,0,0,0.3);
  }
}

:host,
.container {
  border-radius: 8px;
}

.container {
  width: 100%;
  height: 100%;
  padding: 1rem;
  background-color: rgba(244, 244, 244, 1);

  box-sizing: border-box;

  /*fix to stop ripple effect breaking out of button (noticable with rounded corners):*/
  /*fill space outside of button with empty pixels;*/
  -webkit-mask-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC");

  text-align: left;

  display: flex;
  flex-direction: row;

  &:hover {
    opacity: .9;
    cursor: pointer;
  }

  &.disabled {
    // background-color: rgb(214, 214, 214);
    color: #bfbfbf;

    &:hover {
      cursor: not-allowed;
    }
  }
}

.header {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0 .5rem;

  .title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    display: inline-block;
    flex: 1;
  }

  .timestamp {
    font-family: 'Open Sans', sans-serif;
    color: #5d5d5d;
    font-weight: lighter;
  }
}

.strength {
  padding: 3px 0;
}
