/* The Modal (background) */
.modal {
  display: none;
  /* 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 */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content2 {
  margin: 0;
  /* 15% from the top and centered */
  padding: 20px;
  background-color: white;
  width: 50%;
  /* Could be more or less, depending on screen size */
  margin-left: 25%;
}

/* The Close Button */
.close2 {
  color: #aaa;
  float: right;
  margin-right: 10px;
  font-weight: bold;
  margin-top: -150px;
}

.close2:hover,
.close2:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

h2 {
  padding: 0;
  margin: 0;
  font-size: 3rem;
  margin-bottom: 20px;
}

#myBtn {
  border: 1px solid transparent;
  width: 250px;
  background-color: white;
}

/* Include the padding and border in an element's total width and height */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove margins and padding from the list */
.modal-content2 ul {
  margin: 0;
  padding: 0;
}

/* Style the list items */
.modal-content2 ul li {
  cursor: pointer;
  position: relative;
  padding: 12px 8px 12px 40px;
  list-style-type: none;
  background: #0ABFBC;
  font-size: 2rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  /* make the list items unselectable */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
}

/* Set all odd list items to a different color (zebra-stripes) */
.modal-content2 ul li:nth-child(odd) {
  background: #0ef1ed;
}

/* Darker background-color on hover */
.modal-content2 ul li:hover {
  background: #FC354C;
  color: white;
}

/* When clicked on, add a background color and strike out text */
.modal-content2 ul li.checked {
  background: #FC354C;
  color: #fff;
  text-decoration: line-through;
}

/* Add a "checked" mark when clicked on */
.modal-content2 ul li.checked::before {
  content: '';
  position: absolute;
  border-color: #fff;
  border-style: solid;
  border-width: 0 2px 2px 0;
  top: 10px;
  left: 16px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  height: 15px;
  width: 7px;
}

@media screen and (max-width: 1024px) {
  H2 {
    text-align: center;
  }
  .close2 {
    color: #aaa;
    float: right;
    margin-right: 0;
    font-weight: bold;
  }
  .modal-content2 {
    margin: 0;
    /* 15% from the top and centered */
    padding: 10px;
    background-color: white;
    width: 80%;
    /* Could be more or less, depending on screen size */
    margin-left: 10%;
  }
  #myBtn {
    border: 1px solid transparent;
    width: 220px;
    background-color: white;
  }
}
/*# sourceMappingURL=muffins.css.map */