@charset "UTF-8";
:root {
  --currency-symbol: "€";
}

.checkout .select-box {
  color: #8b8b8b;
  border: 2px solid #8884;
  padding: 2rem;
  display: block;
  text-align: center;
  height: 100%;
  cursor: pointer;
}
.checkout .select-box h4 {
  margin: 2rem 0 1rem;
}
.checkout .select-box p {
  margin: 1rem 0;
}
.checkout .box-radio {
  opacity: 0.01;
}
.checkout .select-hook {
  padding-bottom: 1rem;
}
.checkout .select-hook:hover .box-radio:not(:disabled) ~ .select-box {
  box-shadow: 0 0 0px 2px var(--nice-color);
}
.checkout [name=account_type]:checked ~ .select-box {
  border-color: var(--nice-color);
  color: var(--nice-color);
}
.checkout h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 1.5rem 0 1rem;
}
.checkout .input-wrap {
  padding: 3rem 2rem;
  border: 1px solid #8886;
  display: block;
}
@media (max-width: 575.98px) {
  .checkout .input-wrap {
    padding: 2rem 1rem;
  }
}
.checkout label.align-z {
  text-indent: -2rem;
  margin-left: 2rem;
  width: calc(100% - 2rem);
}
.checkout .sticky {
  position: sticky;
  top: 0;
}

.w-6rem {
  width: 6rem;
}

.h-3rem {
  height: 3rem;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price {
  color: var(--nice-color);
  white-space: nowrap;
}
.price:before {
  content: var(--currency-symbol);
}
.price:after {
  content: none;
}
.price:empty {
  color: transparent;
}
.price.price-huf:before {
  content: none;
}
.price.price-huf:after {
  content: " Ft";
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  margin: 2px 0;
}
.subtotal-row.total-row {
  font-size: 1.5em;
}

.order-items .subtotal-row:hover {
  background-color: #ccc1;
}

label.form-label {
  width: 100%;
  line-height: normal;
  color: #8b8b8b;
  margin-bottom: 1.5rem;
}
label.form-label > img, label.form-label svg {
  margin-right: 1rem;
  height: 1.5rem;
}
label.form-label input,
label.form-label select,
label.form-label textarea {
  border-width: 1px;
  width: 100%;
  margin-top: 0.5rem;
  line-height: 1.5;
  color: #4d4d4d;
}
label.form-label input:focus-visible,
label.form-label select:focus-visible,
label.form-label textarea:focus-visible {
  outline: none;
}
label.form-label input:disabled,
label.form-label select:disabled,
label.form-label textarea:disabled {
  color: #8886;
}
label.form-label input[readonly],
label.form-label select[readonly],
label.form-label textarea[readonly] {
  color: #bbb;
  font-weight: bold;
  cursor: default;
}
label.form-label select {
  padding: 2.3px 0;
  cursor: pointer;
}
label.form-label select [disabled] {
  color: lightblue;
}
label.form-label input[type=checkbox] {
  width: auto;
  margin: 0 0.5rem;
}
label.form-label input::placeholder {
  color: #888;
  opacity: 70%;
}

input[type=number] {
  width: 6rem;
  height: 3rem;
  padding: 0 4px 0 1rem;
  font-size: 1.2rem;
  line-height: 3rem;
  border: 2px solid #8b8b8b;
}
input[type=number]:focus-visible {
  outline: 1px solid gray;
}
input[type=number]::-webkit-inner-spin-button {
  margin-block: -4px;
  margin-inline: 4px -4px;
}

.placer:empty {
  background-color: #f4f4f4;
  text-align: right;
  min-width: 80px;
}

.item-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  margin: 3px 1px;
  border-radius: 50%;
  color: red;
  font-weight: bold;
}
.item-delete:hover {
  background-color: #f00;
  color: #fff;
}

.item-description {
  display: flex;
}

.product-category a:not(:last-child):after {
  content: ", ";
}

.products .product {
  margin: 10px 0;
}
.products .product:hover {
  box-shadow: 0 0px 30px -20px #666;
}
.products .product .product-title {
  --line-height: 30px;
  height: calc(2 * var(--line-height));
}
.products .product .product-image {
  margin: 2px;
  padding: 2px;
}
.products .product .product-swap-image {
  max-width: 500px;
  max-height: 500px;
  margin: auto;
}