<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#which-are-you-anchor {
  display: flex;
  width: auto;
  max-width: 1100px;
  margin: 10px auto 20px;
  align-items: top;
  align-content: space-around;
  flex-direction: row;
  background-color: white;
  overflow: hidden;
}

#discover-div a {
  font-size: 0;
}

@media screen and (min-width: 801px) {
  #im-expert-div {
    border-right: solid 1px #cccccc;
  }
  
  #im-expert-div,
  #discover-div {
    width: 50%;
    max-width: 600px;
    min-width: 425px;
    height: auto;
    padding: 20px;
    text-align: center;
  }
}

#im-expert-div img {
  height: 200px;
  display: block;
  margin: 5px auto;
}

#discover-application-section {
  width: 100%;
  text-align: center;
}

#discover-application-section h4 {
  margin: 20px auto;
}

.discover-category {
  width: min(150px, 25vw);
  height: min(100px, 20vw);
  overflow: hidden;
  text-align: center;
  background-color: #dddddd;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5px;
}


.discover-category:hover {

  background-color: #cdea00;
  transition: 1s;
}

#discover-div table {
  margin: 0 auto;
}

#discover-div table tr {
  line-height: 100px;

}

#discover-div table tr td {
  line-height: 1;
}

.selected {
  -webkit-box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.5);
}

.discover-category img {
  height: 40px;
  vertical-align: middle;
  margin: 0;
}

.discover-category p {
  vertical-align: middle;
  line-height: 1;
  font-weight: 800;
  text-shadow: #363636;
  margin-top: 5px;
}

#discover-div button,
#im-expert-div button {
  margin-top: 30px;
  padding: 10px 40px;
  border: none;
  font-size: 20px;
}

#discover-div a {
  text-decoration: none;
}

#collection-content {
  max-width: 1700px;
  margin: 0 auto 20px;
}

#collection-content h2 {
  margin: 40px auto;
}

#discover-div button:hover,
#im-expert-div button:hover {
  cursor: pointer;
  background-color: #cdea00;
}

#discover-div button:focus,
#im-expert-div button:focus {
  outline: none;
}

@media screen and (max-width: 800px) {
  .discover-category {
    width: 170px;
    height: 120px;
  }

  .discover-category img {
    height: 40px;
  }

  #which-are-you-anchor {
    flex-direction: column;
  }

  #im-expert-div,
  #discover-div {
    display: block;
    width: 80%;
    padding: 5px;
    text-align: center;
    margin: 0 auto;
  }

  #im-expert-div {
    border-right: none;
    margin-bottom: 20px;
  }

  #discover-div button,
  #im-expert-div button {
    font-size: 14px;
    margin-top: 10px;
  }
}

@media screen and (max-width: 500px) {
  .discover-category {
    width: 140px;
    height: 90px;
  }

  .discover-category img {
    height: 30px;
  }
}
</pre></body></html>