.area-form {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  height: auto;
  background-color: var(--bg-p);
  color: var(--text-p);
  scrollbar-width: thin;
  scrollbar-color: var(--w-sb-thumb) var(--w-sb-track);
}

.area-form a {
  color: var(--link-p);
  text-decoration: none;
  padding: 0.1em 0.2em;
  border-radius: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, text-decoration-color 0.15s ease-in-out, outline-offset 0.1s ease-in-out, transform 0.1s ease-out;
}

.area-form a:active {
  color: var(--base-color-5);
  transform: translateY(1px);
  text-decoration: underline;
  text-decoration-color: var(--base-color-5);
}

.area-form a:focus-visible {
  outline: 2px solid var(--base-color-4);
  outline-offset: 2px;
  color: var(--base-color-4);
  text-decoration: none;
}

.area-form a:hover {
  color: var(--base-color-4);
  text-decoration: underline;
  text-decoration-color: var(--base-color-4);
}

.area-form::-webkit-scrollbar {
  width: 6px;
}

.area-form::-webkit-scrollbar-button {
  display: none;
  height: 0;
  width: 0;
}

.area-form::-webkit-scrollbar-thumb {
  background: var(--w-sb-thumb);
  border-radius: 3px;
}

.area-form::-webkit-scrollbar-thumb:hover {
  background: var(--w-sb-thumb-hover);
}

.area-form::-webkit-scrollbar-track {
  background: var(--w-sb-track);
  border-radius: 3px;
  margin-block-start: 5px;
  margin-block-end: 5px;
}

.article-content-scrollable {
  max-height: calc(100vh - 300px);
  overflow-y: auto;
  padding: 1rem 1.5rem 1rem 1rem;
  margin-block-end: 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--w-sb-thumb) var(--w-sb-track);
}

.article-content-scrollable::-webkit-scrollbar {
  width: 8px;
}

.article-content-scrollable::-webkit-scrollbar-thumb {
  background: var(--w-sb-thumb);
  border-radius: 4px;
}

.article-content-scrollable::-webkit-scrollbar-thumb:hover {
  background: var(--w-sb-thumb-hover);
}

.article-content-scrollable::-webkit-scrollbar-track {
  background: var(--w-sb-track);
  border-radius: 4px;
}

.form-control a {
  color: var(--link-p);
  text-decoration: none;
  padding: 0.1em 0.2em;
  border-radius: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, text-decoration-color 0.15s ease-in-out, outline-offset 0.1s ease-in-out, transform 0.1s ease-out;
}

.form-control a:active {
  color: var(--base-color-5);
  transform: translateY(1px);
  text-decoration: underline;
  text-decoration-color: var(--base-color-5);
}

.form-control a:focus-visible {
  outline: 2px solid var(--base-color-4);
  outline-offset: 2px;
  color: var(--base-color-4);
  text-decoration: none;
}

.form-control a:hover {
  color: var(--base-color-4);
  text-decoration: underline;
  text-decoration-color: var(--base-color-4);
}

.breadcrumb {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-wrap: nowrap;
  list-style: none;
  margin-block-end: 8px;
  margin-block-start: 12px;
  margin-inline-start: -12px;
  padding-block-start: 5px;
  padding-block-end: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-inline-start: 10px;
  padding-inline-end: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.breadcrumb::-webkit-scrollbar {
  display: none;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.breadcrumb-item a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-q);
  font-size: 15px;
  font-weight: 400;
  vertical-align: middle;
  transition: color 0.2s ease-in-out, transform 0.1s ease-out;
}

.breadcrumb-item a:active {
  transform: scale(0.98) translateY(1px);
}

.breadcrumb-item img {
  width: 22px;
  height: 22px;
  margin-inline-end: 0.25rem;
  flex-shrink: 0;
  vertical-align: middle;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--base-color-10);
  padding-inline-start: 0.3rem;
  padding-inline-end: 0.3rem;
  vertical-align: middle;
  font-size: 1.1em;
  line-height: 1;
  flex-shrink: 0;
  display: inline-block;
  transition: color 0.2s ease-in-out, text-shadow 0.2s ease-in-out;
}

[dir="rtl"] .breadcrumb-item + .breadcrumb-item::before {
  content: "‹";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  color: var(--breadcrumb-separator-hover-color);
  text-shadow: 0 0 6px var(--breadcrumb-separator-hover-color), 0 0 8px var(--breadcrumb-separator-hover-color);
}

.breadcrumb-item:first-child, .breadcrumb-item:nth-child(2) {
  margin-inline-end: -7px;
}

.breadcrumb-item:first-child a {
  color: var(--text-p);
}

.breadcrumb-item:first-child::before {
  content: "•";
  color: var(--text-p);
  margin-inline-end: 4px;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.1em;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s ease-in-out, text-shadow 0.2s ease-in-out;
}

.breadcrumb-item:first-child:hover a {
  color: var(--base-color-3);
}

.breadcrumb-item:first-child:hover::before {
  color: var(--base-color-3);
  text-shadow: 0 0 6px var(--base-color-3), 0 0 10px var(--base-color-3);
}

.breadcrumb-item:not(:first-child):hover a {
  color: var(--breadcrumb-hover-color);
}

.breadcrumb-label {
  vertical-align: middle;
}

#desktop-sidebar-list {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  overflow-y: auto;
  max-height: none;
  padding-inline-end: 5px;
  border-block-start: 1px solid var(--border-q);
  scrollbar-width: thin;
  scrollbar-color: var(--w-sb-thumb) var(--w-sb-track);
}

#desktop-sidebar-list strong {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 600;
  color: inherit;
  transition: color 0.2s ease-in-out;
}

#desktop-sidebar-list ul {
  list-style: none;
  padding-inline-start: 0;
  margin-block-end: 0;
}

#desktop-sidebar-list ul li a {
  display: block;
  text-decoration: none;
  color: var(--text-p);
  border-block-end: 1px solid var(--border-q);
  padding: 0.75rem 0 0.75rem 20px;
  padding-inline-start: 20px;
  padding-inline-end: 0;
  position: relative;
  transition: border-color 0.2s ease-in-out, background-color 0.15s ease-in-out, color 0.2s ease-in-out, transform 0.1s ease-out;
}

#desktop-sidebar-list ul li a > .d-flex {
  align-items: center;
}

#desktop-sidebar-list ul li a > .d-flex > div:first-child {
  margin-inline-end: -4px;
}

#desktop-sidebar-list ul li a > .d-flex > div:first-child img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-inline-end: 0.5rem;
}

#desktop-sidebar-list ul li a > .d-flex > div:nth-child(2) {
  overflow: hidden;
  flex-grow: 1;
}

#desktop-sidebar-list ul li a > .d-flex > div:nth-child(2) > div:first-child {
  margin-block-end: -0.3rem;
}

#desktop-sidebar-list ul li a > .d-flex > div:nth-child(2) > div:last-child img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  vertical-align: middle;
  margin-inline-end: 0.5rem;
}

#desktop-sidebar-list ul li a > .d-flex > div:nth-child(2) > div:last-child span {
  font-size: 12px;
  color: inherit;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease-in-out;
  vertical-align: middle;
}

#desktop-sidebar-list ul li a > .d-flex > div:nth-child(2) > div:last-child span:last-of-type {
  margin-block-end: -4px;
}

#desktop-sidebar-list ul li a::before {
  content: '';
  position: absolute;
  inset-inline-start: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--text-q);
  border-radius: 50%;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-out;
}

#desktop-sidebar-list ul li a:active {
  transform: scale(0.99) translateY(1px);
}

#desktop-sidebar-list ul li a:hover, #desktop-sidebar-list ul li a:focus {
  border-block-end-color: var(--bullet-hover-color, var(--base-color-4));
  color: var(--bullet-hover-color, var(--base-color-4));
  outline: 1px dashed var(--bullet-hover-color, var(--base-color-4));
}

#desktop-sidebar-list ul li a:hover::before, #desktop-sidebar-list ul li a:focus::before {
  background-color: var(--bullet-hover-color, var(--base-color-4));
  box-shadow: 0 0 6px var(--bullet-hover-color, var(--base-color-4)), 0 0 10px var(--bullet-hover-color, var(--base-color-4));
}

#desktop-sidebar-list::-webkit-scrollbar {
  width: 6px;
}

#desktop-sidebar-list::-webkit-scrollbar-thumb {
  background: var(--w-sb-thumb);
  border-radius: 3px;
}

#desktop-sidebar-list::-webkit-scrollbar-thumb:hover {
  background: var(--w-sb-thumb-hover);
}

#desktop-sidebar-list::-webkit-scrollbar-track {
  background: var(--w-sb-track);
}

.page-container {
  border-radius: 10px 10px 0 0;
  border: 3px solid var(--page-border-color, var(--base-color-7));
  border-block-end: none;
}

.page-title {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  margin-block-end: 1rem;
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: balance;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

.page-title img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  vertical-align: middle;
  margin-inline-end: 0.25rem;
}

.link-header {
  position: relative;
}

.link-header:after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 100%;
  width: 100%;
  height: 3px;
  border-radius: 1px;
  display: none;
  margin-block-start: 8px;
}

.homepage-card-link {
  margin: 1rem 0;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.homepage-card-link > a:first-of-type {
  display: block;
  text-decoration: none;
  border: 6px solid var(--base-color-15);
  border-radius: 10px;
  background-color: var(--base-color-15);
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease-in-out;
}

.homepage-card-link > a:first-of-type > img:last-of-type {
  width: 100%;
  display: block;
  margin-block-start: 0;
}

.homepage-card-link > a:first-of-type p {
  background: var(--base-color-15);
  padding: 8px 10px;
  color: var(--base-color-6);
  font-size: clamp(0.625rem, 0.2rem + 2vw, 1.375rem);
  font-weight: bold;
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  height: auto;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  border-block-end: 3px solid var(--base-color-15);
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  line-height: 1.15;
}

.homepage-card-link > a:first-of-type p img {
  width: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  height: clamp(1rem, 0.8rem + 0.5vw, 1.5rem);
  display: inline-block;
  margin: 0 clamp(0.25rem, 0.1rem + 0.5vw, 0.3125rem) 0 0;
  margin-inline-end: clamp(0.25rem, 0.1rem + 0.5vw, 0.3125rem);
  margin-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  flex-shrink: 0;
}

.homepage-card-link > a:first-of-type p span {
  vertical-align: middle;
}

.homepage-card-link > a:last-of-type {
  color: var(--base-color-26);
  font-size: clamp(0.75rem, 0.5rem + 1vw, 1rem);
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  background-color: var(--base-color-16);
  width: auto;
  display: inline-block;
  padding: 12px 15px;
  text-align: center;
  margin: 1rem auto 0 auto;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
  white-space: nowrap;
}

.homepage-card-link > a:last-of-type p {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  color: var(--base-color-26);
}

.homepage-card-link:active > a:first-of-type {
  transform: translateY(1px);
  box-shadow: 0 2px 5px var(--s-bx-shadow-13);
  border-color: var(--base-color-15);
}

.homepage-card-link:active > a:last-of-type {
  transform: translateY(1px);
  background-color: var(--base-color-12);
}

.homepage-card-link:hover {
  transform: translateY(-3px);
}

.homepage-card-link:hover > a:first-of-type {
  box-shadow: 0 4px 15px var(--s-bx-shadow-9);
  border-color: var(--base-color-15);
}

.homepage-card-link:hover > a:last-of-type {
  background-color: var(--base-color-17);
}

.item-visual-box {
  display: block;
  text-decoration: none;
  position: relative;
  transition: transform 0.2s ease-in-out;
}

.item-visual-box > div {
  color: var(--text-p);
  border-radius: 0.8rem;
  padding: clamp(0.6rem, 2vw, 1rem);
  padding-block-start: clamp(0.5rem, 1.5vw, 0.75rem);
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-block-start: -5px;
  border: 2px solid var(--page-border-color, var(--base-color-7));
  border-block-start: 2px solid var(--page-border-color, var(--base-color-7));
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.3s ease, color 0.3s ease, transform 0.2s ease-in-out;
  overflow: hidden;
}

.item-visual-box > div > span:first-of-type {
  position: absolute;
  top: clamp(0.4rem, 1.5vw, 0.75rem);
  inset-inline-end: clamp(0.6rem, 2vw, 1rem);
  color: var(--text-p);
  font-size: clamp(14px, 3vw, 18px);
  font-weight: bold;
  line-height: 1;
  padding: 0.1em 0.2em;
  z-index: 3;
  transition: color 0.3s ease;
}

.item-visual-box > div > ul > li {
  margin-block-start: 0;
  margin-block-end: 0.3rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.item-visual-box > div > ul > li > img {
  width: clamp(14px, 3vw, 18px);
  height: clamp(14px, 3vw, 18px);
  border-radius: 50%;
  object-fit: cover;
  margin-inline-end: 0.25rem;
  flex-shrink: 0;
}

.item-visual-box > div > ul > li > span {
  color: var(--text-p);
  font-size: clamp(11px, 2.2vw, 13px);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.item-visual-box > div > ul > li:last-child {
  margin-block-end: 0;
}

.item-visual-box h3, .item-visual-box h4 {
  font-size: clamp(12px, 2.5vw, 14px);
  font-weight: bold;
  color: var(--text-p);
  margin-block-start: 0;
  margin-block-end: 0.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  z-index: 1;
  position: relative;
  height: auto;
  min-height: 32px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  line-height: 1.3;
}

.item-visual-box h3 img, .item-visual-box h4 img {
  width: 22px;
  height: 22px;
  margin-inline-end: 0.25rem;
  flex-shrink: 0;
}

.item-visual-box h3::before, .item-visual-box h4::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-inline-end: 8px;
  flex-shrink: 0;
  background-color: var(--page-border-color, var(--text-q));
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.item-visual-box:active > div {
  transform: translateY(1px);
  box-shadow: 0 0 5px 1px var(--bx-shadow-6);
}

.item-visual-box:focus {
  outline: 2px dashed var(--page-border-color, var(--base-color-4));
}

.item-visual-box:focus > div {
  border-color: var(--page-border-color, var(--border-s));
  box-shadow: 0 0 15px 3px var(--page-border-color, var(--border-s));
  transform: translateY(-2px);
}

.item-visual-box:focus h3, .item-visual-box:focus h4 {
  color: var(--text-p);
  text-shadow: 0 0 5px var(--bx-shadow-4), 0 0 10px var(--bx-shadow-5);
}

.item-visual-box:focus h3::before, .item-visual-box:focus h4::before {
  background-color: var(--page-border-color, var(--border-t));
  box-shadow: 0 0 8px 2px var(--page-border-color, var(--border-t));
}

.item-visual-box:hover > div {
  border-color: var(--page-border-color, var(--border-s));
  box-shadow: 0 0 15px 3px var(--page-border-color, var(--border-s));
  transform: translateY(-2px);
}

.item-visual-box:hover h3, .item-visual-box:hover h4 {
  color: var(--text-p);
  text-shadow: 0 0 5px var(--bx-shadow-4), 0 0 10px var(--bx-shadow-5);
}

.item-visual-box:hover h3::before, .item-visual-box:hover h4::before {
  background-color: var(--page-border-color, var(--border-t));
  box-shadow: 0 0 8px 2px var(--page-border-color, var(--border-t));
}

.page404 {
  border-radius: 10px;
  text-align: center;
  padding: 0 .5rem 2.5rem!important;
}

.page404 .btn-back {
  display: inline-block;
  background: var(--base-color-15);
  border-radius: 10px;
  padding: 14px 20px;
  color: var(--base-color-1);
  text-decoration: none;
  font-weight: bold;
  border: 2px solid transparent;
  -webkit-box-shadow: 0 5px 9px var(--s-bx-shadow-10);
  box-shadow: 0 5px 9px var(--s-bx-shadow-10);
  transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out, box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out;
  cursor: pointer;
  outline: none;
}

.page404 .btn-back #back-to-home-link {
  vertical-align: middle;
}

.page404 .btn-back svg.bi-arrow-right-short {
  color: var(--base-color-1);
  vertical-align: middle;
  font-size: 1.5rem;
}

[dir="rtl"] .page404 .btn-back svg.bi-arrow-right-short {
  transform: scaleX(-1);
}

.page404 .btn-back:active {
  background-color: var(--base-color-19);
  transform: translateY(2px);
  -webkit-box-shadow: 0 2px 5px var(--s-bx-shadow-12);
  box-shadow: 0 2px 5px var(--s-bx-shadow-12);
}

.page404 .btn-back:focus-visible {
  border-color: var(--base-color-20);
  -webkit-box-shadow: 0 0 0 3px var(--s-bx-shadow-9);
  box-shadow: 0 0 0 3px var(--s-bx-shadow-9);
}

.page404 .btn-back:hover {
  background-color: var(--base-color-18);
  -webkit-box-shadow: 0 7px 12px var(--s-bx-shadow-11);
  box-shadow: 0 7px 12px var(--s-bx-shadow-11);
  color: var(--base-color-1);
}

.page404 .btnBox {
  display: block;
  text-align: center;
}

.page404 h1 {
  font-size: 10.5rem;
  color: var(--base-color-15);
  font-weight: 700;
}

.page404 img {
  max-width: 100%;
  margin: 3.5rem 0 0;
}

.page404 p {
  font-size: 3rem;
}

#related-website-wrapper {
  counter-reset: relatedWebsiteNumber;
  margin-block-start: 16px;
}

#related-website-wrapper .card {
  counter-increment: relatedWebsiteNumber;
  border: none;
  overflow: hidden;
  border-radius: 5px;
  background-color: var(--bg-p);
  color: var(--base-color-2);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease-in-out;
  position: relative;
}

#related-website-wrapper .card > .card-body {
  color: var(--text-q);
  flex-grow: 1;
  padding: 8px 4px;
  border-end-start-radius: 5px;
  border-end-end-radius: 5px;
}

#related-website-wrapper .card > .card-body > p {
  margin-block-end: 0;
  font-size: 12px;
  line-height: 1.3em;
  letter-spacing: -0.1px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3.9em;
  transition: color 0.2s ease-in-out;
  color: var(--text-q);
}

#related-website-wrapper .card > div:first-of-type {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

#related-website-wrapper .card > div:first-of-type > a {
  display: block;
  position: static;
}

#related-website-wrapper .card > div:first-of-type > a + div {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  background-color: var(--s-bx-shadow-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
  z-index: 3;
  padding: 1rem;
  border-radius: 5px;
}

#related-website-wrapper .card > div:first-of-type > a + div .btn {
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 130px;
  max-width: 95%;
  text-align: center;
  line-height: 1.3;
  border: none;
  transition: box-shadow 0.3s ease-in-out, transform 0.2s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  box-shadow: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#related-website-wrapper .card > div:first-of-type > a + div .btn i {
  margin-inline-start: 0.5rem;
  font-size: 1em;
  flex-shrink: 0;
}

#related-website-wrapper .card > div:first-of-type > a + div .btn-success {
  color: var(--base-color-1) !important;
  background-color: var(--base-color-14);
  border-color: var(--base-color-14);
}

#related-website-wrapper .card > div:first-of-type > a + div .btn-success svg.bi-play {
  margin-inline-start: 4px;
  font-size: 18px;
  vertical-align: middle;
}

#related-website-wrapper .card > div:first-of-type > a + div .btn-success:active {
  transform: scale(0.98) translateY(1px);
  box-shadow: 0 0 8px 2px var(--s-bx-shadow-8);
  background-color: var(--base-color-12);
  border-color: var(--base-color-12);
}

#related-website-wrapper .card > div:first-of-type > a + div .btn-success:focus, #related-website-wrapper .card > div:first-of-type > a + div .btn-success:hover {
  box-shadow: 0 0 15px 5px var(--s-bx-shadow-8);
  transform: scale(1.03);
  color: var(--base-color-1) !important;
}

#related-website-wrapper .card > div:first-of-type > a + div .btn-warning {
  color: var(--base-color-2) !important;
  background-color: var(--base-color-13);
  border-color: var(--base-color-13);
}

#related-website-wrapper .card > div:first-of-type > a + div .btn-warning svg.bi-star {
  margin-inline-start: 4px;
  font-size: 13px;
  vertical-align: middle;
}

#related-website-wrapper .card > div:first-of-type > a + div .btn-warning:active {
  transform: scale(0.98) translateY(1px);
  box-shadow: 0 0 8px 2px var(--s-bx-shadow-7);
  background-color: var(--base-color-11);
  border-color: var(--base-color-11);
}

#related-website-wrapper .card > div:first-of-type > a + div .btn-warning:focus, #related-website-wrapper .card > div:first-of-type > a + div .btn-warning:hover {
  box-shadow: 0 0 15px 5px var(--s-bx-shadow-7);
  transform: scale(1.03);
  color: var(--base-color-6) !important;
}

#related-website-wrapper .card > div:first-of-type > a + div .btn:first-child {
  margin-block-end: 0.9rem;
}

#related-website-wrapper .card > div:first-of-type > a > img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

#related-website-wrapper .card > div:first-of-type > a:focus img, #related-website-wrapper .card > div:first-of-type > a:hover img {
  transform: scale(1.1);
}

#related-website-wrapper .card > div:first-of-type > div:last-of-type {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  padding: 8px 10px 4px 10px;
  color: var(--base-color-1);
  display: flex;
  align-items: center;
  z-index: 2;
  background: linear-gradient(var(--s-bx-shadow-5), var(--s-bx-shadow-3));
  pointer-events: none;
}

#related-website-wrapper .card > div:first-of-type > div:last-of-type > h3 {
  flex-grow: 1;
  margin-block-end: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-inline-start: -14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--base-color-1);
  text-shadow: 1px 1px 2px var(--s-bx-shadow-3);
  pointer-events: auto;
}

#related-website-wrapper .card > div:first-of-type > div:last-of-type > h3 > img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  vertical-align: middle;
  margin-inline-end: 0.25rem;
}

#related-website-wrapper .card > div:first-of-type > div:last-of-type > span:first-of-type {
  font-weight: 400;
  flex-shrink: 0;
  position: relative;
  top: -1px;
  pointer-events: auto;
  line-height: 1;
}

#related-website-wrapper .card > div:first-of-type > div:last-of-type > span:first-of-type::before {
  content: counter(relatedWebsiteNumber);
  display: inline-block;
  color: var(--base-color-7);
  font-size: 1em;
  min-width: 1.2em;
  text-align: end;
  padding-inline-end: 0.3em;
  vertical-align: middle;
}

#related-website-wrapper .card > div:first-of-type::after {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(to top, var(--s-bx-shadow-3) 0%, var(--s-bx-shadow-4) 35%, var(--s-bx-shadow-5) 60% );
  pointer-events: none;
  border-radius: 5px;
}

#related-website-wrapper .card > div:first-of-type:focus-within > a + div, #related-website-wrapper .card > div:first-of-type:hover > a + div {
  opacity: 1;
  pointer-events: auto;
}

.link-actions-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
  margin-block-start: 25px;
}

.link-actions-bar > a {
  font-size: 12px;
  color: var(--link-p);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, transform 0.1s ease-out, box-shadow 0.15s ease-in-out, outline-offset 0.1s ease-in-out;
}

.link-actions-bar > a svg {
  margin-inline-end: 0.1em;
}

.link-actions-bar > a[href="/disclaimer"] svg {
  margin-block-start: -3px;
  margin-inline-end: -1.8px;
}

.link-actions-bar > a:active {
  color: var(--base-color-5);
  transform: scale(0.98) translateY(1px);
}

.link-actions-bar > a:focus-visible {
  outline: 2px solid var(--base-color-4);
  outline-offset: 2px;
  color: var(--base-color-4);
}

.link-actions-bar > a:hover {
  color: var(--base-color-4);
  text-decoration: underline;
}

.review-ads {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  text-align: center;
}

.review-ads img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  margin: auto;
}

.review-ads > a {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}

.review-bar {
  display: flex;
  align-items: center;
  background-color: var(--border-s-2);
  padding: 0.6rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  color: var(--text-p);
  text-decoration: none;
  box-shadow: 0 2px 5px var(--bx-shadow-2);
  margin-block-end: 1rem;
  overflow: hidden;
}

.review-bar > div {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.review-bar > div > img {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--border-t-2);
  padding: 2px;
  box-sizing: content-box;
  box-shadow: 0 1px 3px var(--bx-shadow-3);
  transition: transform 0.15s ease-out;
  margin-inline-start: -10px;
  margin-inline-end: 0.25rem;
}

.review-bar > div > img:first-child {
  margin-inline-start: 0;
}

.review-bar > div > img:hover {
  transform: scale(1.1);
  z-index: 1;
}

.review-bar > span {
  margin-inline-end: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.review-bar > svg:first-child {
  font-size: 20px;
  margin-inline-end: 0.5em;
  flex-shrink: 0;
}

.review-bar:active {
  background-color: var(--border-s-2);
  transform: translateY(1px);
}

.review-bar:focus, .review-bar:hover {
  background-color: var(--border-t-2);
}

.review-btn {
  margin-block-end: 20px;
  margin-block-start: 25px;
  text-align: start;
}

.review-btn > a {
  display: flex;
  align-items: center;
  color: var(--text-q);
  border: 3px solid var(--page-border-color, var(--base-color-7));
  border-radius: 10px !important;
  padding: 0.5rem 1rem;
  text-decoration: none;
  position: relative;
  width: 100%;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, color 0.15s ease-in-out, box-shadow 0.2s ease-in-out, transform 0.1s ease-out, outline-color 0.15s ease-in-out;
  box-shadow: none;
  transform: none;
  outline: 3px solid transparent;
  outline-offset: 2px;
}

.review-btn > a svg {
  margin-inline-start: auto;
  padding-inline-start: 0.5rem;
  fill: currentColor;
  flex-shrink: 0;
  font-size: 24px;
}

[dir="rtl"] .review-btn > a svg {
  transform: scaleX(-1);
}

.review-btn > a:active {
  transform: scale(0.98);
  transition-duration: 0.05s;
  background-color: var(--base-color-13) !important;
  border-color: var(--base-color-13) !important;
  color: var(--base-color-6) !important;
  box-shadow: none;
  outline-color: transparent;
}

.review-btn > a:focus-visible, .review-btn > a:hover {
  border: 3px solid var(--page-border-color, var(--base-color-7));
  box-shadow: 0 0 10px 2px var(--page-border-color, var(--base-color-7));
}

.review-center {
  padding-inline-end: 10px;
  padding-inline-start: 10px;
}

.review-content .form-control {
  color: var(--text-p);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--w-sb-thumb) var(--w-sb-track);
  border: none;
  padding: 0;
  background-color: transparent;
  transform: translateZ(0);
}

.review-content .form-control::-webkit-scrollbar {
  width: 6px;
}

.review-content .form-control::-webkit-scrollbar-thumb {
  background: var(--w-sb-thumb);
  border-radius: 3px;
}

.review-content .form-control::-webkit-scrollbar-thumb:hover {
  background: var(--w-sb-thumb-hover);
}

.review-content .form-control::-webkit-scrollbar-track {
  background: var(--w-sb-track);
  border-radius: 3px;
}

.review-content .form-control-first {
  height: 300px;
  border-block-end: 1px solid var(--border-q);
  margin-block-end: 1rem;
  padding-block-end: 1rem;
}

.review-content .form-control-second {
  height: 60px;
}

#review-pv {
  position: relative;
  padding-block-start: 38px;
  box-sizing: border-box;
  border: 1px solid var(--base-color-21);
  border-radius: 8px;
  overflow: hidden;
  width: auto;
  margin-inline-start: 0;
  margin-inline-end: 0;
  transition: padding-top 0.2s ease-in-out, width 0.2s ease-in-out, margin 0.2s ease-in-out;
}

#review-pv > div:first-of-type {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 38px;
  background-color: var(--base-color-1);
  box-sizing: border-box;
  z-index: 10;
  padding: 0 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  border-radius: 8px 8px 0 0;
  border-block-end: none;
  transition: height 0.2s ease-in-out, padding 0.2s ease-in-out;
}

#review-pv > div:first-of-type > button.btn {
  background-color: transparent;
  border: none;
  color: var(--base-color-9);
  cursor: pointer;
  font-size: 1em;
  padding: 4px;
  border-radius: 5px;
  margin: 0 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  transition: background-color 0.1s ease-in-out, box-shadow 0.25s ease-out, transform 0.1s ease-out, width 0.2s ease-in-out, height 0.2s ease-in-out, padding 0.2s ease-in-out;
  box-shadow: none;
  text-shadow: none;
  line-height: 1;
}

#review-pv > div:first-of-type > button.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
}

[dir="rtl"] #review-pv > div:first-of-type > button.btn:first-child svg {
  transform: scaleX(-1);
}

[dir="rtl"] #review-pv > div:first-of-type > button.btn:nth-child(2) svg {
  transform: scaleX(-1);
}

#review-pv > div:first-of-type > button.btn:active {
  background-color: var(--base-color-22);
  transform: scale(0.95);
  box-shadow: 0 0 5px 1px var(--s-bx-shadow-13);
}

#review-pv > div:first-of-type > button.btn:hover {
  background-color: var(--base-color-21);
  box-shadow: 0 0 10px 3px var(--s-bx-shadow-16);
}

#review-pv > div:first-of-type > div:nth-child(3) {
  flex-grow: 1;
  background-color: var(--base-color-23);
  border-radius: 6px;
  height: 26px;
  margin: 0 6px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  box-sizing: border-box;
  overflow: hidden;
  transition: box-shadow 0.25s ease-out, height 0.2s ease-in-out, margin 0.2s ease-in-out, padding 0.2s ease-in-out;
  position: relative;
}

#review-pv > div:first-of-type > div:nth-child(3) > img {
  border-radius: 50%;
  margin-inline-end: 6px !important;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
  width: 16px;
  height: 16px;
  transition: width 0.2s ease-in-out, height 0.2s ease-in-out, margin-inline-end 0.2s ease-in-out;
}

#review-pv > div:first-of-type > div:nth-child(3) > span.address-display {
  margin-block-start: -1px;
  flex-grow: 1;
  font-size: 13px;
  color: var(--base-color-24);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 26px;
  box-sizing: border-box;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: font-size 0.2s ease-in-out, line-height 0.2s ease-in-out;
}

#review-pv > div:first-of-type > div:nth-child(3):hover {
  box-shadow: 0 0 10px 3px var(--s-bx-shadow-13);
}

#review-pv > div:nth-of-type(2) > a {
  display: block;
  position: relative;
  text-decoration: none;
}

#review-pv > div:nth-of-type(2) > a > img:first-of-type {
  display: block;
  width: 100%;
  height: auto;
}

#review-pv > div:nth-of-type(2) > a > span.btn.btn-success.btn-lg {
  width: 80%;
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  color: var(--base-color-1) !important;
  background-color: var(--base-color-14);
  border: 1px solid var(--base-color-14);
  border-radius: 10px;
  padding: 0.7rem 1.3rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  box-shadow: none;
  transition: width 0.2s ease-in-out, padding 0.2s ease-in-out, font-size 0.2s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

[dir="rtl"] #review-pv > div:nth-of-type(2) > a > span.btn.btn-success.btn-lg {
  transform: translate(50%, -50%);
}

#review-pv > div:nth-of-type(2) > a > span.btn.btn-success.btn-lg > img {
  border-radius: 50%;
  object-fit: cover;
  width: 22px;
  height: 22px;
  margin-inline-end: 0.25rem;
  flex-shrink: 0;
  transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
}

#review-pv > div:nth-of-type(2) > a > span.btn.btn-success.btn-lg > span {
  color: var(--base-color-26);
  font-size: inherit;
  line-height: inherit;
  text-align: start;
  margin-inline-end: auto;
}

#review-pv > div:nth-of-type(2) > a > span.btn.btn-success.btn-lg > svg {
  fill: currentColor;
  width: 1.2em;
  height: 1.2em;
  flex-shrink: 0;
  font-size: 18px;
  vertical-align: middle;
  transition: font-size 0.2s ease-in-out;
}

[dir="rtl"] #review-pv > div:nth-of-type(2) > a > span.btn.btn-success.btn-lg > svg {
  transform: scaleX(-1);
}

#review-pv > div:nth-of-type(2) > a::after {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  background-color: var(--s-bx-shadow-14);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

#review-pv > div:nth-of-type(2) > a:active > span.btn.btn-success.btn-lg {
  transform: translate(-50%, -50%) scale(0.98);
  box-shadow: 0 0 8px 2px var(--s-bx-shadow-15);
  background-color: var(--base-color-12);
  border-color: var(--base-color-12);
}

[dir="rtl"] #review-pv > div:nth-of-type(2) > a:active > span.btn.btn-success.btn-lg {
  transform: translate(50%, -50%) scale(0.98);
}

#review-pv > div:nth-of-type(2) > a:hover::after {
  opacity: 1;
}

#review-pv > div:nth-of-type(2) > a:hover > span.btn.btn-success.btn-lg {
  transform: translate(-50%, -50%) scale(1.03);
  box-shadow: 0 0 15px 5px var(--s-bx-shadow-8);
  color: var(--base-color-1) !important;
  background-color: var(--base-color-14);
  border-color: var(--base-color-14);
}

[dir="rtl"] #review-pv > div:nth-of-type(2) > a:hover > span.btn.btn-success.btn-lg {
  transform: translate(50%, -50%) scale(1.03);
}

.review-title-area {
  margin-block-start: -10px;
}

.review-title-area > div {
  display: flex;
  align-items: baseline;
}

.review-title-area > div > a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 1rem;
  color: var(--link-q);
  margin-inline-end: auto;
  padding: 0.25rem 0.4rem;
  border-radius: 4px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, transform 0.1s ease-out, outline-offset 0.1s ease-in-out;
}

.review-title-area > div > a > img {
  vertical-align: middle;
  margin-inline-end: 0.25rem;
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.review-title-area > div > a:active {
  color: var(--base-color-5);
  transform: scale(0.99);
}

.review-title-area > div > a:active > img {
  transform: scale(0.95);
  opacity: 0.85;
}

.review-title-area > div > a:focus-visible {
  outline: 2px solid var(--base-color-4);
  outline-offset: 2px;
  color: var(--base-color-4);
}

.review-title-area > div > a:hover {
  color: var(--base-color-4);
  text-decoration: underline;
}

.review-title-area > h1 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-p);
  margin-block-end: 0.25rem;
  line-height: 1.2;
}

.sidebar-parent-row {
  margin-inline-start: 0;
}

.sitemap-section > h2 {
  position: relative;
  font-weight: bold;
  margin-block-end: 1rem !important;
  margin-block-start: 2rem;
}

.sitemap-section > ul {
  list-style-type: none;
  padding-inline-start: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  display: grid;
  column-gap: 1rem;
  row-gap: 0.2rem;
}

.sitemap-section > ul > li > a {
  text-decoration: none;
  display: inline-block;
  padding: 0.1rem 0.3rem;
  position: relative;
  transition: transform 0.05s ease-out;
}

.sitemap-section > ul > li > a span {
  color: var(--text-p);
  transition: color 0.15s ease-in-out;
}

.sitemap-section > ul > li > a:active {
  transform: scale(0.97);
}

.sitemap-section > ul > li > a:active span {
  color: var(--base-color-5);
}

.sitemap-section > ul > li > a:focus span {
  color: var(--base-color-4);
  text-decoration: underline;
}

.sitemap-section > ul > li > a:focus-visible {
  outline: 2px solid var(--text-p);
  outline-offset: 2px;
}

.sitemap-section > ul > li > a:hover span {
  color: var(--base-color-4);
  text-decoration: underline;
}

@media (max-width: 420px) {
  .homepage-card-link > a:first-of-type p {
    font-size: clamp(0.625rem, 0.3rem + 1.8vw, 1.25rem);
    padding: 5px 6px;
    line-height: 1.1;
  }
}

@media (max-width: 420px) {
  .homepage-card-link > a:last-of-type {
    font-size: clamp(0.6875rem, 0.45rem + 1vw, 0.875rem);
    padding: 8px 8px;
  }
}

@media (max-width: 480px) {
  .page-title, .review-title-area > h1 {
    font-size: 1.1rem;
  }
}

@media (max-width: 575.98px) {
  .item-visual-box > div {
    border-color: var(--item-box-small-screen-border-color, var(--border-s));
    border-block-start-color: var(--item-box-small-screen-border-color, var(--border-s));
  }
}

@media (max-width: 575.98px) {
  .item-visual-box h3, .item-visual-box h4 {
    font-size: 11px;
    margin-block-end: 0.4rem;
    min-height: 28px;
  }
}

@media (max-width: 575.98px) {
  .item-visual-box h3::before, .item-visual-box h4::before {
    width: 6px;
    height: 6px;
    margin-inline-end: 6px;
    background-color: var(--item-box-small-screen-border-color, var(--text-q));
  }
}

@media (max-width: 575.98px) {
  .item-visual-box > div > span:first-of-type {
    font-size: 14px;
    top: 0.4rem;
    inset-inline-end: 0.6rem;
  }
}

@media (max-width: 575.98px) {
  .item-visual-box > div > ul > li {
    margin-block-end: 0.25rem;
  }
}

@media (max-width: 575.98px) {
  .item-visual-box > div > ul > li > span {
    font-size: 10px;
  }
}

@media (max-width: 575.98px) {
  .item-visual-box > div > ul > li > img {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 575.98px) {
  .item-visual-box:active > div {
    box-shadow: 0 0 4px 1px var(--bx-shadow-3);
    transform: translateY(0.5px);
  }
}

@media (max-width: 575.98px) {
  .item-visual-box:hover > div {
    border-color: var(--item-box-small-screen-border-color, var(--border-s));
    box-shadow: 0 0 12px 2px var(--item-box-small-screen-border-color, var(--border-s));
    transform: translateY(-1px);
  }
}

@media (max-width: 575.98px) {
  .item-visual-box:hover h3::before, .item-visual-box:hover h4::before {
    background-color: var(--item-box-small-screen-border-color, var(--border-t));
    box-shadow: 0 0 8px 2px var(--item-box-small-screen-border-color, var(--border-t));
  }
}

@media (max-width: 575.98px) {
  #review-pv {
    width: 90%;
    padding-block-start: 34px;
  }
}

@media (max-width: 575.98px) {
  #review-pv > div:first-of-type {
    height: 34px;
    padding: 0 6px;
  }
}

@media (max-width: 575.98px) {
  #review-pv > div:first-of-type > button.btn {
    width: 26px;
    height: 26px;
    padding: 3px;
  }
}

@media (max-width: 575.98px) {
  #review-pv > div:first-of-type > button.btn svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 575.98px) {
  #review-pv > div:first-of-type > div:nth-child(3) {
    height: 24px;
    margin: 0 4px;
    padding: 0 6px;
  }
}

@media (max-width: 575.98px) {
  #review-pv > div:first-of-type > div:nth-child(3) > img.me-1 {
    width: 14px;
    height: 14px;
    margin-inline-end: 4px !important;
  }
}

@media (max-width: 575.98px) {
  #review-pv > div:first-of-type > div:nth-child(3) > span.address-display {
    font-size: 12px;
    line-height: 24px;
  }
}

@media (max-width: 575.98px) {
  #review-pv > div:nth-of-type(2) > a > span.btn.btn-success.btn-lg {
    width: 88%;
    padding: 0.55rem 0.9rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 575.98px) {
  #review-pv > div:nth-of-type(2) > a > span.btn.btn-success.btn-lg > img.me-1 {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 575.98px) {
  #review-pv > div:nth-of-type(2) > a > span.btn.btn-success.btn-lg > svg {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  #related-website-wrapper .card > div:first-of-type > a + div {
    padding: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  #related-website-wrapper .card > div:first-of-type > a + div .btn {
    padding: 0.45rem 0.7rem;
    font-size: 0.7rem;
    min-width: 115px;
    max-width: 96%;
  }
}

@media (max-width: 575.98px) {
  #related-website-wrapper .card > div:first-of-type > a + div .btn i {
    margin-inline-start: 0.3rem;
    font-size: 0.85em;
  }
}

@media (max-width: 575.98px) {
  #related-website-wrapper .card > div:first-of-type > a + div .btn:first-child {
    margin-block-end: 0.5rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  #related-website-wrapper .card > div:first-of-type > a + div {
    padding: 0.6rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  #related-website-wrapper .card > div:first-of-type > a + div .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem;
    min-width: 120px;
    max-width: 94%;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  #related-website-wrapper .card > div:first-of-type > a + div .btn i {
    margin-inline-start: 0.35rem;
    font-size: 0.9em;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  #related-website-wrapper .card > div:first-of-type > a + div .btn:first-child {
    margin-block-end: 0.6rem;
  }
}

@media (max-width: 767px) {
  .page-container {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .page404 h1 {
    font-size: 5rem;
  }
}

@media (max-width: 767px) {
  .page404 p {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .homepage-card-link > a:first-of-type p {
    padding: 6px 8px;
  }
}

@media (max-width: 767.98px) {
  .homepage-card-link > a:last-of-type {
    padding: 10px 12px;
  }
}

@media (max-width: 767.98px) {
  .homepage-card-link:hover {
    transform: translateY(-2px);
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #related-website-wrapper .card > div:first-of-type > a + div {
    padding: 0.7rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #related-website-wrapper .card > div:first-of-type > a + div .btn {
    padding: 0.55rem 0.85rem;
    font-size: 0.75rem;
    min-width: 125px;
    max-width: 92%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #related-website-wrapper .card > div:first-of-type > a + div .btn i {
    margin-inline-start: 0.4rem;
    font-size: 0.95em;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #related-website-wrapper .card > div:first-of-type > a + div .btn:first-child {
    margin-block-end: 0.7rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .sitemap-section > ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .item-visual-box > div {
    border-color: var(--item-box-small-screen-border-color, var(--border-s));
    border-block-start-color: var(--item-box-small-screen-border-color, var(--border-s));
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .item-visual-box h3, .item-visual-box h4 {
    font-size: 12px;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .item-visual-box h3::before, .item-visual-box h4::before {
    background-color: var(--item-box-small-screen-border-color, var(--text-q));
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .item-visual-box > div > ul > li > span {
    font-size: 11px;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .item-visual-box:active > div {
    box-shadow: 0 0 4px 1px var(--bx-shadow-3);
    transform: translateY(0.5px);
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .item-visual-box:hover > div {
    border-color: var(--item-box-small-screen-border-color, var(--border-s));
    box-shadow: 0 0 12px 2px var(--item-box-small-screen-border-color, var(--border-s));
    transform: translateY(-1px);
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .item-visual-box:hover h3::before, .item-visual-box:hover h4::before {
    background-color: var(--item-box-small-screen-border-color, var(--border-t));
    box-shadow: 0 0 8px 2px var(--item-box-small-screen-border-color, var(--border-t));
  }
}

@media (max-width: 991px) {
  .breadcrumb-item + .breadcrumb-item::before {
    padding-inline-start: 0.25rem;
    padding-inline-end: 0.25rem;
    font-size: 1.1em;
  }
}

@media (max-width: 991px) {
  .breadcrumb-item img {
    width: 20px;
    height: 20px;
    margin-inline-end: 2px;
  }
}

@media (max-width: 991px) {
  .breadcrumb-item a {
    font-size: 14px;
    font-weight: 400;
  }
}

@media (max-width: 991px) {
  .breadcrumb-item:first-child, .breadcrumb-item:nth-child(2) {
    margin-inline-end: 0;
  }
}

@media (max-width: 991px) {
  .breadcrumb-item:first-child::before {
    margin-inline-end: 3px;
    font-size: 1.1em;
  }
}

@media (max-width: 991px) {
  .breadcrumb-item:first-child a {
    font-weight: 400;
  }
}

@media (max-width: 991px) {
  .page-container {
    max-width: 991px;
    border-radius: 0;
    border-inline-end: none;
    border-inline-start: none;
    border-block-start: none;
    padding: 0 5px;
  }
}

@media (max-width: 991px) {
  .page-title, .review-title-area > h1 {
    font-size: 1.25rem;
  }
}

@media (max-width: 991.98px) {
  .link-actions-bar {
    justify-content: center;
    gap: 1rem;
  }
}

@media (max-width: 991.98px) {
  #review-pv {
    width: 80%;
    margin-inline-start: auto;
    margin-inline-end: auto;
  }
}

@media (max-width: 991.98px) {
  #review-pv > div:nth-of-type(2) > a > span.btn.btn-success.btn-lg {
    width: 85%;
    padding: 0.65rem 1.1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 991.98px) {
  #review-pv > div:nth-of-type(2) > a > span.btn.btn-success.btn-lg > img.me-1 {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 991.98px) {
  #review-pv > div:nth-of-type(2) > a > span.btn.btn-success.btn-lg > svg {
    font-size: 19px;
  }
}

@media (max-width: 991.98px) {
  .review-ads {
    margin-block-start: 1rem;
    margin-block-end: 1rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .item-visual-box > div {
    padding: 0.7rem;
    padding-block-start: 0.6rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .item-visual-box h3, .item-visual-box h4 {
    font-size: 12px;
    margin-block-end: 0.4rem;
    min-height: 30px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .item-visual-box h3 img, .item-visual-box h4 img {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .item-visual-box h3::before, .item-visual-box h4::before {
    width: 7px;
    height: 7px;
    margin-inline-end: 6px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .item-visual-box > div > span:first-of-type {
    font-size: 15px;
    top: 0.6rem;
    inset-inline-end: 0.7rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .item-visual-box > div > ul > li {
    margin-block-end: 0.28rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .item-visual-box > div > ul > li > span {
    font-size: 11px;
    line-height: 1.3;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .item-visual-box > div > ul > li > img {
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .review-content .form-control-first {
    height: 230px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  #related-website-wrapper .card > div:first-of-type > a + div .btn {
    padding: 0.55rem 0.8rem;
    font-size: 0.72rem;
    min-width: 125px;
    max-width: 90%;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  #related-website-wrapper .card > div:first-of-type > a + div .btn i {
    margin-inline-start: 0.4rem;
    font-size: 0.95em;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  #related-website-wrapper .card > div:first-of-type > a + div .btn:first-child {
    margin-block-end: 0.8rem;
  }
}

@media (min-width: 992px) {
  .breadcrumb-item a {
    font-weight: 700;
  }
}

@media (min-width: 992px) {
  .breadcrumb-item:first-child {
    margin-inline-end: -7px;
  }
}

@media (min-width: 992px) {
  .breadcrumb-item:first-child a {
    font-weight: 700;
  }
}

@media (min-width: 992px) {
  .breadcrumb-item:nth-child(2) {
    margin-inline-end: -7px;
  }
}

@media (min-width: 992px) {
  .link-header:after {
    display: inline-block;
    background-color: var(--link-header-after-bg-color, var(--base-color-7));
  }
}

@media (min-width: 992px) {
  .sidebar-parent-row {
    margin-inline-start: -11px;
  }
}

@media (min-width: 768px) {
  .sitemap-section > ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .review-content .form-control-first {
    height: 255px;
  }
}

@media (min-width: 1200px) {
  .item-visual-box h3, .item-visual-box h4 {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .item-visual-box > div > ul > li > span {
    font-size: 13px;
  }
}

@media (min-width: 1200px) {
  #related-website-wrapper .card > div:first-of-type > a + div .btn {
    padding: 0.65rem 0.95rem;
    font-size: 0.8rem;
    min-width: 140px;
    max-width: 88%;
  }
}

@media (max-width: 1200px) {
  #related-website-wrapper .card > div:first-of-type > div:last-of-type > h3 {
    font-size: 13px;
  }
}

