.product-status {
  text-transform: capitalize;
}

.status-active {
  color: #50B83C;
}

.status-archived {
  color: #ED6347;
}

.content-container {
  position: relative;
  overflow: hidden;
}

.loading {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
  width: 100%;
  height: 100%;
}
.loading .spinner-container {
  position: absolute;
  width: 60px;
  left: 0;
  right: 0;
  margin: 35% auto 0 auto;
}

.spinner {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  box-sizing: border-box;
  border: 5px solid transparent;
  border-bottom: 5px solid #6774c8;
  transform: translateZ(0);
  -webkit-animation: load 1.1s infinite linear;
  animation: load 1.1s infinite linear;
}

@-webkit-keyframes load {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes load {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
tr.imported {
  background: #E3F2DF !important;
}

#show-icbf-import-form {
  margin-bottom: 20px;
}

#icbf-import-form {
  display: none;
}

.modal {
  display: none;
}

.close-modal {
  display: block;
  margin-bottom: 20px;
}

.modal.modal-show {
  display: block;
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  /* Could be more or less, depending on screen size */
  border-radius: 3px;
  overflow: hidden;
}
