.modal-container {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

.modal-content{
    margin: 0 auto;
    padding: 20px;
    width: 95%;
    max-width: 334px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 20px;
    position: relative;
    top: 28%;
    background-color: var(--white);
    font-size: 14px;
    text-align: center;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.modal-content img{
    width: 40px;
    margin-bottom: 10px;
}

.modal-content button{
    margin: 25px auto 0;
    width: 82px;
    height: 30px;
    font-size: 13px;
    color: var(--white);
    border-radius: 16px;
    background-color: var(--blue);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}


#info-modal{
    width: 85%;
    line-height: 16px;
  }

@media (min-width: 768px) {

.modal-content{
    background-color: var(--white);
    max-width: 699px;
    height: 377px;
    font-size: 22px;
}

.modal-content img{
    width: 80px;
}

.modal-content button{
    margin: 32px auto 0;
    width: 154px;
    height: 50px;
    border-radius: 28px;
    font-size: 22px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    -ms-border-radius: 28px;
    -o-border-radius: 28px;
}

#info-modal{
    width: 60%;
    line-height: 24px;
  }
}