html, body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    background: #333;
    color: #FFF;
    display: table;
    font-weight: 300;
    font-family: 'Lato';
}

.container {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

.content {
    text-align: center;
    display: inline-block;
}
.icon {
    width: 75%;
    margin: 5px 10px;
    border-radius: 20px;
    opacity: 0.9;
}

.description {
  font-size: 12px;
  color: #aaa;
  padding: 5px;
  width: 80%;
  margin: auto;
}

.link, .link:focus, .link:hover, .link:visited {
  color: #A17FFF;
}

.overlay {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
}

.modal {
  position: fixed;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 300px;
  background-color: #D7D8D9;
  color: #333;
  display: block;
  padding: 10px 0;
  border-radius: 6px;
  z-index: 10;
  -webkit-animation: fadein 0.5s;
  -moz-animation: fadein 0.5s;
  -ms-animation: fadein 0.5s;
  -o-animation: fadein 0.5s;
  animation: fadein 0.5s;
}

.modal .bottom {
  width: 100%;
  border-top: 1px solid #999;
  padding-top: 3px;
}

.modal .left,
.modal .right {
  position: absolute;
  width: 50%;
  font-size: 0.9em;
  color: #333;
  bottom: 0;
  border-top: 1px solid #999;
  padding: 0px 0;
}

.modal .left {
  left: 0;
  border-right: 1px solid #999;
}

.modal .right {
  right: 0;
}

.modal .left button,
.modal .right button {
  width: 100%;
  height: 45px;
  font-size: 18px;
  line-height: 45px;
  border: 0;
  background-color: #ebeced;
}

.display-none {
  display: none;
}