.image-product {
  border-radius: 3px;
  width: 50px;
  height: 50px;
  border: 1px solid #e5e5e5;
}
.image-product-big {
  max-width: 30vw;
}

.image-variant-small {
  border-radius: 2px;
  width: 32px;
  height: 32px;
  border: 1px solid #e5e5e5;
}

.left {
  float: left;
}

.line-height-normal {
  line-height: normal;
}

.line-through {
  text-decoration: line-through;
}

.ul-inside {
  list-style-position: inside
}

.preserve-white-space {
  white-space-collapse: preserve;
}

.tab-header {
  cursor: pointer;
  border-bottom: 1px solid var(--lessgray);
}

.tab-header:not(:last-child) {
  border-right: 1px solid var(--lessgray);
}

.tab-header-active {
  color: var(--primary);
  font-weight: bold;
  border-bottom: 2px solid var(--primary);
}

.button-xs {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  border-radius: 6px;
  font-size: var(--font-size-s);
  height: 28px;
  min-width: 32px;
  padding: 0px 7px;
  cursor: pointer;
}

.button-default[disabled]{
  background-color: var(--lessgray);
  color: var(--gray);
}

.truncate-overflow-text {
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis; 
}

.scroll-bar-thin::-webkit-scrollbar {
  width: 8px;
  background-color: var(--lightgray);
}

.scroll-bar-thin::-webkit-scrollbar-thumb {
  background-color: var(--gray);
}

.search-box-selected-items {
  overflow-y: auto;
  max-height: 250px;
}

.search-box-list-items-loader {
  text-align: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

.search-box-list-items {
  min-height: 200px;
}

.has-error .select-box-input {
  border: 2px solid var(--red) !important;
}

.has-error .select-box-list input {
  border: 1px solid var(--lightgray) !important;
}

.box-loader {
  display: inline-block;
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid var(--blue);
  width: 24px;
  height: 24px;
  -webkit-animation: box_loader_spin 0.5s linear infinite;
  animation: box_loader_spin 0.5s linear infinite;
}

.vertical-align-middle {
  vertical-align: middle !important;
}

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

@keyframes box_loader_spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.app-fieldset {
  display: block;
  margin-inline-start: 2px;
  margin-inline-end: 2px;
  padding: 15px !important;
  min-inline-size: min-content;
  border-width: 1px;
  border-style: groove;
  border-color: var(--lightgray);
  border-image: initial;
  border-radius: 6px;
}

.app-fieldset legend {
  font-size: 18px;
  display: block;
  width: auto;
  padding-inline-start: 2px;
  padding-inline-end: 2px;
  margin: 0;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
}

.align-items-normal {
  align-items: normal;
}

.position-absolute {
  position: absolute !important;
}