/* Message Overlay for Cookies */
.msgoverlay {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9997;
  display: none;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
}

.msg_area {
  width: 90%;
  position: absolute;
  top: 30%;
  left: 50%;
  margin-left: -45%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 9998;
  color: #555;
  font-size: 1.2em;
  font-weight: 500;
  padding: 20px 40px;
  text-align: center;
  font-family: proxima-nova, arial;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  line-height: 1.3em;
}
@media screen and (min-width: 700px) {
  .msg_area {
    width: 600px;
    margin-left: -300px;
  }
}

.msg_area a {
  color: #6b4323;
  text-decoration: underline;
}

.msg_area a:hover {
  color: #666;
}

.msg_area button {
  color: #fff;
  display: block;
  margin: 20px auto 14px auto;
  font-size: 1.2em;
  border-radius: 5px;
  padding: 10px 20px;
  border: 3px solid #6b4323;
  z-index: 9999;
  background: linear-gradient(#ffef00, #f5a600);
  cursor: pointer;
  box-sizing: border-box;
  font-family: proxima-nova, arial;
  font-weight: bold;
}

.jswarning {
  width: 100%;
  background: #ff0000;
  color: #fff;
  font-size: 0.9em;
  padding: 20px;
  text-align: center;
  position: fixed;
  z-index: 9999;
}/*# sourceMappingURL=warning.css.map */