  
.progress_container {
    margin-top: 5px;
    width: 260px;
    border: 2px solid #002f6c;
    height: 30px;
  }
  
  .input_container {
    width: 260px;
  }
  
  input[type="file"] {
    position: relative;
  }
  
  input[type="file"]::file-selector-button {
    width: 136px;
    color: transparent;
  }
  
  /* Faked label styles and icon */
  input[type="file"]::before {
    position: absolute;
    pointer-events: none;
    top: 10px;
    left: 16px;
    height: 20px;
    width: 20px;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230964B0'%3E%3Cpath d='M18 15v3H6v-3H4v3c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2v-3h-2zM7 9l1.41 1.41L11 7.83V16h2V7.83l2.59 2.58L17 9l-5-5-5 5z'/%3E%3C/svg%3E");
  }
  
  input[type="file"]::after {
    position: absolute;
    pointer-events: none;
    top: 11px;
    left: 40px;
    color: #0964b0;
    content: "Ladda upp fil";
  }
  
  /* ------- From Step 1 ------- */
  
  /* file upload button */
  input[type="file"]::file-selector-button {
    border-radius: 4px;
    padding: 0 16px;
    height: 40px;
    cursor: pointer;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.16);
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
    margin-right: 16px;
    transition: background-color 200ms;
  }
  
  /* file upload button hover state */
  input[type="file"]::file-selector-button:hover {
    background-color: #f3f4f6;
  }
  
  /* file upload button active state */
  input[type="file"]::file-selector-button:active {
    background-color: #e5e7eb;
  }
  
  .upload_form {
    margin-bottom: 50px;
  }
  
  button {
    border: 2px solid #002F6C;
    border-radius: 30px;
    background-repeat: no-repeat;
    background-size: 0.375rem 0.875rem;
    background-position: 90% center;
    box-sizing: border-box;
    padding: 1rem 1rem 1rem 1rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.15;
    letter-spacing: 0px;
    color: #092D4B;
    text-decoration: none;
    cursor: pointer;
  }
  
  button:hover {
    text-decoration: underline;
    background: #002F6C;
    color: #e5e5e5;
  }
  
  button:disabled,
  button[disabled] {
    background: #9a9a9b;
    color: #e5e5e5;
    border-color: #9a9a9b;
  }
  
  .cancel {
    border-color: #901313;
    color: #901313;
  }
  
  .cancel:hover {
    border-color: #d74c4c;
    color: #fff;
    background: #d74c4c;
  }
  
  .form {
    background-color: #eeeeee;
    padding-bottom: 1.8em;
    padding-left: 1.8em;
    padding-right: 1.8em;
    padding-top: 1.8em;
  }

  .progress_fill {
    background: #002f6c;
    width: 0;
    height: 26px;
  }
  
.apiKey {
  border: none;
  background: #fff;
  width: 260px;
  height: 40px;
  padding: 5px;
}

.api_key_container {
  margin-bottom: 50px;
}

.editable-select-container {
  position: relative;
}

.editable-select-container option {
    height: 30px;
    line-height: 30px;
}

.editable-select-container .editOption{
    position: absolute;
    width: 260px;
    border: 1px dashed #444;
    margin-top: 5px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 20px;
}
 
.tabs label {
  order: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px;
  margin-right: 0.2rem;
  cursor: pointer;
  font-weight: bold;
  transition: background ease 0.3s;
}
 
.tabs .tab {
  order: 9;
  flex-grow: 1;
  width: 100%;
  height: 100%;
  display: none;
  padding: 1rem;
  padding: 20px;
  border: 1px solid #e1e1e1;
}
 
.tabs input[type="radio"] {
  display: none;
}
 
.tabs input[type="radio"]:checked + label {
  background: #b8d4f9;
  border: 1px solid #77b0b9;
  border-bottom: 0px;
}
 
.tabs input[type="radio"]:checked + label + .tab {
  display: block;
}
 
/*
@media (max-width: 465px) {
  .tabs .tab,
  .tabs label {
   order: initial;
  }
 
  .tabs label {
    width: 100%;
    margin-left: 50px;
  }
}
*/

.error {
  color: #d74c4c;
  font-weight: 600;
}