/**
Box of Product
*/
.product-custom {
  position: relative;
  padding: 8px;
}

.product-custom.hover:hover {
  border-color: transparent !important;
}

.product-custom .product-thumbnail {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.product-custom .product-thumbnail .product-badge {
  position: absolute;
  top: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 5px 10px;
  border-radius: 4px;
}

.product-custom .product-thumbnail .product-badge.discount {
  right: 0;
  background-color: #f14705;
  color: #fff;
}

.product-custom .product-thumbnail .product-badge.new {
  background-color: #6693f9;
  left: 0;
  color: #fff;
}

.product-custom .product-thumbnail .product-badge.hot {
  left: 0;
  background-color: #ff8c46;
  color: #fff;
}

.product-custom .product-thumbnail .product-badge.out-stock {
  background-color: #000;
  color: #fff;
}

.product-custom div.thumbnailBefore {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 1;
}

.product-custom div.thumbnailAfter {
  position: absolute;
  top: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.product-custom div.thumbnailBefore.hidden {
  opacity: 0;
}

.product-custom div.thumbnailAfter.show {
  opacity: 1;
}

.product-custom .product-container {
  padding-top: 10px;
}

.product-custom > * > .product-vendor {
  display: block;
  padding-bottom: 8px;
  margin-bottom: 13px;
  line-height: 1.2;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  border-bottom: 1px solid #e1e1e1;
}

.product-custom > * > * > .product-content .product-title {
  margin: 0;
  display: block;
  font-size: 14px;
  line-height: 1.2em;
  color: #06c;
  --max-lines: 2;
  max-height: calc(1.2em * var(--max-lines));
  overflow: hidden;
  padding: 0 1rem 5px 0;
}

.ps-block--countdown-deal-custom {
  display: flex;
  flex-flow: row nowrap;
}

.ps-block--countdown-deal-custom figure {
  display: flex;
  align-items: center;
  background-color: #f14705;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  border-radius: 3px;
  line-height: 1;
}

.ps-block--countdown-deal-custom figure figcaption {
  color: #fff;
  font-weight: 600;
  margin-right: 20px;
}

.ps-block--countdown-deal-custom .ps-countdownx {
  border: 1px solid white !important;
}

.ps-block--countdown-deal-custom .ps-countdown li {
  display: inline-block;
}

.ps-block--countdown-deal-custom .ps-countdown li span {
  font-weight: 600;
}

.ps-block--countdown-deal-custom .ps-countdown li:after {
  content: ':';
}

.ps-block--countdown-deal-custom .ps-countdown li:last-child:after {
  display: none;
}

header.header--standard.header--technology.header-custom {
  position: fixed;
}

.header-mobile {
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 50px;
}

.header-mobile-shadow {
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 50px;
}

.header-mobile-shadow::after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 65px;
  display: block;
  top: 0;
  background-image: linear-gradient(
    to bottom,
    rgba(32, 32, 32, 0.5),
    rgba(255, 255, 255, 0)
  );
}

.mt-for-section {
  margin-top: 7px;
}

/**
Small devices (landscape phones, 576px and up)
*/
@media (min-width: 576px) {
  .mt-for-section {
    margin-top: 9px;
  }
}

/**
Medium devices (tablets, 768px and up)
*/
@media (min-width: 768px) {
  .mt-for-section {
    margin-top: 10px;
  }
}

/**
Large devices (desktops, 992px and up)
 */
@media (min-width: 992px) {
  header.header--standard.header--technology.header-custom {
    position: inherit;
  }

  .ps-form--quick-search .form-group--icon {
    width: 150px;
  }

  .ps-form--quick-search input {
    width: 300px;
  }

  .search-after-logo {
    display: none;
  }

  .mt-for-section {
    margin-top: 11px;
  }
}

/**
Extra large devices (large desktops, 1200px and up)
 */
@media (min-width: 1200px) {
  .ps-form--quick-search .form-group--icon {
    width: 150px;
  }

  .ps-form--quick-search input {
    width: 350px;
  }

  .search-after-logo {
    display: block;
  }

  .mt-for-section {
    margin-top: 12px;
  }
}

.screen-cover {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  opacity: 0;
}

.screen-cover.active {
  opacity: 1;
}

.btn-c {
  border: 2px solid #0f69ab;
  background-color: transparent;
  color: #0f69ab;
  padding: 7px 18px;
}

/* Green */
.btn-outline-navy-c {
  border-color: #0f69ab;
  color: #0f69ab;
  border-radius: 6px;
}

.btn-navy-c {
  background-color: #0f69ab;
  color: white;
  border-radius: 6px;
}

.btn-google-c {
  border-color: transparent;
  background-color: #e13f2a;
  color: white;
  border-radius: 6px;
}

.btn-facebook-c {
  border-color: transparent;
  background-color: #3b5793;
  color: white;
  border-radius: 6px;
}

.footer-shadow {
  box-shadow: 0 -5px 16px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 -5px 16px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 -5px 16px 2px rgba(0, 0, 0, 0.1);
}

.cursor-pointer {
  cursor: pointer !important;
}

.search-pick-address::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ccc;
  opacity: 1; /* Firefox */
}

.search-pick-address:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ccc;
}

.search-pick-address::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #ccc;
}

.geolocation-form::placeholder {
  color: #b5b5b5;
  opacity: 1;
}

.geolocation-form:-ms-input-placeholder {
  color: #b5b5b5;
}

.geolocation-form::-ms-input-placeholder {
  color: #b5b5b5;
}

.payment-detail-desktop code,
.payment-detail-mobile code {
  font-size: 16px;
  color: #444;
  font-family: Nunito800, sans-serif;
}

.desktop-only {
  display: none;
}

.mobile-only {
  display: block;
}

@media (min-width: 992px) {
  .desktop-only {
    display: block;
  }

  .mobile-only {
    display: none;
  }
}

.page {
  --primary-eci: #0f69ab;
  --primary-600: #0b5ed7;
  --light-primary: #f1f9ff;
  --dark-gray: #202020;
  --gray: #8a8a8a;
  --gray-2: #D1D1D6;
  --gray-3: #555555;
  --light-gray: #f2f2f7;
}