/* === Content === */

h3 > span {
  margin-left: 10px;
}

/* == Paginator == */

.pagination {
  font-size: 0.9em;
}
.pagination ul {
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: sub;
}
.page-item {
  cursor: pointer;
}

.page-link {
  padding: 0.1rem 0.5rem;
}

.page-item.disabled .page-link {
  color: silver;
  text-decoration: none;
}

.pagination-status {
  font-size: 0.9em;
  vertical-align: middle;
  margin-left: 10px;
}

/* === Language Selector === */

.language-selector {
  padding-left: 10px;
  padding-right: 10px;
}

/* === Shop Selector === */

.shop-selector {
  padding-left: 10px;
  padding-right: 10px;
}

/* === Currency Selector === */

.currency-selector {
  padding-left: 10px;
  padding-right: 10px;
}

/* === Multi Select === */

.multi-select-buttons-separator {
  width: 100px;
  display: inline-block;
}

@media (max-width: 575px) {
  .multi-select-buttons-separator {
    width: 30px;
  }
}

/* === Card === */

.card-transparent::after {
  content: '';
  display: table;
  clear: both;
  padding-bottom: 10px;
}

/* === Modal === */

.modal-content.warning .modal-header {
  border-color: #d9534f;
}
.modal-content.warning .btn.btn-primary {
  background-color: #d9534f;
  border-color: #d9534f;
}
/*
background-color: #f0ad4e;
border-color: #f0ad4e;
*/

/* === OldGrid === */

.item-check {
  cursor: pointer;
}

@media (min-width: 576px) and (max-width: 767px) {
  .items-list-page .item-list .item-col.item-col-cell {
    padding-top: 40px;
    position: relative;
  }

  .items-list-page .item-list .item-col.item-col-cell {
    padding-right: 10px;
    text-align: right;
    white-space: nowrap;
    -ms-flex-preferred-size: 100px;
    flex-basis: 100px;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 3;
    -ms-flex-positive: 3;
    flex-grow: 3;
  }
}

@media (max-width: 575px) {
  .items-list-page .item-list .item .item-col.item-col-cell {
    text-align: left;
  }
}

@media (max-width: 575px) {
  .items-list-page .item-list .item .item-col.item-col-actions-dropdown {
    border: none;
    padding-bottom: 0;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .item-list .item-col.item-col-actions-dropdown {
    -webkit-box-ordinal-group: -2;
    -ms-flex-order: 0;
    order: 0;
    -ms-flex-preferred-size: 40px !important;
    flex-basis: 40px !important;
    padding-right: 10px;
  }
}

/* === Dropdown === */

@media (max-width: 767px) {
  .items-list-page .title-block .action {
    display: inline;
  }
}

.item-list .item-actions-dropdown.active .item-actions-block {
  max-width: inherit;
}

.item-actions-dropdown:focus {
  outline: none;
}

.icon-dropdown .dropdown-menu {
  float: right;
  left: auto;
  right: 0;
  min-width: 8rem;
}

/* === Navigation === */

.nav-label {
  padding: 0.3em 0.5em;
}

.nav-pills .nav-link {
  display: block;
  padding: 0.3em 0.8em;
  border-radius: 1rem;
}

.nav-link {
  cursor: pointer;
}

/* === Preparing === */

.preparing {
  opacity: 0.7 !important;
  pointer-events: none !important;
}

/* === Fetching === */

.fetching {
  opacity: 0.4 !important;
  pointer-events: none !important;
}

/* === Progress2 loader === */

.loader-60devs {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  z-index: 10000;
  opacity: 1;
  transition: opacity 250ms 250ms;
}

.loader-60devs .loader-60devs-progress {
  height: 2px;
  width: 100%;
  background-color: #039be5;
  transition-property: transform, opacity;
  transition-duration: 12s;
  transition-timing-function: cubic-bezier(0.04, 0.9, 0.11, 0.9);
  transform: translateX(-100%);
}

.loader-60devs[data-state='hidden'] {
  display: none;
  transition: none;
}

.loader-60devs[data-state='hidden'] .loader-60devs-progress {
  transition: none;
}

.loader-60devs[data-state='running']::before {
  content: '';
  position: fixed;
  z-index: 99999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.loader-60devs[data-state='running'] .loader-60devs-progress {
  transform: translateX(0);
}

.loader-60devs[data-state='finishing'] {
  opacity: 0;
}

.loader-60devs[data-state='finishing'] .loader-60devs-progress {
  transform: scaleX(100) translateX(0);
}

/* === Form === */

.FormInput.-hasError .form-control.underlined {
  box-shadow: none;
  border-color: #ff4444;
}

.form-error {
  color: #ff4444;
  font-size: 13px;
}

.FormInput .checkbox-wrapper {
  cursor: pointer;
}

.FormInput .checkbox-wrapper.disabled {
  cursor: default;
}

.form-inline {
  margin-bottom: 10px;
}

.form-inline .form-group {
  margin-bottom: 5px;
}

.form-inline .FormInput {
  display: inline;
  margin-left: 5px;
  margin-right: 10px;
}

/* === Index page === */
.login-index-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}

.login-header-message {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}

@media (max-width: 767px) {
  .login-index-container {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    -webkit-transform: inherit;
    transform: inherit;
    margin: 0;
    margin-bottom: 10px;
  }
}

/* === Unauthorized Page === */
.unauthorized-container {
  color: #fff;
}

.unauthorized-container a {
  color: #fff;
}

/* === FileUploader === */
.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + label {
  font-size: 1.1rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  padding: 0.625rem 1.25rem;
  margin: 0rem;
}

.inputfile + label {
  color: #85ce36;
}

.inputfile + label {
  border: 1px solid #85ce36;
  background-color: #f1e5e6;
  padding: 0;
}

.inputfile:focus + label,
.inputfile.has-focus + label,
.inputfile + label:hover {
  border-color: #66a027;
}

.inputfile + label span,
.inputfile + label strong {
  padding: 0.325rem 0.825rem;
}

.inputfile + label span {
  width: 15vw;
  min-width: 180px;
  max-width: 300px;
  min-height: 2em;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: top;
}

.inputfile + label strong {
  height: 100%;
  color: #f1e5e6;
  background-color: #85ce36;
  display: inline-block;
}

.inputfile:focus + label strong,
.inputfile.has-focus + label strong,
.inputfile + label:hover strong {
  background-color: #6ba829;
}

.fileuploader-ele {
  display: inline-block !important;
  vertical-align: middle;
}
