/* Utility */
.hidden {
    display: none;
  }
  .show{
    display: flex;
  }
  
  /* Overlay */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  /* Modal Box */
  .modal {
    background: #FFFFFF;
    width: 390px;
    height: 744px;
    max-height: 95vh;
    border-radius: 16px;
    padding: 15px 24px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .modal h1{
    font-size: 22px;
    width: 234px;
    text-align: center;
  }
  .modal__img{
    width: 219px;
    max-height: 210px;
    position: relative;
  }
  .prize{
    position: absolute;
    top: 29px;
    right: 16px;
  }
  .modal-close {
    width: 24px;
    height: 24px;
    font-size: 22px;
    background: none;
    align-self:end;
    color: black;
    border:1px solid black;
    border-radius: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
.pay{
    width: 343px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:10px;
}
.pay-text{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap:20px;
    align-items: start;
}
.pay-text ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 2px;
    width: 100%;
    gap: 15px;

}
.pay-text li{
    font-family: "Mulish";
    font-weight: 400;
    font-size: 16px;
    padding-left: 3px;
    list-style: none;
    display: flex;
    align-items: center;
}
.bg-green{
    background-color: #34C7591A;
    border-radius: 3px;
    padding: 8px;

}

p.bg-green {
    font-family: "Mulish";
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0px;
    color: #34C759;
}

.pay-text p{
    text-align: left;
}
div.buttons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}
.btn-gray-1{
    width: 112px;
    border-radius: 12px;
    padding-top: 20px;
    padding-right:8px;
    padding-bottom: 20px;
    padding-left: 8px;
    background-color: #9F9D9D;
    border: none;
    font-family: "Mulish";
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: white;

}
.btn-green-1{
    width: 215px;
    height: 56px;
    border-radius: 16px;
    border: none;
    padding-top: 18px;
    padding-right: 24px;
    padding-bottom: 20px;
    padding-left: 24px;
    background-color: #34C759;
    font-family: "Mulish";
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: white;

}
.modal__footer{
  font-family: "Mulish";
font-weight: 400;
font-size: 14px;
line-height: 140%;
letter-spacing: 0px;
text-align: center;
display: flex;
gap: 5px;
align-items: center;
}
.c-gray{
  color: #9F9D9D;
}
.modal-h3{
  font-family: "Mulish";
font-weight: 700;
font-size: 16px;
line-height: 120%;
letter-spacing: 0px;
text-align: center;
display: flex;
justify-content: space-between;
width: 100%;
}
.modal-h3 span{
  font-size: 20px;
}
@media (max-width: 560px){
  .modal{
    width: 99%;
  }
}