.specs-product-summary {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  -webkit-column-gap: 4rem;
          column-gap: 4rem;
}

@media (max-width: 1023px) {
  .specs-product-summary {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    text-align: center;
  }
}

.specs-product-summary-image div {
  padding-top: 100%;
  background: #e5e5e5;
  position: relative;
}

.specs-product-summary-image div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.specs-product-summary-data {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 4rem;
          column-gap: 4rem;
}

@media (max-width: 1023px) {
  .specs-product-summary-data {
    -webkit-column-gap: 1rem;
            column-gap: 1rem;
  }
}

.specs-product-summary-data-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.specs-product-summary-data-column .label {
  color: #f05521;
}

.specs-product-summary-data-column .value {
  padding-top: 0.7rem;
  font-size: 1.8rem;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .specs-product-summary .specs-product-summary-info + .specs-product-summary-info {
    margin-top: 2rem;
  }
}

.specs-product-description {
  margin: 3rem 0;
}

.specs-product-subtitle-and-links,
.specs-product-purchase-links {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 3rem 0;
}

@media (max-width: 1023px) {
  .specs-product-subtitle-and-links,
  .specs-product-purchase-links {
    margin: 0;
  }
}

.specs-product-subtitle-and-links a,
.specs-product-purchase-links a {
  display: inline-block;
  margin-right: 1.5rem;
}

.specs-table {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 4rem;
          column-gap: 4rem;
  margin-bottom: 5rem;
}

@media (max-width: 1023px) {
  .specs-table {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.specs-table-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 0;
  margin: 3rem 0;
  border-top: 3px solid #e5e5e5;
  border-bottom: 3px solid #e5e5e5;
}

.specs-table-title h2 {
  margin: 0;
}

.specs-table-title a {
  font-size: 1.8rem;
  font-weight: 700;
}

.specs-table-box + .specs-table-box {
  margin-top: 3rem;
}

.specs-table-box-title {
  border-bottom: 1px solid #e5e5e5;
}

.specs-table-box-title h3 {
  color: #f05521;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.specs-table-box-data {
  font-size: 1.4rem;
}

.specs-table-box-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 1023px) {
  .specs-table-box-row {
    -ms-grid-columns: 2fr 3fr;
        grid-template-columns: 2fr 3fr;
    -webkit-column-gap: 2rem;
            column-gap: 2rem;
  }
}

.specs-table-box-label {
  font-weight: 600;
}

.specs-compare-bar {
  width: 125rem;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .specs-compare-bar {
    width: 100%;
  }
}

.specs-compare-bar-wrapper {
  width: 100%;
  display: block;
  bottom: 0;
  left: 0;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 1023px) {
  .specs-compare-bar-wrapper {
    bottom: 55px;
  }
}

.specs-compare-bar-wrapper.active {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(calc(100% - 4rem));
          transform: translateY(calc(100% - 4rem));
}

.specs-compare-bar-wrapper.active.opened {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.specs-compare-bar--title {
  display: inline-block;
  height: 4rem;
  line-height: 4rem;
  padding: 0 3rem;
  background-color: #f05521;
  border-radius: 20px 20px 0 0;
  color: #fff;
  -webkit-box-shadow: 6px -6px 10px 1px rgba(0, 0, 0, 0.16);
          box-shadow: 6px -6px 10px 1px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}

@media (max-width: 1023px) {
  .specs-compare-bar--title {
    border-radius: 20px 0 0 0;
  }
}

.specs-compare-bar--box {
  background-color: #ffffff;
  -webkit-box-shadow: 6px -6px 10px 1px rgba(0, 0, 0, 0.16);
          box-shadow: 6px -6px 10px 1px rgba(0, 0, 0, 0.16);
  border: 1px solid #f5f5f5;
}

.specs-compare-bar--products {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 3rem;
          column-gap: 3rem;
  padding: 3rem 3rem 2rem;
}

@media (max-width: 1023px) {
  .specs-compare-bar--products {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
    -webkit-column-gap: 2rem;
            column-gap: 2rem;
    padding: 1.4rem;
  }
}

.specs-compare-bar--products .product-in-comparison-bar {
  text-align: center;
}

.specs-compare-bar--actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f5f5f5;
  margin: 1rem;
  padding: 1rem 2rem;
}

.specs-compare-bar--actions a {
  color: #444;
  font-weight: bold;
}

.specs-compare-bar--actions a.specs-compare-start {
  display: block;
  padding: 0.7rem 1.5rem;
  margin-right: 3rem;
  background-color: #f05521;
  color: #ffffff;
}

@media (max-width: 1023px) {
  .specs-compare-bar--actions a.specs-compare-start {
    margin-right: 1.4rem;
  }
}

.specs-compare-bar--actions-notice {
  margin-left: auto;
}

.specs-compare-bar--actions-notice:not(:empty) ~ .specs-compare-start {
  opacity: 0.4;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .specs-compare-bar--actions-notice {
    padding-left: 1.4rem;
  }
}

.specs-compare-bar--delete-product {
  color: #000;
  font-size: 90%;
}

.product-mini-tile {
  text-align: center;
}

.product-mini-tile--image {
  width: 50%;
  margin: 0 auto;
}

.product-mini-tile--image a {
  display: block;
  position: relative;
  padding-top: 100%;
}

.product-mini-tile--image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-mini-tile--title {
  padding-top: 2rem;
}

.product-mini-tile--title a h3 {
  margin: 0 0 0.7rem;
}

@media (max-width: 1023px) {
  .product-compare {
    overflow: hidden;
  }
}

.product-compare.no-images .article-tile__image {
  display: none;
}

@media (max-width: 1023px) {
  .product-compare .article-content {
    overflow: scroll;
  }
}

.product-compare .compare-category h3 {
  color: #f05521;
  font-weight: 700;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.product-compare table {
  width: 100%;
  font-size: 1.4rem;
  padding: 0;
  border-collapse: collapse;
  table-layout: fixed;
  background-color: #ffffff;
}

.product-compare table.compare-table tr {
  background-color: #ffffff;
  -webkit-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
}

.product-compare table.compare-table tr:not(.compare-category):hover {
  background-color: #f5f5f5;
}

.product-compare table td {
  overflow: hidden;
  vertical-align: top;
}

@media (max-width: 1023px) {
  .product-compare table td {
    width: 10rem;
  }
}

.product-compare table td.compare-category {
  padding: 1.5rem 0 0.5rem;
}

.product-compare table td.compare-field {
  font-weight: 600;
  width: 16rem;
}

@media (max-width: 1023px) {
  .product-compare table td.compare-field {
    width: 13rem;
  }
}

.product-compare table td.compare-data {
  text-align: center;
  padding: 0 0.5rem;
}

.product-compare .compare-table-header {
  width: 100%;
  font-size: 1.4rem;
  padding: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

@media (min-width: 1024px) {
  .product-compare .compare-table-header-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
  }
}

.product-compare .compare-table-header td:first-of-type {
  width: 16rem;
}

@media (max-width: 1023px) {
  .product-compare .compare-table-header td:first-of-type {
    width: 13rem;
  }
}

.product-search {
  margin-bottom: 2rem;
}

.product-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  row-gap: 2rem;
  -webkit-column-gap: 2rem;
          column-gap: 2rem;
}

@media (max-width: 1023px) {
  .product-list {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.product-list.sidebar {
  padding-bottom: 20px;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  row-gap: 0;
  -webkit-column-gap: 12px;
          column-gap: 12px;
}

@media (max-width: 1023px) {
  .product-list.sidebar {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.product-tile {
  text-align: center;
}

.product-tile .article-tile__header {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.product-tile .article-tile__image {
  width: 100%;
}

.product-tile .article-tile__image a {
  padding-top: 100%;
}

.product-tile .article-tile__content {
  margin: 0;
}

.product-tile .article-tile__meta {
  display: block;
  font-size: 80%;
}

.product-tile .article-tile__meta > div:not(.break):not(:first-of-type) {
  margin-right: 0;
}

.product-tile .article-tile__meta > div:not(.break):not(:first-of-type):before {
  display: none;
}

.product-tile.no-compare-link .meta_compare {
  display: none;
}

.product-tile h3 {
  margin: 1rem 0;
}

.product-info-disclaimer {
  margin: 2rem 0;
  font-size: 1.2rem;
}

#ajaxsearchlite1 {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

#ajaxsearchlite1 .probox {
  height: initial !important;
  border: 3px solid #e5e5e5 !important;
  background: #f5f5f5 !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

#ajaxsearchlite1 .probox .proinput input[type="search"] {
  height: initial !important;
  direction: rtl !important;
  text-align: right !important;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  border: 0 !important;
  font-family: "Rubik", sans-serif !important;
  outline: none !important;
  font-size: 1.6rem !important;
  font-weight: bold !important;
  padding: 1.2rem !important;
  color: #f05521 !important;
}

#ajaxsearchlite1 .probox .proinput input[type="submit"] {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

#ajaxsearchlite1 .probox .promagnifier {
  width: 5rem;
  height: calc(100% - 6px);
  background: #f05521;
  position: absolute;
  top: 3px;
  left: 3px;
  bottom: 3px;
}

#ajaxsearchlite1 .probox .proclose {
  position: absolute;
  left: 6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#ajaxsearchlite1 .probox .proloading {
  position: absolute;
  left: 6rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#ajaxsearchlite1 .probox .proloading div.asl_simple-circle {
  border: 4px solid #f05521;
}

#ajaxsearchlite1 .probox .prosettings {
  display: none !important;
}

#ajaxsearchlite1 ::-webkit-input-placeholder {
  color: #222222 !important;
  font-family: "Rubik", sans-serif !important;
}

#ajaxsearchlite1 :-ms-input-placeholder {
  color: #222222 !important;
  font-family: "Rubik", sans-serif !important;
}

#ajaxsearchlite1 ::-ms-input-placeholder {
  color: #222222 !important;
  font-family: "Rubik", sans-serif !important;
}

#ajaxsearchlite1 ::placeholder {
  color: #222222 !important;
  font-family: "Rubik", sans-serif !important;
}

#ajaxsearchliteres1 {
  background: #f05521 !important;
}

#ajaxsearchliteres1 .results .item {
  border-radius: 0 !important;
}

#ajaxsearchliteres1 .asl_image {
  margin: 0 !important;
}

#ajaxsearchliteres1 .asl_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#ajaxsearchliteres1 .asl_content h3 a {
  font-family: "Rubik", sans-serif !important;
  color: #333 !important;
  font-weight: bold !important;
  font-size: 1.6rem !important;
  line-height: normal !important;
}

#ajaxsearchliteres1 p.showmore a {
  padding: 1rem !important;
  font-family: "Rubik", sans-serif !important;
  color: #333 !important;
  font-size: 1.4rem !important;
  line-height: normal !important;
}
/*# sourceMappingURL=gadgety-products.css.map */