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

.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: 40px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  line-height: 1.3em;
  border-radius: 10px;
}
.msg_area p {
  text-align: center !important;
}
@media screen and (min-width: 700px) {
  .msg_area {
    width: 640px;
    margin-left: -320px;
  }
}

.msg_area a {
  color: #7C6A1A;
  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;
  font-family: "belda-normal", sans-serif;
  font-weight: 800;
  border-radius: 5px;
  padding: 10px 20px;
  border: 1px solid #7C6A1A;
  z-index: 9999;
  background: #7C6A1A;
  cursor: pointer;
  box-sizing: border-box;
  transition: 0.3s all ease;
}
.msg_area button:hover {
  background: #fff;
  color: #7C6A1A;
  border: 1px solid #ccc;
  transition: 0.3s all ease;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.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 */