 /* The Modal (background) */
 .modal-base {
     opacity: 1.0;
     /* Hidden by default */
     position: fixed;
     /* Stay in place */
     z-index: 1;
     /* Sit on top */
     left: 0;
     top: 0;
     width: 100%;
     /* Full width */
     height: 100%;
     /* Full height */
     background-color: rgba(0, 0, 0, 0.4);
     /* Black w/ opacity */
 }

 /* Modal Content/Box */
 .modal-content {
     z-index: 1;
     text-align: center;
     background-color: #F3EDD1;
     border-color: #eadbbc;
     color: #A6750C;
     text-align: left;
     width: 20%;
     margin: 15% auto;
     border-radius: 3px;

 }

 .flash.warning.header {
     color: #F3EDD1;
     background-color: #e09c07;
     border-color: #e09c07;

 }

 /* The Close Button */
 .close {
     color: #aaa;
     float: right;
     font-size: 20px;
     font-weight: bold;
 }

 .close:hover,
 .close:focus {
     color: black;
     text-decoration: none;
     cursor: pointer;
 }