.group:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* INFO TEMPLATE */
  
  .pdp-block-info {
      display: flex;
      align-content: center;
  }
  
  .pdp-block-info > div {
      width: 50%;
      margin: auto;
  }
  
  .pdp-block-info > div:first-of-type {
      padding-right: 20px;
  }
  
  .pdp-block-info > div:last-of-type {
      padding-left: 20px;
  }
  
  .pdp-block-info div img {
      width: 100%;
  }
  
  .pdp-block-info ol {
      list-style: none;
      counter-reset: li;
  }
  
  .pdp-block-info ol li::before {
      content: counter(li);
      color: #fff;
      background-color: #000;
      background-color: var(--number-colour);
      padding: 5px 10px;
      display: inline-block; 
      width: 10px;
      height: 10px;
      margin-left: -42px;
      border-radius: 100%;
      display: inline;
      margin-right: 10px;
  }
  
  .pdp-block-info ol li {
      counter-increment: li;
  }
  
  .pdp-block-info ol li h4,
  .pdp-block-info ul li h4 {
      display: inline;
  }
  
  /* INFO ALTERNATE WITH ICONS */
  .pdp-block-info ul.icons {
      list-style: none;
  }
  
  .pdp-block-info ul.icons li {
      display: block;
      clear: both;
      margin-bottom: 20px;
  }
  
  .pdp-block-info ul.icons li::before {
      content: var(--icon-url);
      color: #fff;
      display: inline-block; 
      width: 100px;
      margin-right: 20px;
      vertical-align: top;
      float: left;
  }
  
  .pdp-block-info ul.icons li p {
      display: inline-block;
      width: calc(100% - 120px);
      margin-top: 0;
  }
  
  /* PAIR IT WITH TEMPLATE */
  
  .pair-with h3 {
      font-size: 26px;
  }
  
  .pair-with .pair-with-block {
      margin: 20px auto 0 auto;
      position: relative;
  }
  
  .pair-with-block img,
  .pair-with-block .end-block {
      width: calc(33.333333333333333% - 27px);
      display: inline-block;
      float: left;
      margin-right: 40px;
  }
  
  .pair-with-block img {
      border: 10px solid #fff;
  }
  
  .pair-with-block .end-block {
      float: right;
      margin-right: 0;
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
  }
  
  .pair-with-block .end-block img:last-of-type {
      width: calc(10% - 10px);
      float: right;
      display: inline-block;
      margin-top: 10px;
      margin-right: 0;
      border: 0;
  }
  
  .pair-with-block .end-block img:first-of-type {
      width: calc(90% - 10px);
      float: left;
      display: inline-block;
      border: 10px solid #fff;
      margin-right: 0;
  }
  
  .pair-with-block .end-block .btn {
      display: block;
      position: absolute;
      bottom: 0;
      width: 100%;
      border: 2px solid #000;
      text-align: center;
      background: #fff;
      text-transform: uppercase;
      padding: 10px;
      color: #000;
      font-size: 18px;
  }
  
  @media only screen and (max-width: 960px) {
      .pair-with-block img,
      .pair-with-block .end-block {
          width: calc(33.333333333333333% - 14px);
          margin-right: 20px;
      }
      
      .pair-with-block .end-block {
          margin-right: 0;
      }
  }
  
  @media only screen and (max-width: 790px) {
      .pair-with-block img,
      .pair-with-block .end-block {
          width: calc(33.333333333333333% - 7px);
          margin-right: 10px;
      }
      
      .pair-with-block .end-block {
          margin-right: 0;
      }
      
      .pair-with-block .end-block .btn {
          padding: 5px;
      }
      
      .pair-with-block .end-block img:last-of-type {
          width: calc(10% - 5px);
      }
      
      .pair-with-block .end-block img:first-of-type {
          width: calc(90% - 5px);
      }
  }
  
  
  /* 3 COLUMN TEMPLATE */
  
  .multi-purpose_3_column h3 {
      font-size: 26px;
  }
  
  .multi-purpose_3_column ._3_column {
      margin: 20px auto 0 auto;
      position: relative;
  }
  
  .multi-purpose_3_column ._3_column img {
      width: calc(33.333333333333333% - 27px);
      display: inline-block;
      float: left;
      margin-right: 40px;
  }
  
  .multi-purpose_3_column ._3_column img:last-of-type {
      margin-right: 0;
  }
  
  ._3_column img {
      border: 10px solid #fff;
  }
  
  .multi-purpose_3_column .cta_btn {
      display: block;
      width: 100%;
      border: 2px solid #000;
      text-align: center;
      background: #fff;
      text-transform: uppercase;
      padding: 10px;
      color: #000;
      font-size: 18px;
  }
  
  @media only screen and (max-width: 960px) {
      .multi-purpose_3_column ._3_column img {
          width: calc(33.333333333333333% - 14px);
          margin-right: 20px;
      }
  }
  
  @media only screen and (max-width: 790px) {
      .multi-purpose_3_column ._3_column img {
          width: calc(33.333333333333333% - 7px);
          margin-right: 10px;
      }
      
      .multi-purpose_3_column .cta_btn {
          padding: 5px;
      }
  }
  
  
  /* GUIDE BANNER TEMPLATE */
  .pdp-guide {
      text-align: center;
      padding-top: 60px;
      padding-bottom: 60px;
  }
  
  .pdp-guide h3 {
      font-size: 26px;
  }
  
  .pdp-guide .cta_btn {
      display: table;
      border: 2px solid #000;
      text-align: center;
      background: #fff;
      text-transform: uppercase;
      padding: 10px;
      color: #000;
      font-size: 18px;
      margin: 0 auto;
  }
  
  @media only screen and (max-width: 790px) {    
      .pdp-guide .cta_btn {
          padding: 5px;
      }
  }

/* SHIRTS LINE UP BANNER */

._shirt-line-up-container {
  background-color: #f7f7f7;
  padding-top: 20px;
  text-align: center;
  
}

._shirt-line-up-container ._line-up-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
-webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 850px) {
  ._shirt-line-up-container ._line-up-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

._shirt-line-up-container ._line-up-container ._line {
  margin: 30px;
}

._shirt-line-up-container ._line-up-container ._line ._img-container img {
  width: 100%;
}

._shirt-line-up-container ._line-up-container ._line ._img-container ._new {
  margin-top: -5px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-weight: 600;
  font-size: 18px;
  font-family: "UniqloRegularRegular";
}

._shirt-line-up-container ._line-up-container ._line ._img-container ._new:nth-child(1) {
  background-color: #302d67;
  color: white;
}

._shirt-line-up-container ._line-up-container ._line ._img-container ._new:nth-child(1) span {
  color: red;
  font-style: italic;
  font-weight: 400;
}

._shirt-line-up-container ._line-up-container ._line ._img-container ._new:nth-child(2) {
  color: white;
  background-color: #1d1c1b;
}

._shirt-line-up-container ._line-up-container ._line ._img-container ._new:nth-child(3) {
  color: white;
  background-color: #9c9d9b;
}

._shirt-line-up-container ._line-up-container ._line p {
  text-align: left;
}
/*# sourceMappingURL=pdp-content-templates.css.map */