/* Button */
button {
    margin: 20px;
    /* padding: 10px 20px; */
    font-size: 16px;
  }
  a{
    cursor: pointer;
  }
/* Overlay uses flex to center content on big screens */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    z-index: 999;
  
    /* Flex centering for desktop */
    display: flex;
    align-items: flex-end;   /* default for mobile: bottom */
    justify-content: center;
  }
  
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Modal base */
  .modal {
    position: fixed;
    left: 50%;
    bottom: -100%;
    transform: translateX(-50%);
    background-color: #13133a;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 500px;
    transition: bottom 0.7s ease;
    z-index: 1000;
    touch-action: none;
  }
  
  /* Active modal */
  .modal.active {
    bottom: 0;
    background-color: #13133a;;
  }
  
  /* Modal header */
  .modal-header {
    padding: 16px;
    /* cursor: grab; */
    text-align: center;
    font-weight: bold;
    /* border-bottom: 1px solid #ddd; */
    user-select: none;
    color: #fff;
  }
  .uoinwon{
    margin: initial;
    border: 0px;
    /* color: #666666; */
    font-weight: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    text-align: inherit;
    text-transform: inherit;
    background-color: transparent;
    /* padding: 14px 50px; */
    position: relative;
    width: 100%;
    cursor: pointer;
    font-size: 17px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
  .modal-footer{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    height: 100px;
    font-size: 13px;
    color: #ffffff99;
  }
  .modal-body{
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .iunimo{
      /* position: absolute; */
      /* left: 8px; */
  }
.kZWkKQ{
    transition: transform 300ms;
    fill: #ffffff99;
    transform: rotate(-90deg);
}
.onomoop{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 80%;
}
.onomoop span:nth-child(1){
    color: #fff;
    font-size: 22px;
}
.onomoop span:nth-child(2){
    color: #ffffff99;
    font-size: 16px;
}
.unmiomj{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 10%;
}
.onimpmp{
    text-decoration: underline;
    color: #fff;
}
.duyfggj{
    stroke: #ffffff99;
}
  
  /* Desktop/large screens: center vertically */
  @media(min-width: 768px) {
    .overlay {
      align-items: center;   /* vertically center modal */
    }
  
    .modal {
        position: fixed;
        left: 50%;
        top: calc(50% - 225px);
        height: 450px;
        bottom: -100%;
        transform: translateX(-50%);
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        width: 100%;
        max-width: 500px;
        /* transition: bottom 0.4s ease; */
        display: none;
        z-index: 1000;
        touch-action: none;    /* optional: prevent modal from exceeding screen */
    }
  }