@charset "UTF-8";
/* Animations Mixins */
/* On Scroll Animations For Desktop*/
@media (min-width: 990px) {
  .anim-block .elem {
    transition: all 1s;
    visibility: hidden;
    opacity: 0;
  }
  .anim-block .elem.done {
    visibility: visible;
    opacity: 1;
  }
  .anim-block .elem.top {
    transform: translateY(150px);
  }
  .anim-block .elem.top.done {
    transform: translateY(0);
  }
  .anim-block .elem.left {
    transform: translateX(-150px);
  }
  .anim-block .elem.left.done {
    transform: translateY(0);
  }
  .anim-block .elem.right {
    transform: translateX(150px);
  }
  .anim-block .elem.right.done {
    transform: translateY(0);
  }
  .anim-block .elem.scale {
    transform: scale(0.8);
  }
  .anim-block .elem.scale.done {
    transform: scale(1);
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes scroll_down {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes scroll_down {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0px);
  }
}
@-webkit-keyframes up_down {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* Spinner Animation */
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
.default-dates {
  width: 100%;
}
@media (min-width: 576px) {
  .default-dates {
    width: auto;
    display: inline-block;
    min-width: 285px;
  }
}
.default-dates .dropdown-toggle {
  width: 100%;
  text-align: left;
}
.default-dates .dropdown-menu {
  width: 100%;
  z-index: 99;
}
@media (min-width: 576px) {
  .default-dates .dropdown-menu {
    min-width: 450px;
  }
}
.default-dates .ui-datepicker {
  width: 100% !important;
  box-shadow: none;
  border: none !important;
  padding: 0 5px !important;
}
.default-dates .ui-datepicker thead th {
  font-weight: normal;
  color: #737d85;
}
.default-dates .ui-datepicker .ui-datepicker-unselectable, .default-dates .ui-datepicker .ui-state-disabled {
  opacity: 0.6;
}

.cell-check-all {
  z-index: 1;
}
.cell-check-all .form-check-input {
  position: relative;
  z-index: 1;
}
.cell-check-all .checkbox-down {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 45px;
  height: 28px;
  border: 1px solid #dedfe0;
  border-radius: 0.3rem;
}
.cell-check-all .checkbox-down:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  margin-top: -2.5px;
  border-top: 0.35em solid #5da8ef;
  border-right: 0.35em solid transparent;
  border-bottom: 0;
  border-left: 0.35em solid transparent;
}

.main-actions {
  position: absolute;
  top: -5px;
  left: -5px;
  background-color: #fff;
  border: 1px solid #dedfe0;
  border-radius: 0.3rem;
  display: flex;
  white-space: nowrap;
  align-items: center;
  display: none;
  font-size: 12px;
  height: 30px;
}
.main-actions .dropdown-toggle {
  padding: 4px 1.6rem 4px 10px;
  border-left: 1px solid #dedfe0;
  font-weight: normal;
}
.main-actions .action-link {
  padding: 0 10px 0 30px;
  display: inline-block;
  font-weight: normal;
}

.orders-wrapper {
  display: inline-block;
  max-width: 100%;
}
@media (min-width: 1200px) {
  .orders-wrapper {
    min-width: 1320px;
  }
}

.orders-form.loading .orders-list-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/chart-preloader.gif");
  background-size: 24px;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.5);
  background-repeat: no-repeat;
  z-index: 2;
}
.orders-form .orders-stats .title {
  color: #bababa;
}
.orders-form .orders-stats .number {
  font-weight: 500;
  white-space: nowrap;
}

.orders-list-table {
  position: relative;
  width: 100%;
}
.orders-list-table .table-head {
  font-size: 11px;
  color: #bababa;
  font-weight: bold;
}
@media (min-width: 1200px) {
  .orders-list-table .table-head {
    position: -webkit-sticky;
    position: sticky;
    top: 58px;
    z-index: 1;
  }
  .orders-list-table .table-head tr {
    background-color: #fff;
    box-shadow: inset 0 -1px 0 #dedfe0;
  }
}
.orders-list-table .table-head th {
  padding: 10px !important;
  border-color: transparent !important;
  position: relative;
}
.orders-list-table .table-head th:after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 0;
  height: 100%;
  border-right: 1px solid #dedfe0;
}
.orders-list-table .table-head th.table-cell-check-all {
  border-right: 0 !important;
  padding: 10px 0 10px 10px !important;
}
.orders-list-table .table-head th.table-cell-check-all:after {
  display: none;
}
.orders-list-table .table-head th .form-check-input {
  width: 20px;
  height: 20px;
}
.orders-list-table .table-head th[data-cell=paymentStatus] {
  text-align: center;
}
.orders-list-table .table-head th[data-cell=total] {
  text-align: right;
}
.orders-list-table .table-head th.is-sortable {
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
}
.orders-list-table .table-head th.is-sortable .th-name {
  position: relative;
}
.orders-list-table .table-head th.is-sortable .th-name:after {
  content: "";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: -2px;
  left: 100%;
  margin-left: 5px;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
}
@media (min-width: 990px) {
  .orders-list-table .table-head th.is-sortable:hover {
    background-color: #e8f7fd;
  }
}
.orders-list-table .table-head th.sorted-desc .th-name:after {
  content: "\F0DD";
}
.orders-list-table .table-head th.sorted-asc .th-name:after {
  content: "\F0DE";
  top: 4px;
}
.orders-list-table.bulk-ready th {
  border-right: 0 !important;
  padding-right: 1px;
}
.orders-list-table.bulk-ready th:after {
  display: none;
}
.orders-list-table.bulk-ready .th-name {
  opacity: 0;
}
.orders-list-table.bulk-ready .main-actions {
  display: flex;
}
.orders-list-table.bulk-ready .checkbox-down {
  display: none;
}
.orders-list-table .table-row:hover {
  z-index: 1;
}
.orders-list-table .table-row:nth-child(even) {
  background-color: #f8fcff;
}
.orders-list-table .table-row.selected {
  background-color: #b9e7f9 !important;
}
.orders-list-table .table-row.selected td {
  border-bottom-color: #fff;
  border-right-color: #ccc;
}
.orders-list-table .table-row.first .products-list {
  bottom: auto;
  top: 100%;
  margin: -10px 0 0;
}
.orders-list-table td {
  padding: 15px 10px !important;
}
.orders-list-table td.list-checkbox {
  width: 30px;
}
.orders-list-table td .form-check-input {
  width: 20px;
  height: 20px;
}
.orders-list-table td.list-checkbox {
  border-right: 0;
  padding: 10px 0 10px 10px !important;
}
.orders-list-table td.paymentStatus {
  text-align: center;
}
.orders-list-table td.orderStatus .order-status {
  display: flex;
  align-items: center;
}
.orders-list-table td.orderStatus .status-dot {
  font-size: 8px;
  margin-right: 3px;
  margin-top: -2px;
}
.orders-list-table td.city .td-value {
  max-width: 110px;
}
.orders-list-table td.customerName .td-value {
  max-width: 110px;
}
.orders-list-table td.noteByAdmin .td-value {
  max-width: 230px;
  font-style: italic;
  color: #494949;
  font-size: 11px;
}
.orders-list-table td .td-value {
  display: block;
}
.orders-list-table .order-products {
  display: flex;
  align-items: center;
}
.orders-list-table .order-products .order-products-dialog {
  display: flex;
  align-items: center;
}
.orders-list-table .order-products .order-products-dialog:hover .products-list {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.orders-list-table .order-products .info-icon {
  color: #5da8ef;
}
.orders-list-table .order-products .products-list {
  position: absolute;
  right: 5px;
  bottom: 100%;
  margin: 0 0 -5px;
  border: 1px solid #e6e9ec;
  border-radius: 0.3rem;
  padding: 15px 10px;
  width: 210px;
  background-color: #fff;
  pointer-events: none;
  min-height: 50px;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.09);
}
.orders-list-table .order-products .products-list.loading:after {
  opacity: 1;
}
.orders-list-table .order-products .products-list:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff url("../img/chart-preloader.gif") center center no-repeat;
  background-size: 25px;
  opacity: 0;
  pointer-events: none;
}
.orders-list-table .order-products .list-item {
  display: flex;
  font-weight: 500;
  margin: 0 0 15px;
}
.orders-list-table .order-products .list-item:last-child {
  margin: 0 0 5px;
}
.orders-list-table .order-products .pr-image {
  width: 54px;
  height: 54px;
  margin-right: 10px;
  flex: 0 0 54px;
}
.orders-list-table .order-products .pr-image img {
  max-width: 100%;
  max-height: 100%;
}
.orders-list-table .order-products .items-count {
  position: absolute;
  right: -7px;
  bottom: -6px;
  background-color: #e83e8c;
  color: #fff;
  border-radius: 20px;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 300;
}
.orders-list-table .order-products .pr-title {
  color: #333333;
  line-height: 1.15;
}
.orders-list-table .pay-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  border: 1px solid #969696;
  position: relative;
}
.orders-list-table .pay-icon:after {
  content: "";
  position: absolute;
  top: 4px;
  left: -4px;
  transform: rotate(-45deg);
  width: 18px;
  height: 1px;
  background-color: #969696;
}
.orders-list-table .pay-icon.status-payed {
  border-color: transparent;
  margin-left: 7px;
}
.orders-list-table .pay-icon.status-payed:after {
  background-color: #7fba00;
  width: 15px;
}
.orders-list-table .pay-icon.status-payed:before {
  content: "";
  position: absolute;
  top: 7px;
  left: -7px;
  transform: rotate(45deg);
  width: 7px;
  height: 1px;
  background-color: #7fba00;
}
.orders-list-table .notes-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.orders-list-table .order-notes .note-icon {
  font-size: 18px;
}
.orders-list-table .order-notes:hover .notes-dialog {
  opacity: 1;
  visibility: visible;
}
.orders-list-table .notes-dialog {
  position: absolute;
  top: 100%;
  right: 4px;
  background-color: #fff;
  margin: -10px 0 0;
  border: 1px solid #e6e9ec;
  border-radius: 0.3rem;
  padding: 15px 10px;
  width: 210px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.09);
  text-shadow: 0px 0px 18px rgba(0, 0, 0, 0.09);
}
.orders-list-table .notes-dialog .notes-title {
  display: flex;
  align-items: center;
  color: #222;
  font-weight: 500;
}
.orders-list-table .notes-dialog .note-text {
  display: block;
  background-color: #f4f9fb;
  padding: 10px;
  background-image: linear-gradient(90deg, #5da8ef 50%, transparent 50%), linear-gradient(90deg, #5da8ef 50%, transparent 50%), linear-gradient(0deg, #5da8ef 50%, transparent 50%), linear-gradient(0deg, #5da8ef 50%, transparent 50%);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 8px 1px, 8px 1px, 1px 8px, 1px 8px;
  background-position: left top, right bottom, left bottom, right top;
  color: #494949;
  font-style: italic;
  margin: 5px 0 0;
  border-radius: 2px;
  line-height: 1.3;
}

.customers-list-dropdown .dr-item {
  cursor: pointer;
  border-top: 1px solid #dedfe0;
  transition: all 0.5s;
}
@media (min-width: 990px) {
  .customers-list-dropdown .dr-item:hover {
    background-color: #e8f7fd;
  }
}
.customers-list-dropdown .dr-item:first-child {
  border-top: 0;
}
.customers-list-dropdown .customer-name {
  display: block;
}
.customers-list-dropdown .customer-mail {
  display: block;
  font-style: italic;
  color: #737d85;
}
.customers-list-dropdown .ui-autocomplete {
  position: relative !important;
  max-height: 350px;
  border: none;
  padding: 0;
  z-index: inherit;
  margin: 0;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  border-radius: 0;
}
.customers-list-dropdown .ui-autocomplete .ui-menu-item, .customers-list-dropdown .ui-autocomplete .ui-menu-item-wrapper {
  padding: 0;
  border-bottom: none;
}

.ui-menu-item-wrapper.ui-state-active {
  background: #e8f7fd;
}

.orders-edit-form.loading .card-box:after {
  display: block;
}
.orders-edit-form .card-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5) url("../img/chart-preloader.gif") center center no-repeat;
  background-size: 22.5px;
  display: none;
}

.card-order-products.loading:after {
  display: block;
}
.card-order-products:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5) url("../img/chart-preloader.gif") center center no-repeat;
  background-size: 22.5px;
  display: none;
}
@media (min-width: 1200px) {
  .card-order-products {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
  }
}
.card-order-products .product-count {
  position: absolute;
  right: -7px;
  bottom: -6px;
  background-color: #e83e8c;
  color: #fff;
  padding: 0 12px;
  border-radius: 20px;
  font-size: 11px;
}
.card-order-products .btn-add-new-small {
  padding-left: 36px;
}
.card-order-products .btn-add-new-small:before {
  width: 26px;
  height: 26px;
  font-size: 1rem;
  margin-top: -13px;
}
.card-order-products .product-item {
  border-top: 1px solid #dedfe0;
  padding-top: 15px;
  margin-top: 15px;
}
.card-order-products .product-item:nth-child(1) {
  border: 0;
  margin-top: 0;
  padding-top: 0;
}
.card-order-products .product-image {
  width: 117px;
}
.card-order-products .product-image img {
  width: 100%;
}

.products-additions td {
  vertical-align: top;
  padding: 7px 5px;
  line-height: 1;
  position: relative;
}
.products-additions .change-cost-data {
  position: absolute;
  top: 0;
  left: 0;
  width: 210px;
  height: 100%;
  background-color: #fff;
  padding: 5px 0;
  display: none;
}
.products-additions .change-cost-data.active {
  display: flex;
}
.products-additions .change-cost-data .input-group {
  width: 100px;
}
.products-additions .change-cost-data .form-control, .products-additions .change-cost-data .input-group-text {
  height: 28.2px;
}

.add-product-form .description {
  max-height: 160px;
  overflow-x: hidden;
}
.add-product-form .btn-holder-footer {
  display: none !important;
}

.modal-footer .btn-holder-footer .btn-search {
  display: none;
}
.modal-footer .btn-holder-footer.search-item .btn-cancel {
  display: none;
}
.modal-footer .btn-holder-footer.search-item .btn-search {
  display: block;
}

.shipment-cost-hint {
  position: relative;
}
@media (min-width: 990px) {
  .shipment-cost-hint:hover .tooltip-win {
    opacity: 1;
  }
}
.shipment-cost-hint .tooltip-win {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000;
  color: #fff;
  padding: 4px 5px;
  border-radius: 2px;
  margin-top: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.shipment-cost-hint .tooltip-win:before {
  content: "";
  position: absolute;
  top: -3px;
  left: 12px;
  width: 6px;
  height: 6px;
  background-color: #000;
  transform: rotate(-45deg);
}

.orders-card-box {
  padding: 0.96rem !important;
}

.order-table thead th {
  padding: 2px 10px 4px 10px;
  color: #bababa;
}
.order-table tbody td {
  vertical-align: top !important;
}
.order-table .is-sortable {
  cursor: pointer;
  position: relative;
  padding-right: 20px;
  transition: all 0.5s;
}
.order-table .is-sortable:after {
  content: "";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 9px;
  right: 10px;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: bold;
}
@media (min-width: 990px) {
  .order-table .is-sortable:hover {
    background-color: #e8f7fd;
  }
}
.order-table .is-sortable.sorted-desc:after {
  content: "\F0DD";
}
.order-table .is-sortable.sorted-asc:after {
  content: "\F0DE";
  top: 14px;
}
.order-table .product-title h6 {
  max-width: 175px;
  min-width: 120px;
  font-weight: 500;
}
.order-table .product-title a {
  font-weight: 300;
}
.order-table .product-title a i {
  font-size: 11px;
}
.order-table .product-title .order-feature {
  display: block;
  font-weight: 300;
}
.order-table .product-title .voucher-code {
  display: block;
  font-weight: 300;
}
.order-table .products-image {
  width: 40px;
  height: auto;
  flex: 0 0 40px;
}
@media (min-width: 576px) {
  .order-table .products-image {
    width: 80px;
    height: auto;
    flex: 0 0 80px;
  }
}
.order-table .products-image img {
  max-width: 100%;
  max-height: 100%;
}

.order-total {
  color: #3d3d3d;
}
.order-total .btn-start-shipment {
  padding: 0 1.185rem !important;
}
.order-total .btn-start-shipment:after {
  border-top-color: #ffffff;
  right: 14px;
}
.order-total .dropdown-start-shipment .dropdown-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dedfe0;
}
.order-total .dropdown-start-shipment li:last-child .dropdown-item {
  border-bottom: 0;
}
.order-total .label {
  color: #585858;
}

.orders-back {
  font-size: 18px;
  padding: 2px 10px;
}

.orders-navigation .btn {
  border-color: #c3c3c3;
}

@media (min-width: 990px) {
  .order-info-aside {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
  }
}
.order-info-aside .payment-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
}
.order-info-aside .payment-icon img {
  max-width: 100%;
}
.order-info-aside .widget-header {
  font-size: 10px;
  text-transform: uppercase;
  color: #bababa;
  border-bottom: 1px solid #ebebeb;
  position: relative;
}
.order-info-aside .widget-header:after {
  content: "\F0D7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  isplay: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12.99px;
}
.order-info-aside .sync-payment-icon {
  color: #c8c8c8;
}
@media (min-width: 990px) {
  .order-info-aside .sync-payment-icon:hover {
    color: #7fba00;
  }
}
.order-info-aside .payment-icons {
  display: inline-block;
  position: relative;
  top: 1px;
}
.order-info-aside .widget-title {
  font-weight: 500;
  font-size: 14px;
}
.order-info-aside .order-number {
  font-size: 16px;
  display: block;
}
.order-info-aside .order-status-name {
  max-width: 120px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  text-overflow: ellipsis;
  line-height: 1;
}
.order-info-aside .status-dropdown {
  padding: 5px 1.2rem 5px 1rem;
  font-size: 12px;
  background-color: #f6fbfe;
}
.order-info-aside .status-dropdown:after {
  border-top-color: #90959a;
}
.order-info-aside .status-dropdown i {
  font-size: 8px;
  display: inline-block;
  vertical-align: middle;
}
.order-info-aside .number-text {
  color: #b3b3b3;
}
.order-info-aside .order-textarea {
  resize: none;
  padding: 5px 10px;
  border-color: transparent;
  background-image: linear-gradient(90deg, #5da8ef 50%, transparent 50%), linear-gradient(90deg, #5da8ef 50%, transparent 50%), linear-gradient(0deg, #5da8ef 50%, transparent 50%), linear-gradient(0deg, #5da8ef 50%, transparent 50%);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 8px 1px, 8px 1px, 1px 8px, 1px 8px;
  background-position: left top, right bottom, left bottom, right top;
  width: 100%;
  min-height: 50px;
  outline: none;
  box-shadow: none;
  font-style: italic;
  color: #494949;
  background-color: #f4f9fb;
  border-radius: 1px;
}
.order-info-aside .order-textarea.focus {
  -webkit-animation: border-dance 0.3s infinite linear;
          animation: border-dance 0.3s infinite linear;
}
.order-info-aside .delivery-info-table {
  margin-top: 15px;
}
.order-info-aside .delivery-info-table td {
  vertical-align: top;
  font-size: 12px;
  line-height: 1.2;
  padding-bottom: 10px;
}
.order-info-aside .delivery-info-table td.label {
  padding-right: 10px;
  text-align: right;
  color: #bababa;
}
.order-info-aside .payment-info-icon {
  position: relative;
}
.order-info-aside .payment-info-icon:hover .order-payment-data {
  opacity: 1;
  visibility: visible;
}
.order-info-aside .order-payment-data {
  position: absolute;
  bottom: 100%;
  left: 5px;
  margin: 0 0 -5px;
  border: 1px solid #e6e9ec;
  border-radius: 0.3rem;
  padding: 15px 10px;
  width: 180px;
  background-color: #fff;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.09);
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  white-space: normal;
}
.order-info-aside .order-payment-data .order-info-item {
  display: block;
  margin: 0 0 10px;
  color: #333333;
  font-size: 12px;
  line-height: 1.3;
}
.order-info-aside .order-payment-data .order-info-item:last-child {
  margin: 0;
}
.order-info-aside .order-payment-data .label {
  display: block;
  color: #bababa;
}

@media (min-width: 768px) {
  .shipment-aside {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
  }
}

.shipping-form.loading .preload:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.3rem;
  background: rgba(255, 255, 255, 0.5) url("../img/chart-preloader.gif") center center no-repeat;
  background-size: 24px;
}
/*# sourceMappingURL=orders.css.map*/