/*.btn-close{*/
/*  background-color:#fff !important;*/
/*  border-radius: 9999px;*/
/*  box-shadow: 0 0 6px 3px #0f0f0f;*/
/*  padding: 0.5rem;*/
/*  transform: translateY(40px);*/
/*  z-index: 1000;*/
/*}*/

/* Styles for the modal/popup */
._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: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
  }

  ._modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    height: 80vh; /* Take 80% of the viewport height */
    box-sizing: border-box; /* Include padding and border in width/height */
  }

  ._close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }

  ._close:hover,
  ._close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  body._modal-open {
    overflow: hidden; /* Disable scrolling of the body when modal is open */
}