@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/HelveticaNeue.ttf");
}

@font-face {
  font-family: "Helvetica Neue";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/HelveticaNeue-Bold.ttf");
}

@font-face {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Gilroy-Light.ttf");
}

@font-face {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Gilroy-Medium.ttf");
}

@font-face {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/Gilroy-Bold.ttf");
}

:root {
  --black: #101820;
  --grey-scerne: #868a92;
  --grey-scerne-800: #545860;
  --grey-scerne-700: #868a92;
  --grey-scerne-400: #d6dae2;
  --grey-scerne-200: #eaeef4;
  --primary: #cb3f34;
}

#picup-calc,
#picup-checkout,
#picup-cart {
  font-family: Gilroy, Helvetica, sans-serif;
}

h1.large,
h2.large {
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 600;
  font-family: Gilroy, Helvetica, sans-serif;
}

#picup-calc h2,
#picup-checkout h2 {
  line-height: 1;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
  font-family: Gilroy, Helvetica, sans-serif;
  text-transform: none;
}

#picup-cart h2 {
  font-size: 20px;
  margin-bottom: 26px;
  font-weight: 600;
  font-family: Gilroy, Helvetica, sans-serif;
  line-height: 1.2;
  text-transform: none;
}

.product-card {
  position: relative;
  width: 328px;
  /*height: 320px; */
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.product-card .product-image {
  height: 326px;
  width: auto;
  margin-bottom: 12px;
}

.product-card p.product-name {
  font-family: Gilroy, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  color: var(--black);
}

.product-card .overlay {
  position: absolute;
  bottom: 0;
  width: calc(100% - 4px);
  margin: 2px;
  background-color: #fff;
  padding: 12px;
}

.product-card .overlay .overlay-title {
  color: var(--grey-scerne-800);
  text-transform: uppercase;
  font-size: 11px;
  border-bottom: 1px solid var(--grey-scerne-200);
}

.product-card .product-price {
  position: absolute;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  top: 10px;
  right: 10px;
  background: var(--primary);
  color: #fff;
  height: 56px;
  width: 56px;
  border-radius: 100%;
}

.product-card .product-price span {
  line-height: 120%;
}

.light {
  color: var(--grey-sceme-700, #868a92);

  /* Gilroy/13/13-medium */
  font-family: Gilroy;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
}

label {
  color: var(--black, #101820);
}

#picup-checkout {
  font-size: 14px;
}

#picup-checkout-overlay,
.picup-checkout-overlay,
#picup-register-overlay,
#picup-login-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0005;
  z-index: 99999;
  align-content: center;
  justify-content: center;
  align-items: center;
  /* align-items: flex-start; */
  overflow: scroll;
}

.plugin-login {
  /* max-height: 888px; */
  max-height: 90vh;
  max-width: 90vw;
  overflow-y: scroll;
  overflow-x: hidden;
  position: relative;
}

.plugin-login label {
  font-weight: normal;
  font-family: Gilroy, Helvetica, sans-serif;
  font-size: 14px;
  text-transform: none;
}

.plugin-login .form-row-wide {
  display: flex;
  flex-direction: column;
}

.plugin-login button {
  border-radius: 64px !important;
  border: 1px solid var(--grey-sceme-800, #545860) !important;
  display: flex !important;
  height: 36px !important;
  padding: 10px 22px !important;
  justify-content: center !important;
  align-items: center !important;
  text-transform: uppercase !important;
  color: var(--black, #101820) !important;
  font-family: Gilroy !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 22px !important;
  letter-spacing: 1.12px !important;
  background-color: #fff !important;
  margin-top: 24px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: auto !important;
}

.plugin-login button:hover::before {
  transition: width 2s;
  content: "\2022";
  color: #cb3f34;
  font-size: 28px;
  margin-right: 12px;
}

#picup-checkout-overlay img.loading-spinner {
  width: 125px;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
  transform-origin: 50% 51%;
}

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

#picup-checkout .caption {
  color: var(--grey-sceme-800, #545860);
  font-family: Gilroy;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 200% */
  letter-spacing: 0.48px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.ui-datepicker {
  border: 1px solid var(--grey-sceme-700, #868a92);
  background: var(--version-1-white, #fff);
  box-shadow: 0px 9px 22px -12px #dbdcdd;

  color: var(--black, #101820);
  /* Gilroy/16/SemiBold */
  font-family: Gilroy;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */

  padding: 16px;
}

.ui-datepicker a {
  color: var(--black, #101820);
}

.ui-datepicker table,
.ui-datepicker th,
.ui-datepicker td {
  border: none;
  text-align: center;
}

.ui-datepicker td {
  width: 48px;
  height: 48px;
}

.ui-datepicker th {
  color: var(--grey-sceme-700, #868a92);
  text-align: center;
  /* Text sm/Regular */
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.ui-datepicker .ui-datepicker-title {
  text-align: center;
  margin-top: -24px;
  margin-bottom: 12px;
}

.ui-datepicker-current-day {
  background-color: #cb3f34;
  border-radius: 100%;
  color: #fff;
}
.ui-datepicker-current-day a {
  color: #fff;
}

.ui-datepicker-next.ui-corner-all {
  float: right;
}

.ui-datepicker-next,
.ui-datepicker-prev {
  cursor: pointer;
}

.ui-datepicker-next.ui-state-disabled span,
.ui-datepicker-prev.ui-state-disabled span {
  color: var(--grey-sceme-500, #c2c6ce);
}

.ui-datepicker-unselectable span {
  color: var(--grey-sceme-500, #c2c6ce);
}

.mobile-only {
  display: none !important;
}

@media (max-width: 576px) {
  .mobile-only {
    display: inherit !important;
  }

  .not-on-mobile {
    display: none !important;
  }

  .categories-container {
    justify-content: center;
  }

  .category-card p.category-name {
    display: none !important;
  }

  .category-card .overlay {
    bottom: 0 !important;
    opacity: 1 !important;
  }

  .overlay-subcategories span {
    color: #000;
  }

  .product-sidebar {
    height: 0;
    width: 100% !important;
    overflow: hidden;
    transition: height 0.5s;
  }

  .product-sidebar.expanded {
    height: 100%;
    width: 100%;
  }

  .product-container {
    flex-direction: column;
  }

  .product-card {
    width: 100%;
  }

  .product-image {
    width: 100% !important;
    height: auto !important;
  }

  .sidebar-dropdown {
    color: var(--Black, #101820);
    font-family: Gilroy;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 133.333% */
    border-bottom: 1px solid var(--grey-sceme-300, #e0e4ec);
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 12px;
  }

  .category-card {
    width: 100% !important;
    background-size: cover;
    height: 500px !important;
  }

  .categories-container a {
    width: 100%;
  }

  .add-to-cart-overlay {
    position: absolute !important;
    height: 100% !important;
    width: 100% !important;
  }

  .add-to-cart-wrapper {
    position: absolute;
    top: 0;
  }

  .add-to-cart .images {
    flex-direction: column;
  }

  .add-to-cart .additional-images {
    margin-bottom: 100px;
  }

  .main-image .product-card {
    width: 100% !important;
    height: 100% !important;
  }

  .additional-images-container {
    grid-template-columns: 1fr !important;
    justify-items: center;
  }

  #picup-cart {
    height: auto !important;
    width: 100% !important;
    top: unset !important;
  }

  #picup-checkout {
    width: 100% !important;
  }

  .container.checkout-container {
    display: flex;
    flex-direction: column-reverse;
    position: relative;
  }

  #picup-cart {
    position: absolute;
    height: auto !important;
    width: 100% !important;
    top: unset !important;
    padding-right: 0 !important;
    background: #fff;
    border: none;
    padding-top: 0 !important;
  }

  .picup-cart-inner {
    position: relative;
    height: 0 !important;
    overflow: hidden;
  }

  .mobile-summary.active ~ .picup-cart-inner {
    height: 100% !important;
    width: 100vw;
    /* margin-left: -15px; */
    margin-top: 0;
    padding: 15px;
    z-index: 100;
    background: #fff;
    transition: height 0.5s;
  }

  .mobile-summary.mobile-only {
    width: 100vw;
    /* margin-left: -15px; */
    padding: 12px 16px;
    background: #f4f5f8;
    margin-bottom: 0;
    display: flex !important;
    justify-content: space-between;
    z-index: 100;
    position: relative;

    color: var(--Black, #101820);
    font-family: Gilroy;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
  }

  .mobile-summary.mobile-only .total {
    color: var(--Black, #101820);
    text-align: right;

    /* Helvetica Neue/H4 */
    font-family: Helvetica Neue;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 28px; /* 140% */
  }

  .mobile-summary-overlay {
    display: none;
    position: fixed;
    height: 100vh;
    width: 100vw;
    opacity: 0.21;
    background: var(--Black, #101820);
    top: 0;
    left: 0;
    z-index: 99;
  }

  .mobile-summary.active + .mobile-summary-overlay {
    display: block;
  }

  #picup-calc-totals-wrapper {
    width: calc(100% - 30px);
  }

  .picup-cart-line-total-wrapper {
    bottom: auto;
  }

  .woocommerce-notices-wrapper {
    display: none;
  }

  .add-to-cart-footer {
    position: fixed;
    bottom: 0;
    background: #fff;
    width: 100% !important;
    left: 0;
    padding: 12px;
  }

  .add-to-cart-footer .next {
    margin-right: 24px;
  }

  .elementor-menu-cart__main,
  .minicart-content.open {
    width: 90vw;
    left: 5vw;
    top: 5vh;
    height: 90vh;
    overflow-y: scroll;
    min-width: 180px;
  }

  .minicart-content .product-item .thumb img {
    width: 110px;
    height: 110px;
  }

  .line-footer {
    display: none;
  }

  .mobile-footer-wrapper .line-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .minicart-content .product-item {
    border: none;
    justify-content: space-between;
    width: 100%;
  }

  .main-title-row {
    gap: 8px;
    padding: 16px;
  }

  .main-title-row .mini-cart-title {
    width: min-content;
  }

  .minicart-content .list-product {
    padding: 0 16px;
  }

  .minicart-content .mobile-footer-wrapper {
    display: flex;
    padding-bottom: 12px;
    padding-top: 0;
    border-bottom: 1px solid #d6dae2;
    list-style: none;
  }

  .minicart-content .mobile-footer-wrapper:last-of-type {
    border: none;
  }

  .cart-footer .service-fee {
    padding: 24px 44px;
    border-bottom: 1px solid #d6dae2;
    margin: 0 16px;
  }

  .content,
  #content {
    padding: 0 16px;
    margin-right: auto !important;
  }

  .additional-image-wrapper .product-card {
    height: auto !important;
  }
}

@media (max-width: 987px) {
  .add-to-cart .images {
    flex-direction: column;
  }

  .add-to-cart .product-card {
    margin: 0 auto;
  }
}

.elementor-kit-7 .form-group label,
.elementor-kit-7 .form-row label {
  margin-bottom: 0;
  margin-left: 8px;
  font-size: 14px;
  line-height: 21px;
  text-transform: none;
  font-weight: normal;
  font-family: Gilroy, Helvetica, sans-serif;
  display: inline-block !important;
}

#picup-checkout .form-row input:not([type="radio"]):not([type="checkbox"]),
#picup-checkout .form-row textarea {
  font-size: 14px;
  line-height: 21px;
  text-transform: none;
  font-weight: normal;
  font-family: Gilroy, Helvetica, sans-serif;
  width: 100%;
}

.content,
#content,
.page-content {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.woocommerce-page #picup-checkout select {
  padding: 13px 15px;
  border-radius: 0;
  border: 1px solid #ddd;
  background: #fff;
}

.breadcrumbs {
  margin-top: 16px;
}

#picup-cart {
  margin-top: -16px;
}

#picup-checkout .form-row select {
  padding: 13px 15px;
  background: #fff;
  border: 1px solid #ddd;
}

#picup-checkout .form-row.dimensions .col-2 input {
  width: 75%;
  border: none;
}

button {
  cursor: pointer;
}

.products-container {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.product-container,
.categories-container {
  margin-bottom: 48px;
}

ul.wc-item-meta li p {
  display: block;
}

#picup-checkout .form-group {
  margin-bottom: 0;
}

.picup-cart-image img,
img.picup-cart-image {
  max-width: 150px;
  border: 1px solid var(--grey-sceme-500, #c2c6ce);
}

.row.cart-line-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin: 0;
}

.cart-line-row-inner {
  flex-grow: 1;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.wc-stripe-elements-field {
  min-width: 225px;
  padding: 5px 10px;
  margin-top: 0px;
}

#wc-stripe-cc-form {
  display: flex;
}

#wc-stripe-cc-form label {
  margin-left: 1px;
}

.page.elementor-kit-7 h2,
.page.elementor-kit-7 h3 {
  font-size: 32px;
  margin-bottom: 24px;
  font-weight: 600;
  font-family: Gilroy, Helvetica, sans-serif;
}

#picup-cart .row:last {
  padding-bottom: 200px;
}

#picup-cart {
  margin-left: 35px;
}

.picup-cart-inner {
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: 95vh;
}

.woocommerce-customer-details .woocommerce-column.col-1,
.woocommerce-customer-details .woocommerce-column.col-2 {
  width: 50% !important;
  max-width: 50%;
}

.close-button {
  position: absolute;
  z-index: 999;
  right: 16px;
  top: 16px;
  font-size: 24px;
  cursor: pointer;
}

.woocommerce-form.woocommerce-form-register.register {
  border: none;
  padding: 0;
}

.woocommerce-form.woocommerce-form-register.register h3 {
  margin-top: 40px;
  margin-bottom: 8px;
}

.elementor-widget-n-menu .e-n-menu-items-content {
  z-index: 999;
}

.picup-cart-line-total-wrapper {
  position: relative !important;
  width: 100% !important;
}

.picup-cart-inner-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.woocommerce-input-wrapper .input-text,
.woocommerce-input-wrapper .country_select {
  width: 100%;
}

.mobile-footer-wrapper {
  display: none;
}

.checkout-fields .collection-form label,
.checkout-fields .billing-form label {
  font-size: 12px;
  line-height: 1;
  padding: 0 4px;
  position: absolute;
  top: -5px;
  background: #fff;
  font-weight: normal;
}

.checkout-fields .collection-form.form-group-wrapper .col,
.checkout-fields .billing-form.form-group-wrapper .col {
  margin-bottom: 6px;
}

.checkout-fields .collection-form label,
.checkout-fields .billing-form label {
  font-size: 12px;
  line-height: 1;
  padding: 0 4px;
  position: absolute;
  top: -5px;
  left: 5px;
  background: #fff;
  color: var(--grey-sceme-800, #545860);
  text-transform: uppercase;
  letter-spacing: 0.48px;
  font-weight: normal;
}

.checkout-fields .collection-form input:placeholder-shown + label,
.checkout-fields .collection-form textarea:placeholder-shown + label,
.checkout-fields .billing-form input:placeholder-shown + label,
.checkout-fields .billing-form textarea:placeholder-shown + label {
  display: none !important;
}

#payment label {
  font-size: 14px;
  font-weight: 400;
  font-family: Gilroy, sans-serif;
  text-transform: none;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: auto;
}

#place_order {
  border-radius: 64px;
  border: 1px solid var(--grey-sceme-800, #545860);
  display: flex;
  height: 36px;
  padding: 10px 22px;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  color: var(--black, #101820);
  font-family: Gilroy;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 1.12px;
  background-color: #fff;
  margin-top: 35px;
  margin-left: auto;
}

#place_order:hover::before {
  transition: width 2s;
  content: "\2022";
  color: #cb3f34;
  font-size: 28px;
  margin-right: 12px;
}

.form-row.form-row-wide {
  width: auto !important;
}

#order_review {
  margin-top: 35px;
}

.category-card {
  background-size: contain;
}

/** Extra sitewide menu styling **/
.e-n-menu-item-title.e-normal {
  padding: 0;
}

@media (min-width: 1025px) and (max-width: 1520px) {
  .e-n-menu-item-title-container.e-link {
    padding: 0;
  }
}

@media (min-width: 1520px) {
  .e-n-menu-item-title-container.e-link {
    padding: 8px 12px;
  }
}

lottie-player {
  margin-left: auto;
  margin-right: auto;
  max-height: 100vh;
  max-width: 100vw;
}

#calc-contact-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: #0005;
  justify-content: center;
  align-items: center;
}

#calc-contact-form-container {
  background: #fff;
  width: auto;
  height: auto;
  padding: 32px;
  max-width: 75vw;
}

#calc-contact-form input[type="text"],
#calc-contact-form input[type="email"],
#calc-contact-form input[type="tel"],
#calc-contact-form textarea {
  min-width: 30vw;
  max-width: 70vw;
  max-height: 80px;
}

#calc-contact-form .wpcf7-submit {
  background: #000;
  color: #fff;
  padding: 11px 30px;
  float: right;
}

.product-variations a {
  text-decoration: none;
  width: max-content;
  display: block;
  color: #000;
}

.select2-selection__rendered {
  margin-top: -9px;
}

@media (min-width: 768px) and (max-width: 834px) {
  .categories-container {
    justify-content: center;
  }

  .product-main {
    max-width: calc(100% - 17.5rem);
  }

  .add-to-cart {
    margin: 10px auto;
  }
}

/* .checkout-fields #picup_shipping_country, */
.checkout-fields #picup_billing_country {
  pointer-events: none;
  border: none !important;
  -webkit-appearance: none;
  padding-left: 0 !important;
}

/** Additions for theme problems **/
.category-card .overlay {
  width: 100% !important;
}

.product-card .overlay {
  width: calc(100% - 4px) !important;
}

.additional-image-wrapper .product-card {
  width: 175px !important;
}

.section-title {
  margin-top: 16px;
}

.controls input {
  height: 32px !important;
}

.main-image .control-buttons input {
  height: 44px !important;
}

.add-to-cart-footer .total-amt {
  display: flex;
  margin-right: 16px;
}

.page-header {
  display: none;
}

#picup-checkout button.country-popup-submit {
  background-color: #101820;
  color: #fff;
}

#picup-checkout button.country-popup-submit:hover::before {
  content: none;
}

@media (max-width: 576px) {
  .add-to-cart {
    box-sizing: content-box;
  }

  .products-banner.mobile-only {
    gap: 35px;
  }

  .breadcrumbs {
    margin-top: 50px;
    flex-wrap: wrap;
  }

  .breadcrumbs a {
    flex-shrink: 0;
  }

  .product-card .overlay .overlay-subcategories ul {
    gap: 4px;
  }

  .product-card .overlay .overlay-subcategories ul li {
    list-style: none;
    border: 1px solid #ccc;
    padding: 4px 12px;
    border-radius: 25px;
    margin: 0 !important;
  }

  .product-card .overlay {
    width: 100% !important;
    border: none !important ;
    margin: 0 !important;
  }

  .product-card .product-bg-image {
    max-height: 326px !important;
  }

  .product-card .overlay .overlay-title {
    font-weight: 700 !important;
    text-transform: none !important;
    font-size: 18px !important;
    color: #101820 !important;
    letter-spacing: 0 !important;
    border: none !important;
    margin-bottom: -10px !important;
  }

  .product-card .overlay .overlay-subcategories ul li span {
    margin-left: 0 !important;
  }

  .ui-datepicker td, .ui-datepicker th {
  	width: 32px;
  	height: 32px;
  	padding: 5px;
  }
}
