main {
  
}

main .container.is-page .content {
  width: 100%;
}

main .text-align-left {
  text-align: left;
}

main .text-align-right {
  text-align: right;
}

main .text-align-center {
  text-align: center;
}

main .row {
  display: flex;
  width: 100%;
}

main .row .cell {
  width: 100%;
}

main .row.center {
  align-items: center;
}

main .row .w-5 {
  min-width: 5%;
  max-width: 5%;
}

main .row .w-10 {
  min-width: 10%;
  max-width: 10%;
}

main .row .w-15 {
  min-width: 15%;
  max-width: 15%;
}

main .row .w-25 {
  min-width: 25%;
  max-width: 25%;
}

main .row .w-33 {
  min-width: 33.33%;
  max-width: 33.33%;
}

main .row .w-35 {
  min-width: 35%;
  max-width: 35%;
}

main .row .w-45 {
  min-width: 45%;
  max-width: 45%;
}

main .row .w-50 {
  min-width: 50%;
  max-width: 50%;
}

main .row .w-55 {
  min-width: 55%;
  max-width: 55%;
}

main .row .w-65 {
  min-width: 65%;
  max-width: 65%;
}

main .row .w-75 {
  min-width: 75%;
  max-width: 75%;
}

main .row .w-85 {
  min-width: 85%;
  max-width: 85%;
}

main .row .w-95 {
  min-width: 95%;
  max-width: 95%;
}

main .row .w-100 {
  min-width: 100%;
  max-width: 100%;
}

main .actions {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  user-select: none;
}

main .actions > div {
  margin-left: 15px;
  transition: all 250ms;
  color: #555;
  fill: #555;
  cursor: pointer;
}

main .actions > div:hover,
main .actions > div:active {
  color: #0062ff;
  fill: #0062ff;
}

main .actions > div svg {
  transition: all 250ms;
}

main .actions .save {
  display: flex;
  align-items: center;
  margin-right: 2px;
}

main .actions .save > svg {
  margin-top: -2px;
  margin-right: 4px;
}

main .dropdown {
  display: block;
  position: relative;
  margin-left: 10px;
}

main .actions .dropdown > div {
  display: flex;
  align-items: center;
}

main .actions .dropdown > div > svg {
  margin-right: 5px;
}

main .dropdown nav {
  display: none;
  padding-top: 5px;
}

main .dropdown.active nav {
  display: block;
  position: absolute;
  right: 0;
  width: 250px;
  margin-top: 10px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  z-index: 10;
}

main .dropdown nav ul,
main .dropdown nav ul li {
  display: block;
  list-style: none;
}

main .dropdown nav ul li a {
  display: flex;
  font-size: 90%;
  line-height: normal;
  text-decoration: none;
  color: #555;
  padding: 5px;
  transition: all 250ms;
}

main .dropdown nav ul li a.x,
main .dropdown nav ul li a.x svg {
  fill: #000;
}

main .dropdown nav ul li a.facebook,
main .dropdown nav ul li a.facebook svg {
  fill: #1877f2;
}

main .dropdown nav ul li a.email,
main .dropdown nav ul li a.email svg {
  fill: #f39019;
}

main .dropdown nav ul li a:hover {
  background-color: #f5f5f5;
}


main .dropdown nav ul li a:active {
  background-color: #eee;
}

main .dropdown nav ul li a svg {
  display: inline-block;
  margin-right: 10px;
}

main .dropdown nav ul li.link {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  border-top: 1px solid #e5e5e5;
  padding: 10px;
  margin-top: 5px;
}

main .dropdown nav ul li.link input {
  font-size: 14px;
  line-height: 14px;
  width: 100%;
  padding: 5px;
  border-radius: 3px;
  border: 1px solid #ccc;
}

main .share-menu {
  display: inline-block;
}

main .topics {
  display: block;
  margin-top: 15px;
  margin-left: -5px;
}

main .topics ul {
  display: block;
  align-items: center;
}

main .topics ul li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  user-select: none;
  white-space: nowrap;
}

main .topics ul li a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  padding: 7px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 25px;
  background-color: #f0f0f0;
  color: #555;
  text-decoration: none;
  transition: background 250ms;
}

main .topics ul li a:active {
  background-color: #ddd;
}

main fieldset {
  display: block;
  border: none;
  padding: 0;
  margin: 0;
  margin-bottom: 15px
}

main fieldset label {
  display: block;
  font-size: 100%;
  font-weight: normal;
  line-height: normal;
  padding: 3px;
  margin-bottom: 5px;
}

main fieldset .notice {
  display: block;
  font-size: 90%;
  line-height: 125%;
  margin-top: 5px;
}

main fieldset input[type="text"],
main fieldset input[type="email"],
main fieldset input[type="url"],
main fieldset input[type="number"],
main fieldset input[type="password"],
main fieldset select,
main fieldset textarea {
  font-size: 100%;
  line-height: normal;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

main fieldset textarea {
  min-height: 250px;
  height: auto;
  resize: vertical;
}

main fieldset button {
  display: inline-flex;
  align-items: center;
  font-size: 100%;
  font-weight: bold;
  line-height: normal;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 5px;
  color: #fff;
  fill: #fff;
  background-color: #000;
  border: none;
  cursor: pointer;
  user-select: none;
  transition: opacity 100ms;
  outline: none;
}

main fieldset button:disabled {
  opacity: 0.1;
  cursor: not-allowed;
}

main header {
  display: block;
  min-width: auto;
  max-width: auto;
  text-align: center;
  background-color: #fff;
  padding-top: 15px;
  padding-left: 50px;
  padding-right: 50px;
  margin: 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
}

main header * {
  padding: 0;
  margin: 0;
}

main header > div {
  display: inline-block;
  width: 100%;
  max-width: 1178px;
}

main header h1.title {
  display: block;
  font-size: 250%;
  font-weight: 800;
  line-height: 125%;
  margin: 0;
  margin-top: 10px;
  width: 100%;
}

main header h1.title.page {
  font-size: 250%;
}

main header h1.title.listing {
  font-size: 150%;
  font-weight: normal;
  line-height: 120%;
}

main header h1.title a {
  color: inherit;
  text-decoration: none;
}

main header nav.topics {
  display: block;
  overflow: hidden;
  height: 70px;
}

main header h1 .subtitle {
  display: block;
  font-size: 70%;
  font-weight: 300;
  line-height: 140%;
  margin-top: 15px;
  color: #666;
}

main header h1.title.listing .subtitle {
  font-size: 70%;
  margin-top: 5px;
}

main header p.description.listing {
  font-size: 110%;
  font-weight: 300;
  line-height: 150%;
  margin-top: 25px;
}

main header .author {
  display: flex;
  font-size: 100%;
  font-weight: 300;
  align-items: center;
  margin-top: 20px;
}

main header .author a {
  font-weight: 600;
  color: inherit;
  text-decoration: none;
}

main header .author a:hover {
  text-decoration: underline;
}

main header .author .image img {
  display: block;
  width: 60px;
  height: auto;
  margin-right: 25px;
  border-radius: 60px;
}

main header .info {
  display: block;
  font-size: 15px;
  line-height: 17px;
  color: #888;
  margin-top: 25px;
}

main header .info > * {
  display: inline-flex;
  align-items: center;
  margin-right: 25px;
  white-space: nowrap;
}

main header .info > * svg {
  margin-top: -2px;
  margin-right: 5px;
}

main aside.left {
  display: flex;
  justify-content: right;
  width: 50px;
  min-width: 50px;
  max-width: 50px;
}

main aside.left > div {
  position: fixed;
  visibility: hidden;
  top: calc(50% - 100px);
}

main .container.is-page aside.left > div {
  visibility: visible;
}

main aside.left hr {
  display: block;
  background: none;
  border: none;
  margin-top: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

main aside.left .vote > *,
main aside.left .share > * {
  display: block;
}

main aside.left .vote {
  text-align: center;
  user-select: none;
}

main aside.left .vote svg {
  transition: fill 250ms;
  cursor: pointer;
}

main aside.left .vote .upvote:active svg,
main aside.left .vote .upvote.active svg {
  fill: #51c68b;
}

main aside.left .vote .downvote:active svg,
main aside.left .vote .downvote.active svg {
  fill: #000;
}

main aside.left .vote .upvote:active,
main aside.left .vote .downvote:active {
  opacity: .75;
}

main aside.left .share {

}

main aside.left .share a {
  display: block;
  text-decoration: none;
  margin-bottom: 10px;
}

main aside.left .share a.x,
main aside.left .share a.x svg {
  fill: #000;
}

main aside.left .share a.facebook,
main aside.left .share a.facebook svg {
  fill: #1877f2;
}

main aside.left .share a.email,
main aside.left .share a.email svg {
  fill: #f39019;
}

main aside.left .share a:active {
  opacity: .75;
}

main aside.left .vote num {
  display: block;
  font-size: 90%;
  font-weight: bold;
  line-height: normal;
  margin-top: 5px;
  margin-bottom: 10px;
}

main aside.right {
  padding: 0;
  margin: 0;
  margin-top: 50px;
  margin-right: 25px;
  width: 350px;
  min-width:  350px;
  max-width:  350px;
}

main aside.right a {
  fill: #000;
  color: #000;
}

main aside.right h2 {
  font-size: 20px;
  font-weight: normal;
  line-height: 26px;
  margin-top: 25px;
  margin-bottom: 25px;
}

main aside.right h2 i,
main aside.right h2 b {
  font-size: inherit;
  font-weight: bold;
  font-style: normal;
  color: #000;
}

main aside.right ul.num {

}

main aside.right ul.num li {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 2px;
  margin-bottom: 2px;
  transition: color 250ms;
}

main aside.right ul.num li .preview {
  display: none;
  position: absolute;
  font-size: 95%;
  line-height: 135%;
  width: 100%;
  max-width: 300px;
  top: 0;
  left: -325px;
  padding: 15px;
  background-color: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

/* main aside.right ul.num li .preview:before {
  position: absolute;
  margin-top: 2px;
  margin-left: 285px;
  content: '';
  width: 0; 
  height: 0; 
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
} */

main aside.right ul.num li .preview figure {
  display: block;
  width: 300px;
  min-width: 300px;
  max-width: 300px;
  margin-top: -15px;
  margin-left: -15px;
  margin-bottom: 15px;
}

main aside.right ul.num li .preview figure img {
  display: block;
  width: 100%;
  height: auto;
}

main aside.right ul.num li:hover .preview {
  display: block;
}

main aside.right ul.num li a {
  transition: color 250ms;
  text-decoration: none;
}

main aside.right ul.num li a:hover {
  color: #cc0000;
}

main aside.right ul.num li num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  border-radius: 30px;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
  color: #fff;
  transition: background 50ms ease-in;
  background-color: #000; /*test: 0a95ff*/
  margin-right: 10px;
}

main aside.right ul.num li:hover num {
  background-color: #cc0000;
}

main aside.right ul.flex {
  display: block;
  list-style: none;
}

main aside.right ul.flex li {
  margin-bottom: 15px;
}

main aside.right ul.flex li a {
  display: block;
  position: relative;
  text-decoration: none;
}

main aside.right ul.flex li a:after {
  position: absolute;
  top: 105%;
  content: '';
  width: 15px;
  height: 3px;
  background-color: #000;
  transition: width 250ms;
}

main aside.right ul.flex li a:hover {
  text-decoration: none;
}

main aside.right ul.flex li a:hover:after {
  width: 30px;
}

main aside.right ul.flex li a:hover h3,
main aside.right ul.flex li a:hover h4 {
  
}

main aside.right ul.flex li figure {
  display: block;
  margin-bottom: 15px;
}

main aside.right ul.flex li figure > div {
  display: block;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

main aside.right ul.flex li figure img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
}

main aside.right ul.flex li h3,
main aside.right ul.flex li h4 {
  font-size: inherit;
  font-weight: bold;
  line-height: inherit;
  margin-bottom: 5px;
}

main aside.right ul.flex li p {
  font-size: inherit;
  line-height: inherit;
}

main aside details {

}

main aside details,
main aside details * {
  padding: 0;
  margin: 0;
}

main aside details summary {
  display: flex;
  align-items: center;
  padding-top: 2px;
  padding-bottom: 2px;
  user-select: none;
  cursor: pointer;
  list-style: none;
  transition: all 250ms;
}

main aside details summary svg {
  margin-left: -2px;
  fill: #000;
}

main aside details[open] summary svg {

}

main aside details summary h2,
main aside details summary h3,
main aside details summary h4 {
  font-size: 100%;
  font-weight: normal;
  line-height: 150%;
  margin-top: -5px;
  margin-left: 2px;
}

main aside details[open] {

}

main aside details[open] summary h2,
main aside details[open] summary h3,
main aside details[open] summary h4 {
  font-weight: bold;
  color: #000;
}

main aside details:hover summary {
  color: #000;
}

main aside details:active summary {

}

main aside details[open] > div {
  padding-left: 25px;
  padding-bottom: 10px;
}

main aside details a {
  color: inherit;
}

main aside {
  display: block;
  color: #000;
  fill: #000;
}

main aside .relevant-products {

}

main aside .relevant-products p {
  margin-bottom: 10px;
}

main aside .relevant-products .item {
  margin-bottom: 10px;
}

main aside .relevant-products .notice {
  font-size: 80%;
  line-height: normal;
  color: #999;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #ddd;
}

main aside .relevant-products .notice a {
  text-decoration: underline;
}

main aside .relevant-products .notice a:hover {
  text-decoration: underline;
}

main aside .button {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  line-height: 17px;
  padding: 7px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 5px;
  color: #fff;
  fill: #fff;
  background-color: #000;
  text-decoration: none;
  transition: opacity 100ms;
  white-space: nowrap;
  user-select: none;
  outline: none;
}

main aside .button:hover {
  opacity: .8;
}

main aside .button:active {
  opacity: .6;
}

main aside .button svg {
  margin-right: 5px;
}

main aside .container {
  margin-bottom: 25px;
}

main aside a {
  color: inherit;
}

main aside ol,
main aside ul {
  list-style: none;
}

main aside ol li,
main aside ul li {
  padding-top: 3px;
  padding-bottom: 3px;
}

main aside ul li a {
  text-decoration: none;
}

main .hidden {
  display: none;
  visibility: 0;
  position: absolute;
  top: -9999px;
  left: -9999px
}

main .content {
  position: relative;
  width: 100%;
  max-width: 950px;
  margin: 0;
  margin-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
}

main .content article {

}

main .content article .featured {
  display: block;
  margin-bottom: 25px;
}

main .content article .featured.image {
  display: block;
  border-radius: 10px;
  background-color: #f2f2f2;
}

main .content article .featured.image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

main .content article .description {
  font-size: 24px;
  font-weight: 300;
  line-height: 36px;
  margin-left: 50px;
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 8px solid #000;
}

/* main .content article .description:first-letter {
  float: left;
  font-size: 46px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-right: 10px;
  margin-bottom: 10px;
} */

main .content article .table-of-contents {
  display: block;
  font-size: inherit;
  line-height: normal;
  color: #555;
  padding: 25px;
  border-radius: 10px;
  background-color: #f2f2f2;
  margin-bottom: 25px;
}

main .content article .table-of-contents h2 {
  display: flex;
  font-size: 22px;
  line-height: 24px;
  color: inherit;
  margin-bottom: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

main .content article .table-of-contents h2 svg{
  display: block;
  margin-top: 2px;
  margin-right: 10px;
}

main .content article .table-of-contents a {
  display: block;
  font-weight: normal;
  font-size: inherit;
  line-height: normal;
  color: inherit;
  transition: color .2s;
  text-decoration: none;
}

main .content article .table-of-contents a:hover {
  color: #000;
}

main .content article .table-of-contents ul {
  padding: 0;
  margin: 0;
  margin-left: 30px;
  list-style: none;
}

main .content article .table-of-contents ul li {
  display: flex;
  padding: 0;
  margin: 0;
  margin-top: 15px;
  margin-bottom: 15px;
}

main .content article .table-of-contents ul li:last-of-type {
  padding-bottom: 0;
}

main .content article .table-of-contents ul li.h3 {
  padding-left: 10px;
}

main .content article .table-of-contents ul li.h4 {
  padding-left: 20px;
}

main .content article .table-of-contents ul li.h5 {
  padding-left: 30px;
}

main .content article .table-of-contents ul li.h6 {
  padding-left: 40px;
}

main .content .listing {

}

main .content .listing .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

main .content .listing .pagination a,
main .content .listing .pagination span {
  display: inline-flex;
  align-items: center;
  font-size: 90%;
  font-weight: 500;
  line-height: 16px;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 25px;
  color: #aaa;
  fill: #aaa;
  user-select: none;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.10);
  background-color: #fff;
}

main .content .listing .pagination a {
  background-color: #0062ff;
  text-decoration: none;
  color: #fff;
  fill: #fff;
  transition: opacity 250ms;
  cursor: pointer;
}

main .content .listing .pagination a:active {
  opacity: .75;
}

main .content .listing .pagination svg.previous {
  margin-right: 2px;
}

main .content .listing .pagination svg.next {
  margin-left: 0;
}

main .content .listing .items {
  display: block;
  padding: 0;
  margin: 0;
}

main .content .listing .items .item {

}

main .content .listing .items .item h2 {
  font-size: 18px;
  line-height: normal;
  margin-bottom: 0;
}

main .content .listing .items .item h2 a {
  text-decoration: none;
}

main .content .listing .items .item h2 a:hover {
  text-decoration: underline;
}

main .content .listing .items .item .number num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  background-color: #f0f0f0;
  width: 35px;
  height: 35px;
  border-radius: 35px;
}

main .content .listing .items .item .row {
  display: flex;
  align-items: center;
}

main .content .listing .items .item .row figure.author {
  display: block;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  margin-right: 25px;
}

main .content .listing .items .item .row figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 60px;
  /* box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10); */
  box-shadow: none;
}

main .content .listing .items .item .row details {
  margin-left: -3px;
}

main .content .listing .items .item .row details ol {
  font-size: 90%;
  padding: 15px;
  padding-left: 35px;
  margin-top: 5px;
  margin-right: 25px;
  border-radius: 3px;
  background-color: #f0f0f0;
}

main .content .listing .items .item .row details[open] ol {

}

main .content .listing .items .item .row .number {
  margin-left: auto;
}

main .content .listing .cards {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 50px;
}

main .content .listing .cards article {
  display: inline-block;
  position: relative;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 400px;
  min-width: 300px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
}

main .content .listing .cards article .body {
  padding: 25px;
}

main .content .listing .cards article figure {
  display: block;
  overflow: hidden;
}

main .content .listing .cards article figure > div {
  display: block;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

main .content .listing .cards article figure img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
}

main .content .listing .cards article h2 {
  font-size: 20px;
  line-height: 125%;
  color: inherit;
}

main .content .listing .cards article h2 a {
  display: block;
  text-decoration: none;
  color: inherit;
}

main .content .listing .cards article h2 a:hover {
  text-decoration: underline;
}

main .content .listing .cards article nav {
  overflow: hidden;
}

main .content .listing .cards article nav ul,
main .content .listing .cards article nav ul li {
  display: inline-block;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

main .content .listing .cards article nav ul li a,
main .content .listing .cards article nav ul li span {
  display: flex;
  align-items: center;
  line-height: normal;
  font-weight: normal;
  text-decoration: none;
  margin-right: 10px;
  white-space: nowrap;
  font-size: 75%;
  font-weight: 500;
  color: #555;
}

main .content .listing .cards article nav ul li a:hover {
  text-decoration: underline;
}

main .content .listing .cards article nav ul li a svg,
main .content .listing .cards article nav ul li span svg {
  margin-right: 2.5px;
}

main .content .listing .cards article.border-top {
  border-top: 3px solid #000;
}

main .content .listing .cards article .thumbnail {
  padding: 0;
  margin: 0;
}

main .content .listing .cards article .button {
  all: reset;
  display: inline-flex;
  align-items: center;
  font-size: 90%;
  font-weight: 500;
  line-height: 16px;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 50px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
  transition: background .2s ease-in;
  text-decoration: none;
  color: #555;
  user-select: none;
  margin-top: 20px;
  margin-bottom: 20px;
}

main .content .listing .cards article .button svg {
  display: block;
  margin-left: 0;
  margin-bottom: 0;
}

main .content .listing .cards article .author {
  position: absolute;
  left: calc(50% - 30px);
  bottom: -55px;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  /* box-shadow: none; */
}

main .content .listing .cards article .button:hover {
  text-decoration: none;
}

main .content .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #ccc;
}

main .content .placeholder > * {
  display: inline-block;
  text-align: center;
}

main .content .placeholder p {
  margin-bottom: 25px;
}

main .content .placeholder a.button {
  display: inline-flex;
  align-items: center;
  font-size: 97%;
  font-weight: 600;
  text-decoration: none;
  background-color: #777;
  color: #fff;
  fill: #fff;
  padding: 10px;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  transition: opacity .2s ease-in;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
}

main .content .placeholder a.button svg {
  margin-right: 7px;
}

main .content .placeholder a.button:active {
  opacity: .75;
}

main .content.homepage {
  padding: 0;
  padding-left: 25px;
  padding-right: 45px;
  padding-bottom: 50px;
}

main .content.homepage .row {
  width: 100%;
}

main .content.homepage .row .cell.w-35 h2 {
  
}

main .content.homepage .row.primary,
main .content.homepage .row.secondary {

}

main .content.homepage .row.secondary {
  padding-top: 25px;
  padding-bottom: 25px;
}

main .content.homepage .item {
  padding-top: 5px;
  padding-right: 25px;
  padding-bottom: 5px;
}

main .content.homepage .item.listing {
  padding-top: 15px;
  padding-bottom: 15px;
}

main .content.homepage .item.listing h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 115%;
  color: inherit;
  margin-bottom: 15px;
}

main .content.homepage .item.listing .cell:first-of-type {
  margin-right: 25px;
}

main .content.homepage .item.title-inside {
  position: relative;
}

main .content.homepage .item.title-inside h2 {
  position: absolute;
  left: 0;
  right: 25px;
  bottom: 0;
  padding: 15px;
  font-size: 22px;
  font-weight: bold;
  line-height: 125%;
  color: #fff;
  background-color: rgba(0, 0, 0, .75);
}

main .content.homepage .item figure {
  display: block;
  /* border-radius: 5px; */
  background-color: #f2f2f2;
  margin-bottom: 15px;
}

main .content.homepage .item figure > div {
  display: block;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

main .content.homepage .item picture.default {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  color: #bcc6d4;
  fill: #bcc6d4;
  background-color: #e8eaed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

main .content.homepage .item figure img {
  display: block;
  position: absolute;
  /* border-radius: 5px; */
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
}

main .content.homepage .item h2 {
  font-size: inherit;
  line-height: inherit;
  font-weight: normal;
}

main .content.homepage .item a {
  display: block;
  color: inherit;
  text-decoration: none;
}

main .content.homepage .item:hover h2 {
  text-decoration: underline;
}

main .content article {
  margin-bottom: 15px;
}

main .content article:last-of-type {
  margin-bottom: 0;
}

main .content article hr {
  display: block;
  background: none;
  border: none;
  margin-top: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e0e0e0;
}

main .content article code {
  font-family: monospace;
  font-weight: normal;
  font-size: 90%;
  font-style: normal;
  padding: 2px;
  background-color: #eee;
}

main .content article ol,
main .content article ul {
  padding: 0;
  padding-left: 25px;
  padding-bottom: 10px;
  margin: 0;
}

main .content article ol li,
main .content article ul li {
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

main .content article pre {
  font-family: monospace;
  font-weight: lighter;
  font-size: 90%;
  line-height: 150%;
  padding: 10px;
  border-radius: 5px;
  color: #333;
  overflow-y: scroll;
  background-color: #f5f5f5;
}

main .content article blockquote {
  position: relative;
  font-size: 125%;
  font-weight: 200;
  font-style: italic;
  line-height: 150%;
  text-indent: 20px;
  margin-left: 25px;
  color: #777;
}

main .content article blockquote:before {
  position: absolute;
  display: inline;
  font-size: 42px;
  line-height: 42px;
  content: '“';
  top: 0;
  left: -20px;
}

main .content article figure {
  display: block;
}

main .content article figure.align-left {
  float: left;
  margin-right: 25px;
}

main .content article figure.align-right {
  float: right;
  margin-left: 25px;
}

main .content article figure.align-center {
  display: block;
  margin: 0 auto;
  margin-bottom: 25px;
}

main .content article figure.align-left,
main .content article figure.align-center,
main .content article figure.align-right {
  margin-bottom: 25px;
}

main .content article figure img {
  display: block;
  width: 100%;
  height: auto;
}

main .content article figure.has-caption {

}

main .content article figure figcaption {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 90%;
  font-style: normal;
  line-height: 140%;
  color: #777;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

main .content article figure figcaption a {
  display: block;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  text-decoration: underline;
  margin-left: 5px;
}

main .content article figure figcaption a:hover {
  text-decoration: none;
}

main .content article a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}

main .content article a:hover {
  text-decoration: none;
}

/* main .content article p:has(> a[mark="asterisk"]) {
  display: block;
}

main .content article p:has(> a[mark="asterisk"]) > * {
  display: inline;
} */

main .content article a[mark="asterisk"] {
  position: static;
  display: inline;
}

main .content article a[mark="asterisk"] i {
  position: absolute;
  color: #333;
  font-size: 90%;
  transform: translateX(1px) translateY(-2px);
}

main .content article a[mark="asterisk"]:after {
  /* position: absolute;
  top: -3px;
  right: 5px;
  content: '*';
  color: #555;
  transform: translateX(100%); */
}

main .content article ol,
main .content article li {
  margin-left: 25px;
}

main .content article ol,
main .content article li {
  padding-top: 5px;
  padding-bottom: 5px;
}

main .content article > * {
  margin-bottom: 25px;
}

/* main .content article > *:last-child {
  margin-bottom: 0;
} */

main .content article h2,
main .content article h3,
main .content article h4,
main .content article h5,
main .content article h6 {
  display: block;
  margin-bottom: 15px;
}

main .content article h2 {
  font-size: 26px;
  line-height: 36px;
}

main .content article h3,
main .content article h4 {
  font-size: 22px;
  line-height: 32px;
}

main .content article h5,
main .content article h6 {
  font-size: 18px;
  line-height: 28px;
}

main .content .affiliate-notice {
  margin-top: 15px;
  font-size: 80%;
  line-height: 140%;
  color: #777;
  transition: color 250ms;
}

main .content .affiliate-notice:before {
  display: block;
  width: 25px;
  height: 1px;
  background-color: #ccc;
  content: '';
  margin-bottom: 10px;
}

main .content .meta {
  display: block;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  color: #777;
  fill: #777;
  padding-left: 25px;
  padding-right: 25px;
  margin-top: -10px;
  margin-bottom: 20px;
  /* border-bottom: 1px solid #e5e5e5; */
}

main .content .meta > div {
  display: flex;
  align-items: center;
  margin-left: 50px;
}

main .content .meta * {
  padding: 0;
  margin: 0;
}

main .content .meta a {
  color: inherit;
  text-decoration: none;
}

main .content .meta-row {
  white-space: nowrap;
  margin-right: 25px;
  width: 100%;
}

main .content .meta-row div {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 4px;
  margin-bottom: 4px;
}

main .content .meta-row svg {
  margin-right: 10px;
}

main .content .meta-row.image {
  min-width: 100px;
  max-width: 100px;
  width: 100px;
  padding-right: 30px;
}

main .content .meta-row.image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 60px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  border: 1px solid #fff;
}

main .content .related-content {

}

main .content .related-content .placeholder {
  fill: #999;
}

main .content .related-content .placeholder > div {
  display: block;
  text-align: center;
}

main .content .related-content .placeholder svg {
  display: inline-block;
}

main .content .related-content nav {

}

main .content .related-content nav h2,
main .content .related-content nav h3 {
  display: block;
  font-size: normal;
  line-height: 150%;
  font-weight: normal;
  margin-bottom: 15px;
}

main .content .related-content nav h3 {
  margin-bottom: 5px;
}

main .content .related-content nav p {
  line-height: 150%;
}

main .content .related-content nav svg {
  margin-top: -5px;
}

main .content .related-content nav * {
  padding: 0;
  margin: 0;
  list-style: none;
}

main .content .related-content nav li {
  padding-top: 5px;
  padding-bottom: 5px;
}

main .content .related-content nav li a {
  display: inline-block;
  font-weight: normal;
  text-decoration: none;
}

main .content .related-content nav li a:hover {
  text-decoration: underline;
}

/* main .content .related-content li {
  padding: 10px;
  background-color: #fff;
  margin-bottom: 10px;
} */

main .content .related-content li details p {
  margin-left: 23px;
}

main .content .related-content li details[open] h3 {
  font-size: inherit;
  margin-top: -7px;
  margin-bottom: 5px;
}

main .content .related-content nav li details[open] a {
  font-weight: bold;
}

main .content .sources {
  margin-bottom: 25px;
}

main .content .sources * {
  padding: 0;
  margin: 0;
}

main .content .sources summary,
main .content .sources summary > * {
  display: flex;
  align-items: center;
}

main .content .sources summary svg {
  fill: #777;
}

main .content .sources[open] {
  padding-top: 5px;
  background-color: inherit;
}

main .content .sources[open] summary {
  margin-bottom: 10px;
}

main .content .sources[open] summary svg {
  fill: #000;
  transform: none;
}

main .content .sources h2 {
  font-size: inherit;
  font-weight: normal;
  line-height: inherit;
  margin-top: -2px;
}

main .content .sources[open] h2 {
  font-weight: bold;
  margin-top: -5px;
}

main .content .sources ol,
main .content .sources ol li {
  list-style: none;
}

main .content .sources ol li {
  display: flex;
  align-items: center;
  padding-left: 30px;
  padding-top: 2px;
  padding-bottom: 2px;
}

main .content .sources ol li * {
  line-height: normal;
}

main .content .sources ol li a {
  display: block;
  text-decoration: none;
}

main .content .sources ol li h3 {
  font-size: inherit;
  font-weight: normal;
}

main .content .sources svg {
  margin-right: 3px;
}

main .content .feedback {
  padding-top: 25px;
  padding-bottom: 25px;
  border-radius: 10px;
  background-color: #f2f2f2;
}

main .content .feedback > h2 {
  font-size: inherit;
  font-weight: normal;
  line-height: inherit;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
  text-align: center;
}

main .content .feedback > div,
main .content .feedback > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

main .content .feedback > div svg {
  margin-right: 5px;
}

main .content .feedback > div .upvote svg {
  transform: rotateX(180deg);
}

main .content .feedback > div .upvote,
main .content .feedback > div .downvote {
  width: 90px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 5px;
  color: #555;
  fill: #555;
  border: 1px solid #e9e9e9;
  transition: all 100ms;
  background-color: #fff;
  user-select: none;
  cursor: pointer;
}

main .content .feedback > div .upvote {
  margin-right: 15px;
}

main .content .feedback > div .downvote {
  margin-left: 15px;
}

main .content .feedback > div .upvote:active,
main .content .feedback > div .downvote:active {
  opacity: .75;
}

main .content .feedback > div .upvote.active {
  color: #fff;
  fill: #fff;
  /* border-left: 1px solid #54b584;
  border-bottom: 1px solid #54b584; */
  background-color: #51c68b;
}

main .content .feedback > div .downvote.active {
  color: #fff;
  fill: #fff;
  /* border-left: 1px solid #bb0000;
  border-bottom: 1px solid #bb0000; */
  background-color: #cc0000;
}

main .content .feedback > div num {
  display: block;
}

main .content .faq {
  display: block;
  padding-left: 12px;
  margin-left: -10px;
  margin-right: -10px;
}

main .content .faq > h2 {
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

main .content .faq details summary h3 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

/**
 * Inline snippet
 */

main .content .inline-snippet {
  display: inline-block;
  font-size: 95%;
  font-weight: bold;
  padding-bottom: 0;
  border-bottom: 2px dotted #000;
  cursor: pointer;
}

main .content .inline-snippet aside {
  color: #000;
}

main .content .inline-snippet.wikipedia {
  cursor: help;
}

main .content .inline-snippet.product {
  color: #000;
  border-bottom: 2px dotted #000;
  cursor: pointer;
}

main .content .inline-snippet.active {
  border-bottom: 2px dotted #fff;
}

main .content .inline-snippet .snippet-wrapper {
  display: none;
  position: absolute;
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  margin-top: 40px;
  top: auto;
  left: 0;
  max-width: auto;
  background-color: #fff;
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  cursor: auto;
  z-index: 10;
}

main .content .inline-snippet.wikipedia .snippet-wrapper {
  left: 50px;
  right: 50px;
}

main .content .inline-snippet.product .snippet-wrapper {
  left: calc(50% - 150px);
}

main .content .inline-snippet.active .snippet-wrapper {
  display: inline-block;
}

main .content .inline-snippet.product .snippet-wrapper {
  width: 300px;
}

main .content .inline-snippet .snippet-wrapper figure {

}

main .content .inline-snippet .snippet-wrapper figure img {
  display: block;
  width: 100%;
  height: auto;
}

main .content .inline-snippet.product .snippet-wrapper figure {
  padding: 15px;
  padding-right: 0;
  padding-bottom: 0;
}

main .content .inline-snippet .snippet-body {
  padding: 15px;
  padding-bottom: 5px;
  overflow: hidden;
}

main .content .inline-snippet .snippet-body > * {
  margin-bottom: 15px;
}

main .content .inline-snippet .snippet-body hr {
  margin-top: 15px;
  margin-bottom: 15px;
}

main .content .inline-snippet .snippet-buttons {
  margin-top: 15px;
  margin-bottom: 15px;
}

main .content .inline-snippet .snippet-buttons > div {
  margin-bottom: 10px;
}

main .content .inline-snippet .snippet-buttons > div:last-of-type {
  margin-bottom: 0;
}

main .content .inline-snippet .snippet-button {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 17px;
  padding: 9px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 5px;
  color: #fff;
  fill: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
  background-color: #000;
  text-decoration: none;
  transition: opacity 100ms;
  white-space: nowrap;
  user-select: none;
  outline: none;
}

main .content .inline-snippet .snippet-button:hover {
  opacity: .8;
}

main .content .inline-snippet .snippet-button:active {
  opacity: .6;
}

main .content .inline-snippet .snippet-notice {
  font-size: 90%;
  line-height: normal;
  color: #555;
}

main .content .inline-snippet .snippet-notice a {
  text-decoration: underline;
}

main .content .inline-snippet .snippet-notice a:hover {
  text-decoration: none;
}

main .content .inline-snippet .snippet-button svg {
  margin-right: 5px;
}

main .content .inline-snippet .snippet-close {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin-top: -15px;
  margin-left: calc(50% - 15px);
  transition: fill 250ms;
  cursor: pointer;
  fill: #777;
  background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  z-index: 20;
}

main .content .inline-snippet .snippet-close:active {
  fill: #333;
}

main .content .inline-snippet .snippet-title {
  font-size: 22px;
  line-height: 32px;
  text-align: center;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

main .content .inline-snippet .snippet-title a {
  display: inline-block;
  text-decoration: none;
}

main .content .inline-snippet .snippet-title figure {
  display: inline-block;
  width: 100px;
  min-width: 100px;
  max-width: 100px;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
  text-align: center;
}

main .content .inline-snippet.product .snippet-title {
  text-align: center;
}

main .content .inline-snippet.product .snippet-title figure {
  display: inline-block;
  width: 100%;
  max-width: 200px;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}

main .content .inline-snippet .snippet-title figure img {
  display: block;
  width: 100%;
  height: auto;
}

main .content .inline-snippet .snippet-body ul,
main .content .inline-snippet .snippet-body ul li {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}

main .content .inline-snippet .snippet-body ul li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  margin-bottom: 10px;
  text-align: center;
  white-space: nowrap;
}

main .content .inline-snippet .snippet-body ul li a {
  display: block;
  font-weight: 500;
  padding: 2px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 50px;
  background-color: #eee;
  text-decoration: none;
  color: #777;
  transition: background 250ms;
}

main .content .inline-snippet .snippet-body ul li a:active {
  background-color: #ddd;
}

main .content .inline-snippet.active {

}

main .content .inline-snippet.active .snippet-wrapper {
  display: inline-block;
}

main .content details a {
  color: inherit;
  text-decoration: underline;
}

main .content details a:hover {
  text-decoration: none;
}

main .content details > div > * {
  margin-bottom: 10px;
}

main .content details > div:last-child {
  margin-bottom: 0;
}

main .content details > div ul,
main .content details > div ol {
  padding: 0;
  margin: 0;
  margin-left: 10px;
  margin-bottom: 10px;
}

main .content details > div ul,
main .content details > div ul li {
  list-style: disc;
}

main .content details > div ol,
main .content details > div ol li {
  list-style: decimal;
}

main .content details > div ul li,
main .content details > div ol li {
  margin-bottom: 5px;
}

main .content details summary {
  display: flex;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 2px;
  margin-bottom: 2px;
  user-select: none;
  cursor: pointer;
  list-style: none
}

main .content details summary > * {
  display: flex;
  align-items: center;
}

main .content details summary svg {
  display: block;
  fill: #000;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  margin-top: -8px;
  margin-right: 4px;
}

main .content details[open] summary svg {
  transform: rotate(90deg);
  margin-top: -8px;
  margin-right: 4px;
}

main .content details summary h2,
main .content details summary h3 {
  font-size: inherit;
  font-weight: normal;
  line-height: 135%;
  width: 100%;
  padding: 0;
  margin: 0;
  margin-top: -10px;
}

main .content details[open] {
  padding: 10px;
  padding-top: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  background-color: #f0f0f0;
}

main .content details[open] summary h3 {
  font-weight: bold;
}

main .content details[open] summary {
  /* font-weight: 600; */
}

main .content details[open] > div {
  margin-left: 27px;
}

main .content .author {
  display: block;
}

main .content .author > div {
  display: flex;
}

main .content .author .author-image {
  display: block;
  width: 80px;
  max-width: 80px;
  padding-top: 10px;
}

main .content .author .author-image img {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 80px;
}

main .content .author .author-body {
  font-size: 90%;
  line-height: 150%;
  padding-left: 25px;
}

main .content .author .author-body > * {
  padding: 0;
  margin: 0;
}

main .content .author .author-body h2 {
  font-size: 105%;
  font-weight: bold;
  line-height: 150%;
  margin-bottom: 0;
}

main .content .author .author-info {
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

main .content .author .author-stats {

}

main .content .author .latest-content {
  margin-top: 15px;
}

main .content .author .latest-content ul,
main .content .author .latest-content ul li {
  padding: 0;
  margin: 0;
  list-style: none;
}

main .content .author .latest-content ul li {
  display: block;
  align-items: center;
  margin-bottom: 5px;
}

main .content .author .latest-content ul li num {
  display: block;
  font-size: 90%;
  font-weight: normal;
  white-space: nowrap;
}

main .content .author .latest-content ul li a {
  display: block;
  font-weight: normal;
  text-decoration: none;
}

main .content .author .latest-content ul li a:hover {
  text-decoration: underline;
}

main .content .author .author-links {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

main .content .author .author-links a {
  margin-right: 10px;
  color: inherit;
  text-decoration: none;
}

main .content .author .author-links a svg {
  transition: fill 250ms;
  fill: #999;
}

main .content .author .author-links a:active svg {
  fill: #000;
}

main form group,
main form group fieldset {
  display: flex;
  align-items: center;
}

main form.comment {
  display: block;
}

main form.comment fieldset {
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  margin-bottom: 15px;
}

main form.comment fieldset label {
  display: block;
  padding: 5px;
}

main form.comment fieldset input,
main form.comment fieldset date,
main form.comment fieldset number,
main form.comment fieldset textarea {
  display: block;
  font-family: inherit;
  font-size: 16px;
  line-height: 18px;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.10);
}

main form.comment fieldset input:focus,
main form.comment fieldset date:focus,
main form.comment fieldset number:focus,
main form.comment fieldset textarea:focus {
  border: 1px solid #bbb;
}

main form.comment fieldset textarea {
  line-height: 24px;
  height: 200px;
}

main form.comment fieldset input.error,
main form.comment fieldset textarea.error {
  background-color: #fff;
  border: 2px solid #ca6134;
}

main form.comment fieldset.privacy-notice {
  font-size: 14px;
  line-height: 22px;
  padding: 10px;
  color: #555;
  background-color: #ddd;
  border-radius: 5px;
}

main form.comment fieldset .button {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  padding: 10px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 5px;
  color: #fff;
  transition: background-color 250ms;
  opacity: .25;
  background-color: #999;
  user-select: none;
}

main form.comment fieldset .button.enabled {
  cursor: pointer;
  opacity: 1;
}

main form.comment fieldset .button.enabled:active {
  background-color: #777;
}

main form.comment fieldset.submit-comment {
  display: flex;
  align-items: center;
  user-select: none;
}

main form.comment fieldset .cancel-reply-button {
  display: none;
  align-items: center;
  margin-left: 10px;
  transition: opacity 250ms;
  cursor: pointer;
}

main form.comment fieldset .cancel-reply-button:active {
  opacity: .5;
}

main form.comment fieldset .cancel-reply-button svg {
  margin-right: 3px;
}

main .comments {

}

main .comments,
main .comments li {
  list-style: none;
  padding: 0;
  margin: 0;
}

main .comments li {
  margin-bottom: 25px;
}

main .comments li:last-of-type {
  margin-bottom: 0;
}

main .comments .comment {
  position: relative;
  font-size: 14px;
  line-height: 22px;
  padding: 15px;
  border-radius: 10px;
  background-color: #f2f2f2;
}

main .comments .comment.highlight {
  background-color: #e0f5ce;
}

main .comments .comment-header {

}

main .comments .comment-header a {
  color: inherit;
  text-decoration: none;
}

main .comments .comment-header group {
  display: flex;
  margin-bottom: 10px;
}

main .comments .comment-name {
  font-weight: bold;
  font-size: 15px;
  line-height: 17px;
  color: #555;
}

main .comments .comment.highlight .comment-name {
  color: #7cc53f;
}

main .comments .comment-date {
  margin-left: auto;
}

main .comments .comment-date span {
  display: inline-block;
  position: absolute;
  font-size: 13px;
  padding: 2px;
  padding-left: 8px;
  padding-right: 8px;
  top: 0;
  right: 0;
  color: #fff;
  background-color: #777;
  border-top-right-radius: 10px;
}

main .comments .comment.highlight .comment-date span {
  background-color: #7cc53f;
}

main .comments .comment-title {
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  line-height: 26px;
  padding: 5px;
  padding-right: 10px;
  margin-left: -25px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #fff;
  color: #555;
}

main .comments .comment.highlight .comment-title {
  color: #7cc53f;
}

main .comments .comment-body {
  margin-top: 10px;
}

main .comments .comment-body a {
  text-decoration: underline;
  color: inherit;
}

main .comments .comment-body a:hover {
  text-decoration: none;
}

main .comments .comment-footer {
  margin-top: 10px;
  user-select: none;
}

main .comments .comment-footer group {
  display: flex;
}

main .comments .comment-vote,
main .comments .comment-reply {
  display: inline-flex;
  align-items: center;
  padding: 5px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: -10px;
  margin-bottom: -5px;
  /* color: #000;
  fill: #000;
  background-color: #fff; */
  border-bottom-left-radius: 10px;
}

main .comments .vote-number {
  margin-right: 5px;
}

main .comments .vote-number.positive {
  color: #51c68b;
}

main .comments .vote-number.negative {
  color: #000;
}

main .comments .vote-buttons {
  display: flex;
  align-items: center;
}

main .comments .vote-buttons > div {
  transition: fill 250ms;
  cursor: pointer;
}

main .comments .vote-buttons > div.upvote:active,
main .comments .vote-buttons > div.upvote.active {
  fill: #51c68b;
}

main .comments .vote-buttons > div.downvote:active,
main .comments .vote-buttons > div.downvote.active {
  fill: #000;
}

main .comments .vote-buttons > div.disabled,
main .comments .vote-buttons > div.disabled:active {
  fill: #000;
  opacity: .25;
  cursor: inherit;
}

main .comments .vote-buttons svg {
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: -5px;
}

main .comments .comment-reply {
  margin-left: auto;
  margin-right: -10px;
  margin-bottom: -5px;
}

main .comments .comment-reply a {
  display: flex;
  align-items: center;
  color: #999;
  fill: #999;
  transition: all 250ms;
  text-decoration: none;
  top: auto;
  bottom: 0;
  border-radius: 0;
  border-bottom-right-radius: 10px;
}

main .comments .comment.highlight .comment-reply a {
  color: #7cc53f;
  fill: #7cc53f;
}

main .comments .comment-reply svg {
  margin-right: 5px;
}

main .comments .comment-reply a:active {
  color: #555;
  fill: #555;
}

main .star-rating {

}

main .star-rating svg,
main .select-star-rating svg {
  display: inline-block;
  margin-right: 5px;
  fill: #aaa;
}

main .select-star-rating {
  display: flex;
  align-items: center;
}

main .select-star-rating .reset-rating {
  display: none;
  text-align: left;
  margin-left: 10px;
}

main .select-star-rating .reset-rating svg {
  fill: #999;
}

main .select-star-rating svg {
  transition: fill, opacity 250ms;
  fill: #aaa;
  cursor: pointer;
}

main .select-star-rating svg:active {
  opacity: .85;
}

main .star-rating svg.active,
main .select-star-rating svg.active {
  fill: #00d69c;
}

main footer {
  text-align: center;
  padding: 25px;
  margin: 0;
  margin-top: 25px;
  box-shadow: none;
  border: none;
  background-color: #f2f2f2;
}

main footer > * {
  display: inline-block;
  width: 100%;
  max-width: 1080px;
}

main footer .topics li a {
  background-color: #fff;
}