/* The Modal (background) */
.modal:hover, .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2001; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0) !important; /* Fallback color */
    background-color: rgba(0,0,0,0.4) !important; /* Black w/ opacity */
    border: 1px solid #888 !important;
    text-align: left;
}

.modal.m600 > div {
    max-width: 600px;
}

.modal h2, .modal p, .modal span, .modal strong {
    color: #000000 !important;
}

/* Modal Content */
.modal .modal-content, .modal .modal-footer {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  width: 80%;
}

/* The Close Button */
.modal .close {
  color: #aaaaaa !important;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal:hover .close:hover,
.modal:hover .close:focus,
.modal .close:hover,
.modal .close:focus {
  color: #000 !important;
  text-decoration: none;
  cursor: pointer;
}

.modal button {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1em;
    border: 0;
    border-radius: 4px;
    background-image: none;
    padding: 10px 15px;
    cursor: pointer;
    margin-right: 10px;
}

.modal button:hover {
    opacity: 0.8;
}

.modal:hover button.cancel, .modal button.cancel {
    color: #fff !important;
    background-color: #595156 !important;
}

.modal:hover button.continue, .modal button.continue {
    color: #fff !important;
    background-color: #ff6b80 !important;
}