<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.parts{
  margin-top: 2rem;
}

.parts__top{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.parts__header &gt; h2{
  font-size: 28px;
  line-height: 38px;
  margin: 0;
}

.parts__header &gt; div{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.parts__filter{
  max-width: 364px;
  width: 100%;
}



.parts__table{
  border: 1px solid #7A7269;
}

.parts__thead{
  background-color: #082951;
  color: #fff;
  display: grid;
  grid-template-columns: 56px 73px 424px 110px 170px 170px;
  gap: 1.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #7A7269;
}

.parts__thead &gt; div{
  line-height: 1;
}

.parts__listing{}

.part{
  display: grid;
  grid-template-columns: 56px 73px 424px 110px 170px 173px;
  align-items: center;
  gap: 1.5rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #7A7269;
}

.part:last-of-type{
  border-bottom: none;
}

.part &gt; div{
  color: #000;
  line-height: 24px;
  font-size: 14px;
}

.part &gt; div.part--size,
.part &gt; div.part--packaging{
  color: #082951;
}

.part__sterile-image{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

.row--even{
  background-color: #FFFFFF;
}

.row--odd{
  background-color: #F2F1F0;
}

.sterile--circle{
  display: block;
  background-color: #009382;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
}

.btn--add{
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #082951;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  line-height: 1;
}

.btn--add &gt; i{
  margin-left: 6px;
  transition: all 0.2s linear;
}

.btn--add:hover{
  text-decoration: none;
}

.btn--add:hover &gt; i{
  margin-left: 8px;
  transition: all 0.2s linear;
}


















@media screen and (min-width: 768px){
  .item--mobile{
    display: none;
  }
}

@media screen and (max-width: 767px){
  .item--desktop{
    display: none;
  }
  
  .parts .parts__filter{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    max-width: 100%;
  }
  
  .product-line-selector__multiselect{
    width: 100%;
  }
  
  .parts .part{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .parts .part--heading{
    font-weight: bold;
    color: #082951;
  }
  
  .parts .part__sterile-image{
    width: 100%;
    justify-content: space-between;
  }
  
  .parts .part--number,
  .parts .part--size{
    width: 48%;
  }
  
  .parts .part--packaging,
  .parts .part--description{
    width: 100%;
  }
  
}






.lity{
  z-index: 999999;
}

.lity-close{
  top: 2rem;
  right: 2rem;
}

.image--false{
  opacity: 0.25;
  pointer-events: none;
}

label.input--checkbox &gt; div{
  position: relative;
}

.input--check{
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: fit-content;
  margin-bottom: 1rem;
}

{#.input--checkbox{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
}#}

.input--checkbox input{
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.input--checkbox .checkmark{
  position: relative;
  display: block;
  height: 15px;
  width: 15px;
  min-width: 15px;
  border-radius: 2px;
  margin-right: 1rem;
  background-color: #fff;
  border: 1px solid #082951;
}

.input--checkbox .checkmark:before{
  display: none;
}

.input--checkbox .checkmark:after{
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 0px;
  width: 4px;
  height: 12px;
  border: solid #082951;
  border-width: 0px 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.input--checkbox input:checked ~ .checkmark{
  background-color: #fff;
}

.input--checkbox input:checked ~ .checkmark:after{
  display: block;
}</pre></body></html>