#myProgress {
    width: 100%;
}
#uploaded_files {
    margin-top: 25px;
    display: flex;
}
label {
    font-weight: bold;
}
.file-icon i {
    font-size: 60px;
    color: rgb(0, 0, 0);
}
.file-details {
    margin-top: -2px;
    padding-left: 10px;
    width: 100%;
}
.file-details p {
    margin-bottom: -7px;
}
small {
    margin-top: 0;
    color: black;
}

/* select a file input */
/*
.select-file-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}
input[type="file"] {
    position: absolute;
    z-index: -1;
    top: 10px;
    left: 79px;
    font-size: 11px;
    color: #b8b8b8;
}
.select-file-button-wrap {
    position: relative;
}
.select-file-button {
    display: inline-block;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #8ebf42;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}*/
/* end of select a file input */


input[type=file]::file-selector-button {
  margin-right: 20px;
  border: none;
  /*background: #084cdf;*/
  padding: 10px 20px;
  /*border-radius: 10px;*/
  color: #fff;
  left:0px;
  cursor: pointer;
  transition: background .2s ease-in-out;
  border-color: var(--accent-color) !important;
  background-color: var(--accent-color) !important;
  height: 56px;
  font-weight: 600;
  font-size: 1.25rem;
  border-radius: 0.875rem;
}

input[type=file]::file-selector-button:hover {
  /*background: #0d45a5;*/
    border-color: var(--accent-color-dark) !important;
    background-color: var(--accent-color-dark) !important;
}


/*
   For the loading gif as css
   Source: https://cssloaders.github.io/
*/
.loader {
  width: 48px;
  height: 48px;
  border: 5px solid;
  border-color: #FF3D00 transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/*
For the copy to clipboard tooltip
Source: https://www.w3schools.com/howto/howto_js_copy_clipboard.asp
*/

.tooltip_info {
  position: relative;
  display: inline-block;
}

.tooltip_info .tooltiptext_info {
  visibility: hidden;
  width: 210px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip_info .tooltiptext_info::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip_info:hover .tooltiptext_info {
  visibility: visible;
  opacity: 1;
}



.tooltip2 {
  position: relative;
  display: inline-block;
}

.tooltip2 .tooltiptext2 {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip2 .tooltiptext2::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip2:hover .tooltiptext2 {
  visibility: visible;
  opacity: 1;
}


/*
Source: https://stackoverflow.com/questions/1895476/how-do-i-style-a-select-dropdown-with-only-css
Select button styling
*/

/*
:root {
  --radius: 2px;
  --baseFg: dimgray;
  --baseBg: white;
  --accentFg: #006fc2;
  --accentBg: #bae1ff;
}

.theme-pink {
  --radius: 2em;
  --baseFg: #c70062;
  --baseBg: #ffe3f1;
  --accentFg: #c70062;
  --accentBg: #ffaad4;
}

.theme-red {
  --radius: 2em;
  --baseFg: dimgray;
  --baseBg: white;
  --accentFg: white;
  --accentBg: var(--accent-color) !important;
}

.theme-construction {
  --radius: 0;
  --baseFg: white;
  --baseBg: black;
  --accentFg: black;
  --accentBg: orange;
}

select {
  font: 400 12px/1.3 sans-serif;
  -webkit-appearance: none;
  appearance: none;
  color: var(--baseFg);
  border: 1px solid var(--baseFg);
  line-height: 1;
  outline: 0;
  padding: 0.65em 2.5em 0.55em 0.75em;
  border-radius: var(--radius);
  background-color: var(--baseBg);
  background-image: linear-gradient(var(--baseFg), var(--baseFg)),
    linear-gradient(-135deg, transparent 50%, var(--accentBg) 50%),
    linear-gradient(-225deg, transparent 50%, var(--accentBg) 50%),
    linear-gradient(var(--accentBg) 42%, var(--accentFg) 42%);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 1px 100%, 20px 22px, 20px 22px, 20px 100%;
  background-position: right 20px center, right bottom, right bottom, right bottom;
}

select:hover {
  background-image: linear-gradient(var(--accentFg), var(--accentFg)),
    linear-gradient(-135deg, transparent 50%, var(--accentFg) 50%),
    linear-gradient(-225deg, transparent 50%, var(--accentFg) 50%),
    linear-gradient(var(--accentFg) 42%, var(--accentBg) 42%);
}

select:active {
  background-image: linear-gradient(var(--accentFg), var(--accentFg)),
    linear-gradient(-135deg, transparent 50%, var(--accentFg) 50%),
    linear-gradient(-225deg, transparent 50%, var(--accentFg) 50%),
    linear-gradient(var(--accentFg) 42%, var(--accentBg) 42%);
  color: var(--accentBg);
  border-color: var(--accentFg);
  background-color: var(--accentFg);
}

*/

/* radio buttons styling */
/*label {
  display: inline-block;
  color: #7d7d7d;
}*/

/*
.floatBlock {
  margin: 0 1.81em 0 0;

}

.labelish {
	color:#7d7d7d;
	margin: 0;
}

.captionsTypeOptions {
	border: 1px solid;
	display: block;
	flex-direction: row;
	justify-content: flex-start;
	break-before: always;
	margin: 0 0 0em 0;
vertical-align: top;
    width: 100%;
}

.accentRadioButton {
    accent-color: var(--accent-color);
    display: inline-block;
    vertical-align: top;
}



input[type="radio"] {
    height: 2.7rem;
    width: 2.7rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

*/


.radio-label {
   display: inline-block;
    vertical-align: top;
    margin-right: 3%;
}

.radio-input {
   display: inline-block;
   vertical-align: top;
   accent-color: var(--accent-color);

    height: 2.7rem;
    width: 2.7rem;
    margin-right: 0.5rem;
}

.radio-div {
    margin: auto;
}

fieldset {
    text-align: center;
}



#purchaseOrder {
	margin: 0 0 2em 0;
}
