.scan-element {
  background-color: #F2F6F5;
  height: 216px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scan-element #scanstart {
  z-index: 1;
}
.scan-element svg {
  z-index: 0;
}

.scanlist__modal > h2 {
  text-align: center;
  margin-top: 0;
}
.scanlist__modal .filename {
  margin: 4px 0 -4px 0;
  text-align: center;
  color: #888;
}
.scanlist__modal__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 202px;
  height: 202px;
  background-image: url(scan-bg.svg);
  margin: 26px auto 0 auto;
}
.scanlist__modal__order {
  display: none;
  justify-content: center;
  margin-top: 33px;
}

#scandit-barcode-picker {
  height: 100% !important;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#scandit-barcode-picker-addtocart {
  width: 80%;
  height: 40%;
  background-color: #000;
  right: 0;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  transition: opacity 300ms ease;
  padding: 12px;
  color: #FFC24B;
}
#scandit-barcode-picker-addtocart input {
  -webkit-user-select: all;
  user-select: all;
  outline: none;
}
#scandit-barcode-picker-addtocart input[type=number] {
  -moz-appearance: textfield;
}
#scandit-barcode-picker-addtocart input::-webkit-outer-spin-button, #scandit-barcode-picker-addtocart input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
#scandit-barcode-picker-addtocart h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 24px 0;
}
#scandit-barcode-picker-addtocart .addto {
  display: flex;
  justify-content: space-between;
}
#scandit-barcode-picker-addtocart .addto > div strong {
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
#scandit-barcode-picker-addtocart .addto > div p {
  font-size: 14px;
  line-height: 18px;
  margin: 0;
}
#scandit-barcode-picker-addtocart .addto > div p.small {
  font-size: 12px;
}
#scandit-barcode-picker-addtocart .addto > div.qty > strong {
  text-align: center;
}
#scandit-barcode-picker-addtocart .addto > div.productinfo {
  max-width: 70%;
}
#scandit-barcode-picker-addtocart .addto > div .qty-container .qty-wrap {
  display: flex;
  justify-content: center;
}
#scandit-barcode-picker-addtocart .addto > div .qty-container .qty-wrap input {
  width: 54px;
  height: 44px;
  background-color: transparent;
  border: 0;
  color: #FFC24B;
  text-align: center;
  border: solid 1px #FFC24B;
}
#scandit-barcode-picker-addtocart .addto > div .qty-container .qty-wrap .qty-count {
  width: 32px;
  height: 44px;
  text-align: center;
  line-height: 39px;
  cursor: pointer;
}
#scandit-barcode-picker-addtocart.visible {
  z-index: 10;
  opacity: 1;
}

.barcode-picker-utilities {
  position: absolute;
  height: 50px;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.55);
  opacity: 1;
  z-index: 99;
  display: flex;
  justify-content: space-around;
}
.barcode-picker-utilities > div {
  line-height: 50px;
  cursor: pointer;
}
.barcode-picker-utilities > div > span {
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #ffc24b;
  position: relative;
}
.barcode-picker-utilities > div > span #cart-counter {
  font-size: 12px;
  color: #303030;
  background-color: #fff;
  font-weight: 600;
  border-radius: 15px;
  min-width: 14px;
  position: absolute;
  line-height: 14px;
  text-align: center;
  top: -3px;
  left: 100%;
}
.barcode-picker-utilities > div > svg {
  position: relative;
  top: -1px;
  left: -2px;
}

#scandit-barcode-picker-alert {
  z-index: 10;
  position: absolute;
  top: 24px;
  left: 24px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.55);
  line-height: 40px;
  padding: 0 17px;
  border-radius: 50px;
  opacity: 0;
  transition: opacity 300ms ease;
  top: calc(50% - 160px);
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
#scandit-barcode-picker-alert svg {
  margin: 0px 9px 0 0;
  position: relative;
  top: -2px;
}
#scandit-barcode-picker-alert.visible {
  opacity: 1;
}

#scandit-barcode-picker-items {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 99;
  width: 100%;
  left: 0;
  bottom: 50px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  transition: max-height 300ms ease;
  max-height: 0;
  overflow: hidden;
}
#scandit-barcode-picker-items .scanned_items_header {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
}
#scandit-barcode-picker-items .scanned_items_header strong {
  font-size: 15px;
  color: #fff;
}
#scandit-barcode-picker-items #scanned-items {
  color: #fff;
  max-height: 200px;
  overflow: auto;
  padding: 0 12px 12px 12px;
}
#scandit-barcode-picker-items #scanned-items input {
  -webkit-user-select: all;
  user-select: all;
  outline: none;
}
#scandit-barcode-picker-items #scanned-items input[type=number] {
  -moz-appearance: textfield;
}
#scandit-barcode-picker-items #scanned-items input::-webkit-outer-spin-button, #scandit-barcode-picker-items #scanned-items input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
#scandit-barcode-picker-items #scanned-items .item {
  margin-bottom: 12px;
  line-height: 1.2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#scandit-barcode-picker-items #scanned-items .item .item-information {
  display: flex;
  align-items: center;
}
#scandit-barcode-picker-items #scanned-items .item .item-information .item-remove {
  padding-right: 12px;
}
#scandit-barcode-picker-items #scanned-items .item .item-information svg {
  position: relative;
  top: -1px;
  margin-right: 3px;
}
#scandit-barcode-picker-items #scanned-items .item .item-information span {
  font-size: 14px;
}
#scandit-barcode-picker-items #scanned-items .item .item-information span.small {
  font-size: 12px;
}
#scandit-barcode-picker-items #scanned-items .item .item-update .qty-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
#scandit-barcode-picker-items #scanned-items .item .item-update .qty-wrap input {
  width: 54px;
  height: 30px;
  line-height: 30px;
  background-color: #000;
  border: 0;
  color: #FFC24B;
  text-align: center;
  border: solid 1px #FFC24B;
}
#scandit-barcode-picker-items #scanned-items .item .item-update .qty-wrap .qty-count {
  width: 32px;
  height: 30px;
  text-align: center;
  line-height: 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#scandit-barcode-picker-items svg {
  cursor: pointer;
}
#scandit-barcode-picker-items.visible {
  max-height: 330px;
}

.scandit-viewfinder {
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  border-radius: 0 !important;
  box-shadow: 0 0 0 999px rgba(255, 255, 255, 0.45);
}
.scandit-viewfinder:before {
  content: "SCAN STREGKODE";
  position: absolute;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  top: -21px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.scandit-viewfinder:after {
  content: "";
  position: absolute;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  top: 6px;
  left: 6px;
  background: linear-gradient(to right, white 1px, transparent 1px) 0 0, linear-gradient(to right, white 1px, transparent 1px) 0 100%, linear-gradient(to left, white 1px, transparent 1px) 100% 0, linear-gradient(to left, white 1px, transparent 1px) 100% 100%, linear-gradient(to bottom, white 1px, transparent 1px) 0 0, linear-gradient(to bottom, white 1px, transparent 1px) 100% 0, linear-gradient(to top, white 1px, transparent 1px) 0 100%, linear-gradient(to top, white 1px, transparent 1px) 100% 100%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

@media (max-width: 767px) {
  #scandit-barcode-picker-addtocart .addto > div .qty-container .qty-wrap input {
    font-size: 16px !important;
  }

  #scandit-barcode-picker-items #scanned-items .item .item-update .qty-wrap input {
    font-size: 16px !important;
  }
}
@media (max-width: 668px) {
  .scanner-active {
    min-height: 100vh;
    /* when modal active */
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden;
    /* Other browsers */
    overscroll-behavior: none;
  }
  .scanner-active #co-modal-box {
    position: fixed !important;
    top: 0 !important;
  }
  .scanner-active #modal-header {
    background: #000 !important;
  }
  .scanner-active #modal-header #close-dialog-button {
    right: 7px;
    top: 4px;
    background-position: center !important;
  }
  .scanner-active #modal-header #close-dialog-button:hover {
    right: 7px;
    top: 4px;
    background-position: center !important;
  }
  .scanner-active .wrapper.overflow-hidden {
    /* when modal active */
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden;
    /* Other browsers */
    overscroll-behavior: none;
  }
}
.scan-element.tablet {
  display: none;
}
#open-text-search {
  z-index: 10;
  position: absolute;
  top: calc(50% + 147px);
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 300ms ease;
}
#open-text-search.hidden {
  z-index: -1;
  opacity: 0;
}
#text-search-container {
  opacity:0;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  padding: 20px;
  background: #000;
  width: calc(100% - 32px);
  height: 220px;
  color: #FFC24B;
  /* add animation to opacity */
  transition: opacity 300ms ease;
}
#text-search-container.visible {
  opacity:1;
  z-index: 10;
}
#text-search-container input {
  max-width:100%;
}
#scan-text-search-autocomplete {
  display: none;
  z-index: 11;
  position: relative;
  padding: 16px;
  background-color: #404040;
  width: calc(100% - 16px);
  left: 8px;
  max-height: 240px;
  overflow: auto;
}
#scan-text-search-autocomplete .scan-search-item {
  display: flex;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: solid 1px #545454;
}
#scan-text-search-autocomplete .scan-search-item .right {
  line-height: 1.5;
  padding: 8px 8px 8px 12px;
}
#scan-text-search-autocomplete .scan-search-item .right .search-item__sku {
  font-size:12px;
}
.scan-element.mobile {
  display: none;
}

@media (max-width: 767px) {
  .scan-element.mobile {
    display: flex;
  }
}
@media (max-width: 1200px) {
  .scan-element.tablet {
    display: flex;
  }
}
@media (max-width: 639px) {
  .scan-element {
    height: 80px;
    overflow: hidden;
  }
  .scan-element #scanstart {
    z-index: 1;
  }
  .scan-element svg {
    z-index: 0;
  }
}

/*# sourceMappingURL=scan.css.map */
