/* Black overlay */
.mc-js-disabled-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Change opacity value (0 to 1) for desired darkness */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 200; }

/* Box in the middle */
.boxes {
  margin: auto;
  margin-top: 15%;
  width: 50%;
  height: 150px;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }

/* Add any additional CSS styling here */
/* Center text in the box */
.boxes p {
  margin: 0; }

.javascript-overlay-visible {
  display: block !important; }

#javascriptDisableOverlay {
  display: none; }
