/*File: List Items Style 1:*/
.extra-large-list {
  /*Region: Blur item:*/
}

.extra-large-list:after {
  content: '';
  display: block;
  clear: both;
}

.extra-large-list .item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  float: left;
  width: 23%;
  margin-left: 2%;
  margin-bottom: 24px;
  -webkit-box-shadow: 1px 3px 3px lightgrey;
          box-shadow: 1px 3px 3px lightgrey;
  border: 1px solid #fff;
  background: #fff;
  position: relative;
  padding: 3px;
  /*Default: Has 4 items each row.*/
}

.extra-large-list .item .image-wrapper {
  background: whitesmoke;
  position: relative;
}

.extra-large-list .item .image-wrapper .image {
  background-size: cover;
  /* height: 100%; */
  /* height: calc(100vw / 4 * 1.3); */
  background-position: center;
  background-repeat: no-repeat;
}

.extra-large-list .item .image-wrapper .switch-button {
  width: 32px;
  height: 32px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
}

.extra-large-list .item .image-wrapper .icon-switch {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  margin-top: 6px;
  background-size: cover;
}

.extra-large-list .item .row {
  position: relative;
  height: 22px;
  line-height: 22px;
  padding-left: 2px;
}

.extra-large-list .item .row.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.extra-large-list .item .row.flex .left {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-width: 0;
}

.extra-large-list .item .row.flex .right {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.extra-large-list .item .row .price {
  color: #f8682c;
}

.extra-large-list .item .row .price .number {
  margin-right: -2px;
}

.extra-large-list .item .row .price sup {
  margin-left: -2px;
  font-size: 10px;
  vertical-align: text-bottom;
}

.extra-large-list .item .row.sub-info {
  color: darkgray;
}

.extra-large-list .item .row.sub-info span:not(:last-child)::after {
  content: ',';
  display: inline-block;
}

.extra-large-list .item .image-wrapper .image {
  height: calc(100vw / 4 * 1.2);
}

.extra-large-list .item.blur {
  opacity: 0.5;
  color: darkgray;
}

.extra-large-list .item.blur .price {
  color: darkgray;
}

@media screen and (max-width: 900px) {
  /*Has 3 items each row.*/
  .extra-large-list .item {
    width: 31%;
  }
  .extra-large-list .item .image-wrapper .image {
    height: calc(100vw / 3 * 1.2);
  }
}

@media screen and (max-width: 490px) {
  /*Has 2 items each row.*/
  .extra-large-list .item {
    width: 48%;
  }
  .extra-large-list .item .image-wrapper .image {
    height: calc(100vw / 2 * 1.2);
  }
}
