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: #111;
  fill: #111;
}

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: #111;
}

main .dropdown nav ul li a.facebook,
main .dropdown nav ul li a.facebook svg {
  fill: #111;
  margin-left: -2px;
}

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

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 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 nav.breadcrumb {
  display: block;
  margin-bottom: 15px;
}

main header nav.breadcrumb ol {
  display: block;
  list-style: none;
}

main header nav.breadcrumb ol li {
  display: inline-block;
  font-size: 75%;
  line-height: normal;
  opacity: .5;
}

main header nav.breadcrumb ol li:before {
  content: '/';
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
  opacity: .5;
}

main header nav.breadcrumb ol li:first-of-type:before {
  content: '';
  margin: 0;
}

main header nav.breadcrumb ol li a {
  color: inherit;
  text-decoration: none;
}

main header nav.breadcrumb ol li a:hover {
  text-decoration: underline;
}

main header h1.title {
  display: block;
  font-size: 200%;
  font-weight: 800;
  line-height: 135%;
  margin: 0;
  margin-top: 10px;
  width: 100%;
  color: #333;
}

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

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

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

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

main header h2.subtitle {
  display: block;
  font-size: 150%;
  font-weight: 300;
  line-height: 1.4;
  margin-top: 10px;
  color: #333;
}

main header h2.subtitle.listing {
  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: center;
  width: 50px;
  min-width: 50px;
  max-width: 50px;
}

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

main .container.no-sidebar > .content {
  /* padding-left: 0;
  padding-right: 0; */
  width: 100%;
  max-width: 1178px;
  margin: 0 auto; /* center like header inner container */
  padding-left: 0; /* inner content keeps no extra padding, outer container provides spacing */
  padding-right: 0;
  box-sizing: border-box;
}

/* Outer container provides the same side spacing as header so alignment persists
   across viewport sizes (keeps space on very small screens). */
main .container.no-sidebar {
  padding-left: 50px;
  padding-right: 50px;
  box-sizing: border-box;
}

main .container.no-sidebar > .content article {
  width: 100%;
  padding: 0;
  padding-top: 50px;
  margin: 0;
  max-width: 100%;
}

/* main .container.is-page > .content {
  width: 100%;
  max-width: 1280px;
  background-color: #eee;
}

main .container.is-page article {
  width: 100%;
  max-width: auto;
} */

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 #ccc;
}

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: #36b84e;
}

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

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,
main aside.left .share a svg {
  transition: fill 250ms;
  color: #111;
  fill: #111;
}

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

main aside.left .share a.facebook {
  margin-left: -3px;
}

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

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

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: #111;
  color: #111;
}

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: #111;
}

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: #111; /*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: #111;
  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;
}

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

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: #111;
}

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

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: #111;
  fill: #111;
}

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: 90%;
  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: #111;
  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: 0;
}

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;
  padding: 0;
  margin: 0;
  margin-bottom: 25px;
}

main .content article .featured.image {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 10px;
  background-color: #f2f2f2;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

main .content article .featured.image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  border-radius: inherit;
  cursor: inherit
}

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 #111;
}

/* 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: 0;
  margin-bottom: 15px;
  padding: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

main .content article .table-of-contents h2:before {
  display: none;
}

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: #111;
}

main .content article .table-of-contents ul {
  padding: 0;
  margin: 0;
  margin-left: 33px;
  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: 15px;
}

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

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

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

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: #111;
  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;
}

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;
  margin-bottom: 15px;
}

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 #111;
}

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

main .content .listing .cards article .listing-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 .listing-button svg {
  display: block;
  margin-left: 0;
  margin-bottom: -2px;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
}

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 .listing-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: #999;
  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: 140%;
  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;
  padding: 0;
  margin: 0;
  background-color: #f2f2f2;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 16 / 9;
}

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

main .content.homepage .item figure > div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

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;
}

/**
 * Features
 */
main .features {
  display: grid;
  gap: 4rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

main .feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

main .feature--reverse {
  direction: rtl;
}

main .feature--reverse > * {
  direction: ltr;
}

main .feature-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  border-radius: 14px;
  overflow: hidden;
  background-color: #f5f5f5;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
}

main .feature-media img,
main .feature-media video,
main .feature-media picture,
main .feature-media picture img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

main .feature-body {
  display: grid;
  gap: 1rem;
}

main .feature-kicker {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #666;
}

main .feature-body h2 {
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  line-height: 1.08;
  margin: 0;
  color: #111;
}

main .feature-body p {
  margin: 0;
  max-width: 54rem;
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
}

main .feature-body .button {
  justify-self: start;
}

main .feature-body .button.primary,
main .feature-body .button.secondary,
main .feature-body .button.outline,
main .feature-body .button.ghost,
main .feature-body .button.inverse {
  margin-top: 0.5rem;
}

@media (max-width: 980px) {
  main .feature {
    grid-template-columns: 1fr;
  }

  main .feature--reverse {
    direction: ltr;
  }
}

/**
 * About me
 */
main .about-me {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem;
  margin: 2rem 0;
  background-color: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}

main .about-me.vertical-top {
  align-items: start;
}

main .about-me-body {
  display: grid;
  gap: 1rem;
}

main .about-me h2 {
  margin: 0;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  line-height: 1.05;
  color: #111;
}

main .about-me p {
  margin: 0;
  color: #555;
  line-height: 1.8;
}

main .about-me-meta {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.75rem;
}

main .about-me-meta.meta-categories {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}

main .about-me-meta.meta-categories .meta-group {
  display: grid;
  gap: 0.75rem;
}

main .about-me-meta.meta-categories .meta-group strong {
  color: #111;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

main .about-me-meta.meta-categories .meta-group > strong {
  border-bottom: 2px solid #111;
  padding-bottom: 2px;
}

main .about-me-meta.meta-categories .meta-group .meta-item {
  display: grid;
  grid-template-columns: 0.75fr;
  gap: 0.25rem;
  color: #555;
  font-size: 0.95rem;
}

main .about-me-meta.meta-categories .meta-group .meta-item strong {
  display: block;
  min-width: auto;
  font-weight: 700;
}

main .about-me-meta.meta-categories .meta-group .meta-item > * {
  margin: 0;
}

main .about-me-meta .meta-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: #555;
  font-size: 0.95rem;
}

main .about-me-meta .meta-item strong {
  display: inline-flex;
  min-width: 90px;
  color: #111;
  font-weight: 700;
}

main .about-me-photo {
  display: block;
  height: 100%;
  width: 100%;
  max-height: 240px;
  max-width: 240px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #f2f2f2;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

main .about-me-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

main .about-me-photo.round,
main .about-me-photo.round img {
  border-radius: 50%;
}

@media (max-width: 900px) {
  main .about-me {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  main .about-me-photo {
    min-height: 260px;
    margin: 0 auto;
  }

  main .about-me-meta.meta-categories {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  main .about-me {
    margin: 2rem 0;
    border-radius: 14px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
  }

  main .about-me .meta-item {
    flex-direction: column;
    gap: 0.35rem;
  }

  main .about-me .meta-item strong {
    min-width: auto;
  }
}

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

main .content article b,
main .content article strong {
  font-weight: 600;
  font-size: 97%;
}

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

main .content article:last-of-type {
  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;
  position: relative;
  color: #333;
/*   margin-top: 10px;
  margin-bottom: 40px; */
}

main .content article h2 {
  
}

main .content article h3,
main .content article h4 {
  
}

/* main .content article h2:before,
main .content article h3:before,
main .content article h4:before,
main .content article h5:before,
main .content article h6:before {
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 4px;
  background-color: #111;
  content: '';
} */

main .content article h2 {
  font-size: 28px;
  line-height: 38px;
}

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

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

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;
  margin-left: 35px;
  margin-right: 0;
}

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

main .content article pre,
main .content article pre code {
  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: 150%;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  /* text-indent: 20px; */
  margin: 35px;
  color: inherit; /* bb0000 */
}

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

main .content article figure {
  display: block;
  padding-top: 10px;
  padding-bottom: 5px;
}

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;
  fill: #fff;
  color: #fff;
  cursor: zoom-in;
}

main .content article figure.has-caption {

}

main .content article figure figcaption {
  display: block;
  text-align: center;
  font-size: 75%;
  font-style: normal;
  line-height: 140%;
  color: #999;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

main .content article figure figcaption * {
  display: inline;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

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

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

/**
 * Image grid
 */
main .content article .images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin: 0;
  padding: 0;
}

main .content article .images.columns-2 {
  grid-template-columns: repeat(2, minmax(240px, 1fr));
}

main .content article .images.columns-3 {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
}

main .content article .images.columns-4 {
  grid-template-columns: repeat(4, minmax(240px, 1fr));
}

main .content article .images.columns-5 {
  grid-template-columns: repeat(5, minmax(220px, 1fr));
}

main .content article .images figure {
  display: block;
  width: 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 5px;
  background-color: #fff;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

main .content article .images figure:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.12);
}

main .content article .images figure a {
  display: block;
  width: 100%;
  height: 100%;
}

main .content article .images figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

main .content article .images figure figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 1rem;
  margin: 0;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.64) 100%); */
  background:rgba(0, 0, 0, .5);
  color: #fff;
  font-size: 0.95rem;
  font-weight: normal;
  line-height: 1.4;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

main .content article .images figure figcaption strong,
main .content article .images figure figcaption b {
  font-weight: 600;
}

main .content article a {
  color: #111;
  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 .affiliate-notice {
  margin-top: 15px;
  font-size: 90%;
  line-height: 140%;
  color: #999;
  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: #999;
  fill: #999;
  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;
}

/**
 * Related content
 */
main nav.related-content {
  margin-top: 50px;
  padding: 25px;
  background-color: #f0f0f0;
  border-radius: 10px;
}

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

main nav.related-content h2 {
  font-size: 20px !important;
  font-weight: bold !important;
  line-height: 26px !important;
  padding-bottom: 15px !important;
  margin-bottom: 15px !important;
  border-bottom: 1px solid #111 !important;
}

main nav.related-content details[open] {
  background-color: #fff !important;
}

main nav.related-content details summary {
  display: flex;
  align-items: flex-start;
}

main nav.related-content details summary h3 {

}

main nav.related-content details summary h3 i {
  align-self: flex-start;
  padding-right: 10px;
  font-style: normal;
}

main nav.related-content details summary h3 a {
  font-weight: normal;
  color: inherit;
  text-decoration: none;
}

/**
 * Sources
 */

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: #999;
}

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: #111;
  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: #36b84e;
}

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

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,
main .content .faq > h3 {
  display: block;
  position: relative;
  color: inherit;
}

main .content .faq > h2.faq-title {
  font-size: 125%;
  line-height: 1.5;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}

main .content .faq > h3.faq-subtitle {
  font-size: 110%;
  font-weight: normal;
  line-height: 1.5;
  margin-top: -10px;
  margin-bottom: 25px;
  color: #555;
}

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

main .content .faq details summary svg {
  margin-top: -8px;
}

main .content .faq details[open] summary svg {
  margin-top: -10px;
}

/**
 * Inline snippet
 */

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

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

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

main .content .inline-snippet.product {
  color: #111;
  border-bottom: 2px dotted #111;
  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: #111;
  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: #999;
  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: #999;
  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 {
  position: relative;
}

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

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

main .content details > div {
  padding: 0;
  margin: 0;
  font-size: 90%;
  line-height: 150%;
}

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

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: 25px;
  margin-bottom: 15px;
}

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:active:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  background-color: rgba(255, 255, 255, 0.1);
}

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

main .content details summary svg {
  display: block;
  fill: #111;
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 0;
  margin-right: 4px;
}

main .content details[open] summary svg {
  transform: rotate(90deg);
  margin-top: 0;
  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 summary a {
  display: block;
  font-weight: normal;
}

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

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

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

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: #111;
}

/**
 * Button styles
 */
main .content article a.button,
main .content a.button,
main a.button,
main .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.95rem 1.5rem;
  min-height: 42px;
  border-radius: 6px;
  border: 1px solid transparent;
  color: #fff;
  fill: currentColor;
  background-color: #111;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  transition: background-color 150ms ease, box-shadow 150ms ease, color 150ms ease;
  outline: none;
}

main .content article a.button:hover,
main .content a.button:hover,
main a.button:hover,
main .button:hover {
  background-color: #222;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

main .content article a.button:active,
main .content a.button:active,
main a.button:active,
main .button:active {
  background-color: #111;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.10);
  opacity: 0.95;
}

main .content article a.button svg,
main .content article a.button i,
main .content a.button svg,
main .content a.button i,
main a.button svg,
main a.button i,
main .button svg,
main .button i {
  display: inline-flex;
  width: auto;
  height: auto;
  font-size: inherit;
  color: inherit;
}

main .content article a.button > svg:first-child,
main .content article a.button > i:first-child,
main .content a.button > svg:first-child,
main .content a.button > i:first-child,
main a.button > svg:first-child,
main a.button > i:first-child,
main .button > svg:first-child,
main .button > i:first-child {
  margin-right: 0.5rem;
}

main .content article a.button > svg:last-child,
main .content article a.button > i:last-child,
main .content a.button > svg:last-child,
main .content a.button > i:last-child,
main a.button > svg:last-child,
main a.button > i:last-child,
main .button > svg:last-child,
main .button > i:last-child {
  margin-left: 0.5rem;
}

main .content article a.button.primary,
main .content a.button.primary,
main a.button.primary,
main .button.primary {
  background-color: #111;
  color: #fff;
  border-color: transparent;
}

main .content article a.button.secondary,
main .content a.button.secondary,
main a.button.secondary,
main .button.secondary {
  background-color: #fff;
  color: #111;
  border-color: #e5e5e5;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

main .content article a.button.secondary:hover,
main .content a.button.secondary:hover,
main a.button.secondary:hover,
main .button.secondary:hover {
  background-color: #f7f7f8;
  border-color: #d6d6d6;
}

main .content article a.button.ghost,
main .content a.button.ghost,
main a.button.ghost,
main .button.ghost {
  background-color: transparent;
  color: #111;
  border-color: #ccc;
  box-shadow: none;
}

main .content article a.button.ghost:hover,
main .content a.button.ghost:hover,
main a.button.ghost:hover,
main .button.ghost:hover {
  background-color: rgba(17, 17, 17, 0.04);
  border-color: #bbb;
}

main .content article a.button.outline,
main .content a.button.outline,
main a.button.outline,
main .button.outline {
  background-color: transparent;
  color: #111;
  border-color: #111;
  box-shadow: none;
}

main .content article a.button.outline:hover,
main .content a.button.outline:hover,
main a.button.outline:hover,
main .button.outline:hover {
  background-color: #111;
  color: #fff;
}

main .content article a.button.success,
main .content a.button.success,
main a.button.success,
main .button.success {
  background-color: #36b84e;
  border-color: transparent;
}

main .content article a.button.success:hover,
main .content a.button.success:hover,
main a.button.success:hover,
main .button.success:hover {
  background-color: #2f9a44;
}

main .content article a.button.danger,
main .content a.button.danger,
main a.button.danger,
main .button.danger {
  background-color: #bb0000;
  border-color: transparent;
}

main .content article a.button.danger:hover,
main .content a.button.danger:hover,
main a.button.danger:hover,
main .button.danger:hover {
  background-color: #a00000;
}

main .content article a.button.warning,
main .content a.button.warning,
main a.button.warning,
main .button.warning {
  background-color: #e3a000;
  border-color: transparent;
}

main .content article a.button.warning:hover,
main .content a.button.warning:hover,
main a.button.warning:hover,
main .button.warning:hover {
  background-color: #c78f00;
}

main .content article a.button.info,
main .content a.button.info,
main a.button.info,
main .button.info {
  background-color: #0a95ff;
  border-color: transparent;
}

main .content article a.button.info:hover,
main .content a.button.info:hover,
main a.button.info:hover,
main .button.info:hover {
  background-color: #0878dd;
}

main .content article a.button.inverse,
main .content a.button.inverse,
main a.button.inverse,
main .button.inverse {
  background-color: #fff;
  color: #111;
  border-color: #e5e5e5;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

main .content article a.button.inverse:hover,
main .content a.button.inverse:hover,
main a.button.inverse:hover,
main .button.inverse:hover {
  background-color: #f7f7f8;
}

main .content article a.button.small,
main .content a.button.small,
main a.button.small,
main .button.small {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  min-height: 36px;
}

main .content article a.button.large,
main .content a.button.large,
main a.button.large,
main .button.large {
  padding: 1rem 1.8rem;
  font-size: 1.05rem;
  min-height: 50px;
}

main .content article a.button.xlarge,
main .content a.button.xlarge,
main a.button.xlarge,
main .button.xlarge {
  padding: 1.2rem 2rem;
  font-size: 1.10rem;
  min-height: 56px;
}

main .content article a.button.fullwidth,
main .content a.button.fullwidth,
main a.button.fullwidth,
main .button.fullwidth {
  width: 100%;
}

main .content article a.button:disabled,
main .content a.button:disabled,
main a.button:disabled,
main .button:disabled,
main .content article a.button.disabled,
main .content a.button.disabled,
main a.button.disabled,
main .button.disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/**
 * Comments
 */
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 {
  margin-bottom: 10px;
}

main form.comment fieldset.privacy-notice label {
  font-size: 14px;
  line-height: 22px;
  color: #555;
  text-align: left;
}

main form.comment fieldset.privacy-notice input[type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 2px;
}

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: #111;
  user-select: none;
}

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

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

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 .content article .comments,
main .comments {
  padding-left: 0;
}

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;
}

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;
}

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;
}

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: #111;
  fill: #111;
  background-color: #fff; */
  border-bottom-left-radius: 10px;
}

main .comments .vote-number {
  
}

main .comments .vote-number.positive {
  color: #36b84e;
}

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

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: #36b84e;
}

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

main .comments .vote-buttons > div.disabled,
main .comments .vote-buttons > div.disabled:active {
  fill: #111;
  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;
}

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

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