/* The Modal (background) */
.modal-container {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1600; /* 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); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }

  .modal-warning-icon-container{
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
    color: #ed8c20;
  }

   /* Modal Header */
  .modal-head h2 {
    /* padding: 2px 16px; */
    /* background-color: #5cb85c; */
    color: #ed8c20;
    text-align: center;
  }

  /* Modal Content */
  .modal-question {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 30%;
    position: relative;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
  }
  
  /* The Close Button */
  .modal-close {
    color: #aaaaaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 1%;
  }
  
  .modal-close:hover,
  .modal-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }
  .modal-question p{
    line-height: 10px;
    text-align: center;
    font-size: 15px;
  }
  .modal-button{
      width: 40%;
      border: 0;
      padding: 10px 5px;
      font-weight: bold;
  }
  .modal-button-container{
    margin-top: 20px;
  }
  .modal-yes-button{
      margin-right: 10%;
      background-color: #00953a;
      color: #ffffff;
  }
  .modal-no-button{
      margin-left: 10%;
      background-color: #EE8D30;
      color: #ffffff;
  }

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
  }
  
  @keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
  }