/*https://codepen.io/hmps/pen/sCnbm*/
.Note {
  display: table;
  position: absolute;
  top:40px;
  right:10px;
  max-width: 400px;
  background-color: #0074D9;
  color: #fff;
  opacity:0.8;
  transition: all 0.2s ease;
}
.Note:hover{
	opacity:1;
}
.Note.is-hidden {
  opacity: 0;
  height: 0;
  font-size: 0;
  padding: 0;
  margin: 0 auto;
  display: block;
}

.Note--orange {
  background-color: #F39C12;
}

.Note--red {
  background-color: #FF4136;
}

.Note--green {
  background-color: #2ECC40;
}

.Note-icon {
  display: table-cell;
  vertical-align: middle;
  width: 60px;
  padding: 30px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.25);
}
.Note-icon > i {
  width: 20px;
  font-size: 20px;
}

.Note-body {
  display: table-cell;
  vertical-align: middle;
  padding: 30px 20px 30px 10px;
}
.Note-body > p {
  line-height: 1.2;
  margin-top: 6px;
}

.Note-button {
  position: relative;
  margin: 15px 5px -10px;
  background-color: rgba(0, 0, 0, 0.25);
  box-shadow: 0 3px rgba(0, 0, 0, 0.4);
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  font-family: 'Source Sans Pro';
  color: #fff;
  outline: none;
  cursor: pointer;
}
.Note-button:hover {
  background: rgba(0, 0, 0, 0.3);
}
.Note-button:active {
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0px rgba(0, 0, 0, 0.4);
  top: 3px;
}

.Note-close {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  border: none;
  outline: none;
  font-size: 20px;
  right: 5px;
  top: 5px;
  opacity: 0;
  cursor: pointer;
}
.Note:hover .Note-close {
  opacity: 1;
}
.Note-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.u-italic {
  font-style: italic;
}