.dev-wrapper {
  width: 100%;
  height: 40px;
  display: flex;
  background-color: white;
  justify-content: center;
  background-color: #181818;
}

.dev-block {
  width: 100%;
  max-width: 400px;
  display: flex;
}


.dev-arrow {
  width: 40px;
  height: 40px;
  background-color: #E02020;
  color: white;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 2px solid #181818;
  border-radius: 0 0 10px 0;
  cursor: pointer;
  font-weight: bold;
}

.dev-arrow:hover {
  color: #181818;
}

.dev-contentblock {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  color: white;

  background-color: #E02020;
  border-radius: 0 0 0 10px;
  font-size: 17px;

}

.imageContainer {
  display: flex;
  height: 90%;
  justify-content: center;
  align-items: center;
}

.imageContainer img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  transition: transform .9s;
}

.order-card:hover .imageContainer img {
  transform: scale(1.1);
}

.order-footer {
  display: flex;
  border-top: 1px dashed #999;
  padding-top: 8px;
  background: #D5D5D5;
}

.order-footer-col {
  width: 48%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
}

.order-footer-label {
  margin-bottom: 6px !important;
}

.order-footer-value {
  margin-bottom: 6px !important;
  font-size: 1.2rem !important;
  font-weight: 300 !important;
}

.order-footer-line {
  display: none;
  background: #D5D5D5;
}

@media screen and (min-width: 981px) {
  .order-footer-line {
    display: flex;
  }
}

.order-secondline {
  font-size: 1.2rem;
  padding-top: 4px;
  padding-bottom: 4px;
  border-top: 1px dashed #999;
  text-align: right;
}

@media screen and (min-width: 1330px) {
  .order-secondline-2 {
    text-align: center;
  }
}

.order-right-side {
  margin-right: 10px;
  font-size: 1.2rem;
  font-weight: 300;
}

@media screen and (max-width: 980px) {
  .mobile {}

  .largescreen {
    display: none;
  }
}

@media screen and (min-width: 981px) {
  .mobile {
    display: none;
  }

  .largescreen {}
}

.collapsibleblock {
  overflow: hidden;
  transition: height .3s;
  height: 350px;
}

.collapsibleblock.hidden {
  height: 0px;
}

.errorinput .label-field__header {
  display: flex;
  justify-content: space-between;
}

.errorinput .label-field__header .validation-error {
  color: #E02020;
  font-weight: normal;
  font-size: 90%;
  display: none;
}

.errorinput.error .label-field__header .validation-error {
  display: block;
}

.errorinput.error .field {
  border-color: #E02020;
}