@charset "UTF-8";
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
article, aside, footer, header, main, nav, section {
	display: block;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.55;
	color: #111;
	background: #e8eff0 url('../images/bg-vp.webp') repeat center top;
	overflow-x: hidden;
}

.page-header-1 {
  background: #f9f9f9;
  border-bottom: 1px solid #ddd;
  height: 84px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}
.page-header-1 .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}
.page-header-1 .logo img {
  max-width: 215px;
  height: auto;
  display: block;
  filter: brightness(1.05) contrast(1.02);
}
@media (max-width: 768px) {
  .page-header-1 {
    display: none;
  }
}

.page-header-2 {
  background: #38545f;
  border-bottom: 1px solid #fff;
  z-index: 2147483000;
  position: relative;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: box-shadow 0.25s ease;
}

.page-header-2.scrolled {
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}
.page-header-2.nav-open {
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

@media (max-width: 768px) {
  .page-header-2 {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .page-header-2 {
    position: sticky;
    top: 0;
  }
}

.page-header-2 .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  z-index: 2147483001;
}

.page-header-2 .nav-checkbox {
  display: none;
  pointer-events: none;
}

.page-header-2 .header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 3.25rem;
  padding: 0 1rem;
  background: #38545f;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  box-sizing: border-box;
  z-index: 2147483002;
  position: relative;
}
.page-header-2 .header-bar:hover {
  background: #38545f;
}

.page-header-2 .logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.page-header-2 .logo img {
  max-width: 180px;
  height: auto;
  display: block;
  filter: brightness(1.15) contrast(1.05);
}

.page-header-2 .hamburger {
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
  border: none;
  background: none;
  line-height: 1;
}
.page-header-2 .hamburger::before {
  content: "\2630";
  display: inline-block;
  transform: scale(0.9);
  vertical-align: middle;
}
.page-header-2 .nav-checkbox:checked ~ .header-bar .hamburger::before {
  content: "\2715";
  transform: scale(0.9);
}

.page-header-2 .nav {
  width: 100%;
  position: relative;
  z-index: 2147483002;
}

@media (max-width: 768px) {
  .page-header-2 .nav {
    background: transparent;
    padding: 0;
  }

.page-header-2 .nav-checkbox:checked ~ .nav {
    background: #38545f;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
  }
}

.page-header-2 .nav ul {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #f3f5f6;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.28s ease, opacity 0.18s ease;
  border-top: 1px solid rgba(0,0,0,0.12);
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page-header-2 .nav li {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
}
.page-header-2 .nav li:last-child a {
  border-bottom: none;
}

.page-header-2 .nav a {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 0.82rem 1rem;
  min-height: 44px;
  text-decoration: none;
  color: #1f2b30 !important;
  border-bottom: 1px solid rgba(0,0,0,0.10);
  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.1;
  box-sizing: border-box;
}
.page-header-2 .nav a:hover,
.page-header-2 .nav a:focus {
  background: rgba(0,0,0,0.06);
  color: #1f2b30;
  text-decoration: none;
  box-shadow: none;
}
@media (min-width:769px){

.page-header-2 .nav a{
font-size:0.97rem;
font-weight:600;
letter-spacing:0.02em;
text-transform:uppercase;
padding:0 1.25rem;
height:3.15rem;
display:flex;
align-items:center;
justify-content:center;
}

.page-header-2 .nav li{
display:flex;
align-items:center;
}

}

.page-header-2 .nav-checkbox:checked ~ .nav ul {
  max-height: 1200px;
  opacity: 1;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .page-header-2 .header-bar {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .page-header-2,
  .page-header-2 .header-bar,
  .page-header-2 .logo img,
  .page-header-2 .hamburger,
  .page-header-2 .nav ul,
  .page-header-2 .nav a {
    transition: none !important;
  }

  .page-header-2 .nav a {
    padding-left: 1.25rem;
    padding-right: 0.9rem;
  }
}

.page-header-2.shrink .header-bar {
  height: 2.75rem;
  background: #304953;
}
.page-header-2.shrink .logo img {
  max-width: 140px;
  opacity: 0.95;
  filter: brightness(1.12) contrast(1.05);
}
.page-header-2.shrink {
  box-shadow: 0 3px 8px rgba(0,0,0,0.35);
}

.page-header-2 .hamburger:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.25);
  border-radius: 4px;
}
.page-header-2 .nav a:focus {
  outline: none;
  background: rgba(0,0,0,0.08);
}

@media (min-width: 769px) {
  .page-header-2 .inner {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 3.15rem;
  }
  .page-header-2 .header-bar {
    display: none;
  }
  .page-header-2 .nav {
    width: auto;
    background: transparent;
    padding: 0;
  }
  .page-header-2 .nav ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    background: none;
    opacity: 1;
    max-height: none;
    border-top: none;
    padding: 0;
  }
  .page-header-2 .nav li {
    margin: 0;
    width: auto;
    border: none;
  }
  .page-header-2 .logo img {
    filter: brightness(1.05) contrast(1.02);
  }
  .page-header-2.shrink .logo img {
    filter: brightness(1.05) contrast(1.02);
  }
  .page-header-2 .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.1rem;
    height: 3.15rem;
    background: none;
    border: none;
    box-shadow: none;
    color: #fff !important;
    font-weight: 500;
    min-height: 0;
  }
  .page-header-2 .nav a:hover,
  .page-header-2 .nav a:focus {
	background: #446775;
	box-shadow: none;
}
}

.main-wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  background: #fafafa;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  overflow-x: hidden;
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 769px) {
  .main-wrapper {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}

.page-grid {
  display: block;
  width: 100%;
}

.sidebar {
  margin-top: 1.5rem;
  padding: 0;
}

@media (max-width: 768px) {
  .page-grid.with-sidebar .content {
    padding-top: 0.75rem;
  }

  .page-grid.review-page .content {
    padding-top: 1rem;
  }

  .page-grid.no-sidebar .content {
    padding-top: 0.75rem;
  }
}

@media (min-width: 769px) {
  .page-grid.with-sidebar {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-areas: "content sidebar";
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
  }

  .page-grid.with-sidebar .content {
    grid-area: content;
    background: #fafafa;
    border-radius: 0.5rem;
    padding: 1rem;
    min-width: 0;
  }

  .page-grid.with-sidebar .sidebar {
    grid-area: sidebar;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin-top: 0;
  }

  .page-grid.with-sidebar .sidebar > * {
    background: #fafafa;
    border-radius: 0.5rem;
    padding: 1rem;
  }

  .page-grid.with-sidebar .sidebar aside::after {
    content: "";
    display: block;
    clear: both;
  }
}

.sidebar-title {
  display: flex;
  align-items: center;
  margin: 0.94rem 0 1.2rem 0;
  clear: both;
}

.sidebar-title span {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  padding-right: 0.75rem;
  white-space: nowrap;
}

.sidebar-title::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #ccc;
  margin-top: 0.2rem;
}

.page-grid.no-sidebar {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .page-grid.no-sidebar .content {
    padding: 1rem;
    min-width: 0;
  }
}

.page-grid.review-page {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .review-hero {
    margin-top: 1.5rem;
    padding: 0;
    margin-bottom: 2.5rem;
    text-align: center;
  }

  .review-page .review-facts {
    padding: 0;
    margin-bottom: 2.5rem;
  }

  .review-page .content {
    padding: 0;
    min-width: 0;
  }
}

@media (min-width: 769px) {
  .page-grid.review-page {
    display: grid;
    grid-template-areas:
      "hero"
      "facts"
      "content";
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .review-hero {
    grid-area: hero;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem 0.75rem;
    text-align: center;
  }

  .review-hero h1 {
    margin-top: 0.25rem;
    margin-bottom: 1.25rem;
  }

  .review-page .review-facts {
    grid-area: facts;
    padding: 1rem;
  }

  .review-page .content {
    grid-area: content;
    padding: 1rem;
    min-width: 0;
  }
}

@media (min-width: 900px) {
  .page-grid.review-page {
    grid-template-areas:
      "hero hero"
      "content facts";
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
    gap: 1.2rem;
  }
}

.content {
  padding-bottom: 5rem !important;
}

.page-grid.review-page .content {
  padding-bottom: 5rem !important;
}

@media (max-width: 768px) {
  .page-grid.with-sidebar .sidebar {
    margin-bottom: 5rem !important;
  }
}

.footer-wrapper {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 1rem;
	box-sizing: border-box;
}

footer {
	background: #38545f;
	color: #fff;
	padding: 2rem 0 1rem;
	text-align: center;
}

.footer-logos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 0.75rem;
	margin-bottom: 3rem;
	padding: 0.5rem 0 1.25rem;
}

@media (min-width: 769px) {
	.footer-logos {
		justify-content: space-between;
		gap: 2.5rem;
	}
	.footer-logos img {
		margin: 0;
	}
}

.footer-logos img {
	max-width: 240px;
	height: auto;
	transition: filter 0.3s ease;
	filter: brightness(0.95) contrast(1.05);
}

.footer-logos img:hover {
	filter: brightness(1.1);
}

.footer-columns {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1.5rem;
	text-align: left;
	margin-bottom: 2rem;
}

.footer-column {
	flex: 1 1 220px;
	min-width: 200px;
}

.f-head {
	font-weight: 600;
	text-transform: uppercase;
	color: #e6e6e6;
	border-bottom: 1px solid rgba(255,255,255,0.12);
	padding-bottom: 0.35rem;
	margin-bottom: 0.6rem;
	font-size: 1rem;
	padding-left: 0.5rem;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-column li {
	margin-bottom: 0.15rem;
}

.footer-column a:link,
.footer-column a:visited {
	display: block;
	color: #e6e6e6;
	text-decoration: none;
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	transition: color 0.25s ease;
}

.footer-column a:hover {
	color: #ffea66;
	background: transparent;
}

.footer-column a:active {
	opacity: 0.85;
}

#attribution {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid rgba(255,255,255,0.15);
	padding: 1rem;
	font-size: 0.9rem;
	color: #efefef;
	text-align: left;
}

#attribution .back-top {
	display: block;
	width: 39px;
	height: 42px;
	background-image: url(../images/back-top.webp);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	opacity: 0.9;
}

#attribution a:hover .back-top {
	opacity: 1;
}

@media (max-width: 768px) {
	.footer-columns {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
		text-align: left;
		justify-items: start;
	}
	.footer-column {
		min-width: 0;
	}

	#attribution {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

@media (max-width: 360px) {
	.footer-columns {
		grid-template-columns: 1fr;
		text-align: center;
		justify-items: center;
	}
	.footer-column {
		width: 100%;
	}
	.f-head {
		padding-left: 0;
		display: inline-block;
	}
	.footer-column a:link,
	.footer-column a:visited {
		padding: 0.2rem 0;
	}
}
.odds-back-top{
margin:1rem 0 1.25rem 0;
text-align:right;
font-size:.9rem
}

.odds-back-top a,
.odds-back-top a:link,
.odds-back-top a:visited,
.footer-back-top,
.footer-back-top:link,
.footer-back-top:visited{
color:inherit;
text-decoration:none
}

.odds-back-top a:hover,
.odds-back-top a:focus,
.footer-back-top:hover,
.footer-back-top:focus{
text-decoration:none
}

p {
	margin: 0 0 1.6rem 0;
	line-height: 1.6;
	color: #111;
}
strong, b {
	font-weight: 600;
	color: #333;
}

h1{
font-size:1.35rem;
font-weight:700;
line-height:1.3;
color:#333;
text-align:center;
margin-top:1rem;
margin-bottom:.9rem;
}

@media(max-width:919px){
h1{
text-wrap:balance;
hyphens:auto;
word-break:normal;
letter-spacing:-0.01em;
line-height:1.32;
}
}

@media(min-width:920px){
h1{
text-align:left;
}
}

h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    padding-top: 0.25rem;
    padding-bottom: 0.7rem;
    margin-top: 3rem;
    margin-bottom: 1.7rem;
    background-image: url('../images/underline-blue.webp');
    background-repeat: no-repeat;
    background-position: left bottom;
}

h2.topsites-title {
    background: none !important;
    padding: 0 !important;
clear:both;
    display: block;
    text-align: center;
    margin: 3.5rem 0 0.5rem;
    padding-bottom: 4px;

    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: #484848;

    border-bottom: 1px solid silver;
}

h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #444;
    line-height: 1.3;
    margin: 1.8rem 0 1rem;
}

h3.gradient-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;

    background: linear-gradient(-135deg, transparent 42px, #4e7685 0);

    display: inline-block;
    padding: 6px 64px 6px 8px;
    border-radius: 4px;

    line-height: 1.25;
    margin: 1.5rem 0;
    min-width: 250px;
    max-width: 100%;
}

h1.upper-title,
h2.upper-title,
h3.upper-title {
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    color: #3a5863 !important;
clear:both;
    display: block;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
    margin: 3.5rem 0 1.2rem;
}

h2.star-title,
h3.star-title {
    position: relative;
    color: #484848;
    font-weight: 600;
    background: none !important;
}

h2.star-title {
    padding-left: 1.85rem;
    line-height: 1.4;
    margin-top:5rem;
}
h2.star-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 1.45rem;
    height: 1.45rem;
    background: url('../images/star.webp') no-repeat center center;
    background-size: contain;
}

h3.star-title {
    padding-left: 1.7rem;
    line-height: 1.35;
    font-size: 1.1rem;
}
h3.star-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1.25rem;
    height: 1.25rem;
    background: url('../images/star.webp') no-repeat center center;
    background-size: contain;
}

h4 {
    font-size: 1rem;
    margin: 1rem 0 0.8rem;
}

.lead-words{
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  font-size:.95rem;
}

.blue-element .first-p .lead-words{
  letter-spacing:.02em;
}

a:link,
a:visited {
    color: #1a5fa8;
    text-decoration: none;
    transition: text-decoration-color 0.25s ease;
}

a:hover {
    color: #1a5fa8;
    text-decoration: underline;
    text-underline-offset: 2px;
}

a:focus-visible {
    color: #1a5fa8;
    text-decoration: underline;
    text-underline-offset: 2px;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 95, 168, 0.25);
    border-radius: 2px;
}

a:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

a:active {
    color: #1a5fa8;
}

p a,
li a {
    color: #1a5fa8;
}

p a:hover,
li a:hover {
    color: #1a5fa8;
    text-decoration: underline;
    text-underline-offset: 2px;
}

p a:focus-visible,
li a:focus-visible {
    color: #1a5fa8;
    text-decoration: underline;
    text-underline-offset: 2px;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 95, 168, 0.25);
    border-radius: 2px;
}

img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 0.25rem;
}

figure {
  margin: 0;
}

figure + h2 {
  margin-top: 2rem;
}

figcaption {
  display: block;
  margin-top: 0.45rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #666;
  letter-spacing: 0.01em;
}

.img-main {
  width: 100%;
  margin: 1.5rem 0;
  overflow: hidden;
}

.img-center {
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.7rem;
  text-align: center;
  overflow: hidden;
}

.img-center figcaption {
  text-align: center;
}

.img-left {
  width: 100%;
  margin: 1.5rem 0;
  overflow: hidden;
}

@media (min-width: 769px) {
  .img-left {
    float: left;
    max-width: 45%;
    margin: 0 1rem 1rem 0;
  }
}

.img-left figcaption {
  text-align: left;
}

.img-right {
  width: 100%;
  margin: 1.5rem 0;
  overflow: hidden;
}

@media (min-width: 769px) {
  .img-right {
    float: right;
    max-width: 45%;
    margin: 0 0 1rem 1rem;
  }
}

.img-right figcaption {
  text-align: left;
}

.img-right-small {
  width: auto;
  max-width: 200px;
  margin: 1rem auto;
  height: auto;
}

@media (min-width: 769px) {
  .img-right-small {
    float: right;
    margin: 0 0 1rem 1rem;
  }
}

.img-right-small figcaption {
  text-align: left;
}

.img-right-large {
  width: 100%;
  height: auto;
  max-width: 100%;
  margin: 1.5rem 0;
  overflow: hidden;
}

@media (min-width: 769px) {
  .img-right-large {
    float: right;
    max-width: 55%;
    margin: 0 0 1rem 1rem;
  }
}

.img-right-large figcaption {
  text-align: left;
}

.img-natural {
  overflow: hidden;
}

.img-natural img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

[hidden]{display:none !important;}

.blue-element {
	border-radius: 0.3rem;
	background: linear-gradient(
		to top,
		#4e7685 0%,
		#4e7685 calc(100% - 100px),
		#6aa0b2 100%
	);
	width: 100%;
	height: auto;
	display: block;
	padding: 0.65rem 1.25rem;
	margin-top: 1.25rem;
	margin-bottom: 3.1rem;
	color: #f5f5f5;
	box-shadow: 0 0.25rem 0.65rem rgba(0,0,0,0.08);
}

.blue-element .page-title {
	font-size: 1.3rem;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.3;
	margin: 1.1rem 0 1.7rem 0;
	padding: 0 0.25rem;
	color: #fdfdfd;
	text-shadow: 0.05rem 0.05rem 0.1rem rgba(0,0,0,0.2);
}

.blue-element:hover {
	box-shadow: 0 0.4rem 0.9rem rgba(0,0,0,0.12);
}

.blue-element h2,
.blue-element p,
.blue-element strong {
	color: #f5f5f5;
	text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.2);
}

.blue-element strong {
	color: #fff !important;
}

@media (min-width: 769px) {
	.blue-element {
		border-radius: 0.3rem;
		background: linear-gradient(
			135deg,
			#4e7685,
			#5e8f9f,
			#5b8d9c
		);
		width: 100%;
		height: auto;
		display: block;
		padding: 0.65rem 1.25rem;
		margin-top: 1.25rem;
		margin-bottom: 3.15rem;
		color: #f5f5f5;
		box-shadow: 0 0.25rem 0.65rem rgba(0,0,0,0.08);
	}

	.blue-element:hover {
		box-shadow: 0 0.40rem 0.90rem rgba(0,0,0,0.12);
	}
}
.list-mark {
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.5;
}

.list-mark::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.13rem;
  width: 1.25rem;
  height: 1.25rem;
  background: url('../images/limark.webp') no-repeat center center;
  background-size: contain;
}

.vp-btn-primary,
.vp-btn-primary:link,
.vp-btn-primary:visited {
display:inline-flex;
align-items:center;
justify-content:center;
gap:.45rem;
padding:.78rem 1rem;
background:#2f5f74;
color:#fff;
border:1px solid #2f5f74;
border-radius:999px;
font-weight:700;
text-decoration:none;
transition:background-color .18s ease,color .18s ease,border-color .18s ease,box-shadow .18s ease;
}

.vp-btn-primary:hover,
.vp-btn-primary:visited:hover {
background:#254c5d;
color:#fff;
border-color:#254c5d;
text-decoration:none;
}

.vp-btn-primary:focus-visible,
.vp-btn-primary:visited:focus-visible {
background:#254c5d;
color:#fff;
border-color:#254c5d;
box-shadow:0 0 0 4px rgba(47,95,116,.22);
text-decoration:none;
outline:none;
}

.vp-btn-secondary,
.vp-btn-secondary:link,
.vp-btn-secondary:visited {
display:inline-flex;
align-items:center;
justify-content:center;
gap:.45rem;
padding:.78rem 1rem;
background:#f4f8fa;
color:#10202d;
border:1px solid #a9c3d1;
border-radius:999px;
font-weight:700;
text-decoration:none;
transition:background-color .18s ease,color .18s ease,border-color .18s ease,box-shadow .18s ease,transform .18s ease;
box-shadow:0 1px 6px rgba(0,0,0,.05);
}

.vp-btn-secondary:hover,
.vp-btn-secondary:visited:hover {
background:#eaf2f6;
color:#10202d;
border-color:#7fa7bb;
box-shadow:0 4px 12px rgba(0,0,0,.10);
text-decoration:none;
}

.vp-btn-secondary:active,
.vp-btn-secondary:visited:active {
background:#ddeaf1;
color:#10202d;
border-color:#6f99ae;
box-shadow:0 2px 6px rgba(0,0,0,.08);
text-decoration:none;
}

.vp-btn-secondary:focus-visible,
.vp-btn-secondary:visited:focus-visible {
background:#eaf2f6;
color:#10202d;
border-color:#7fa7bb;
box-shadow:0 0 0 4px rgba(47,95,116,.22), 0 4px 12px rgba(0,0,0,.10);
text-decoration:none;
outline:none;
}
.extra-title{
display:block;
margin:2rem 0 .9rem 0;
padding:.6rem 0.5rem;
font-size:0.96rem;
font-weight:900;
letter-spacing:.045em;
text-transform:uppercase;
color:#2f5f74;
background:#eaf2f6;
border:0;
border-radius:4px;
line-height:1.25;
}

.extra-title span{
display:inline;
}
.vp-title, h2.vp-title{
display:block;
margin:0 0 .9rem 0;
padding:.6rem 1rem;
font-size:0.96rem;
font-weight:800;
letter-spacing:.045em;
text-transform:uppercase;
color:#2f5f74;
background:#eaf2f6;
border-radius:4px;
line-height:1.25;
}

.vp-title, h2.vp-title.mt-4{
margin:2.5rem 0 .9rem 0;
}
.vp-title-accent{
display:block;
margin:0 0 .9rem 0;
padding:.6rem .7rem;
font-size:1.02rem;
font-weight:900;
letter-spacing:.045em;
text-transform:uppercase;
color:#2f5f74;
background:#eaf2f6;
border-left:4px solid #2f5f74;
border-top:0;
border-right:0;
border-bottom:0;
border-radius:4px;
line-height:1.25;
box-shadow:none;
text-decoration:none;
}

aside {
	margin: 0;
	padding: 0;
}

.siteinfo-box {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	width: 100%;
}

.siteinfo-left {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	border-bottom: 0.06rem solid rgba(0,0,0,0.14);
	padding: 0.25rem 0.45rem 0.5rem;
	font-size: 1rem;
	line-height: 1.4;
	box-sizing: border-box;
}

.siteinfo-right {
	display: inline-block;
	text-align: right;
	word-break: break-word;
	max-width: 65%;
}

.siteinfo-right img {
    vertical-align: middle;
    position: relative;
    top: -0.05rem;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    display: inline-block !important;
}

.review-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.2rem;
    margin-top: 0;
    width: 100%;
}

.review-images img {
    flex: 0 0 auto;
    width: auto;
    max-width: 56px;
    height: auto;
    border-radius: 0;
}

@media (max-width: 600px) {

    .siteinfo-left {
        font-size: 0.96rem;
        padding: 0.26rem 0.42rem 0.44rem;
        line-height: 1.34;
    }

    .siteinfo-right {
        max-width: 76%;
    }

    .review-images {
	gap: 0.36rem;
	justify-content: center;
}

    .review-images img {
        max-width: 54px;
    }
}

@media (min-width: 601px) and (max-width: 900px) {

    .siteinfo-left {
        font-size: 0.98rem;
        padding: 0.28rem 0.40rem 0.46rem;
        line-height: 1.40;
    }

    .review-images {
        gap: 0.34rem;
        justify-content: center;
    }

    .review-images img {
        max-width: 56px;
    }
}
.z-index {
	position: relative;
	z-index: 99999;
}
.expand-wrapper {
	position: relative;
	max-height: none;
	overflow: visible;
}
@media (max-width: 768px) {

.expand-wrapper::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1.90rem;
	background: linear-gradient(to top, #ffffff 0%, rgba(255,255,255,0.8) 10%, rgba(255,255,255,0) 100%);
	pointer-events: none;
}

.expand-wrapper {
	max-height: 100px;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
	position: relative;
}

.expand-wrapper.white::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1.90rem;
	background: linear-gradient(to top, #4e7685 0%, rgba(78,118,133,0.8) 10%, rgba(78,118,133,0) 100%);
	pointer-events: none;
}

.expand-button {
	display: block;
	text-align: center;
	width: 100%;
	font-weight: 600;
	color: #369;
	cursor: pointer;
	margin-top: 0.30rem;
	margin-bottom: 1.50rem;
	text-transform: uppercase;
	font-size: 0.90rem;
}

.expand-button.white {
	color: #e9e9e9;
	text-shadow: 0 0.05rem 0.10rem rgba(0,0,0,0.4);
}

.expand-button::after {
	content: "";
	display: inline-block;
	width: 0.90rem;
	height: 0.90rem;
	background: url('../images/arrow-down.webp') center 0.05rem no-repeat;
	margin-left: 0.30rem;
	transition: transform 0.3s ease;
}

.expand-button.white::after {
	background: url('../images/arrow-down-white.webp') center 0.10rem no-repeat;
}

.expand-button[aria-expanded=true]::after {
	transform: rotate(180deg);
}

.expand-content {
	max-height: none !important;
	overflow: visible !important;
}

.expand-content::after {
	display: none !important;
}

}

@media (min-width: 769px) {
.expand-button {
	display: none !important;
}
}

.brand-wrapper {
	margin: 1.5rem auto;
	max-width: 1000px;
	clear:both;
}

.brand-row {
	border-radius: 0.4rem;
	box-shadow: 0 2px 6px rgba(0,0,0,0.08);
	transition: box-shadow 0.2s ease;
	border: 1px solid #E1E1E1;
	display: grid;
	gap: 1.5rem;
	background: #fff;
	width: 100%;
	max-width: 1000px;
	margin: 1.2rem auto;
	padding: 1.5rem;
}
.brand-row:hover {
	box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
/* --- Sarakkeet --- */
.brand-col {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex: 1;
	min-width: 100px;
	margin: 1px;
}
/* --- Logo --- */
.brand-col-1 img {
	display: block;
	width: 180px;
	max-width: 100%;
	height: auto;
	border-radius: 0.4rem;
}
.brand-col-1 a {
	display: inline-block;
	line-height: 0;
}
/* --- Info --- */
.brand-col-2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 2px;
	line-height: 1.4;
}
.brand-col-2 .brand-name {
	font-weight: 600;
	font-size: clamp(1rem, 1.1vw + 0.9rem, 1.3rem);
	color: #222;
	margin: 0.2rem 0 3px 0;
	line-height: 1.3;
}
.brand-col-2 .brand-bonus {
	color: #2b8055;
	font-weight: 600;
	font-size: clamp(0.95rem, 1vw + 0.6rem, 1.15rem);
	text-transform: uppercase;
	margin: 0;
	line-height: 1.2;
}
.brand-col-2 .brand-terms {
	display: inline-block;
	text-transform: uppercase;
	font-size: 0.8rem;
	color: #222;
	cursor: pointer;
	text-align: center;
	margin: 0;
	border-bottom: 1px dotted #333;
	line-height: 1.1;
}

.brand-col-3 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.brand-methods-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, auto);
	gap: 4px;
	justify-items: center;
	align-items: center;
	width: 100%;
	max-width: 280px;
	margin: 0 auto;
}
.brand-methods-grid img {
	width: 50px;
	max-height: 31px;
	object-fit: contain;
	border-radius: 4px;
	display: block;
}
.brand-bank-icon {
	width: 50px;
	height: auto;
	border-radius: 4px;
	display: block;
}
/* --- Payout boxes --- */
.brand-payout-row-container {
	display: grid;
	grid-template-columns: repeat(2, minmax(80px, 1fr));
	gap: 0.9rem;
	justify-items: center;
	align-items: center;
	max-width: 220px;
	margin: 0 auto;
}
.brand-payout-row {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0.5rem 0.8rem;
	border-radius: 0.3rem;
	font-size: 0.9rem;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05);
	text-align: center;
	line-height: 1.45;
	min-width: 90px;
	max-width: 100%;
}
.brand-payout-row[data-type=rating], .brand-payout-row[data-type=deposit], .brand-payout-row[data-type=rtp] {
	background-color: #d9d9ff;
}
.brand-payout-row[data-type=payout], .brand-payout-row[data-type=deposits] {
	background-color: #c5eff7;
	color: #000;
}
.brand-payout-row div:first-child {
	font-weight: normal;
	color: #000;
	margin-bottom: 2px;
	text-transform: uppercase;
}
.brand-payout-row div:last-child {
	font-weight: normal;
	color: #222;
}
/* --- Button --- */
.brand-col-4 .brand-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0.3rem;
	padding: 0.8rem 1.1rem;
	border: 0.06rem solid #d6be33;
	border-radius: 0.3rem;
	background: linear-gradient(to bottom, #ffea66, #ffd633);
	color: #000;
	font-weight: 400;
	text-decoration: none;
	text-shadow: 0.05rem 0.05rem rgba(0, 0, 0, 0.25);
	font-size: 0.97rem;
	line-height: 1.2rem;
	text-align: center;
	text-transform: capitalize;
	letter-spacing: 0.02rem;
	min-width: 5.5rem;
	box-shadow: 0 8px 22px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.12);
	transition: all 0.25s ease;
	-webkit-user-select: none;
	touch-action: manipulation;
	cursor: pointer;
}
.brand-col-4 .brand-btn:hover {
	border-color: #e6cf40;
	box-shadow: 0 2px 4px rgba(0,0,0,0.10);
}
.brand-col-4 .brand-btn:active {
	box-shadow: 0 1px 3px rgba(0,0,0,0.2) inset;
}
.brand-col-4 .brand-btn:focus-visible {
	outline: 0.15rem solid #000;
	outline-offset: 0.15rem;
}
/* --- Tooltip --- */
.brand-tooltip-wrapper {
	position: relative;
	display: inline-block;
	cursor: pointer;
	z-index: 10;
}
.brand-tooltip-wrapper .brand-tooltiptext {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	bottom: 90%;
	left: 50%;
	transform: translateX(-50%);
	background: #4e7685;
	color: #fff;
	text-align: left;
	border-radius: 0.6rem;
	padding: 0.6rem 0.65rem;
	font-size: 0.8rem;
	line-height: 1.4;
	width: 210px;
	transition: opacity 0.25s ease, transform 0.25s ease;
	z-index: 999;
	cursor: default;
}
.brand-tooltip-wrapper:hover .brand-tooltiptext, .brand-tooltip-wrapper:focus-within .brand-tooltiptext {
	visibility: visible;
	opacity: 1;
	transform: translateX(-50%) translateY(-4px);
}
.brand-tooltip-wrapper .brand-tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-width: 6px;
	border-style: solid;
	border-color: #4e7685 transparent transparent transparent;
}
/* --- Tooltip info box --- */
.brand-tooltip-wrapper .brand-bonus-title {
	display: block;
	text-align: center;
	color: #000;
	font-size: 0.8rem;
	margin: 0.1rem auto 0.65rem auto;
	background-color: #C0C0C0;
	border-radius: 3px;
	padding: 3px 0;
}
.brand-tooltip-wrapper .brand-bonus-left {
	display: flex;
	justify-content: space-between;
	font-size: 0.8rem;
	margin: 2px 0;
}
.brand-tooltip-wrapper .brand-bonus-right {
	font-weight: normal;
	margin-left: 4px;
}
.brand-tooltip-wrapper .brand-bonus-left.last-child {
	display: block;
	text-align: center;
	color: #C0C0C0;
	margin-top: 0.5rem;
}

@media (min-width: 1000px) {
.brand-row {
	grid-template-columns: repeat(4, 1fr);
	align-items: center;
	justify-items: center;
	text-align: center;
	gap: 2rem;
}
.with-sidebar .brand-row {
	grid-template-columns: repeat(2, 1fr);
	grid-template-areas: "logo info" "methods button";

	gap: 1.3rem;
}
.brand-col-2 .brand-name {
	font-size: 1.18rem;
	line-height: 1.3;
}
.brand-col-2 .brand-bonus {
	font-size: 1.05rem;
}
.brand-col-2 .brand-terms {
	font-size: 0.8rem;
}
}

@media (min-width: 1000px) and (max-width: 1100px) {
.no-sidebar .brand-col-2 .brand-name {
	font-size: 1rem;
	line-height: 1.15;
}
.no-sidebar .brand-col-2 .brand-bonus {
	font-size: 0.9rem;
	line-height: 1.05;
}
.no-sidebar .brand-col-2 .brand-terms {
	font-size: 0.78rem;
	line-height: 1.15;
}
.no-sidebar .brand-col-2 {
	margin-bottom: 0.4rem;
}
}

@media (min-width: 600px) and (max-width: 999px) {
.brand-row {
	grid-template-columns: repeat(2, 1fr);
	grid-template-areas: "logo info" "methods button";
	gap: 1rem;
}
.brand-col-2 .brand-name {
	font-size: 1.15rem;
	line-height: 1.25;
}
.brand-col-2 .brand-bonus {
	font-size: 1.02rem;
	line-height: 1.25;
}
.brand-col-2 .brand-terms {
	font-size: 0.78rem;
	line-height: 1.1;
}
}

@media (max-width: 599px) {
.brand-row {
	grid-template-columns: 1fr;
	grid-template-areas: "logo" "info" "methods" "button";
	gap: 0.5rem;
	justify-items: center;
	align-items: center;
	text-align: center;
	margin: 0 auto 1.5rem auto;
	padding: 2rem 0;
}
.brand-col-1 img {
	margin-bottom: 0.1rem;
}
.brand-col-2 .brand-name {
	font-size: 1.2rem;
}
.brand-methods-grid {
	max-width: 200px;
}
.brand-col-3 {
	margin-top: 0.7rem;
}
.brand-col-4 {
	margin-top: 1.5rem;
}
}
.brand-btn.green-btn, .blog-action-link a.green-btn {
	background: linear-gradient(to bottom, #baf3c2, #72d47f);
	border-color: #6cbf73;
	color: #000;
	text-shadow: 0.05rem 0.05rem rgba(0, 0, 0, 0.25);
}
.brand-btn.green-btn:hover, .blog-action-link a.green-btn:hover {
	border-color: #82d990;
	box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.brand-btn.green-btn:focus-visible, .blog-action-link a.green-btn:focus-visible {
	outline: 0.15rem solid #0a6c2f;
	outline-offset: 0.15rem;
}
.brand-btn.blue-btn, .blog-action-link a.blue-btn {
	background: linear-gradient(to bottom, #e6f3ff, #a7d3ff);
	border-color: #7bbef1;
	color: #000;
	text-shadow: 0.05rem 0.05rem rgba(0, 0, 0, 0.25);
}
.brand-btn.blue-btn:hover, .blog-action-link a.blue-btn:hover {
	border-color: #8fcaf6;
	box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.brand-btn.blue-btn:focus-visible, .blog-action-link a.blue-btn:focus-visible {
	outline: 0.15rem solid #035c8f;
	outline-offset: 0.15rem;
}
.topwidget {
	position: relative;
	width: 100%;
	height: auto;
	margin-bottom: 30px;
}

.topwidget::after {
	content: "";
	display: block;
	clear: both;
}

.topbox {
	border-bottom: 1px dotted #f2f2f2;
	height: 60px;
	padding-bottom: 6px;
	padding-top: 6px;
	width: 100%;
	line-height: 60px;
	margin-bottom: 5px;
	position: relative;
	float: left;
	display: block;
	border-bottom-color: #ccc;
}
.topname {
	color: #252525;
	float: left;
	font-weight: 400;
	height: 23px;
	line-height: 23px;
}
.topname a {
	color: #252525;
	text-decoration: none;
}
.topname:hover {
	color: #333;
	text-decoration: underline;
}
.topicon {
	background-position: 0 0;
	border-radius: 3px;
	width: 50px;
	height: 50px;
	float: left;
	background-repeat: no-repeat;
	background-attachment: scroll;
	margin-right: 10px;
}
.topicon:hover {
	opacity: .8;
}
.topbonus {
	color: #093;
}
.toprating {
	float: left;
	height: 18px;
	line-height: 18px;
	margin-left: 55px;
	position: relative;
	display: inline-block;
	width: auto;
	clear: both;
}
.toprating a {
	color: #333;
	font-weight: 400;
	margin-left: 5px;
	text-decoration: underline;
}
.toprating a:hover {
	text-decoration: underline;
}
.topstars5 {
	background: url('../images/starsfourhalf.webp') left center no-repeat;
	height: 18px;
	width: 78px;
	float: left;
	margin: 1px 2px 0 0;
	position: relative;
}
.topbox-cta {
	position: absolute;
	top: 10px;
	right: 0;
	height: auto;
	width: auto;
}

.topbox-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 35px;
	min-width: 50px;
	padding: 0.4rem 0.8rem;
	background: linear-gradient(to bottom, #e6f3ff, #c2e0f7);
	color: #000;
	text-transform: uppercase;
	border-radius: 5px;
	border: 1px solid #a5c7e8;
	letter-spacing: 0.05em;
	font-size: 0.85em;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	touch-action: manipulation;
	transition: all 0.25s ease;
	box-shadow: 0 6px 14px rgba(0,0,0,0.12), 0 2px 4px rgba(0,0,0,0.08);
}

.topbox-btn:link,
.topbox-btn:visited,
.topbox-btn:hover,
.topbox-btn:active {
	color: #000;
	text-decoration: none;
}

.topbox-btn:hover,
.topbox-btn:active {
	background: linear-gradient(to bottom, #c2e0f7, #e6f3ff);
	border-color: #b5d6f2;
	box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}

.topbox-btn:focus {
	outline: none;
}

.topbox-btn:focus-visible {
	outline: 0.15rem solid #035c8f;
	outline-offset: 0.1rem;
}
#icon-20bet, #icon-22bet, #icon-sportbet, #icon-mybookie, #icon-xbet, #icon-bcgame, #icon-everygame, #icon-casinoaction, #icon-slotocash, #icon-grandmondial, #icon-goldentiger, #icon-miamiclub, #icon-fairgo, #icon-desertnights, #icon-zodiaccasino {
	background-position: center center;
	background-repeat: no-repeat;
	width: 45px;
	height: 45px;
}
#icon-20bet {
	background-image: url('../images/1-20bet.webp');
}
#icon-22bet {
	background-image: url('../images/1-22bet.webp');
}
#icon-sportbet {
	background-image: url('../images/1-sportbet.webp');
}
#icon-mybookie {
	background-image: url('../images/1-mybookie.webp');
}
#icon-xbet {
	background-image: url('../images/1-xbet.webp');
}
#icon-bcgame {
	background-image: url('../images/1-bc-game.webp');
}
#icon-everygame {
	background-image: url('../images/1-everygame.webp');
}
#icon-casinoaction {
	background-image: url('../images/1-casinoaction.webp');
}
#icon-slotocash {
	background-image: url('../images/1-slotocash.webp');
}
#icon-grandmondial {
	background-image: url('../images/1-grandmondial.webp');
}
#icon-goldentiger {
	background-image: url('../images/1-goldentiger.webp');
}
#icon-miamiclub {
	background-image: url('../images/1-miamiclub.webp');
}
#icon-fairgo {
	background-image: url('../images/1-fairgo.webp');
}
#icon-desertnights {
	background-image: url('../images/1-desertnights.webp');
}
#icon-zodiaccasino {
	background-image: url('../images/1-zodiaccasino.webp');
}

.highlight {
    border-radius: 0.50rem;
    position: relative;
    clear:both;
    width: 100%;
    max-width: 25rem;
    margin: 3rem auto 3.7rem;
    padding: 1.45rem 1.6rem 1.55rem 3.5rem;
    background: linear-gradient(to bottom, #fafcff 0%, #e7f1fa 55%, #d3e4f4 100%);
    box-shadow: 0 4px 14px rgba(0,0,0,0.10);
    text-align: left;
    overflow: visible;
    isolation: isolate;
}

.highlight:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.highlight::before {
    content: "\201C";
    position: absolute;
    top: 1.05rem;
    left: 1.05rem;
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 2.7rem;
    font-weight: 700;
    font-style: normal;
    color: #485866;
    opacity: 0.25;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

.highlight p {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.58;
    color: #243846;
    position: relative;
    z-index: 2;
}

.highlight-2,
.highlight-3 {
    position: relative;
    width: 100%;
    border-radius: 0.15rem;
    background: #f4f2ee;
    border: 1px solid #e3e1dc;
    color: #000;
    margin: 2.5rem auto;
    clear: both;
}

/* Padding */
.highlight-2 {
    padding: 1.45rem 1.15rem 1rem;
}

.highlight-3.has-title {
    padding: 1.8rem 1.15rem 1.8rem;


}
.highlight-3.no-title {
    padding: 1.1rem 1.15rem 1rem;
}
.highlight-3.has-title > *:last-child,
.highlight-3.no-title > *:last-child {
    margin-bottom: 0.2rem;
}

.highlight-3 figure.img-center {
  margin-bottom: 0.9rem;
}

.highlight-3 figure.img-center figcaption {
  margin-bottom: 1rem;
}

.highlight-2 h1, .highlight-2 h2, .highlight-2 h3,
.highlight-3 h1, .highlight-3 h2, .highlight-3 h3,
.highlight-2 .upper-title,
.highlight-3 .upper-title,
.highlight-2 .clear-title,
.highlight-3 .clear-title,
.highlight-2 .star-title,
.highlight-3 .star-title {
    display: block;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    max-width: 100%;
    margin: 0 0 0.85rem 0;
    padding: 0;
            background-image: none !important;

}

/* Highlight-2 otsikko */
.highlight-2 h1,
.highlight-2 h2,
.highlight-2 h3,
.highlight-2 .upper-title,
.highlight-2 .clear-title {
    margin-top: 0.55rem;
    margin-bottom: 1.35rem;
    font-size: 1.32rem;
    line-height: 1.33;
}

@media (max-width: 480px) {
    .highlight-2 h1,
    .highlight-2 h2,
    .highlight-2 h3,
    .highlight-2 .upper-title,
    .highlight-2 .clear-title {
        font-size: 1.25rem;
        line-height: 1.32;
    }
}

.highlight-2 h2 {
    padding-bottom: 0.75rem;
    background-position: left calc(100% - 0.35rem);
}

.highlight-3 h1,
.highlight-3 h2,
.highlight-3 h3,
.highlight-3 .upper-title,
.highlight-3 .clear-title {
    font-size: 1.22rem;
    line-height: 1.38;
    margin-bottom: 1.35rem;
}

.content-narrow {
	width: 100%;
}

@media (min-width: 768px) {
	.content-narrow {
		max-width: 37.5rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.did-you-box,
.quick-tips-box,
.look-closer-box,
.smart-fact-box {
	border-radius: 0.50rem;
	position: relative;
	width: 100%;
	max-width: 27rem;
	margin: 3rem auto 3.7rem;
	padding: 1.25rem 1.8rem 1.4rem 4.2rem;
	text-align: left;
	font-size: 1rem;
	box-shadow: 0 4px 14px rgba(0,0,0,0.10);
	transition: box-shadow 0.25s ease;
	overflow: visible;
	isolation: isolate;
}

.did-you-box:hover,
.quick-tips-box:hover,
.look-closer-box:hover,
.smart-fact-box:hover {
	box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.did-you-box::before,
.quick-tips-box::before,
.look-closer-box::before,
.smart-fact-box::before {
	content: "";
	position: absolute;
	top: 1.05rem;
	left: 1.15rem;
	width: 2.1rem;
	height: 2.1rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	opacity: 0.70;
	pointer-events: none;
	z-index: 1;
}

.did-you-box {
	background: linear-gradient(to bottom, #fafafa 0%, #e8f1f6 55%, #d5e7ef 100%);
}

.did-you-box::before {
	background-image: url('../images/info-blue.webp');
	width: 1.9rem;
	height: 1.9rem;
	border-radius: 0.3rem;
	opacity: 0.55;
}

.did-you-title {
	color: #395b6a;
	font-weight: 700;
	margin-bottom: 0.6rem;
	font-size: 1.05rem;
}

.quick-tips-box {
	background: linear-gradient(to bottom, #faf8f3 0%, #f3e7d9 55%, #ebdcc9 100%);
}

.quick-tips-box::before {
	background-image: url('../images/lightbulb.webp');
}

.quick-tips-title {
	color: #8b5e3c;
	font-weight: 700;
	margin-bottom: 0.6rem;
	font-size: 1.05rem;
}

.look-closer-box {
	background: linear-gradient(to bottom, #f5fbf7 0%, #e3f2e9 55%, #d4e8dd 100%);
}

.look-closer-box::before {
	background-image: url('../images/magnifier.webp');
}

.look-closer-title {
	color: #0a6a3d;
	font-weight: 700;
	margin-bottom: 0.6rem;
	font-size: 1.05rem;
}

.smart-fact-box {
	background: linear-gradient(to bottom, #f4fbf4 0%, #e5f5e3 55%, #d6edd5 100%);
}

.smart-fact-box::before {
	background-image: url('../images/puzzle.webp');
}

.smart-fact-title {
	color: #056326;
	font-weight: 700;
	margin-bottom: 0.6rem;
	font-size: 1.05rem;
}

.did-you-box p,
.quick-tips-box p,
.look-closer-box p,
.smart-fact-box p {
	color: #222;
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.50;
	position: relative;
	z-index: 2;
}

.rev-rating {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	text-align: center;
	font-weight: 600;
	margin: 5rem 0 2rem 0;
	font-size: 1.2rem;
	line-height: 1.35;
}

.blog-action-link {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	clear: both;
	margin: 2.7rem 0 3.2rem 0;
	isolation: isolate;
}

.blog-action-link a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0.4rem;
	padding: 0.85rem 1.9rem;
	border: 1px solid #d6be33;
	border-radius: 0.3rem;
	background: linear-gradient(to bottom, #ffea66, #ffd633);
	color: #000;
	font-size: 1.3rem;
	line-height: 1.3;
	text-decoration: none;
	text-shadow: 1px 1px rgba(0,0,0,0.15);
	letter-spacing: 0.01rem;
	word-spacing: 0.1em;
	text-align: center;
	box-shadow: 0 8px 22px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.12);
	transition: all 0.25s ease;
	cursor: pointer;
	user-select: none;
	touch-action: manipulation;
}

.blog-action-link a:hover {
	border-color: #e6cf40;
	box-shadow: 0 2px 4px rgba(0,0,0,0.10);
}

.blog-action-link a:active {
	box-shadow: 0 1px 3px rgba(0,0,0,0.2) inset;
}

.blog-action-link a:focus-visible {
	outline: 0.15rem solid #000;
	outline-offset: 0.15rem;
}

.rev-updated {
	display: block;
	width: 100%;
	text-align: center;
	color: #c30;
	font-size: 0.95rem;
	margin: 0 0 3rem 0;
	clear: both;
	line-height: 1.35;
}

@media (max-width: 600px) {
	.rev-rating {
		font-size: 1.1rem;
	}

	.blog-action-link a {
		font-size: 1.25rem;
		padding: 0.95rem 1.7rem;
		line-height: 1.25;
	}

	.rev-updated {
		font-size: 0.9rem;
		margin-bottom: 2.5rem;
	}
}

.betting-categories {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin: 0 0 20px 0;
	padding: 0;
	list-style: none;
}

/* --- Linkit / rivit --- */
.betting-categories a {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 50px;
	padding: 0.6rem 0.25rem;
	text-decoration: none;
	color: #1a1a1a;
	background-color: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	transition: background-color 0.08s ease;
	box-sizing: border-box;
}

.betting-categories a:hover {
	background-color: rgba(30, 100, 255, 0.06);
	text-decoration: none;
}

.betting-categories a:hover,
.betting-categories a:hover .betting-category-text,
.betting-categories a:hover .betting-category-icon {
	text-decoration: none;
}

.betting-categories a:visited {
	color: #1a1a1a;
}
.betting-categories a:visited .betting-category-text {
	color: #1a1a1a;
}

.betting-categories a:focus,
.betting-categories a:focus-visible {
	outline: none;
}
.betting-categories a:focus-visible {
	background-color: rgba(30, 100, 255, 0.06);
	box-shadow: 0 0 0 3px rgba(30, 100, 255, 0.25);
	text-decoration: none;
}

.betting-categories a:active {
	background-color: rgba(30, 100, 255, 0.06);
	text-decoration: none;
}

.betting-category-icon {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	margin-right: 0.75rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.betting-category-text {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-decoration: none;
}

@media (min-width: 631px) {
	.betting-categories {
		grid-template-columns: 1fr 1fr;
		column-gap: 1rem;
	}
}
.icon-soccer {
	background-image: url('../images/icon-soccer.webp');
}
.icon-basketball {
	background-image: url('../images/icon-basketball.webp');
}
.icon-golf {
	background-image: url('../images/icon-golf.webp');
}
.icon-hockey {
	background-image: url('../images/icon-icehockey.webp');
}
.icon-baseball {
	background-image: url('../images/icon-baseball.webp');
}
.icon-tennis {
	background-image: url('../images/icon-tennis.webp');
}
.icon-horse {
	background-image: url('../images/icon-horseracing.webp');
}
.icon-motor {
	background-image: url('../images/icon-motorsport.webp');
}
.icon-cricket {
	background-image: url('../images/icon-cricket.webp');
}
.icon-athletics {
	background-image: url('../images/icon-athletics.webp');
}
.icon-winter {
	background-image: url('../images/icon-wintersport.webp');
}
.icon-rugby {
	background-image: url('../images/icon-rugby.webp');
}
.icon-snooker {
	background-image: url('../images/icon-snooker.webp');
}
.icon-boxing {
	background-image: url('../images/icon-boxing.webp');
}
.icon-am-football {
	background-image: url('../images/icon-am-football.webp');
}
.icon-volleyball {
	background-image: url('../images/icon-volleyball.webp');
}

.extra-categories-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(110px, 1fr));
	gap: 8px;
	margin: 20px 0;
}

.extra-categories-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	background-color: #fff;
	padding: 14px 10px;
	border-radius: 5px;
	border: 1px solid rgba(0,0,0,0.04);
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: background-color 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
	isolation: isolate;
	color: inherit;
}

.extra-categories-link:hover {
	background-color: rgba(30, 100, 255, 0.06);
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transform: none;
	text-decoration: none;
}

.extra-categories-link:hover,
.extra-categories-link:hover .extra-categories-text,
.extra-categories-link:hover .extra-categories-icon {
	text-decoration: none;
}

.extra-categories-link:visited {
	color: inherit;
}
.extra-categories-link:visited .extra-categories-text {
	color: #111;
}

.extra-categories-link:focus,
.extra-categories-link:focus-visible {
	outline: none;
}
.extra-categories-link:focus-visible {
	background-color: rgba(30, 100, 255, 0.06);
	box-shadow: 0 0 0 3px rgba(30, 100, 255, 0.25), 0 2px 8px rgba(0,0,0,0.08);
	text-decoration: none;
}

.extra-categories-link:active {
	background-color: rgba(30, 100, 255, 0.06);
	text-decoration: none;
}

.extra-categories-icon {
	width: 80px;
	height: 80px;
	border-radius: 5px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 8px;
	image-rendering: -webkit-optimize-contrast;
}

.extra-categories-text {
	font-size: 0.85rem;
	font-weight: 600;
	text-align: center;
	color: #111;
	line-height: 1.3;
	text-decoration: none;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (max-width: 360px) {
	.extra-categories-grid {
		grid-template-columns: repeat(2, minmax(120px, 1fr));
	}
	.extra-categories-link {
		padding: 12px 8px;
	}
	.extra-categories-icon {
		width: 72px;
		height: 72px;
	}
	.extra-categories-text {
		font-size: 0.82rem;
	}
}

@media (min-width: 768px) {
	.extra-categories-grid {
		grid-template-columns: repeat(3, minmax(130px, 1fr));
	}
	.extra-categories-link {
		padding: 16px 12px;
	}
	.extra-categories-text {
		font-size: 0.9rem;
	}
}

@media (min-width: 1200px) {
	.extra-categories-grid {
		grid-template-columns: repeat(3, minmax(150px, 1fr));
	}
}
/* ICON IDs */
#ico-skrill, #ico-neteller, #ico-paypal, #ico-creditcards, #ico-wiretransfer, #ico-bookmakers, #ico-guides, #ico-props, #ico-asianhandicap, #ico-mobile, #ico-valuebet, #ico-sports, #ico-banking, #ico-casinos, #ico-slots, #ico-roulette, #ico-blackjack, #ico-videopoker {
	background-position: center center;
	background-repeat: no-repeat;
}
#ico-skrill {
	background-image: url('../images/icon-skrill.webp');
}
#ico-neteller {
	background-image: url('../images/icon-neteller.webp');
}
#ico-paypal {
	background-image: url('../images/icon-paypal.webp');
}
#ico-creditcards {
	background-image: url('../images/icon-creditcards.webp');
}
#ico-wiretransfer {
	background-image: url('../images/icon-wiretransfer.webp');
}
#ico-bookmakers {
	background-image: url('../images/icon-bookmakers.webp');
}
#ico-guides {
	background-image: url('../images/icon-guides.webp');
}
#ico-props {
	background-image: url('../images/icon-props.webp');
}
#ico-asianhandicap {
	background-image: url('../images/icon-asianhandicap.webp');
}
#ico-mobile {
	background-image: url('../images/icon-mobilebetting.webp');
}
#ico-valuebet {
	background-image: url('../images/icon-valuebet.webp');
}
#ico-sports {
	background-image: url('../images/icon-sports.webp');
}
#ico-banking {
	background-image: url('../images/icon-banking.webp');
}
#ico-casinos {
	background-image: url('../images/icon-casinos.webp');
}
#ico-slots {
	background-image: url('../images/icon-slots.webp');
}
#ico-roulette {
	background-image: url('../images/icon-roulette.webp');
}
#ico-blackjack {
	background-image: url('../images/icon-blackjack.webp');
}
#ico-videopoker {
	background-image: url('../images/icon-videopoker.webp');
}
/* ICON IDT */
#ico-soccer, #ico-tennis, #ico-icehockey, #ico-golf, #ico-baseball, #ico-basketball, #ico-horseracing, #ico-wintersport, #ico-motorsport, #ico-athletics, #ico-cricket, #ico-rugby, #ico-snooker, #ico-boxing, #ico-am-football, #ico-volleyball {
	background-position: center center;
	background-repeat: no-repeat;
}
#ico-soccer {
	background-image: url('../images/icon-soccer.webp');
}
#ico-tennis {
	background-image: url('../images/icon-tennis.webp');
}
#ico-icehockey {
	background-image: url('../images/icon-icehockey.webp');
}
#ico-golf {
	background-image: url('../images/icon-golf.webp');
}
#ico-baseball {
	background-image: url('../images/icon-baseball.webp');
}
#ico-basketball {
	background-image: url('../images/icon-basketball.webp');
}
#ico-horseracing {
	background-image: url('../images/icon-horseracing.webp');
}
#ico-wintersport {
	background-image: url('../images/icon-wintersport.webp');
}
#ico-motorsport {
	background-image: url('../images/icon-motorsport.webp');
}
#ico-athletics {
	background-image: url('../images/icon-athletics.webp');
}
#ico-cricket {
	background-image: url('../images/icon-cricket.webp');
}
#ico-rugby {
	background-image: url('../images/icon-rugby.webp');
}
#ico-snooker {
	background-image: url('../images/icon-snooker.webp');
}
#ico-boxing {
	background-image: url('../images/icon-boxing.webp');
}
#ico-am-football {
	background-image: url('../images/icon-am-football.webp');
}
#ico-volleyball {
	background-image: url('../images/icon-volleyball.webp');
}

ul {
	padding-left: 27px;
	margin-bottom: 10px;
	padding-right: 20px;
	margin-top: 5px;
}
ul li {
	padding: 1px 0;
	margin-bottom: 12px;
}
ol {
	padding-left: 29px;
	margin-bottom: 30px;
	padding-right: 20px;
}
ol li {
	padding: 1px 0;
	margin-bottom: 12px;
}
ul.ul-list li, 
ol.ol-list li {
	font-size: 1em;
	line-height: 1.5;
	color: #000;
	margin-bottom: 7px;
	font-weight: 400 !important;
}

ul.ul-list {
	list-style-type: none;
	padding: 0;
	margin-top: 1.5rem;
	margin-bottom: 2rem;
}

ul.ul-list li {
	background-size: 14px 14px;
	padding: 5px 15px 5px 24px;
	background-image: url('../images/blue-bullet.webp');
	background-repeat: no-repeat;
	background-position: 3px 10px;
}

ul.ul-list li strong,
ul.ul-list li .txt-bold,
ol.ol-list li strong,
ol.ol-list li .txt-bold {
	font-weight: 600 !important;
}

ol.ol-list {
	counter-reset: item;
	list-style-type: none;
	margin-left: 0;
	padding-left: 0;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
ol.ol-list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}
ol.ol-list li:before {
	content: counter(item) " ";
	counter-increment: item;
	color: #14283d;
	background: #f9dd94;
	box-shadow: 0 2px 5px rgba(0,0,0,0.15);
	width: 1.8rem;
	height: 1.8rem;
	line-height: 1.8rem;
	text-align: center;
	border-radius: 50%;
	font-size: 1rem;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 auto;
	margin-right: 10px;
}
ol.ol-list li span {
	display: inline;
	flex: 1;
}
ol.ol-list li>span:not(.txt-600){margin-left:0}
ol.ol-list li strong {
	font-weight: 600;
}
.text-tooltip {
	cursor: pointer;
	position: relative;
	text-decoration: none;
	line-height: 1.2rem;
	border-bottom: 1px dashed #000;
	z-index: 5;
}
.text-tooltip-info {
	visibility: hidden;
	position: absolute;
	bottom: 125%;
	left: 50%;
	transform: translateX(-50%);
	background-color: #333;
	color: #fff;
	text-align: center;
	border-radius: 0.3rem;
	padding: 0.5rem;
	font-size: 1rem;
	line-height: 1.3rem;
	width: 12.5rem;
	min-width: 9.4rem;
	max-width: 90vw;
	box-sizing: border-box;
	word-wrap: break-word;
	white-space: normal;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 50;
	pointer-events: none;
}
.text-tooltip:hover .text-tooltip-info, .text-tooltip:focus-within .text-tooltip-info {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

@media (max-width: 600px) {
.text-tooltip-info {
	width: 80%;
	font-size: 0.9rem;
	line-height: 1.4;
	left: 50%;
	transform: translateX(-50%);
	max-width: calc(100% - 1rem);
}
}
@media (max-width: 400px) {
.text-tooltip-info {
	width: 90%;
	font-size: 0.85rem;
	line-height: 1.3;
}
}
.back-top {
	background-image: url(../images/back-top.webp);
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	float: right;
	width: 2.45rem;
	height: 2.65rem;
}
.news-box {
	margin-bottom: 1.8rem;
	padding-left: 3.1rem;
	position: relative;
	line-height: 1.25rem;
	background-image: url('../images/blog-post.webp');
	background-repeat: no-repeat;
	background-position: left 0;
}
.news-title {
	display: block;
	margin: 0.2rem 0 0.05rem 0;
	font-weight: 600;
	text-decoration: none;
	font-size: 0.9rem;
	position: relative;
	top: 0.05rem;
}
.news-title:hover {
	text-decoration: underline;
}
.news-date-1 {
	font-size: 0.8rem;
	color: #333;
	display: block;
	margin: 0;
}
.news-date-2 {
	display: flex;
	align-items: center;
	width: fit-content;
	font-size: 0.85rem;
	color: #333;
	margin: 1.25rem 0 0.15rem 0;
	padding-left: 0.15rem;
}
.news-date-2::before {
	content: url('../images/date.webp');
	display: inline-block;
	margin-right: 0.45rem;
	position: relative;
	top: 0.2rem;
}
.news-date-2 .news-author {
	display: inline-block;
	white-space: nowrap;
	margin-left: 0.65rem;
	position: relative;
}
.news-date-2 .news-author::before {
	content: "\00B7";
	margin-right: 0.55rem;
	color: #666;
	font-weight: 700;
}
.news-date-2 .news-author a {
	color: #006;
	text-decoration: none;
}
.news-date-2 .news-author a:hover {
	text-decoration: underline;
}
.blue-element .news-date-2 {
	display: flex;
	align-items: center;
	width: fit-content;
	font-size: 0.85rem;
	color: #f0f0f0;
	margin: -0.95rem auto 1.9rem auto;
}
.blue-element .news-date-2::before {
	content: url('../images/author.webp');
	display: inline-block;
	margin-right: 0.3rem;
	position: relative;
	top: 0.25rem;
}
.blue-element .news-date-2 .news-author {
	display: inline-block;
	white-space: nowrap;
	margin-left: 0.5rem;
	position: relative;
}
.blue-element .news-date-2 .news-author::before {
	content: "\00B7";
	margin-right: 0.5rem;
	color: #d0eaff;
	font-weight: 700;
}
.blue-element .news-date-2 .news-author a {
	color: #d0eaff;
	text-decoration: none;
}
.blue-element .news-date-2 .news-author a:hover {
	text-decoration: underline;
}
.table-reset {
	border-collapse: collapse;
	border-spacing: 0;
	float: left;
	position: relative;
	width: 100%;
	height: auto;
	color: #000;
	margin-bottom: 30px;
	font-size: .85em;
}
.table-reset td {
	border: 2px solid white;
	padding: 1px;
	text-align: center;
	vertical-align: middle;
}
.table-reset td h2 {
	margin: 0;
	padding: 7px;
	line-height: 1.6em;
	display: block;
}
.table-reset td h3 {
	margin: 0;
	padding: 6px 4px 6px 4px;
	line-height: 1.5em;
	display: block;
}
.ahc-h2 {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	margin: 0;
	color: #fff;
	background-color: #934143;
	text-transform: none;
	font-size: 1.05em;
	font-weight: 600;
	background-image: none;
	margin-bottom: 1px;
	margin: 0;
	margin-bottom: 1px;
}
.ahc-h3 {
	border-style: none;
	padding: 4px 5px;
	margin: 0;
	color: #fff;
	background-color: #176862;
	text-transform: none;
	font-size: 1em;
	background-image: none;
	font-weight: normal;
	min-width: 100%;
	max-width: 100%;
}
.ahc-h4 {
	padding: 5px 2px 5px 2px;
	margin: 0;
	color: #000;
	font-size: .75em;
	font-weight: 700;
	line-height: 1.7em;
}
.responsive-break {
	white-space: nowrap;
}
@media (max-width: 480px) {
.responsive-break {
	display: block;
	white-space: normal;
}
}
.demo-game {
	display: block;
	position: relative;
	width: 530px;
	max-width: 100%;
}
.demo-game:before {
	content: '';
	display: block;
	padding-top: 56%;
}
.demo-game iframe {
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.geo-show {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px dashed #ff9b9b;
	border-radius: 5px;
	padding: 10px 15px;
	margin: 25px 0;
	width: 100%;
	background-color: #ffe6e6;
}
.geo-show p {
	margin: 0;
	padding-left: 30px;
	background-image: url('../images/icon-no.webp');
	background-position: 2px 3px;
	background-repeat: no-repeat;
}

#toc {
border: 1px solid #ccc;
border-radius: 5px;
background: #fafafa;
box-shadow: 0 0 5px rgba(0,0,0,0.05);
width: 100%;
margin-bottom: 1.25rem;
clear:both;
}

#toc-heading {
position: relative;
display: block;
width: 100%;
padding: 0.65rem 0.75rem;
padding-right: 2.2rem;
background-color: #f2f2f2;
border: 0;
border-bottom: 1px solid #ddd;
border-radius: 5px 5px 0 0;
color: #333;
text-align: left;
cursor: pointer;
font: inherit;
}

#toc[data-toc-open=false] #toc-heading {
border-radius: 5px;
}

#toc[data-toc-open=true] #toc-heading {
border-radius: 5px 5px 0 0;
}

#toc-heading > span {
display: block;
font-weight: 600;
margin: 0;
padding-left: 0.32rem;
}

#toc-heading:focus-visible {
outline: none;
box-shadow: 0 0 0 3px rgba(43, 87, 132, 0.22);
}

#toc-toggle {
position: absolute;
top: 50%;
right: 0.75rem;
transform: translateY(-50%);
display: flex;
align-items: center;
justify-content: center;
width: 1.25rem;
height: 1.25rem;
}

#toggle-icon {
position: relative;
width: 1rem;
height: 1px;
background-color: #333;
transition: all 0.3s ease;
}

#toggle-icon::before,
#toggle-icon::after {
content: '';
position: absolute;
left: 0;
width: 1rem;
height: 1px;
background-color: #333;
transition: all 0.3s ease;
}

#toggle-icon::before { top: -0.35rem; }
#toggle-icon::after { top: 0.35rem; }

/* X state */
#toggle-icon.close {
background-color: transparent;
}

#toggle-icon.close::before {
top: 0;
transform: rotate(45deg);
}

#toggle-icon.close::after {
top: 0;
transform: rotate(-45deg);
}

/* List */
#toc ol {
margin: 0;
padding: 0.7rem 1.05rem;
padding-bottom: calc(0.7rem + 5px);
list-style: none;
}

#toc ol li {
margin-bottom: 0.42rem;
line-height: 1.3;
}

#toc a {
font-size: 0.98rem;
}

#toc ol li:last-child {
margin-bottom: 0;
}

#toc a,
#toc a:visited {
color: #2b5784;
text-decoration: none;
}

#toc a:hover {
text-decoration: underline;
text-underline-offset: 2px;
}

#toc a:focus-visible {
outline: none;
text-decoration: underline;
text-underline-offset: 2px;
box-shadow: 0 0 0 3px rgba(43, 87, 132, 0.22);
border-radius: 3px;
}

#toc a:active {
opacity: 0.75;
}

@media (max-width: 600px) {
#toc ol {
padding: 0.6rem 0.9rem;
padding-bottom: calc(0.6rem + 5px);
}

#toc ol li {
margin-bottom: 0.36rem;
line-height: 1.28;
}

#toc a {
font-size: 0.92rem;
}
}

/* Site info */
ul.list-pros, ul.list-cons {
	padding: 0.10rem 0 0.10rem 0.2rem;
	margin-bottom: 0.50rem;
	list-style: none !important;
}
ul.list-pros li {
	background-image: url('../images/ico-yes.webp');
	background-position: left 0.25rem;
	background-repeat: no-repeat;
	background-size: 1.15rem 1.15rem;
/* 18px &rarr; 1.15rem */padding-left: 1.75rem;
}
ul.list-cons li {
	background-image: url('../images/ico-no.webp');
	background-position: left 0.25rem;
	background-repeat: no-repeat;
	background-size: 1.15rem 1.15rem;
/* 18px &rarr; 1.15rem */padding-left: 1.75rem;
}

.box-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
}

.box-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background: #fff;
	padding: 0.75rem 1rem;
	border-radius: 0.1rem;
	border: 1px solid rgba(47,93,102,.12);
	box-shadow: 0 0.13rem 0.38rem rgba(0,0,0,0.08);
	transition: background-color 0.12s ease, box-shadow 0.12s ease;
	overflow: hidden;
	box-sizing: border-box;
	text-decoration: none;
	color: #1a1a1a;
}

.box-item:link,
.box-item:visited,
.box-item:active {
	color: #1a1a1a;
	text-decoration: none;
}

.box-item:hover {
	background-color: rgba(30, 100, 255, 0.06);
	box-shadow: 0 0.13rem 0.38rem rgba(0,0,0,0.08);
	text-decoration: none;
}

.box-item:hover,
.box-item:hover .box-title,
.box-item:hover .box-description {
	text-decoration: none;
}

.box-item:focus,
.box-item:focus-visible {
	outline: none;
}
.box-item:focus-visible {
	background-color: rgba(30, 100, 255, 0.06);
	box-shadow: 0 0 0 3px rgba(30, 100, 255, 0.25), 0 0.13rem 0.38rem rgba(0,0,0,0.08);
	text-decoration: none;
}

.box-item:active {
	background-color: rgba(30, 100, 255, 0.06);
	text-decoration: none;
}

.box-text {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	margin-right: 1rem;
	min-width: 0;
}

.box-title {
	font-weight: 600;
	font-size: 1rem;
	margin-bottom: 0.25rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #1a1a1a;
	text-decoration: none;
}

.box-description {
	margin: 0;
	font-size: 0.90rem;
	line-height: 1.30rem;
	color: #444;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	text-decoration: none;
}

.box-icon {
	width: 5rem;
	height: 5rem;
	flex-shrink: 0;
	border-radius: 0.3rem;
	object-fit: contain;
}

@media (min-width: 631px) {
	.box-item {
		width: calc(50% - 8px);
	}
}

@media (hover: none) {
	.box-item:hover {
		background-color: transparent;
		box-shadow: 0 0.13rem 0.38rem rgba(0,0,0,0.08);
	}
	.box-item:active {
		background-color: rgba(30, 100, 255, 0.06);
	}
}
.show-more-content {
	max-height: 6.25rem; /* 100px */;
	overflow: hidden;
	transition: max-height 0.4s ease;
}
.show-more-btn {
	display: block;
	width: fit-content;
	margin: 1rem 0 1rem auto;
	padding: 0.25rem 0.75rem;
	background-color: #ccc;
	color: #000;
	cursor: pointer;
	border-radius: 0.25rem;
	font-size: 0.9rem;
	user-select: none;
	transition: background-color 0.25s ease;
}
.show-more-btn:hover {
	background-color: #b3b3b3;
}

.emoji {
	font-size: 1rem;
	vertical-align: middle;
	margin-right: 0.05rem;
	display: inline-block;
	line-height: 1;
	white-space: nowrap;
}
.emoji-large {
  font-size: 1.5rem;
  display: inline-block;
  line-height: 1;
  vertical-align: -0.15em;
  margin-right: 0.05rem;
  white-space: nowrap;
}
.upper-title .emoji-large {
  font-size: 1.4rem;
  display: inline-block;
  line-height: 1;
  vertical-align: 0.03em;
  margin-right: 0.15rem;
}
.emoji-own-row {
	display: block;
	font-size: 1.50rem;
	text-align: left;
	margin-bottom: 0.25rem;
	line-height: 1.2;
}
.pros {
	border-radius: 0.50rem;
	border: 1px solid #bfffbf;
	background: linear-gradient(135deg,#e9fce9 0,#f5fff5 100%);
	padding: 1.25rem 1.25rem 0.65rem 0.75rem;
	display: block;
	width: 100%;
	box-sizing: border-box;
	color: #2e7d32;
	box-shadow: 0 0.15rem 0.30rem rgba(0,0,0,0.05);
}
.cons {
	border-radius: 0.50rem;
	border: 1px solid #ffd6d6;
	background: linear-gradient(135deg,#ffecec 0,#fff8f8 100%);
	padding: 1.25rem 1.25rem 0.65rem 0.75rem;
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin-top: 0.95rem;
	color: #c62828;
	box-shadow: 0 0.15rem 0.30rem rgba(0,0,0,0.05);
}
.basic-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow-x: auto;
	display: block;
	margin: 2.50rem 0 3.15rem 0;
	font-size: 1rem;
	color: #333;
	border-radius: 0.30rem 0.30rem 0 0;
	overflow: hidden;
}
.basic-table th, .basic-table td {
	padding: 0.75rem 0.95rem;
	text-align: left;
	vertical-align: top;
}
.basic-table th {
	background: linear-gradient(to top,#4e7685 0,#5c8797 100%);
	color: #fff;
	font-size: 0.90rem;
	border-top: 0.05rem solid #4e7685;
	border-left: 0.05rem solid #4e7685;
	border-right: 0.05rem solid #4e7685;
	padding: 0.50rem 0.95rem;
	line-height: 1.4;
}
.basic-table th:first-child {
	border-top-left-radius: 0.30rem;
}
.basic-table th:last-child {
	border-top-right-radius: 0.30rem;
}
.basic-table td {
	border-top: 0.05rem solid #ddd;
	border-right: 0;
}
.basic-table tr:nth-of-type(even) { background-color: #f9f9f9; }
.basic-table tr:nth-of-type(odd) { background-color: #fff; }
.basic-table tr:hover {
	background-color: #f1f1f1;
}
.basic-table td:first-child {
	font-weight: 600;
	font-size: 0.95rem;
}
.basic-table tr:last-child td {
	border-bottom: 1px solid #ddd;
}
.basic-table img[src*="stars"] {
	width: 72px;
	height: 14px;
	object-fit: contain;
margin-top: 2px;
	margin-bottom: 5px;
	}

.basic-table.table-center th,
.basic-table.table-center td {
    text-align: center;
}

.basic-table.table-center td:first-child {
    text-align: center;
    font-weight: inherit;
}
.table-2 th {
	background: linear-gradient(to top,#176862 0,#23877f 100%) !important;
	color: #fff;
	border-top: 0.05rem solid #176862;
	border-left: 0.05rem solid #176862;
	border-right: 0.05rem solid #176862;
	padding: 0.50rem 0.95rem;
	line-height: 1.4;
}
@media (max-width: 768px) {
.basic-table {
	overflow: scroll;
	display: block;
	width: 100%;
}
}
.faq-wrapper {
	margin-top: 0.65rem;
	margin-bottom: 1.25rem;
	clear: both;
	display: block;
}

.faq {
	display: block;
	width: 100%;
	margin-bottom: 0.6rem;
	border-radius: 0.35rem;
	overflow: hidden; /* pitää kortin yhtenäisenä */
	background: #F0F3F7;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.faq-question {
	cursor: pointer;
	font-weight: 600;
	padding: 0.85rem 2.1rem 0.85rem 0.75rem;
	position: relative;
	font-size: 0.95rem;
	background-color: #F0F3F7;
	line-height: 1.4;
}

.faq-question:hover {
	background-color: #e0e6ed;
}

.question-text {
	display: inline-block;
	max-width: 90%;
}

.faq-toggle {
	position: absolute;
	top: 50%;
	right: 0.65rem;
	transform: translateY(-50%);
	font-size: 1.45rem;
	color: green;
	width: 1.25rem;
	height: 1.25rem;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}

.faq-answer-container {
	max-height: 0;
	overflow: hidden;
	background-color: #ffffe8;
	transition: max-height 0.3s ease;
	border-top: 1px solid #e3e3c3;
}

.faq-answer-container.open {
	max-height: 62rem;
}

.faq-answer p {
	margin: 0;
	padding: 0.75rem 1rem 0.75rem 0.75rem;
	font-size: 0.95rem;
	line-height: 1.55;
}

.author-wrapper.no-contact .author-contact {
  display: none;
  margin-top: 0;
}

/* Perus: mobile first */
.author-wrapper {
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 0rem;
}

.author-box {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem 1.55rem 1.25rem;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 0.15rem 0.50rem rgba(0,0,0,0.05);
  border-radius: 0.50rem;
  background-color: #fff;
  text-align: center;
}

.author-img {
  width: 4.40rem;
  height: 4.40rem;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 0.30rem;
}

.author-info {
  max-width: 37.50rem;
  text-align: center;
  margin-top: 0;
}

.author-name,
.author-name:link,
.author-name:visited {
	font-weight: 600;
	color: #000;
	text-decoration: none;
}

.author-name:hover {
	color: #000;
	text-decoration: underline;
}

.author-name:focus-visible {
	color: #000;
	text-decoration: underline;
	outline: none;
}

.author-name:focus-visible {
color: #000;
text-decoration: underline;
outline: none;
}

.author-bio {
  margin-top: 0.30rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #555;
}

.author-contact {
  margin-top: 1.90rem;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-right: 0.65rem;
}

.contact-icon:hover {
  color: #1da1f2;
}

@media (min-width: 601px) {
  .author-box {
    flex-direction: row;
    align-items: flex-start;
    padding: 0.95rem 1.25rem 1.25rem 1.25rem;
    text-align: left;
  }

  .author-info {
    text-align: left;
    margin-top: 0;
  }

  .author-img {
    width: 5.00rem;
    height: 5.00rem;
    margin-top: 0;
  }
}
.timeline-box {
	border-radius:
	margin: 1.5rem auto 1.90rem auto;
	padding: 1.55rem 1.90rem 1.25rem 1.90rem;
	background: linear-gradient(135deg, #4e7685, #5e8f9f, #6aa0b2);
	max-width: 44rem;
	width: 100%;
	box-sizing: border-box;
	overflow-wrap: break-word;
	color: #f5f5f5;
	box-shadow: 0 0.25rem 0.65rem rgba(0,0,0,0.08);
}
.timeline-outer {
	border-left: 0.13rem solid #999;
	display: flex;
	flex-direction: column;
	padding-top: 1.25rem;
}
.timeline-card {
	position: relative;
	margin: 0 0 1.25rem 1.90rem;
	padding: 0.65rem 0.95rem;
	background-color: #fafafa;
	color: #000;
	border-radius: 0.30rem;
	width: 95%;
	max-width: 95%;
	box-sizing: border-box;
}
.timeline-info {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	min-width: 0;
}
.timeline-title {
	all: unset;
	display: block;
	font-size: 1.10rem;
	font-weight: 600;
	color: #2f464f;
	margin: 0.95rem 0 0.30rem 0;
	white-space: normal;
	overflow-wrap: break-word;
	max-width: 100%;
	position: relative;
}
.timeline-title::before {
	content: attr(data-number);
	position: absolute;
	width: 1.90rem;
	height: 1.90rem;
	background: #f9dd94;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	left: -4rem;
	top: -0.13rem;
	color: #14283d;
	font-weight: 600;
	font-size: 1.10rem;
	box-shadow: 0 0.13rem 0.30rem rgba(0,0,0,0.15);
	border: 0.13rem solid #d9c678;
	transform: none;
}
@media (max-width: 919px) {

  .center-mob {
    text-align: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  }
.article-container {
	width: 100%;
	margin-top: 1.90rem;
	margin-bottom: 0.95rem;
}
.content-middle-box {
	width: 100%;
	margin-bottom: 1.55rem;
	padding: 0 0 0.65rem 0;
	background-color: #f2f2f2;
}
.content-middle-box a {
	display: block;
	text-decoration: none;
	color: #000;
}
.content-middle-box a:visited {
	color: #000;
}
.content-middle-box a:hover, .content-middle-box a:focus {
	color: #333;
}
.content-middle-box img {
	width: 100%;
	height: auto;
}
.content-middle-box span {
	display: block;
	margin-top: 0.65rem;
	text-align: center;
}
@media (min-width: 600px) {
.content-middle-box {
	float: left;
	width: 48%;
	margin-right: 4%;
}
.content-middle-box:last-child {
	margin-right: 0;
}
}

.cta-table {
	background-color: #f5f5f5;
	border-spacing: 0;
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
	color: #333;
}

.cta-table th,
.cta-table td {
	padding: 0.30rem 0.15rem;
	border-bottom: 0.06rem solid #e0e0e0;
	text-align: center;
	vertical-align: top;
}

/* First column */
.cta-table th:first-child,
.cta-table td:first-child {
	padding-left: 0.45rem;
	padding-right: 0.25rem;
	text-align: left;
}

.cta-table td:first-child {
    font-weight: 400;
    font-size: 0.88rem;
}

/* Last column */
.cta-table th:last-child,
.cta-table td:last-child {
	text-align: center;
	padding-right: 0.30rem;
	padding-left: 0.25rem;
}

.cta-table thead th {
	background: linear-gradient(to top, #e3e3e3 0%, #ededed 100%);
	color: #333;
	font-weight: 600;
	font-size: 0.9rem;
	line-height: 1.4;
	padding-top: 0.45rem;
	padding-bottom: 0.45rem;
	border-top: 0.06rem solid #d5d5d5;
	border-bottom: 0.06rem solid #d0d0d0;
}

.cta-table thead th:first-child {
	border-top-left-radius: 0.25rem;
}

.cta-table thead th:last-child {
	border-top-right-radius: 0.25rem;
}

.cta-table tbody tr:nth-of-type(even) {
    background-color: #fafafa;
}
.cta-table tbody tr:nth-of-type(odd) {
    background-color: #ffffff;
}
.cta-table tbody tr:hover {
	background-color: #f1f1f1;
}
.txt-bold {
	text-transform: none;
	font-weight: 600;
	color: #333;
}
.txt-strong {
	text-transform: none;
	font-weight: 700;
	color: #333;
}
.txt-small {
	font-size: 0.9rem;
	line-height: 1.3rem;
}
.txt-green {
	color: #060 !important;
}
.txt-red {
	color: #c00 !important;
}
.txt-bg-khaki {
	padding: 0.06rem 0.25rem;
	background-color: khaki;
}
.txt-uppercase {
	text-transform: uppercase !important;
}
.txt-center {
	text-align: center !important;
}
.txt-italic {
	font-style: italic;
}
a.white-link, a.white-link:visited {
	color: #ff9;
	text-decoration: underline;
}
a.white-link:hover {
	text-decoration: none;
}
.mt-0 {
	margin-top: 0 !important;
}
.ml-0 {
	margin-left: 0 !important;
}
.mr-0 {
	margin-right: 0 !important;
}
.mt-1 {
	margin-top: 1rem;
}
.mt-2 {
	margin-top: 2rem;
}
.mt-3 {
	margin-top: 3rem;
}
.mt-4 {
	margin-top: 4rem;
}
.mt-5 {
	margin-top: 5rem;
}
.mb-1 {
	margin-bottom: 1rem;
}
.mb-2 {
	margin-bottom: 2rem;
}
.mb-3 {
	margin-bottom: 3rem;
}
.mb-4 {
	margin-bottom: 4rem;
}
.mb-5 {
	margin-bottom: 5rem;
}
.pt-0 {
	padding-top: 0 !important;
}

@media (max-width: 768px) {
  .page-header-1 {
    display: none;
  }
}

@media print{
* {
	background: transparent !important;
	color: black !important;
	text-shadow: none !important;
	filter: none !important;
	-ms-filter: none !important;
}
a, a:visited {
	text-decoration: underline;
}
a[href]:after {
	content: " (" attr(href) ")";
}
abbr[title]:after {
	content: " (" attr(title) ")";
}
.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
	content: "";
}
pre, blockquote {
	border: 1px solid #999;
	page-break-inside: avoid;
}
thead {
	display: table-header-group;
}
tr, img {
	page-break-inside: avoid;
}
img {
	max-width: 100% !important;
}
}

