body .modal{
    display: none;
    position: fixed;
    width: 50%;
    height: 385px;
    top: 10%;
    left: 30%;
    background-color: #FFDE02;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
    border-radius: 13px;
    color: white;
    box-sizing: border-box;
    overflow: hidden;
}

.modal-dialog.modal-dialog-centered{
  width: 100%;
  background-color: #FFDE02;
  flex: 1;
}

body .modal .modal-content{
  background-color: #FFDE02;
}

body .modal .modal-header {
  padding: 15px;
}

body .modal .modal-body{
  padding: 15px 10px;
  padding-top: 0;
}

body .modal-title.w-100.text-center{
  font-size: 28px;
  line-height: 28px;
  margin: 0;
}

body .modal-footer.justify-content-center.border-top-0{
  margin-bottom: 20px;
}

body .modal-footer.justify-content-center.border-top-0 button span{
    color: black;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    line-height: 43px;
    font-size: 17px;
}


.modal-footer.justify-content-center.border-top-0{
  margin-left: 10px;
  margin-right: 10px;
}

.btn{
    background-color: var(--white);
    color: var(--black-main);
    cursor: pointer;
    width: 100%; 
    background: #fff; 
    -webkit-transition: .3s ease; 
    transition: .3s ease; 
    margin-top: 2px;
    padding: 5px 10px;
    z-index: 9999;
}



.modal h5{

}

.modal-body input{
    border: 1px solid #393939;
    background: #F6F6F6;
    font-size: 18px;
    font-weight: 400;
    width: 100%;
    opacity: 100;
    color: black;
    margin-bottom: 2%;
    padding: 15px;
}

.progress-container {
  width: 100%;
  height: 20px;
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
}

#doneModal h5{
    font-size: 24rem;
    line-height: 30rem;
}

.status-modal__close{
    position: absolute;
    top: 25px;
    right: 4%;   
    cursor: pointer;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.status-modal__title{
  color: white;
  font-size: 54px;
  line-height: normal;
}

#doneModal{
  height: 380px;
  text-align: center;
  padding-top: 10%;
}

@media only screen and (max-width: 770px) {
  body .modal{
    width: 100%;
    left: 0;
  }
}

@media only screen and (max-width: 670px) {
  .modal h5{
    font-size: 15px;
    line-height: 18px;
  }
  .modal-body input{
    margin-bottom: 8px;
  }
  .btn{
    font-size: 16px;
  }
  .modal{
    width: 100%;
    left: 0;
  }

}

@media only screen and (max-width: 370px) {
  .btn{
    font-size: 12px;
  }
}

.openmodal-pointer{
    cursor: pointer;
}