* {
  font-family: "HelveticaNeue";
}

body {
  margin:0;
}

header {
  width: 100%;
  background-color: var(--layer-primary, #FFFFFF);
  height: 64px;
  margin: 0;
  border-bottom: 1px solid var(--border-subtle-02, #cccccc);
}

.header {
  width: fit-content;
  height: 64px;
  flex-direction: row;
  display: flex;
  align-items: center;
  font-weight: var(--medium, 400);
  line-height: 22px;
  font-size: var(--label-medium, 14px);
}
body > div.category-container > div > p {
  margin-left: 16px;
}

.separator {
  border-right: 1px solid var(--border-subtle-02, #cccccc);
  height: 22px;
  margin-left: 5px;
  margin-right: 12px;
}

.horizontal-separator {
  margin-left: 32px;
  margin-right: 32px;
  margin-top: 70px;
  width: auto;
  height: 1px;
  background: var(--border-subtle-02, #CCC);
}

.logo {
  object-fit: contain;
  height: 29px;
  min-width: 29px;
  margin-left: 32px;
}

.header-text {
  margin-right: 10px;
  margin-left: 10px;
}

.navigation {
  background-color: #F7F7F7;
  height: 128px;
  max-height: 128px;
  padding-top: 60px;
}

core-breadcrumb {
  margin-left: 32px;
  justify-content: left;
}

h1, h2, p {
  margin-left: 32px;
  margin-right: 20px;
}

.title {
  width: fit-content;
  flex-direction: row;
  display: flex;
  align-items: center;
}
.download-url{
  color: var(--text-link,#0071D0);
  text-decoration: none;
  font-size: 16px;
}

.download-icon {
  position: relative;
  top: 1.5px;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  background-color: var(--background-primary,#FFFFFF);
  flex-direction: row;
  justify-content: right;
  display: none;
  align-items: center;
  font-weight: var(--medium, 500);
  line-height: 26px;
  font-size: var(--label-medium, 16px);
  border-top: 1px solid #CCCCCC;
  box-shadow: 0px -6px 8px 0px rgba(0, 0, 0, 0.1);
}

.actions {
  display: flex;
  align-items: center;
}

.single {
  display: flex;
  align-items: center;
}

#myFooter > div > div.multiple > p, #myFooter > div > div.single > p {
  color: var(--color-black-100, #000);
  font-feature-settings: 'clig' off, 'liga' off;
  /* Label/Medium-Alt */
  font-family: Helvetica Neue;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px; /* 162.5% */
}
#myFooter > div > div.single > core-button, #myFooter > div > div.download > core-button, #myFooter > div > div.htmlcopy > core-button {
  margin:8px;
}
.wrapper {
  margin-right: 16px;
  margin-top: 16px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle-02, #CCC);
  background: var(--background-secondary, #F7F7F7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 140px;
  max-height: 130px;
  cursor: pointer;
}

.category {
  margin-right: 16px;
  margin-top: 16px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle-02, #CCC);
  background: var(--background-secondary, #F7F7F7);
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
  flex-shrink: 0;
}
body > div.icons-container > div > p {
  margin-left: 16px;
}
.category__image {
  width: 100%;
}

.category__button {
  margin: auto;
  padding-top: 48px;
}

.selected {
  border-radius: 8px;
  border: 2px solid var(--border-selected, #0071D0);
  background: var(--layer-hover-02, #DFEEFF);
}
body > div:nth-child(8) > a:nth-child(2), body > div:nth-child(8) > a:nth-child(3) {
  margin-left: 15px;
}

ul {
  list-style-type: circle;
}
h3 {
  width: auto;
  height: 45px;
}
.icons-container{
  display: grid;
  grid-template-columns: 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5% 12.5%;
  margin-left: 32px;
}

@media only screen and (max-width: 927px) {
  .icons-container{
    grid-template-columns: 20% 20% 20% 20% 20%;
  }
}

@media only screen and (max-width: 627px) {
  .icons-container{
    grid-template-columns: 33% 33% 33%;
  }
}

@media only screen and (min-width: 1627px) {
  .icons-container{
    grid-template-columns: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10%;
  }
}

.category-container{
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  margin-left: 32px;
}

@media only screen and (max-width: 927px) {
  .category-container{
    grid-template-columns: 33% 33% 33%;
  }
}

@media only screen and (max-width: 627px) {
  .category-container{
    grid-template-columns: 50% 50%;
  }
}

@media only screen and (min-width: 1627px) {
  .category-container{
    grid-template-columns: 16% 16% 16% 16% 16% 16%;
  }
}