#backgroundOverlay{
    display: none;
    width:100vw !important;
    height: 100vh!important;
    opacity: .7!important;
    background-color:rgb(42, 42, 42)!important;
    z-index: 10!important;
    position: absolute !important;
    margin:0px;
}

.modal {
    display: none;
    position: fixed;
    width: 60%;
    height: 85%;
    overflow-y: auto;
    background-color: white;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border: 1px solid rgb(222, 221, 221);
    padding: 20px;
    z-index:11;
}

.modal-header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.modal-header .close{
    height: 30px;
    width: 30px;
    float:right !important;
}

.modal-header:last-child{
    margin-left: auto;
}

#transformImageUsingAi {
    width: 200px;
    height: 50px;
}

.modal button {
    cursor: pointer;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  #transformationLoading{
 
    margin: 10px;
  }