.inst-download-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.inst_dos_step1 {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}
.inst_dos_step1 .form-group {
  margin-bottom: 20px;
}
.inst_dos_step1 .form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  color: #333;
}
.inst_dos_step1 .form-buttons {
  text-align: right;
}
.inst_dos_step1 .form-buttons .submit-btn {
  padding: 10px 20px;
  border: none;
  background-color: #333;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.inst_dos_step1 .form-buttons .submit-btn:hover {
  background-color: #444;
}

.dos_checkout .dos_date input[type=date] {
  width: 100%;
  padding: 0.9rem 1.1rem;
  box-sizing: border-box;
}

.dos-files-wrapper {
  display: flex;
  flex-direction: column;
}
.dos-files-wrapper.has-files .ins-remove-files {
  display: block;
}
.dos-files-wrapper .ins-remove-files {
  display: none;
}
.dos-files-wrapper .buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
}
.dos-files-wrapper:after {
  content: "";
  display: block;
  clear: both;
}
.dos-files-wrapper input[type=file] {
  display: none;
}
.dos-files-wrapper .uploaded-files {
  margin: 0;
  padding: 0.625rem 0;
  list-style-type: none;
}
.dos-files-wrapper .uploaded-files:empty {
  display: none;
}
.dos-files-wrapper .uploaded-files li {
  margin: 0;
  padding: 0;
}
.dos-files-wrapper .hidden {
  display: none;
}

.dos-li-file-element {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px !important;
  border-bottom: 1px solid var(--d-primary-color, #0381A2);
  color: #000;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75em;
}
.dos-li-file-element.invalid {
  border-bottom-color: #D11D1D;
}

.dos-li-file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 2rem;
  max-width: 430px;
}

.ins-remove-file {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  gap: 8px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  color: var(--d-primary-color, #0381A2);
  text-align: center;
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 0.88em;
}

.c-notice-banner {
  align-items: center;
  border-radius: 0.25rem;
  border: 1px solid #D11D1D;
  background: #FFECEC;
  padding: 16px;
  color: black;
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-top: 10px;
}
.c-notice-banner:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 8px;
  background-image: url("../images/icons/icon-warning.svg");
}
.c-notice-banner__content {
  flex: 1;
}
