@charset "UTF-8";

/* Files/Templates/Designs/Swift/Assets/css/styles.scss */
.product-details {
  background: white;
}
.product-details .variants-table {
  display: block;
  overflow-x: auto;
}
.product-details .loading-skeleton img {
  max-width: 100%;
}
.product-details .description-table {
  display: grid;
  column-gap: 12px;
  grid-template-columns: fit-content(200px) 1fr;
}
.product-details .documents-actions {
  color: #ff5b00;
  font-weight: 700;
}
.product-details .documents-actions span {
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
}
.product-details .documents-actions span:hover {
  background-color: #fde7dc;
}
.product-details .spec-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  grid-gap: 1px;
}
.product-details .spec-container .spec-item {
  box-shadow: 1px 0 0 rgb(203, 213, 225);
  text-align: center;
}
.product-details .spec-container .spec-item:last-child {
  box-shadow: 0 0 0 rgb(203, 213, 225);
}
.product-details .tooltip-btn {
  position: relative;
  border-radius: 50%;
  padding: 6px;
}
.product-details .tooltip-btn:hover {
  background-color: #fde7dc;
}
.product-details .tooltip {
  display: none;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  z-index: 100;
}
.product-details .tooltip-btn:hover .tooltip {
  display: block;
  opacity: 1 !important;
}
.product-details table tbody tr {
  height: 55px;
  transition: opacity 0.3s;
}
.product-details table tbody tr td:first-child {
  text-align: left;
}
.product-details table td.sticky,
.product-details table th.sticky {
  position: sticky;
  left: 0;
  background-color: white;
  z-index: 2;
  --bs-table-striped-bg: white;
}
.product-details table td.sticky::before,
.product-details table th.sticky::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0;
  bottom: -1px;
  width: 5px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
}
.product-details table td.sticky::after,
.product-details table th.sticky::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 0;
  bottom: -1px;
  width: 5px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}
.product-details table .header-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}
.product-details table .header-cell input[type=text] {
  background-color: #FDF7F4;
  background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">%0D%0A<path d="M17.5 17.5L13.8807 13.8807M13.8807 13.8807C15.0871 12.6743 15.8333 11.0076 15.8333 9.16667C15.8333 5.48477 12.8486 2.5 9.16667 2.5C5.48477 2.5 2.5 5.48477 2.5 9.16667C2.5 12.8486 5.48477 15.8333 9.16667 15.8333C11.0076 15.8333 12.6743 15.0871 13.8807 13.8807Z" stroke="%23F75200" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>%0D%0A</svg>%0D%0A');
  background-size: 16px;
  background-position: 6px 9px;
  background-repeat: no-repeat;
  border-radius: 6px;
  color: var(--swift-button-primary-foreground-color);
  border-width: 0;
  width: 100%;
  margin-top: 6px;
  padding: 6px 6px 6px 26px;
  font-size: 14px;
}
.product-details table th.column-50 {
  width: 50px;
}
.product-details table th.column-100 {
  width: 100px;
}
.product-details table .table-badge {
  padding-right: 0 !important;
}
.product-details table .add-to-cart-table svg {
  width: 1.3rem !important;
  height: 1.3rem !important;
}
.product-details table .selected-variant {
  border: 1px solid var(--swift-button-primary-foreground-color) !important;
}
.product-details table .actions-cell button {
  border-radius: 50%;
}
.product-details table .actions-cell button svg {
  width: 1.3rem !important;
  height: 1.3rem !important;
}
.product-details ul {
  list-style: none;
  color: #828282;
  font-weight: bold;
}
.product-details ul li::before {
  content: "\2022";
  color: var(--swift-button-primary-foreground-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.product-details .carousel-indicators {
  margin-bottom: -50px;
}
.product-details .carousel-indicators button[type=button] {
  background-color: var(--swift-button-primary-foreground-color);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 8px;
}
.product-details .quantity-input {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
}
.product-details .quantity-input input {
  border: 0;
  text-align: center;
  max-width: 30px;
  background-color: transparent;
}
.product-details .quantity-input .control {
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: white;
  font-weight: bold;
  -webkit-box-shadow: 5px 3px 14px -6px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 5px 3px 14px -6px rgba(0, 0, 0, 0.7);
  box-shadow: 5px 3px 14px -6px rgba(0, 0, 0, 0.7);
  user-select: none;
  transition: opacity 0.3s;
}
.product-details .quantity-input .control:hover {
  background-color: #f7f7f7;
}
.product-details .quantity-input .control.disabled {
  opacity: 0.4;
  cursor: default;
}
.product-details .outlet-info {
  font-size: medium;
  font-style: italic;
}
.product-details .modal-content {
  min-height: 100%;
}
.product-details .modal-content .yt-player-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}
.product-details .modal-content .yt-player-container .yt-player-header {
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.product-details .modal-content .yt-player-container .yt-player,
.product-details .modal-content .yt-player-container .yt-player-background {
  width: 560px;
  height: 315px;
}
.product-details .modal-content .yt-player-container .yt-player-background {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #efefef;
}
.product-details .modal-content .yt-player-container .yt-player-background svg {
  width: 120px;
  height: 120px;
  opacity: 0.4;
}
.product-details .modal-content .document-row {
  cursor: pointer;
  font-weight: 400;
  position: relative;
}
.product-details .modal-content .document-row:hover {
  background-color: #fde7dc;
}
.product-details .modal-content .document-row:hover .link-icon {
  right: 4px;
}
.product-details .modal-content .document-row svg {
  color: #F75200;
}
.product-details .modal-content .document-row .link-icon {
  transition: right 0.2s;
  position: relative;
  right: 0;
}
.product-details .modal-content .modal-footer {
  padding: 0;
}
.product-details .modal-content .modal-footer span {
  display: block;
  color: #ff5b00;
  font-weight: 700;
  padding: 20px;
  border-radius: 0;
  margin: 0;
  cursor: pointer;
}
.product-details .modal-content .modal-footer span.active {
  background-color: #fde7dc;
}
.product-details .scrollbar::-webkit-scrollbar-track {
  background-color: #E6E1DE;
  border-radius: 3px;
}
.product-details .scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 9px;
  background-color: #E6E1DE;
}
.product-details .scrollbar::-webkit-scrollbar-thumb {
  background-color: #94918F;
  border-radius: 3px;
}
@media only screen and (max-width: 768px) {
  .product-details {
    width: 90vw;
  }
  .product-details img {
    width: 80% !important;
    height: auto !important;
    padding-bottom: 3rem;
  }
  .product-details .carousel-control-prev {
    justify-content: left !important;
  }
  .product-details .carousel-control-next {
    justify-content: right !important;
  }
  .product-details .product {
    flex-direction: column !important;
  }
  .product-details .modal-content .yt-player-container .yt-player,
  .product-details .modal-content .yt-player-container .yt-player-background {
    width: 280px;
    height: 158px;
  }
  .product-details .modal-content .yt-player-container .yt-player-background svg {
    width: 40px;
    height: 40px;
  }
}
#variants-list .variants-table-container {
  background-color: white;
}
#variants-list .variants-table-container .variants-table {
  table-layout: fixed;
}
#variants-list .variants-table-container .variants-table a {
  font-weight: normal;
  transition: margin 0.15s ease-out;
}
#variants-list .variants-table-container .variants-table a:hover {
  color: #9B9B9B;
}
#variants-list .variants-table-container .variants-table th:nth-child(1) {
  width: 5%;
}
#variants-list .variants-table-container .variants-table th:nth-child(2) {
  width: 25%;
}
#variants-list .variants-table-container .variants-table th:nth-child(3) {
  width: 17%;
}
#variants-list .variants-table-container .variants-table th:nth-child(4) {
  width: 10%;
}
#variants-list .variants-table-container .variants-table th:nth-child(5) {
  width: 10%;
}
#variants-list .variants-table-container .variants-table th:nth-child(6) {
  width: 10%;
}
#variants-list .variants-table-container .variants-table th:nth-child(7) {
  width: 10%;
}
#variants-list .variants-table-container .variants-table th:nth-child(8) {
  width: 13%;
}
#variants-list .variants-table-container .variants-table img {
  max-width: 40px;
}
#variants-list .variants-table-container .variants-table .actions-cell {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
#variants-list .variants-table-container .variants-table .actions-cell button {
  border-radius: 50%;
}
#variants-list .variants-table-container .variants-table .actions-cell button svg {
  width: 1.3rem !important;
  height: 1.3rem !important;
}
#variants-list .variants-table-container .variants-table .quantity-input {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
}
#variants-list .variants-table-container .variants-table .quantity-input input {
  border: 0;
  text-align: center;
  max-width: 30px;
  background-color: transparent;
}
#variants-list .variants-table-container .variants-table .quantity-input .control {
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: white;
  font-weight: bold;
  -webkit-box-shadow: 5px 3px 14px -6px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 5px 3px 14px -6px rgba(0, 0, 0, 0.7);
  box-shadow: 5px 3px 14px -6px rgba(0, 0, 0, 0.7);
  user-select: none;
  transition: opacity 0.3s;
}
#variants-list .variants-table-container .variants-table .quantity-input .control:hover {
  background-color: #f7f7f7;
}
#variants-list .variants-table-container .variants-table .quantity-input .control.disabled {
  opacity: 0.4;
  cursor: default;
}
#variants-list .badge {
  background-color: #ff5b00 !important;
  color: white;
}
#variants-list .load-more {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
#variants-list .tooltip-btn {
  border-radius: 50%;
  padding: 6px;
}
#variants-list .tooltip-btn:hover {
  background-color: #fde7dc;
}
#variants-list .tooltip {
  display: none;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  z-index: 100;
}
#variants-list .tooltip-btn:hover .tooltip {
  display: block;
  opacity: 1 !important;
}
#variants-list header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#variants-list .top-right-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
}
#variants-list .top-right-actions label {
  width: 50px;
  height: 22px;
  background: #ff5b00;
  display: block;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
}
#variants-list .top-right-actions label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
}
#variants-list .top-right-actions a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
}
#variants-list .top-right-actions a:hover {
  color: #ff5b00;
}
#cart-custom .order-lines {
  border-top: 1px solid #d9d9d9;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
}
#cart-custom .order-lines .order-line {
  position: relative;
  background: #fff;
}
#cart-custom .order-lines .order-line:last-child {
  margin-bottom: 0 !important;
}
#cart-custom .order-lines .order-line .cart-item-img {
  max-width: 60px;
}
@media (max-width: 575.98px) {
  #cart-custom .order-lines .order-line .cart-item-img {
    max-width: 200px;
  }
}
#cart-custom .order-lines .order-line .product-data .product-header {
  font-size: 1.2rem;
  font-family: Merriweather;
}
#cart-custom .order-lines .order-line .product-data a {
  font-weight: 800;
  text-decoration: none;
}
#cart-custom .order-lines .order-line .product-data .numbers > p {
  background-color: #fda472;
  color: #fff;
  padding: 2px 8px;
  border-radius: 8px;
  margin: 0;
  font-size: 1rem;
}
#cart-custom .order-lines .order-line .tooltip-btn {
  position: relative;
  border-radius: 50%;
  padding: 6px;
}
#cart-custom .order-lines .order-line .tooltip-btn:hover {
  background-color: #fde7dc;
}
#cart-custom .order-lines .order-line .tooltip {
  display: none;
  position: absolute;
  bottom: -135%;
  left: 20%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  z-index: 1000;
}
#cart-custom .order-lines .order-line .tooltip-btn:hover .tooltip {
  display: block;
  opacity: 1 !important;
}
#cart-custom .order-lines .order-line .quantity-input input {
  border: 0;
  text-align: center;
  max-width: 40px;
  background-color: transparent;
  margin-top: 2px;
}
#cart-custom .order-lines .order-line .quantity-input .control {
  display: block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  background-color: white;
  font-weight: bold;
  -webkit-box-shadow: 5px 3px 14px -6px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 5px 3px 14px -6px rgba(0, 0, 0, 0.7);
  box-shadow: 5px 3px 14px -6px rgba(0, 0, 0, 0.7);
  user-select: none;
  transition: opacity 0.3s;
}
#cart-custom .order-lines .order-line .quantity-input .control:hover {
  background-color: #f7f7f7;
}
#cart-custom .order-lines .order-line .quantity-input .control.disabled {
  opacity: 0.4;
  cursor: default;
}
#checkout-step1 [v-cloak] {
  display: none;
}
#checkout-step1 .active-tab {
  background-color: var(--swift-button-primary-hover-background-color);
  color: var(--swift-button-primary-hover-foreground-color);
}
#checkout-step1 .inactive-tab {
  background-color: var(--swift-button-primary-background-color);
  color: var(--swift-button-primary-foreground-color);
}
#checkout-step1 .first-row-selection {
  display: block;
  height: 28px;
}
#checkout-step1 .column {
  display: flex;
  flex-direction: column;
}
#checkout-step1 .section {
  border-left: 2px solid var(--swift-accent-color);
  padding-left: 12px;
  margin-bottom: 4rem;
}
#checkout-step1 .section:last-child {
  margin-bottom: 0;
}
#checkout-step1 .section header {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 8px;
}
#checkout-step1 .section .form-floating,
#checkout-step1 .section .grid {
  margin-bottom: 24px;
}
#checkout-step1 .section .form-floating:last-child,
#checkout-step1 .section .grid:last-child {
  margin-bottom: 0;
}
#checkout-step1 .section .form-floating {
  position: relative;
}
#checkout-step1 .section .form-floating input {
  z-index: 2;
}
#checkout-step1 .section .form-floating .error-msg {
  z-index: 1;
  position: absolute;
  right: 8px;
  bottom: -20px;
  font-size: 0.7rem;
  color: var(--swift-accent-color);
  padding: 0;
  margin: 0;
}
#checkout-step1 .section .error-input {
  background-color: rgba(255, 91, 0, 0.0901960784);
}
#summarySidebar #orderSummary {
  background: #fff;
}
#summarySidebar #orderSummary .header {
  margin-left: 8px;
  margin-top: 8px;
}
#summarySidebar #orderSummary .order-line {
  padding: 0.5em;
}
#summarySidebar #orderSummary .order-line:hover {
  background: #eeeeee;
}
#summarySidebar #orderSummary .alert {
  text-wrap: balance;
  text-align: center;
  border: 0;
  border-radius: 0;
  margin: 0.5rem 0 !important;
}
#products-grid header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#products-grid .top-right-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
}
#products-grid .top-right-actions label {
  width: 50px;
  height: 22px;
  background: #ff5b00;
  display: block;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
}
#products-grid .top-right-actions label:after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
}
#products-grid .top-right-actions a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
}
#products-grid .top-right-actions a:hover {
  color: #ff5b00;
}
