/**
 *  purpose: CSS for commerce_xls_import
**/

.product-options {
  margin-right: 75px;
}

.import-buttons {
  margin-top: 30px;
}

#legend-swatches .swatch-container {
  float: left;
  width: 550px;
  margin: 0 10px;
}

.swatch-container .swatch {
  width: 130px;
  padding: 5px;
  margin-right: 15px;
  display: inline-block;
  margin-bottom: 10px;
  line-height: 20px;
}

#parent-swatch .swatch {
  background-color: #8db4e3;
}

#variation-swatch .swatch {
  background-color: #fac090;
}

#both-swatch .swatch {
  background-color: #24abb7;
}

#warning-swatch .swatch {
  background-color: #ffeb9c;
}

#error-swatch .swatch {
  background-color: #ff9999;
}

#success-swatch .swatch {
  background-color: #78faa3;
}

.swatch-container span {
  width: 390px;
  display: inline-block;
  vertical-align: middle;
}
.swatch-container .swatch span {
  display: inline;
  width: 130px;
  vertical-align: top;
}

.product-field h6 {
  margin-top: 0;
  padding: 0 15px 0 0;
  min-width: 250px;
  display: block;
  float: left;
}

.product-field {
  margin-top: 10px;
}
#edit-errors-button {
  clear: both;
}
.product-options .form-submit {
  margin-top: 30px;
  min-width: 300px;
}
.product-options .form-submit,
#edit-errors-button,
#commerce-xls-import-export-products,
#commerce-xls-import-download-template,
.product-options .form-submit:active,
#edit-errors-button:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: none;
  border: none;
  color: #0074bd;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
  text-shadow: none;
  text-align: left;
  float: left;
  padding: 0;
}
#edit-errors-button {
  float: none !important;
}
.product-options .form-submit:hover,
#edit-errors-button:hover,
#commerce-xls-import-export-products:hover,
#commerce-xls-import-download-template:hover {
  text-decoration: underline;
}

div.divider {
  border-bottom: 1px solid #ececec;
  width: auto;
  max-width: 900px;
}

.last-import-message {
  margin-top: 40px;
}

progress#commerce-xls-import-progress {
    /* Reset the default appearance */
    -webkit-appearance: none;
    appearance: none;

    width: 375px;
    height: 20px;
}

progress#commerce-xls-import-progress[value]::-webkit-progress-bar {
    background-color: #eee;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}

progress#commerce-xls-import-progress[value]::-webkit-progress-value {
    background-image:
    -webkit-linear-gradient(
      top,
      rgba(255, 255, 255, .25),
      rgba(0, 0, 0, .25)
    ),
    -webkit-linear-gradient(
      left,
      #09c,
      #52aff7
    );

    border-radius: 2px;
    background-size: 35px 20px, 100% 100%, 100% 100%;
}

progress#commerce-xls-import-progress[value]::-moz-progress-bar {
    background-image:
    -moz-linear-gradient(
      top,
      rgba(255, 255, 255, 0.25),
      rgba(0, 0, 0, 0.25)
    ),
    -moz-linear-gradient(
      left,
      #09c,
      #52aff7
    );

    border-radius: 2px;
    background-size: 35px 20px, 100% 100%, 100% 100%;
}