/* Set a style for all buttons */
button {
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}

button:hover {
  opacity:1;
}

/* Float cancel and delete buttons and add an equal width */
.cancelbtn, .deletebtn {
  float: center;
  width: 50%;
}

/* Add a color to the cancel button */
.cancelbtn {
  background-color: #f56e28;
  color: #fefefe;
}

/* Add a color to the delete button */
.deletebtn {
  background-color: #f44336;
}

/* Add padding and center-align text to the container */
.containerPop {
  /*padding: 16px; */
  text-align: center;
}

.containerPop img {
  width: 300px;
}

/* The Modal (background) */
.modal {
  display: block; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.75);
  padding-top: 50px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 300px; /* Could be more or less, depending on screen size */
  padding:40px;
  z-index: 11;
}

.modal-content h1 {
    font-size: 24px;
    font-weight: 100;
    line-height: 1.3;
    color: #f56e28;
    text-transform: inherit;
    letter-spacing: inherit;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.modal-content h2 {
  font-size: 24px;
  font-weight: 100;
  line-height: 1.3;
  color: red;
  text-transform: inherit;
  letter-spacing: inherit;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 5px;
}

.modal-content p {
    font-size: 12px;
    font-weight: 300;
    color: #000000; 
    margin-bottom: 10px;
    text-align: justify;
}

/* Style the horizontal ruler */
hr {
  border: 1px solid #f1f1f1;
  margin-bottom: 25px;
}
 
/* The Modal Close Button (x) */
.close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #f1f1f1;
}

.close:hover,
.close:focus {
  color: #f44336;
  cursor: pointer;
}

/* Clear floats */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Change styles for cancel button and delete button on extra small screens */
@media screen and (max-width: 300px) {
  .cancelbtn, .deletebtn {
     width: 100%;
  }
}
