<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/** Shopify CDN: Minification failed

Line 901:12 Expected identifier but found whitespace
Line 901:14 Unexpected "{"
Line 901:34 Expected ":"
Line 901:60 Expected ":"
Line 941:12 Expected identifier but found whitespace
Line 941:14 Unexpected "{"
Line 941:34 Expected ":"
Line 941:60 Expected ":"
Line 946:13 Expected identifier but found whitespace
Line 946:14 Unexpected "1px"
... and 2 more hidden warnings

**/
.login-note {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 0;
  border: 1px solid #e2e2e2;
  padding: 10px;
  border-radius: 3px;
}

.login-note svg {
  min-width: 17px;
  width: 17px;
}

.action_bottom button {
  margin-top: 10px;
}

#template .template_header {
  margin: 0px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#template .template_header h2 {
  margin: 0;
}

.input-row + .input-row {
  margin-top: 20px;
}

.small-form {
  padding: 25px;
  width: 100%;
  max-width: 500px;
}

.logo__image {
  width: 120px;
}

.account-screen {
  height: 100vh;
}

.account-screen__content {
  max-height: 100vh;
  overflow: scroll;
}
@media (min-width:768px){
  .account-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  .account-screen__content {
    padding: 50px;
  }
}

.account-screen__image {
  background-size: cover;
  background-position: center;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #57c498;
  -webkit-box-shadow: 0 0 0px 1000px rgb(88 196 152 / 12%) inset;
  transition: background-color 5000s ease-in-out 0s;
}

input[disabled] {
  background-color: #efefef; 
}

input[disabled]:hover {
  cursor: not-allowed
}

.customers-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: #f9bed7;
}

.customers-header__inner {
  display: flex;
  align-items: center;
}

.customers-main {
  display: grid;
  gap: 20px;
}

@media (min-width: 940px){
  .customers-main {
    grid-template-columns: 300px 1fr;
  }
}

.customers-sidebar,
.customers-body {
  background: #ffffff;
  border-radius: 4px;
  padding: 20px;
  border: 1px solid #e2e2e2;
}

.customers-sidebar {
  padding-bottom: 15px;
}

@media (min-width:940px){
  .customers-sidebar {
    align-self: start;
    position: sticky;
    top: 110px;
  }
}

.customers-body__header {
  display: flex;
  justify-content: space-between;
}

.customers-sidebar ul {
  margin: 0;
}

.customers-sidebar li {
  list-style: none;
  padding: 10px 0;
  display: flex;
  gap: 8px;
}

.customers-sidebar li:first-child {
  padding-top: 0;
}

.customers-sidebar li:last-child {
  padding-bottom: 0;
}

.customers-sidebar li .icon-box {
  width: 24px;    
  height: 20px;
}

.customers-sidebar li .icon-box svg {
  vertical-align: inherit;
  fill: #000;
}

.customers-sidebar li a {
  color: inherit;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.customers-sidebar li a:hover {
  color: #e53d3d;
}

.customers-sidebar li a:hover svg {
  stroke: #e53d3d !important;
}

.customers-sidebar li a &gt; span {
  display: flex;
  gap: 8px;
}

.customers-sidebar li a svg.feather-chevron-right {
  width: 16px;
  stroke: #cccccc;
}

.customers-sidebar li + li {
  border-top: 1px solid #e2e2e2;
}

.customers-order__products {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, 38px);
}

.customers-order {
  padding: 10px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
}

.customers-order + .customers-order {
  margin-top: 20px;
}

.customers-order__top {
  display: grid;
  gap: 10px;
}

@media (min-width: 768px){
  .customers-order__top {
    grid-template-columns: 1fr auto;
  }
}

.customers-order__botttom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
  gap: 10px;
}

@media (max-width: 767px) {
  .customers-order .btn,
  .customers-order .button {
    padding: 10px;
  }
}

@media (min-width: 768px){
  .customers-order {
    padding: 25px;
  }
  .customers-order__botttom {
    display: flex;
  }
  .order-details {
    padding: 0 20px;
  }
  .order-details + .order-details {
    border-left: 1px solid #e2e2e2;
  }
}

.order-details:first-child {
  padding-left: 0;
}

.order-details__label {
  font-weight: 600;
}

.status-cancel {
  color: #e53d3d;
}

fieldset {
  margin-bottom: 40px;
}

fieldset legend.heading-font {
  padding-bottom: 5px;
  margin-bottom: 15px;
  font-size: 1.3em;
  border-bottom: 1px solid #e2e2e2;
  width: 100%;
}

.customers-details {
  display: grid;
  gap: 20px;
}

@media (max-width: 767px){
  .customers-details__settings {
    order: 2;
  }
  .customers-details__description {
    order: 1;
  }
}

@media (min-width: 768px){
  .customers-details {
    grid-template-columns: 1fr 1fr;
  }
}

.customers-details_settings input,
.customers-details_settings select {
  width: 100%;
}

.customers-details__description p {
  padding: 20px;
  background: #efefef;
  border-radius: 4px;
  margin-bottom: 0;
}

.field select {
  line-height: 16px;
  padding: 1.3rem 0.5rem 0.8rem 1rem !important;
}

.select-field::before {
  pointer-events: none;
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  width: 28px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg fill='{{ font_col_base | color_to_rgb }}' height='18' width='18' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/%3E%3Cpath d='M0-.75h24v24H0z' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: -5px center;
}

.recent-products-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.recent-products-list .product-block__title {
    font-weight: 400;
}

@media (min-width: 768px){
  .recent-products-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.product-block__title {
  color: black;
}

#shopify-section-recently-viewed {
  margin-top: 35px;
}

/* component-form */
  
.field__input,
.select__select,
.customer .field input,
.customer select {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow .1s ease;
  border-radius: 2px;
  height: 3rem;
  min-height: calc(1px * 2);
  min-width: calc(7rem + (1px * 2));
  position: relative;
  border: 0;
}

.field:after,
.select:after,
.customer .field:after,
.customer select:after {
  display: block !important;
  pointer-events: none;
  content: '';
  position: absolute;
  inset: 1px;
  border: 0.1rem solid transparent;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0, 0.1);
  transition: box-shadow .1s ease;
  z-index: 1;
}

.select__select {
  font-size: 1.2rem;
  color: rgba(0,0,0, 0.75);
}

.field:hover.field:after,
.select:hover.select:after,
.select__select:hover.select__select:after,
.customer .field:hover.field:after,
.customer select:hover.select:after,
.localization-form__select:hover.localization-form__select:after {
  box-shadow: 0 0 0 calc(0.1rem + 1px) rgba(249, 190, 215,0.5);
  outline: 0;
  border-radius: 2px;
}

.field__input:focus-visible,
.select__select:focus-visible,
.customer .field input:focus-visible,
.customer select:focus-visible,
.localization-form__select:focus-visible.localization-form__select:after {
  box-shadow: 0 0 0 calc(0.1rem + 1px) rgba(249, 190, 215);
  outline: 0;
  border-radius: 2px;
}

.field__input:focus,
.select__select:focus,
.customer .field input:focus,
.customer select:focus,
.localization-form__select:focus.localization-form__select:after {
  box-shadow: 0 0 0 calc(0.1rem + 1px) rgba(249, 190, 215);
  outline: 0;
  border-radius: 2px;
}

.localization-form__select:focus {
  outline: 0;
  box-shadow: none;
}

.text-area,
.select,
textarea {
  display: flex;
  position: relative;
  width: 100%;
  font-family: inherit;
}

/* Select */

.select .icon-caret,
.customer select + svg {
  height: 0.6rem;
  pointer-events: none;
  position: absolute;
  top: calc(50% - 0.2rem);
  right: calc(1px + 1.5rem);
}

.select__select,
.customer select {
  cursor: pointer;
  padding: 0 2rem;
  margin: 1px;
  min-height: 2px;
}

/* Field */

.field {
  position: relative;
  width: 100%;
  display: flex;
  transition: box-shadow .1s ease;
}

.field + .field,
.toggle-field {
  margin-top: 10px;
}

.customer .field {
  display: flex;
}

.field--with-error {
  flex-wrap: wrap;
}

.field__input,
.customer .field input {
  flex-grow: 1;
  text-align: left;
  padding: 1.5rem;
  margin: 1px;
  transition: box-shadow .1s ease;
}

.field__label,
.customer .field label {
  font-size: 0.9rem;
  left: 0.9rem;
  top: 0.9rem;
  margin-bottom: 0;
  pointer-events: none;
  position: absolute;
  transition: top .1s ease;
  color: rgba(0,0,0, 0.55);
  line-height: 1.5;
}

.field__input:focus ~ .field__label,
.field__input:not(:placeholder-shown) ~ .field__label,
.field__input:-webkit-autofill ~ .field__label,
.customer .field input:focus ~ label,
.customer .field input:not(:placeholder-shown) ~ label,
.customer .field input:-webkit-autofill ~ label {
  font-size: 0.6rem;
  top: 0.4rem;
  left: 1rem;
  letter-spacing: 0.04rem;
}

.field__input:focus,
.field__input:not(:placeholder-shown),
.field__input:-webkit-autofill,
.customer .field input:focus,
.customer .field input:not(:placeholder-shown),
.customer .field input:-webkit-autofill {
  padding: 1.5rem 0.5rem 0.8rem 1rem;
  margin: 1px;
}

.field__input::-webkit-search-cancel-button,
.customer .field input::-webkit-search-cancel-button {
  display: none;
}

.field__input::placeholder,
.customer .field input::placeholder {
  opacity: 0;
}

.field__button {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: currentColor;
  cursor: pointer;
  display: flex;
  height: 4.4rem;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.4rem;
}

.field__button &gt; svg {
  height: 2.5rem;
  width: 2.5rem;
}

.field__input:-webkit-autofill ~ .field__button,
.field__input:-webkit-autofill ~ .field__label,
.customer .field input:-webkit-autofill ~ label {
  color: rgb(0, 0, 0);
}

/* Text area */

.text-area {
  min-height: 10rem;
  resize: none;
}

input[type='checkbox'] {
  display: inline-block;
  width: auto;
  margin-right: 0.5rem;
}

/* Form global */

.form__label {
  display: block;
  margin-bottom: 0.6rem;
}

.form__message {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 1rem;
}

.form__message--large {
  font-size: 1.6rem;
}

.customer .field .form__message {
  font-size: 1.4rem;
  text-align: left;
}

.form__message .icon,
.customer .form__message svg {
  flex-shrink: 0;
  height: 1.3rem;
  margin-right: 0.5rem;
  width: 1.3rem;
}

.form__message--large .icon,
.customer .form__message svg {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 1rem;
}

.customer .field .form__message svg {
  align-self: start;
}

.form-status {
  margin: 0;
  font-size: 1.6rem;
}

.form-status-list {
  padding: 0;
  margin: 2rem 0 4rem;
}

.form-status-list li {
  list-style-position: inside;
}

.form-status-list .link::first-letter {
  text-transform: capitalize;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 28px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(249 190 215 / 50%);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch input:checked + .slider {
  background-color: #f9bed7;
}

.switch input:disabled:hover + .slider {
  cursor: not-allowed;
}
  
.switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(31px);
  -ms-transform: translateX(31px);
  transform: translateX(31px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


.customers-intro {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.customers-intro__cta {
  background-color: #f9bed7;
  background-size: cover;
  border-radius: 5px;
  padding: 20px;
}
  
.productexperts {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.productexperts__testers {
  display: flex;
  margin-right: 5px;
}

.productexperts__avatar {
  width: 52px;
  height: 52px;
  background-color: #FFFFFF;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.productexperts__avatar img {
  border-radius: 50%;
  background-color:#f9bed7;
}

.productexperts__avatar:not(:first-of-type){
  margin-left: -1rem;
}

.productexperts__text {
  display: flex;
  flex-direction: column;
}
  
.notice,
.cart-discount__label {
  margin-top: 0;
  border-radius: 30px;
  font-size: 0.8rem;
  padding: 0px 6px;
  font-family: 'Futura Std';
  display: inline-block;
  line-height: 1.6em;
}

.notice-negative {
  color: #e53d3d;
  background-color: rgb(229 61 61 / 30%);
}

.notice-warning {
  color: rgba(79, 71, 0, 1);
  background-color: rgba(255, 235, 120, 0.6); 
}

.notice-positive,
.cart-discount__label {
  color: #58c498;
  background-color: rgb(88 196 152 / 20%);  
}

.cart-discount__label svg {
  stroke: #58c498;
}

.order-addresses {
  display: grid;
  grid-gap: 10px;
  margin-top: 20px;
}

.order-status {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 768px){
  .customers-intro,
  .order-addresses {
    grid-template-columns: 1fr 1fr;
  }
}

.order-addresses__address {
  padding: 20px;
  background: #efefef;
  border-radius: 4px;
}

.order-addresses__address p {
  margin:0;
}
  
.customers-body &gt; .title {
  display:flex;
  align-items:center;
  gap: 5px;
}

.opposing-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.order-table {
  margin-top:30px;
}

.order-table th {
  border-bottom: none;
}

.order-table td {
  vertical-align: middle;
}

@media (max-width: 400px) {
  .order-table td {
    padding: 3px;
  }
}

.order-table tfoot td {
  border: none;
}

.order-table tfoot td:first-child {
  text-align: right;
}

.order-table tfoot tr.order_total td:not(:first-child) {
  border-top: 1px solid #e2e2e2;
  font-weight: 600;
}

.order-table tfoot tr.order_total td.total {
  letter-spacing: -1px;
}

#customer_detail .address p,
.address_table .view_address p,
#order_address .address p {
  margin-bottom: 0;
}

#order_details {
  clear: both;
  width: 100%;
}

.order-table-container {
  overflow: auto;
}

.order-table .price,
.order-table .total,
.order-table tfoot td:last-child {
  text-align: right;
}

.order-table .product-price {
  justify-content: right;
}

.order-table .unit-price {
  font-size: {{ font_size_base_int | times: 0.8 | round }}px;
}

@media (max-width:520px){
  .customer-service-button {
    display: none !important;
  }
}

#customer_detail .address p,
.address_table .view_address p,
#order_address .address p {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  #order_details .price,
#order_details .unit-price {
    visibility: hidden;
    padding: 0;
    font-size: 0;
  }
  #order_details .price .cart-discount__label {
    display: none;
  }
}

.order-table-container {
  overflow: auto;
}

.order-table .price,
.order-table .total,
.order-table tfoot td:last-child {
  text-align: right;
}
.order-table .product-price {
  justify-content: right;
}
.order-table .unit-price {
  font-size: {{ font_size_base_int | times: 0.8 | round }}px;
}

#comments .comment {
  padding-top: 20px;
  border-top: 1px solid {{ dividers_col }};
}

#comments .comment.first {
  border-top: 0;
}

.order-product {
  position: relative;
}

.order-product img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.order-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.order-header__details h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width:768px){
  .line-price-container {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }
  .order-table td.quantity {
    text-align: right;
  }
}

.cart-discount-list {
  margin: 5px 0;
}

.customers-order__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

@media (max-width: 767px) {
  .customers-order__actions div,
  .customers-order__actions a {
    width: 100%;
    display: block;
  }
}

.order-header__tracking .button {
  background: #57c498;
  border: 1.5px solid #57c498;
}

.order-header__tracking .button:hover {
    filter: brightness(1.1);
}
.section-heading__heading {
  font-weight: 600;
}

.order-header__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}</pre></body></html>