.imp-modal{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1060;
    display: none;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.3);
    align-items: center;
    justify-content: center;
}
.imp-modal-dialog{
    max-width: 600px;
    width: 100%;
    margin: 1.75rem auto;
    position: relative;
    pointer-events: none;
}
.imp-modal-content{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 12px;
    outline: 0;
}
.imp-modal-header{
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}
.imp-modal-title{
    margin: 0;
    line-height: 1.5;
}
.imp-modal-body{
    position: relative;
    flex: 1 1 auto;
    padding: 1rem;
}
.imp-modal-footer{
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}
.btn-close{
    padding: 0;
    margin: 0;
    box-sizing: content-box;
    color: #000;
    border: 0;
    background-color: transparent;
}
.btn-close svg{
  width: 24px;
  height: 24px;
}
.btn-cancel{
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    padding: -0.625rem .75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
}
.btn-done{
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    padding: -0.625rem .75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    margin-left: 10px;
}