@media (min-width: 768px) {
  .table-holder {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap !important;
    gap: 30px;
  }
  .inner-hold {
    max-width: 85%;
  }
  .fileupload_hero {
    min-width: 400px;
  }
}
@media (max-width: 767px) {
  .table-holder {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap !important;
    gap: 30px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap !important;
    gap: 0px;
  }
  .inner-hold {
    max-width: 83%;
  }
  .fileupload_hero {
    min-width: 300px;
  }
}
.table-holder table#price_calculator input {
  width: 100% !important;
  max-width: none !important;
  min-width: none !important;
}
table#price_calculator .minus-btn,
table#price_calculator .plus-btn {
  padding: 5px 5px !important;
}
#price_calculator > tbody tr.width-input td:nth-child(2) {
  justify-content: space-between !important;
}
.fileupload_preview {
  display: none;
  align-content: center;
  justify-content: center;
  position: relative;
  width: fit-content;
  margin-bottom: 10px;
}

.verticle_direction {
  min-width: 30px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  position: relative;
  margin-top: 65px;
  margin-bottom: 0px;
  margin-right: 10px;
  border: 1px solid #fff;
  border-top-color: #000;
  border-bottom-color: #000;
}
.verticle_direction:after {
  content: "";
  background: #000;
  width: 1px;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 50%;
  display: block;
}
.horizontal_direction {
  min-height: 30px;
  position: relative;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  border: 1px solid #fff;
  border-left-color: #000;
  border-right-color: #000;
}
.horizontal_direction:after {
  content: "";
  height: 1px;
  background: #000;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  display: block;
}
.easyzoom.zoom-box {
  background: #f2f2f2
    url(https://uploadtransfers.com/wp-content/uploads/2024/12/Screenshot-2024-12-11-at-17.15.48.png)
    center center;
  position: relative;
  background-size: 2%;
}

.upload_tools {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  position: absolute;
  width: 100%;
  left: 0;
  padding: 10px;
  top: 0;
  z-index: 9999;
  right: 4px;
}
a#fileremove-2 {
  padding: 5px;
  border-radius: 8px;
  background: #0006;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
span.horizontal_direction_text {
  z-index: 1;
  background: #fff;
  padding: 0px 20px !important;
}
span.verticle_direction_text {
  z-index: 1;
  background: #fff;
  padding: 20px 0px !important;
  height: fit-content;
}
.price-table-row.calculated-price .product_price span.amount {
  background: #28a4d9;
  color: #fff;
  border-radius: 5px;
  border: 0px;

  padding: 13px 5px;
  font-weight: 700;
  width: -webkit-fill-available;
}

.price-table-row.calculated-price .product_price {
  width: -webkit-fill-available;
}

#price_calculator > tbody tr:nth-child(1) {
  order: 2;
  width: 36% !important;
}
#price_calculator > tbody tr:nth-child(2) {
  order: 1;
  width: 36% !important;
}
#price_calculator > tbody tr:nth-child(3) {
  order: 3;
  width: 24% !important;
}

.table-holder #price_calculator > tbody tr.calculated-price > td:nth-child(1) {
  text-align: center !important;
}

.table-holder table#price_calculator > tbody .width-input td:nth-child(1) {
  text-align: center !important;
}

.table-holder table#price_calculator > tbody .length-input td:nth-child(1) {
  justify-content: space-evenly !important;
}
/* .remover-background{
  display: block !important
}

.remover-background button{
  background: #000000;
  color: #fff;
  border-radius: 5px;
  border: 0px;
  padding: 13px;
  font-weight: 700;
} */

.table-holder table#price_calculator thead td div.infomsg {
  /* display: block !important; */
  display: none !important;
  color: white !important;
  padding: 10px !important;
  justify-content: center;
  text-align: center;
  background: #007bb0 !important;
  border: 1px solid #000000 !important;
  border-radius: 6px !important;
  box-shadow: 0px 0px 6px #28a4d9 !important;
  font-weight: bold;
  font-size: 13px;
}

.loadinga {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #FFF #FFF transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.loadinga::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent #008bff #00a4ff;  
  width: 40px;
  height: 40px;
  border-radius: 50%;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}

/* .text-image-spinner .loadinga::after {
  
  border-color: transparent #fff #fff !important;  
  
} */

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
    
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
    