#success-messages-import {
    padding: 10px;
     width: 33%;
     border: 1px solid #cfcfcf;
     border-radius: 10px;
    color: green;
    margin-bottom: 20px;
}

#error-messages-import {
    padding: 10px;
     width: 33%;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    color: red;
    margin-bottom: 20px;
}

#status-messages-import {
    padding: 10px;
    width: 33%;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    margin-bottom: 20px;
}
#success-messages-import h4, #error-messages-import h4, #status-messages-import h4{
  font-family: 'Roboto';
  font-weight: 600;
  font-size: 1.5em;
  border-bottom: 1px solid #c1c1c1;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.status-download, .error-download, .success-download {
    display: inherit;
    font-size: 15px;
    cursor: pointer;
    width: fit-content;
}

/*--------------

----------------*/
.importer-file-upload {
    background-color: #ffffff;
    width: 100%;
    margin: 15px auto;
    /* padding: 20px; */
  }
  
  .importer-file-upload-btn {
    width: 100%;
    margin: 0;
    color: #fff;
    background: #356ab3;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #2a538b;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
  }
  
  .importer-file-upload-btn:hover {
    background: #2a538b;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;

  }
  
  .importer-file-upload-btn:active {
    border: 0;
    transition: all .2s ease;
  }
  
  .importer-file-upload-content {
    display: none;
    text-align: center;
  }
  
  .importer-file-upload-input {
    position: absolute;
    margin: 0;
    
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
  }
  
  .image-upload-wrap {
    /* margin-top: 20px; */
    border: 2px dashed #9e9e9e;
    position: relative;
    margin-bottom: 15px;
  }
  
  .image-dropping,
  .image-upload-wrap:hover {
    background-color: #dddddd;
    border: 2px dashed #ffffff;
    color: #fff;
  }
  
  .image-title-wrap {
    padding: 0 0 15px 0;
    color: #222;
  }
  
  .drag-text {
    text-align: center;
  }
  
  .drag-text h3 {
    font-weight: 100;
    color: #122a3d;
    padding: 60px 0;
    font-size: 18px;
  }
  
  .importer-file-upload-image {
    max-height: 200px;
    max-width: 200px;
    margin: auto;
    padding: 20px;
  }
  
  .remove-image {
    width: 100%;
    margin: 0;
    color: #fff;
    background: #cd4535;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #b02818;
    transition: all .2s ease;
    outline: none;
    font-weight: 700;
 
  }
  
  .remove-image:hover {
    background: #c13b2a;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
  }
  
  .remove-image:active {
    border: 0;
    transition: all .2s ease;
  }

  #output-container{
    display: flex;
    column-gap: 15px;
  }

  .import-progress {
    width: 100%;
    max-width: 400px;
    height: 6px;
    background: #e1e4e8;
    border-radius: 3px;
    overflow: hidden;
  }
  .import-progress .import-progress-bar {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #ffd33d, #ea4aaa 17%, #b34bff 34%, #01feff 51%, #ffd33d 68%, #ea4aaa 85%, #b34bff);
    background-size: 300% 100%;
    -webkit-animation: progress-animation 2s linear infinite;
            animation: progress-animation 2s linear infinite;
  }
  
  @-webkit-keyframes progress-animation {
    0% {
      background-position: 100%;
    }
    100% {
      background-position: 0;
    }
  }
  
  @keyframes progress-animation {
    0% {
      background-position: 100%;
    }
    100% {
      background-position: 0;
    }
  }