/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
 */
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px); }
}
@-moz-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%, 70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

.detourer-dropzone, .detourer-dropzone * {
  box-sizing: border-box;
}

.detourer-dropzone {
  min-height: 300px;
  background: white;
  padding: 20px 20px;
  border: 2px dashed mediumpurple;
  border-radius: 5px;
}
.detourer-dropzone.dz-clickable {
  cursor: pointer;
}
.detourer-dropzone.dz-clickable * {
  cursor: default;
}
.detourer-dropzone.dz-clickable .dz-message, .detourer-dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}
.detourer-product-upload-form .upload-wrapper .detourer-dropzone .dz-custom-actions a {
  font-weight: bolder;
}
.detourer-dropzone.dz-started .dz-message {
  display: none;
}
.detourer-dropzone.dz-drag-hover {
  border-style: solid;
}
.detourer-dropzone.dz-drag-hover .dz-message {
  opacity: 0.5;
}
.detourer-dropzone .dz-message {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin: 6em 0;
  color: #646C7F;
}
.detourer-dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}
.detourer-dropzone .dz-preview:hover {
  z-index: 1000;
}
.detourer-dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.detourer-dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom, #eee, #ddd);
}
.detourer-dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.detourer-dropzone .dz-preview.dz-image-preview {
  background: white;
}
.detourer-dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.detourer-dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}
.detourer-dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}
.detourer-dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.detourer-dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  line-height: 150%;
}
.detourer-dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}
.detourer-dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.detourer-dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200, 200, 200, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
}
.detourer-dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.detourer-dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}
.detourer-dropzone .dz-preview .dz-details .dz-filename span, .detourer-dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0 0.4em;
  border-radius: 3px;
}
.detourer-dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}
.detourer-dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}
.detourer-dropzone .dz-preview .dz-image img {
  display: block;
}
.detourer-dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.detourer-dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
  animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}
.detourer-dropzone .dz-preview .dz-success-mark, .detourer-dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}
.detourer-dropzone .dz-preview .dz-success-mark svg, .detourer-dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}
.detourer-dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.detourer-dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  -moz-transition: opacity 0.4s ease-in;
  -ms-transition: opacity 0.4s ease-in;
  -o-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}
.detourer-dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  -moz-animation: pulse 6s ease infinite;
  -ms-animation: pulse 6s ease infinite;
  -o-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}
.detourer-dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}
.detourer-dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom, #666, #444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  -moz-transition: width 300ms ease-in-out;
  -ms-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}
.detourer-dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}
.detourer-dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.detourer-dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom, #be2626, #a92222);
  padding: 0.5em 1.2em;
  color: white;
}
.detourer-dropzone .dz-preview .dz-error-message:after {
  content: '';
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}

.detourer-dropzone .dz-custom-actions {
  margin-top: 15px;
}
.detourer-dropzone .dz-custom-actions a {
  padding: 10px;
  border: 2px solid mediumpurple;
  border-radius: 5px;
}
.detourer-dropzone .dz-custom-actions a:hover {
  cursor: pointer;
}
.upload-wrapper .template-markup {
  display: none;
}

/* ====== new styles ======= */
form.detourer-product-upload-form .order-item-preview {
  display: inline-block;
}
form.detourer-product-upload-form .dz-preview.dz-image-preview {
  position: relative;
}
form.detourer-product-upload-form .dz-preview.dz-image-preview .dz-remove span {
  font-size: 0;
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 1px solid #d1d1d1;
  border-radius: 50%;
  /* margin-top: 20px; */
  transition: all .3s ease-in-out;

}
form.detourer-product-upload-form .dz-preview.dz-image-preview .dz-remove {
  position: absolute;
  top: -10px;
  z-index: 222;
  right: -15px;
}
form.detourer-product-upload-form .dz-preview.dz-image-preview .dz-remove span:hover {
  background-color: mediumpurple;
  border-color: mediumpurple;
}
form.detourer-product-upload-form .dz-preview.dz-image-preview .dz-remove span:hover::before {
  color: #fff;
}
form.detourer-product-upload-form .dz-preview.dz-image-preview .dz-remove span::before {
  content: '×';
  font-size: 17px;
}
form.detourer-product-upload-form >* {
  margin-top: 20px;
}
form.detourer-product-upload-form #total-amount-wrapper {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
#total-amount-wrapper table {
  margin-left: -10px;
  margin-top: 10px;
  margin-bottom: 10px;
}
#total-amount-wrapper table td {
  font-weight: bold;
  padding: 2px 10px;
}
form.detourer-product-upload-form .form-select {
  height: 37px;
  margin-bottom: 10px;
}
form.detourer-product-upload-form label {
  margin-bottom: 5px;
}
.detourer-dropzone .dz-custom-actions {
  display: flex;
  justify-content: space-between;
}

#order-item-ajax-wrapper .order-item {
  margin-top: 20px;
  border: 1px solid #d1d1d1;
}
#order-item-ajax-wrapper .order-item.order-item-validated a[data-toggle="collapse"] {
  /* background: rgba(40,167,69,.5); */
  background: mediumpurple;
  color: #fff;
}
#order-item-ajax-wrapper .order-item.order-item-validated a[data-toggle="collapse"]:hover,
#order-item-ajax-wrapper .order-item.order-item-validated a[data-toggle="collapse"]:focus {
  color: #fff;
}
#order-item-ajax-wrapper .order-item.order-item-validated a[data-toggle="collapse"]::before {
  border-color: #fff;
}
#order-item-ajax-wrapper .order-item >* {
  padding-left: 20px;
  padding-right: 20px;
}
#order-item-ajax-wrapper .order-item .order-item-entity fieldset {
  margin-top: 30px;
}
/* #order-item-ajax-wrapper .order-item .order-item-entity .levels-and-options fieldset:last-child{
  padding-left: 30px;
} */
#order-item-ajax-wrapper .order-item a[data-toggle="collapse"] ~ .order-item-entity {
  margin-top: 20px;
}
#order-item-ajax-wrapper .order-item a[data-toggle="collapse"] {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  font-weight: bold;
  background: #fafafa;
}
#order-item-ajax-wrapper .order-item a[data-toggle="collapse"]::before {
  content: '';
  width: 15px;
  height: 15px;
  border-left: 1px solid #bababa;
  border-top: 1px solid #bababa;
  position: absolute;
  right: 25px;
}
#order-item-ajax-wrapper .order-item a[aria-expanded="false"]::before {
  transform: rotate(-135deg);
  top: 8px;
}
#order-item-ajax-wrapper .order-item a[aria-expanded="true"]::before {
  transform: rotate(45deg);
  top: 17px;
}
#order-item-ajax-wrapper .form-radios,
#order-item-ajax-wrapper .form-checkboxes {
  display: flex;
  flex-wrap: wrap;
}
#order-item-ajax-wrapper legend {
  margin-bottom: 15px;
  border-bottom: none;
}
#order-item-ajax-wrapper .form-radios >.form-item ~ .form-item,
#order-item-ajax-wrapper .form-checkboxes >.form-item ~ .form-item {
  margin-left: 50px;
}
#order-item-ajax-wrapper .form-item.error .fieldset-wrapper {
  padding-bottom: 5px;
}
#order-item-ajax-wrapper .form-item.error .error-msg {
  color: red;
  /* margin: 10px; */
  font-weight: 600;
}



#billing-profile {
  border: none;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
}
#billing-profile .details-wrapper {
  padding-left: 20px;
  padding-right: 20px;
}
#billing-profile summary {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  font-weight: bold;
  background: #fafafa;
}
#billing-address-wrapper {
  margin-top: 20px;
  /* padding: 20px; */
  /* border: 1px solid #d1d1d1; */
}
#billing-address-wrapper .form-item {
  margin-bottom: 0;
}
#billing-address-wrapper fieldset.form-item {
  margin-bottom: 20px;
}
#billing-address-wrapper >.form-wrapper {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}
#billing-address-wrapper >.form-wrapper >a {
  max-width: 100%;
  flex: 0 0 100%;
  padding: 10px;
  transition: all 0.3s;
  background: mediumpurple;
  font-size: 14px;
  font-weight: bold;
  -webkit-appearance: none;
    -moz-appearance: none;
}
#billing-address-wrapper >.form-wrapper >a {
  position: relative;
  color: #fff;
  transition: all 0.3s;
}

#billing-address-wrapper >.form-wrapper >a ~ a {
  margin-top: 20px;
} 
#billing-address-wrapper #user-login ,
#billing-address-wrapper #billing-profile{
  border: 1px solid #d1d1d1;
  width: 100%;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}
#billing-address-wrapper #user-login input.form-submit {
  margin: 0;
  margin-top: 20px;
}
#billing-address-wrapper .form-wrapper .form-select {
  padding: 6px 10px;
}
#billing-address-wrapper >.form-wrapper >a::before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  right: 25px;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(-135deg);
  top: 8px;
}

#billing-address-wrapper >.form-wrapper >a[aria-expanded="true"]::before {
  transform: rotate(45deg);
  top: 17px;
  outline: none;
}
/* #billing-address-wrapper .form-wrapper >a[aria-expanded="true"] ~ .details-wrapper {
  height: 100%;
  transition: all 0.3s ease-in-out;
} */
#billing-address-wrapper #edit-payment-signed-up-url {
  background-color: mediumpurple;
  border: 2px solid mediumpurple;
  padding: 5px 20px;
  color: #fff;
}
#billing-address-wrapper #edit-payment-signed-up-url:hover {
  background-color: transparent;
  color: mediumpurple;
}
#billing-address-wrapper #billing-profile .details-wrapper {
  border: 1px solid #ccc;
  border-top: none;
}
#billing-address-wrapper #upload-login input {
  margin: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}


#price-table-wrapper table {
  border: 1px solid #d1d1d1;
  width: 50%;
}
#price-table-wrapper table tr {
  border-bottom: 1px solid #d1d1d1;
}
#price-table-wrapper table td ~ td {
  border-left: 1px solid #d1d1d1;
}

#payment-gateway-wrapper .form-radios {
  display: flex;
  flex-wrap: wrap;
}
#payment-gateway-wrapper .form-radios .form-item ~ .form-item{
  margin-left: 30px;
}
#payment-gateway .form-radios {
  display: flex;
  flex-wrap: wrap;
}
#payment-gateway .form-radios .form-item ~ .form-item {
  margin-left: 25px;
}

/* ====== */
.detourer-product-upload-form .form-type-radio,
.detourer-product-upload-form .form-type-checkbox {
  position: relative;
}
.detourer-product-upload-form .form-type-radio input.form-radio,
.detourer-product-upload-form .form-type-checkbox input.form-checkbox {
  position: absolute;
  opacity: 0;
}
.detourer-product-upload-form .form-type-radio label.option,
.detourer-product-upload-form .form-type-checkbox label.option {
  padding-left: 30px;
  font-weight: 300;
  cursor: pointer;
}
.detourer-product-upload-form .form-type-radio input.form-radio:checked ~ label::after,
.detourer-product-upload-form .form-type-checkbox input.form-checkbox:checked ~ label::after {
  opacity: 1;
}
.detourer-product-upload-form .form-type-radio label.option::before,
.detourer-product-upload-form .form-type-checkbox label.option::before {
  content: '';
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border: 2px solid mediumpurple;
  border-radius: 4px;
}
.detourer-product-upload-form .form-type-radio label.option::after,
.detourer-product-upload-form .form-type-checkbox label.option::after {
  content: '';
  width: 15px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  border-left: 3px solid mediumpurple;
  border-bottom: 3px solid mediumpurple;
  opacity: 0;
  transform: rotate(-45deg);
  margin-top: -5px;
}
.detourer-product-upload-form .form-type-radio label.option::before {
  border-radius: 50%;
}
.detourer-product-upload-form .form-type-radio label.option::after {
  width: 13px;
  left: 6px;
}

.detourer-product-upload-form .form-item .item-tooltip {
  position: absolute;
  right: -25px;
  top: 1px;
  z-index: 333;
  width: 16px;
  height: 16px;
  border: 1px solid;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ====== upload multi form ===== */
form.upload-group .upload-wrapper .order-item-preview {
  display: inline-block;
  border: 2px dashed mediumpurple;
  border-radius: 5px;
  margin: 0 25px;
  margin-top: 25px;
  position: relative;
}
form.upload-group .dz-preview.dz-image-preview .dz-remove {
  display: none;
}
form.upload-group .remove-group {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 222;
  display: block;
}
form.upload-group .remove-group span {
  font-size: 0;
  display: inline-block;
  border-radius: 50%;
}
form.upload-group .remove-group span:before {
  position: absolute;
  content: '×';
  top: 5px;
  right: 5px;
  font-size: 17px;
  border-radius: 50%;
  background: #000;
  width: 25px;
  height: 25px;
  cursor: pointer;
  color: #fff;
  text-align: center;
  z-index: 222;
}
.upload-errors ul {
  list-style: none;
  padding-left: 8px;
}
.upload-errors ul li {
  font-weight: 600;
  color: #a51b00;
  border-color: #f9c9bf #f9c9bf #f9c9bf transparent;
  background-color: #fcf4f2;
  box-shadow: -8px 0 0 #e62600;
  padding: 15px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.form-textarea {
  color: #000;
}

.form-email,
.form-tel {
  border: 1px solid #d1d1d1;
  width: 100%;
}



@media screen and (max-width: 991px) {
  form.detourer-product-upload-form .form-type-email input {
    width: 100%;
  }
  #edit-billing-profile-profile-email {
    width: 100%;
  }
  .detourer-dropzone .dz-preview .dz-image img {
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  #price-table-wrapper table {
    width: 100%;
  }
  form.detourer-product-upload-form #total-amount-wrapper {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  #billing-address-wrapper .form-item ,
  #billing-address-wrapper .form-tel {
    width: 100%;
    margin-right: 0;
  }
  #billing-address-wrapper .form-wrapper {
    margin-bottom: 0;
  }
  .detourer-dropzone .dz-custom-actions a {
    font-size: 12px;
    padding: 7px;
  }
  #order-item-ajax-wrapper .form-radios {
    display: flex;
    flex-wrap: wrap;
  }
  #order-item-ajax-wrapper .form-radios >.form-item {
  }
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;
  /*height: 300px; !* Should be removed. Only for demonstration *!*/
}

@media screen and (min-width: 992px) {
  /*=====Form change password=====*/
  .user-form {
    display: flex;
    padding: 30px 0 22px;
  }
  .user-form .form-wrapper {
    max-width: 41.66667%;
    flex: 0 0 41.66667%;
    padding: 0 15px;
    margin: 0 auto;
  }
}

.fa-check-circle {
  margin-right: 10px;
}

#payment-gateway-wrapper legend{
  margin-bottom: 15px;
  border-bottom: none;
}

#billing-address-wrapper #user-login-wrapper a[data-toggle="collapse"] {
  background: #cccccc;
  color: mediumpurple !important;
  display: block;
  padding: 10px 20px;
  position: relative;
  font-weight: bold;
}

.product-options {
  border-left: none;
}

#order-item-ajax-wrapper div.product-options {
  border-left: none !important;
}

input.upload-form-btn {
  font-weight: bolder;
  padding: 12px 28px !important;
}

#order-info-wrapper input.upload-form-btn {
  float: right;
}

form.detourer-product-upload-form h3 {
  font-weight: bolder;
  color: mediumpurple;
}

.div span.edit-info-payment-gateway {
  font-weight: bolder;
  color: mediumpurple;
}

table tr td.sub-total {
  background: #F5F5F5;
}

#order-item-ajax-wrapper .order-item-entity .upload-img {
  box-shadow: 0 0 4px mediumpurple !important;
}

#order-item-ajax-wrapper .order-item-entity .upload-img img {
  padding-bottom: 10px;
}