/** Shopify CDN: Minification failed

Line 132:24 Expected identifier but found "!"
Line 135:25 Expected identifier but found "!"
Line 146:0 Unexpected "}"

**/


/* CSS from section stylesheet tags */
.icon-slider-button-container {
    position: absolute;
    height: 100%;
    width: 100%;
  }
  .icon-nav-button {
    position: absolute;
    align-items: center;
    cursor: pointer;
    border: none;
    margin: 0;
    padding: 0 4px 0 4px;
    z-index: 2; 
    color: #000000;
    height: 100%;
  }
  .icon-nav-button:active {
    background-color: inherit;
    color: inherit;
  }
  .icon-slider-container {
    position: relative;
    width: 100%;
    white-space: nowrap;
  }
  .icon-slider {
    display: inline-block;
  }
  .icon-wrapper {
    margin: -5px 0 0 0;
    display: inline-block;
    text-align: center;
  }
  .icon-wrapper-link {
    margin: 0;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
  }
  .icon-wrapper-text {
    margin: -18px 0 5px 0; 
    padding: 0;
    font-size: 12px;
    font-weight: bold;
    color: #FFFFFF;
  }
  @media only screen and (min-width: 430px) {
      .icon-slider-button-container {
        display: none;
      }
      .icon-slider-container {
        display: flex;
        justify-content: center;
        overflow: hidden;
      }
      .icon-wrapper {
        width: 100px;
        filter: invert(75%);
      }
      .icon-wrapper:hover .icon-wrapper-content {
        transform: scale(1.25);
      }
      .icon-wrapper:hover {
        filter: invert(100%);
      }
  }
  @media only screen and (max-width: 429px) {
      .icon-slider-button-container {
        display: inline-block;
      }
      .icon-slider-container {
        overflow-x: scroll;
        justify-content: left;
      }
      .icon-slider {
        padding: 0 10px 0 10px !important;
      }
      .icon-wrapper {
        width: 85px;
        filter: brightness(0%);
      }
      .icon-wrapper-text {
        font-size: 10px;
      }
  }
.table {
    background-color: #FFFFFF;
    display: flex;
    position: relative;
    width: 100%;
  }
  .table_col {
      display: flex;
      position: relative;
      flex-direction: column;
      flex: 1;
  }
  /* .first_col {
    width: max-content;
  } */
  /* .other_col {
    flex: 1;
  } */
  .table_cell {
      display: flex;
      flex: 1 0;
      position: relative;
      flex-shrink: 1;
      white-space: normal;
      align-items: center;
      padding: 4%;
      min-height: 60px; /* Two text lines high */
      border: 1px solid #F0F1F1; /* Gray border */
  }
  .sticky_cell {
      background-color: #00075A;
      color: White;
      position: sticky;
      z-index: 1;
      min-height: 90px; /* Two text lines high */
      max-height: 290px; /* Limit maximum height */
      border-top: none; !important
  }
  .price_cell {
    border-bottom: none; !important;
    background-color: #99FF66;
  }
  
  @media only screen and (min-width: 850px) {
      .table {
          margin-right: 20%;
          margin-left: 20%;
          width: 60%;
      }
  }
}