/* ----------------------------------------------------------- *
 |
 | Browser update styles
 |
 |  Author : David Hofer [david@dna-studios.ch]
 |
 * ----------------------------------------------------------- */

#browser-update {
  background: #000000;
  display: none;
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 20000;
}

#browser-update-inner {
  box-sizing: border-box;
  color: #fffefe;
  display: inline-block;
  max-width: 100%;
  padding: 40px 20px 15px 20px;
  width: 750px;
}

#browser-update.is-visible {
  display: block;
}

#browser-update-close {
  font-size: 1rem;
  color: white;
  font-weight: bold;
  padding: 0;
  border: 2px solid #0072ce;
  border-radius: 3px;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 10px;
  top: 5px;
}

#browser-update-close:active,
#browser-update-close:focus,
#browser-update-close:hover {
  background: #0072ce;
  cursor: pointer;
}

#browser-update-action {
  padding-top: .5rem;
  text-align: center;
}

#browser-update a {
  border: 2px solid #0072ce;
  border-radius: 3px;
  font-weight: bold;
  display: inline-block;
  margin: 5px;
  padding: 8px 15px;
  color: #fffefe;
  text-decoration: none;
}

#browser-update a:focus,
#browser-update a:active,
#browser-update a:hover {
  color: #fffefe;
  background: #0072ce;
  text-decoration: none;
}
