<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#ipsLayout_contentArea {
	display: block;
}

:root {
  /* colors */
  --border-color: #dadada;
  --text-color: #3d3c45;
  --background-color: #fff;

  /* rgb values also used as rgba */
  --notrare-color: 39, 144, 249;
  --rare-color: 172, 42, 220;
  --epic-color: 254, 61, 41;
  --legendary-color: 255, 155, 11;
}

.accessories-table-layout {
  display: grid;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .accessories-table-layout {
    grid-template-columns: 264px auto;
  }
}

.accessories-table-aside {
  align-self: start;
  flex-direction: column;
  display: flex;
  gap: 30px;

  background-color: var(--background-color);

  border: 1px solid var(--border-color);
  border-radius: 4px;

  padding: 30px;
}

@media screen and (min-width: 576px) {
  .accessories-table-aside {
	flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .accessories-table-aside {
    grid-row: 2;
	flex-direction: column;
  }
}

.accessories-table-content {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media screen and (min-width: 576px) {
  .accessories-table-content {
    gap: 22px;
  }
}

@media screen and (min-width: 768px) {
  .accessories-table-content {
    grid-row: 2;
  }
}

@media screen and (min-width: 992px) {
  .accessories-table-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  .accessories-table-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.accessories-table-header {
  grid-row: 1;
  grid-column: 1;
  
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;

  width: 100%;
}

#accessoriesLength {
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .accessories-table-header {
    grid-column: 2;
  }
}

.accessories-table-aside__content {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 576px) {
  .accessories-table-aside__content {
    width: calc(100% - 30px);
  }
}

.accessories-table-aside__input {
  opacity: 0;

  width: 0;
  height: 0;

  cursor: pointer;
}

.accessories-table-aside__label {
  display: flex;
  align-items: center;

  color: var(--text-color);
  font-weight: 500;
  font-size: 14px;

  position: relative;

  cursor: pointer;
  padding: 10px 0 10px 38px;

  user-select: none;
}

.accessories-table-aside__checkbox {
  position: absolute;

  left: 0;

  height: 24px;
  width: 24px;

  border: 1px solid var(--border-color);
  border-radius: 2px;
}

.accessories-table-aside__input:checked ~ .accessories-table-aside__checkbox {
  background: transparent linear-gradient(180deg, #9dcc94 0%, #8db58d 100%);
  border: none;
}

.accessories-table-aside__input:checked
  ~ .accessories-table-aside__checkbox::after {
  display: block;
}

.accessories-table-aside__checkbox::after {
  content: '';
  position: absolute;
  display: none;

  left: 8px;
  top: 3px;

  width: 6px;
  height: 12px;

  border: solid white;
  border-width: 0 2px 2px 0;

  rotate: 45deg;
}

.accessories-table__paragraph {
  margin-bottom: 10px;

  color: var(--text-color);
  font-size: 14px;
  font-weight: 600;
}

@media screen and (min-width: 576px) {
  .accessories-table__paragraph {
    font-size: 18px;
  }
}

.accessories-table-card {
  display: flex;
  flex-direction: column;
  
  position: relative;

  background-color: var(--background-color);

  border: 1px solid var(--border-color);
  border-radius: 4px;

  width: 100%;
}

.accessories-table-card img {
  display: block;

  padding: 5px 5px 0 5px;
  object-fit: cover;

  width: 100%;
}

@media screen and (min-width: 576px) {
  .accessories-table-card img {
    padding: 19px 32px 0 32px;
  }
}

.accessories-table-card__content {
  display: flex;
  flex-direction: column;

  padding: 10px 10px 0 10px;
  height: 100%;
  
  box-shadow: 0 -15px #fff;
}

@media screen and (min-width: 576px) {
  .accessories-table-card__content {
    padding: 24px 24px 0 24px;
  }
}

.accessories-table-card__bonuses {
  display: flex;
  flex-direction: column;
  gap: 2px;

  font-size: 10px;
  color: var(--text-color);

  margin-bottom: 15px;
  padding: 0;

  list-style: none;
}

@media screen and (min-width: 576px) {
  .accessories-table-card__bonuses {
    font-size: 14px;
    gap: 5px;
    margin-bottom: 30px;
  }
}

.accessories-table-card__bonuses li span {
  font-weight: 600;
  margin-left: 5px;
}

.accessories-gr-notrare {
  background: transparent
    linear-gradient(
      150deg,
      #ffffff00 40%,
      rgba(var(--notrare-color), 0.26) 100%
    );
}

.accessories-gr-rare {
  background: transparent
    linear-gradient(150deg, #ffffff00 40%, rgba(var(--rare-color), 0.26) 100%);
}

.accessories-gr-epic {
  background: transparent
    linear-gradient(150deg, #ffffff00 40%, rgba(var(--epic-color), 0.26) 100%);
}

.accessories-gr-legendary {
  background: transparent
    linear-gradient(
      150deg,
      #ffffff00 40%,
      rgba(var(--legendary-color), 0.26) 100%
    );
}

.accessories-bg-notrare {
  background-color: rgb(var(--notrare-color));
}

.accessories-bg-rare {
  background-color: rgb(var(--rare-color));
}

.accessories-bg-epic {
  background-color: rgb(var(--epic-color));
}

.accessories-bg-legendary {
  background-color: rgb(var(--legendary-color));
}

.accessories-table-card__marker {
  width: 90%;
  height: 4px;

  border-radius: 10px 10px 0px 0px;

  margin: 0 auto;
  margin-top: 17px;
}

.accessories-table-card__details {
  display: flex;
  justify-content: space-between;

  margin-top: auto;
}

.accessories-table-card__details span {
  font-size: 10px;
  
  cursor: pointer;
}

@media screen and (min-width: 576px) {
  .accessories-table-card__details span {
    font-size: 14px;
  }
}

.accessories-table-header__select {
  width: 100%;
}

@media screen and (min-width: 576px) {
  .accessories-table-header__select {
    width: auto;
  }
}

.accessories-table-card__unique {
  position: absolute;
  top: 5%;
  right: 0;
  padding-right: 15px;
  padding-left: 5px;
  border-radius: 10px 0 0 10px;
  
  cursor: pointer;
}

.accessories-table-card__unique i {
  color: #fff;
}

.accessories-table-card__unique span {
  color: #fff;
}</pre></body></html>