@charset "UTF-8";
/*
Theme Name: RikaTillsammans
Theme URI:
Author: V.Vinnikov & Jan Bolmeson
Description:  RikaTillsammans 2025
Version: 1.00
Text Domain: rt
*/
/**
 * Local Nunito variable font declarations
 * Using locally hosted fonts for better performance and reduced CLS
 */
@font-face {
  font-family: "Nunito";
  src: url("https://rikatillsammans.se/wp-content/themes/rikatillsammans/assets/fonts/nunito/Nunito-VariableFont_wght.woff2") format("woff2");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("https://rikatillsammans.se/wp-content/themes/rikatillsammans/assets/fonts/nunito/Nunito-Italic-VariableFont_wght.woff2") format("woff2");
  font-weight: 200 1000;
  font-style: italic;
  font-display: swap;
}
/*
 * Typography calculator:
 * https://royalfig.github.io/fluid-typography-calculator/
 * https://typescale.com/
 */
:root {
  --top-bar-bg: #164563;
  --rt-text-color: #3c3c3b;
  --rt-text-color-muted: #212529;
  --rt-text-color-muted-rgb: 33, 37, 41;
  --rt-link-color: #a03253;
  --rt-link-color-rgb: 160, 50, 83;
  --rt-partner-link-color: #164563;
  --rt-partner-link-color-hover-rgb: 22,69,99;
  --rt-black: #3c3c3b;
  --rt-blue: #164563;
  --rt-pink: #f8c8d8;
  --rt-white: #ffffff;
  --rt-red: #a03253;
  --rt-pink-rgb: 248,200,216;
  --rt-white-rgb: 255, 255, 255;
  --rt-black-rgb: 0, 0, 0;
  --rt-blue-rgb: 22,69,99;
  --rt-text-color-rgb: 60, 60, 60;
  --rt-beige-main: #f5f3ef;
  --rt-beige-main-rgb: 245, 243, 239;
  --rt-beige-contrast: #e6ded2;
  --rt-beige-contrast-rgb: 230, 222, 210;
  --rt-beige-dark: #c4beb6;
  --rt-beige-dark-rgb: 196, 190, 182;
  --rt-beige-alt1: #F3EADB;
  --rt-beige-alt2: #E5D4C4;
  --rt-chart-purple: #b4949f;
  --rt-facts-bg-rgb: 251, 249, 247;
  --rt-info-bg-rgb: 233, 186, 156;
  --rt-canva-box-shadow-rgb: 63, 69, 81;
  --rt-btn-primary: #f8c8d8;
  --rt-btn-primary-hover: #E8AFC5;
  --rt-btn-secondary: #164563;
  --rt-btn-secondary-hover: #123855;
  --rt-btn-default: #e6ded2;
  --rt-btn-default-hover: #e4cfb1;
}

[data-theme=dark] {
  --top-bar-bg: #3c3c3b;
  --rt-text-color: #DFDFDF;
  --rt-text-color-muted: #d4d4d4;
  --rt-text-color-muted-rgb: 212, 212, 212;
  --rt-link-color: #b65e72;
  --rt-link-color-rgb: 160, 50, 83;
  --rt-partner-link-color: #516d84;
  --rt-partner-link-color-hover-rgb: 231, 186, 155;
  --rt-black: #E6E2E3;
  --rt-blue: #516d84;
  --rt-pink: #635a5c;
  --rt-white: #292929;
  --rt-red: #b1536a;
  --rt-pink-rgb: 77, 73, 73;
  --rt-white-rgb: 0, 0, 0;
  --rt-black-rgb: 255, 255, 255;
  --rt-blue-rgb: 231, 186, 155;
  --rt-beige-main: #1c1b1c;
  --rt-beige-main-rgb: 41,41,41;
  --rt-beige-contrast: #221F21;
  --rt-beige-contrast-rgb: 29, 29, 29;
  --rt-beige-dark: #333333;
  --rt-beige-dark-rgb: 27,27,27;
  --rt-beige-alt1:#0c1524;
  --rt-beige-alt2:#1a2b3b;
  --rt-chart-purple: #b4949f;
  --rt-facts-bg-rgb: 60, 60, 60;
  --rt-info-bg-rgb: 22, 69, 99;
  --rt-canva-box-shadow-rgb: 192, 186, 174;
  --rt-btn-primary: var(--rt-pink);
  --rt-btn-primary-hover: #a28890;
  --rt-btn-secondary: var(--rt-blue);
  --rt-btn-secondary-hover: #798ea0;
  --rt-btn-default: var(--rt-beige-contrast);
  --rt-btn-default-hover: #4b4a4c;
}

#dark-mode-toggle {
  width: 50px;
  height: 50px;
  background: var(--bg);
  border: 2px solid var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  cursor: pointer;
}

[data-theme=light] #dark-mode-toggle .dark-icon {
  display: none;
}

[data-theme=dark] #dark-mode-toggle .light-icon {
  display: none;
}

.logo-light, .logo-dark {
  aspect-ratio: 115/51;
  width: auto;
  max-width: 115px;
}

.logo-light {
  display: inline-block;
}

.logo-dark {
  display: none;
}

[data-theme=dark] .logo-light {
  display: none;
}

[data-theme=dark] .logo-dark {
  display: inline-block;
}

[data-theme=dark].nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background-color: var(--rt-white);
  color: var(--rt-black);
  border-color: var(--rt-white);
}

[data-theme=dark].nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link:hover {
  border-color: var(--rt-white);
}

.rt-bg-black, .rt-bg-dark {
  background-color: var(--rt-black);
}

.rt-black {
  color: var(--rt-black);
}

.rt-svg-bg-pink {
  fill: var(--rt-pink);
}

.rt-bg-pink {
  background-color: var(--rt-pink);
}

.rt-pink {
  color: var(--rt-pink);
}

.rt-red {
  color: var(--rt-link-color);
}

.rt-bg-blue {
  background-color: var(--rt-blue);
}

.rt-blue {
  color: var(--rt-blue);
}

.rt-bg-white {
  background-color: var(--rt-white);
}
.rt-bg-white h2, .rt-bg-white p, .rt-bg-white li {
  color: var(--rt-black);
}

.rt-bg-pink {
  background-color: var(--rt-pink);
}

.rt-bg-main, .rt-bg-beige-main {
  background-color: var(--rt-beige-main);
}

.rt-white {
  color: var(--rt-white);
}

.rt-bg-beige-contrast {
  background-color: var(--rt-beige-contrast);
}

.rt-beige-main {
  color: var(--rt-beige-main);
}

.rt-bg-beige-dark {
  background-color: var(--rt-beige-dark);
}

.rt-beige-2 {
  color: var(--rt-beige-dark);
}

.rt-bg-beige-alt1 {
  background-color: var(--rt-beige-alt1);
}

.rt-bg-beige-alt2 {
  background-color: var(--rt-beige-alt2);
}

.bg-green {
  background-color: green;
}

.bg-red {
  background-color: red;
}

.bg-blue {
  background-color: blue;
}

.bg-orange {
  background-color: orange;
}

@media (max-width: 991.98px) {
  .rt-beige-1-on-one-col-breakpoint {
    background: var(--rt-beige-contrast);
  }
}

.nav-link {
  color: var(--rt-text-color);
  padding: 0;
  margin: 0 12px 0;
}
.nav-link.active:not(.has-icon) {
  font-weight: 800;
}

.regular-link {
  color: var(--rt-text-color);
  text-decoration: none;
}
.regular-link:hover {
  text-decoration: underline;
}

.btn {
  --bs-btn-font-size: 0.875rem;
  border: none;
  color: var(--rt-text-color);
  background: var(--rt-btn-default);
  border-radius: 10px;
  line-height: 1;
  padding: 14px 20px;
}
.btn:hover, .btn:active {
  background-color: var(--rt-btn-default-hover);
  color: var(--rt-text-color);
}
.btn:disabled {
  opacity: 0.3;
}
.btn.btn-primary {
  background: var(--rt-btn-primary);
  color: var(--rt-text-color);
}
.btn.btn-primary:hover, .btn.btn-primary:active {
  color: var(--rt-text-color);
  background-color: var(--rt-btn-primary-hover);
}
.btn.btn-secondary {
  background: var(--rt-btn-secondary);
  color: #fff;
}
.btn.btn-secondary:hover, .btn.btn-secondary:active {
  color: #fff;
  background-color: var(--rt-btn-secondary-hover);
}
.btn.btn-secondary-outline {
  border: 1px solid #164563;
  color: #164563;
  text-transform: uppercase;
}
.btn.btn-secondary-outline:hover, .btn.btn-secondary-outline:active {
  color: #fff;
  background-color: #164563;
}
.btn.btn-dark {
  background: #3c3c3b;
  color: #fff;
}
.btn.btn-dark:hover, .btn.btn-dark:active {
  color: #fff;
  background-color: #2A2A2A;
}
.btn.btn-light {
  background: #f5f3ef;
  color: var(--rt-text-color);
}
.btn.btn-light:hover, .btn.btn-light:active {
  color: var(--rt-text-color);
  background-color: #E5D4C4;
}
.btn.btn-lg {
  font-size: 18px;
  line-height: 24px;
  padding: 20px 40px;
  font-weight: 900;
}
.btn.btn-rt-nav {
  text-transform: uppercase;
  font-weight: 500;
  min-width: 200px; /* or whatever width you prefer */
  width: 100%;
  max-width: 500px; /* optional: to prevent buttons from getting too wide */
}
@media (max-width: 767px) {
  .btn.btn-rt-nav {
    padding: 14px 20px;
  }
}
@media (max-width: 575.98px) {
  .btn.btn-rt-nav {
    padding: 14px 10px;
  }
}
.btn.btn-rt-nav b {
  font-weight: 900;
}
.btn.btn-rt-nav .text-small {
  padding-top: 5px;
  display: inline-block;
  line-height: 120%;
}
@media (max-width: 479px) {
  .btn.btn-rt-nav {
    padding: 14px 10px !important;
    height: auto !important;
    min-width: 0;
  }
  .btn.btn-rt-nav > .text-small, .btn.btn-rt-nav > br {
    display: none;
  }
}
.btn.btn-rt-nav.btn-prev {
  padding-left: 40px;
  position: relative;
}
.btn.btn-rt-nav.btn-prev:before {
  content: "";
  position: absolute;
  display: block;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: url("assets/images/btn-arrow-left.svg") no-repeat center;
  width: 15px;
  height: 30px;
  background-size: contain;
}
@media (max-width: 767px) {
  .btn.btn-rt-nav.btn-prev {
    padding-left: 30px;
  }
  .btn.btn-rt-nav.btn-prev:before {
    left: 8px;
    width: 12px;
    height: 24px;
  }
}
@media (max-width: 420px) {
  .btn.btn-rt-nav.btn-prev {
    padding-left: 26px !important;
  }
  .btn.btn-rt-nav.btn-prev:before {
    width: 10px;
    height: 20px;
  }
}
.btn.btn-rt-nav.btn-next {
  padding-right: 40px;
  position: relative;
}
.btn.btn-rt-nav.btn-next:before {
  content: "";
  position: absolute;
  display: block;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: url("assets/images/btn-arrow-right.svg") no-repeat center;
  width: 15px;
  height: 30px;
  background-size: contain;
}
@media (max-width: 767px) {
  .btn.btn-rt-nav.btn-next {
    padding-right: 30px;
  }
  .btn.btn-rt-nav.btn-next:before {
    right: 8px;
    width: 12px;
    height: 24px;
  }
}
@media (max-width: 420px) {
  .btn.btn-rt-nav.btn-next {
    padding-right: 26px !important;
  }
  .btn.btn-rt-nav.btn-next:before {
    width: 10px;
    height: 20px;
  }
}
.btn.btn-swish {
  text-align: left;
  padding-left: 58px;
  position: relative;
}
.btn.btn-swish:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: url("assets/images/logo-swish.svg") no-repeat center;
  background-size: contain;
}
.btn.btn-bmac {
  text-align: left;
  padding-left: 58px;
  position: relative;
}
.btn.btn-bmac:before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 29px;
  background: url("assets/images/logo-bmc.svg") no-repeat center;
  background-size: contain;
}

/* Using the parent container's class */
.rt-item-container > .item-rt-post-table-row:nth-child(odd) {
  background-color: rgba(var(--rt-beige-main-rgb), 0.75);
}

/* OR for even rows */
.w-700 {
  font-weight: 700;
}

.w-800 {
  font-weight: 800;
}

.w-900 {
  font-weight: 900;
}

.lc-mr-0 > *:last-child {
  margin-right: 0;
}

.lc-mb-0 > *:last-child {
  margin-bottom: 0;
}

.py-6 {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
}

.pt-6 {
  padding-top: 3.75rem !important;
}

.pb-6 {
  padding-bottom: 3.75rem !important;
}

.dark-bg {
  background: #e6ded2;
}

.nowrap {
  white-space: nowrap;
}

.rounded {
  border-radius: 10px;
}

.rt-menu {
  font-size: 80%;
}

.wp-block-embed-youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/*
 * Margin and padding for sections
 */
main section .container {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
@media (max-width: 575.98px) {
  main section .container {
    padding-top: 60px;
    padding-bottom: 45px;
  }
}
main section:first-child {
  display: flex;
  flex-wrap: wrap;
}
main section:first-child .container {
  padding-top: 80px;
}
@media (max-width: 991.98px) {
  main section:first-child .container {
    padding-top: 40px;
  }
}

main .main-text > section:first-child > .container {
  padding-bottom: 80px;
}
@media (max-width: 575.98px) {
  main .main-text > section:first-child > .container {
    padding-top: 60px;
    padding-bottom: 45px;
  }
}

/*************/
.breadcrumbs {
  font-size: 80%;
}
.breadcrumbs a {
  color: var(--rt-text-color);
  text-decoration: none;
  font-weight: 400;
}
.breadcrumbs a:hover {
  color: #E8AFC5;
}
.breadcrumbs .breadcrumb_last {
  display: none;
}
@media (max-width: 991.98px) {
  .breadcrumbs {
    margin-bottom: 8px;
  }
}

.card {
  background: var(--rt-white);
}
.rt-bg-white .card {
  background: var(--rt-beige-main);
}
.card .card-img-top {
  height: auto;
  border-radius: 10px 10px 0 0;
  max-height: 190px;
  object-fit: fill;
}
.card .card-body .card-title {
  line-height: 1.3;
}
.card .card-body .card-title a {
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  word-break: auto-phrase;
  hyphens: auto;
  font-weight: 700;
}

@media (max-width: 767px) {
  .border-radius-bottom-sm-0 {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .border-radius-top-sm-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }
}
.pagination .active > .page-link, .pagination .page-link.active {
  background-color: var(--rt-pink);
  border-color: var(--rt-pink);
}

.wp-block-image img {
  border-radius: 10px;
}
.wp-block-image figcaption {
  text-align: left;
}

.forum-topics-list .icon-wrapper, .forum-topics-list-page-latest .icon-wrapper {
  padding-left: 48px;
  background: url("assets/images/icon-comments.svg") no-repeat left;
  background-size: 32px;
}
@media (max-width: 479px) {
  .forum-topics-list .icon-wrapper, .forum-topics-list-page-latest .icon-wrapper {
    padding-left: 48px;
  }
}
.forum-topics-list .icon-wrapper.pinned, .forum-topics-list-page-latest .icon-wrapper.pinned {
  background: url("assets/images/icon-pin-rotated.svg") no-repeat left;
  background-size: 32px;
}

.forum-topics-list-page-latest a {
  border: 0;
  border-left: 4px solid transparent;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  font-weight: 400;
}
.forum-topics-list-page-latest a p.item-title {
  font-weight: 400;
  color: var(--rt-link-color);
}
.forum-topics-list-page-latest a p.item-title:hover {
  text-decoration: underline;
}
.forum-topics-list-page-latest a:nth-child(odd) {
  background-color: rgba(var(--rt-beige-main-rgb), 0.75);
}
.forum-topics-list-page-latest a:hover {
  border-left: 4px solid var(--rt-beige-dark);
}

.form-check-input:checked, .form-check-input:focus {
  background-color: var(--rt-pink);
  border-color: #b4949f;
}

.tag-list {
  display: flex;
  flex-wrap: wrap; /* Allows wrapping if there are too many tags to fit */
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px; /* Adds spacing between tags */
}
.tag-list li {
  margin: 0; /* Reset margin for list items */
}
.tag-list a {
  color: var(--rt-black);
  background: var(--rt-beige-main);
  text-decoration: none;
  padding: 5px 20px 5px 40px;
  border-radius: 18px;
  font-weight: 500;
  font-size: 85%;
  border: 1px solid transparent;
  position: relative;
}
.rt-bg-beige-main .tag-list a {
  background: var(--rt-white);
}
.tag-list a::before {
  content: "";
  display: block;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("assets/images/icon-tag.svg") no-repeat center;
  background-size: contain;
}
.tag-list a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.line-separator {
  width: 100%;
  height: 1px;
  background-color: var(--rt-black);
  position: relative;
  margin: 0 auto 10px;
  max-width: 200px;
}
.line-separator::before, .line-separator::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  width: 5px;
  height: 5px;
  margin-top: -2.5px;
  background-color: var(--rt-black);
  transform: rotate(45deg);
}
.line-separator::before {
  left: 0;
}
.line-separator::after {
  right: 0;
}

.rt-table, .wp-block-table {
  overflow: auto;
  border-radius: 10px;
  width: 100%;
  border: 0;
}
.rt-table table, .wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}
.rt-table table caption, .wp-block-table table caption {
  max-width: 100ch;
}
@media (max-width: 767px) {
  .rt-table table caption, .wp-block-table table caption {
    max-width: 60ch;
  }
}
@media (max-width: 991.98px) {
  .rt-table table caption:after, .wp-block-table table caption:after {
    content: " Visa alla kolumner genom dra i tabellen.";
  }
}
.rt-table table tr:last-child td, .wp-block-table table tr:last-child td {
  border-bottom: 0 !important;
}
.rt-table table tr td, .rt-table table tr th, .wp-block-table table tr td, .wp-block-table table tr th {
  border: 0;
}
.rt-table table td:first-child,
.rt-table table th:first-child, .wp-block-table table td:first-child,
.wp-block-table table th:first-child {
  padding-left: 15px;
}
.rt-table tr:last-child td:first-child, .wp-block-table tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
.rt-table tr:last-child td:last-child, .wp-block-table tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

table {
  font-size: clamp(0.833rem, 0.8218rem + 0.056vw, 0.889rem);
  /*&.rt-table-striped {
      tbody{
          tr:nth-child(even) td{
              background-color: rgba(variables.$rt_beige_alt1,0.2)!important;
          }
          tr:nth-child(odd) td {
              background-color: white!important;
          }
      }
  }*/
}
table thead th {
  font-weight: 600;
  color: var(--rt-white) !important;
  background-color: var(--rt-black) !important;
  padding: 10px;
  text-transform: uppercase;
}
table thead th b, table thead th strong {
  font-weight: 700;
}
.rt-bg-white table td {
  background: var(--rt-beige-main);
}
.rt-bg-beige-contrast table td {
  background: var(--rt-beige-main);
}
.rt-bg-beige-main table td {
  background: var(--rt-white);
}
.rt-bg-beige-main details table td {
  background: var(--rt-beige-main);
}
table.table-blue thead th {
  background-color: var(--rt-blue) !important;
}

.flourish-credit {
  display: none;
}

@media (max-width: 479px) {
  .rt-carousel-nav {
    display: grid !important;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    font-size: 16px;
  }
}

.img-border img {
  border: 1px solid var(--rt-black);
}

.fancybox-wrap.fancybox-opened .fancybox-skin {
  border-radius: 15px;
}
.fancybox-wrap.fancybox-opened .fancybox-image {
  border-radius: 6px;
}

.rt-search-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0;
}
@media (max-width: 991.98px) {
  .rt-search-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .rt-search-results-grid {
    grid-template-columns: 1fr;
  }
  .rt-search-results-grid .card .card-img-top {
    max-height: none;
  }
}

.max-width-text-content {
  max-width: 830px;
}

.card-clickable {
  cursor: pointer;
}

.rt-related-content .nav-tabs {
  margin: 40px 0 0;
}
.rt-related-content .nav-tabs .nav-item {
  margin: 0 38px 0 0;
}
@media (max-width: 575.98px) {
  .rt-related-content .nav-tabs .nav-item {
    margin: 0 20px 0 0;
  }
}
@media (max-width: 420px) {
  .rt-related-content .nav-tabs .nav-item {
    margin: 0 14px 0 0;
  }
}
.rt-related-content .nav-tabs .nav-item:last-child {
  margin-right: 0;
}
.rt-related-content .nav-tabs .nav-item .nav-link {
  margin: 0;
  border: none;
  font-weight: 900;
  opacity: 0.5;
  position: relative;
  transition: opacity 0.3s;
  padding: 0 0 10px;
}
@media (max-width: 420px) {
  .rt-related-content .nav-tabs .nav-item .nav-link {
    font-size: 14px;
  }
}
.rt-related-content .nav-tabs .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--rt-black);
  opacity: 0;
  transition: opacity 0.3s;
}
.rt-related-content .nav-tabs .nav-item .nav-link.active {
  opacity: 1;
  background: none;
}
.rt-related-content .nav-tabs .nav-item .nav-link.active::after {
  opacity: 1;
}
.rt-related-content .nav-tabs .nav-item .nav-link small {
  font-weight: 400;
}
.rt-related-content .tab-pane {
  display: none;
}
.rt-related-content .tab-pane.active {
  display: block;
}

.float-toc-fade {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 999;
  display: none;
}

.float-toc {
  position: fixed;
  width: 690px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -120px;
  transition: bottom 0.3s;
  z-index: 1000;
}
@media (max-width: 767px) {
  .float-toc {
    width: calc(100% - 40px);
  }
}
.float-toc.show {
  bottom: 18px;
}
.float-toc .float-toc-inner {
  background: #f6f4f0;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 18px 22px 18px 42px;
}
@media (max-width: 575.98px) {
  .float-toc .float-toc-inner {
    padding: 18px 18px 18px 26px;
  }
}
.float-toc .toc-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.float-toc .toc-heading h2 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.75rem;
  line-height: 1;
}
.float-toc .toc-heading .toc-toggle-btn {
  position: relative;
  padding-right: 33px;
  color: var(--rt-text-color);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1;
}
.float-toc .toc-heading .toc-toggle-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 22px;
  height: 22px;
  background: url("assets/images/icon-caret-down.svg") no-repeat center;
  background-size: contain;
  transition: transform 0.3s;
}
.float-toc .toc-heading .toc-toggle-btn.open::after {
  transform: translateY(-50%) rotate(0deg);
}
.float-toc .toc-wrapper {
  height: 0;
  overflow: auto;
  transition: all 0.3s;
  margin: 0;
}
.float-toc .toc-wrapper.open {
  height: 140px;
  margin-bottom: 20px;
}
.float-toc .toc-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.float-toc .toc-wrapper ul li {
  padding-left: 32px;
  padding-bottom: 4px;
  position: relative;
  line-height: 1.2;
}
.float-toc .toc-wrapper ul li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 1px;
  height: 100%;
  background: #e6e4e2;
  z-index: 0;
}
.float-toc .toc-wrapper ul li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 3px;
  height: calc(100% - 12px);
  background: var(--rt-black);
  z-index: 1;
  opacity: 0;
}
.float-toc .toc-wrapper ul li.active::after {
  opacity: 1;
}
.float-toc .toc-wrapper ul li.active a {
  font-weight: 900;
}
.float-toc .toc-wrapper ul li:last-child {
  padding-bottom: 0;
}
.float-toc .toc-wrapper ul li:last-child::before {
  height: calc(100% - 8px);
}
.float-toc .toc-wrapper ul li a {
  color: var(--rt-text-color);
  text-decoration: underline;
  font-size: 0.75rem;
  line-height: 1.2;
}
.float-toc .toc-wrapper ul li a:hover {
  color: hsl(0, 0%, -10%);
}

/*
 * Typography calculator:
 * https://royalfig.github.io/fluid-typography-calculator/
 * https://typescale.com/
 */
h1 {
  line-height: 1.1;
  font-weight: 400;
  font-size: 2.027rem;
  letter-spacing: -2%;
}
@supports (font-size: clamp(2.5rem, 1.5rem + 2.5vw, 4rem)) {
  h1 {
    font-size: clamp(2.5rem, 1.5rem + 2.5vw, 4rem);
  }
}
h1 b, h1 strong {
  font-weight: 900;
}

p.alert-newer-episode, p.alert-recommendation {
  background-color: var(--rt-link-color);
  padding: 10px 15px;
  color: var(--rt-white);
  border-radius: 10px;
}
p.alert-newer-episode a, p.alert-recommendation a {
  color: var(--rt-white);
  text-decoration: underline;
}
p.alert-newer-episode a:hover, p.alert-recommendation a:hover {
  color: var(--rt-white);
  text-decoration: none;
}

.container h1:first-child {
  padding-top: 5rem;
  text-transform: uppercase;
  color: var(--rt-black);
}
@media (max-width: 767px) {
  .container h1:first-child {
    padding-top: 3rem;
  }
}
@media (max-width: 575.98px) {
  .container h1:first-child {
    padding-top: 0;
  }
}

p.alert-recommendation {
  background-color: var(--rt-chart-purple);
}

h2 {
  line-height: 1.2;
  margin-top: 4rem;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  letter-spacing: -2%;
  font-weight: 400;
}
@supports (font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.5rem)) {
  h2 {
    font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.5rem);
  }
}
h2 b, h2 strong {
  font-weight: 900;
}
h2.subtitle {
  margin-top: 1rem;
  font-weight: 400;
  font-size: 1rem;
  font-size: clamp(1rem, 1rem + 1.25vw, 2rem);
}
@media (max-width: 991.98px) {
  h2.subtitle {
    margin-bottom: 1rem;
  }
}
@media (max-width: 575.98px) {
  h2.subtitle {
    margin-top: 0.8rem;
  }
}
h2.episode-title {
  text-transform: uppercase;
  line-height: 1.2;
  margin-top: 0;
}
h2.episode-title b, h2.episode-title strong {
  font-weight: 900;
}
h2.episode-title a {
  color: var(--rt-black);
  font-weight: 400;
}
h2 a {
  text-decoration: none;
}
h2 a:hover {
  text-decoration: underline;
}

/**
 * Remove margin-top for the first h2 in a container
 * This is useful to avoid extra spacing in a new section
 */
.container:not(:has(> h1)) > h2:first-of-type {
  margin-top: 0;
}

h3 {
  margin-top: 2.75rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.424rem;
}
@supports (font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem)) {
  h3 {
    font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  }
}
h3 b {
  font-weight: 900;
}

h4 {
  line-height: 1.2;
  font-size: 1.266rem;
}
@supports (font-size: clamp(1.266rem, 1.2312rem + 0.174vw, 1.44rem)) {
  h4 {
    font-size: clamp(1.266rem, 1.2312rem + 0.174vw, 1.44rem);
  }
}

h5 {
  line-height: 1.2;
  font-size: 1.125rem;
}
@supports (font-size: clamp(1.266rem, 1.2312rem + 0.174vw, 1.44rem)) {
  h5 {
    font-size: clamp(1.266rem, 1.2312rem + 0.174vw, 1.44rem);
  }
}

article p, article li, article details {
  line-height: 155%;
  letter-spacing: 0;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}
@supports (font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem)) {
  article p, article li, article details {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem);
  }
}
article p b, article p strong, article li b, article li strong, article details b, article details strong {
  font-weight: 700;
}
article p.lead, article li.lead, article details.lead {
  font-weight: 400;
  letter-spacing: 0;
  line-height: 155%;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem);
  /*padding-top: 12px;
  line-height: 1.5;
  font-weight: 400;
  max-width: 60ch;
  padding-bottom: 20px;
  margin-bottom: 0;
  font-size: 1.424rem; // Fallback
  @supports (font-size: variables.$rt_font_size_lead) {
    font-size: variables.$rt_font_size_lead;
  }

  &.archive-page{
    padding-bottom: 0;
    margin-bottom: 0;
  }
  @media(max-width: 991.98px) {
    padding-top: 0;
  }*/
}
article li {
  margin-bottom: 20px;
}
article li.bold-uppercase a:first-child {
  text-transform: uppercase;
  font-weight: 800;
}
article ul.mb-sm li, article ol.mb-sm li {
  margin-bottom: 10px;
  padding-bottom: 10px;
}
article ul.mb-none li, article ol.mb-none li {
  margin-bottom: 3px;
  padding-bottom: 3px;
}
article ul li ul, article ol li ol {
  margin-top: 20px;
}
article a {
  color: inherit;
  text-decoration: underline;
}
article a:hover {
  color: var(--rt-link-color);
  text-decoration: none;
}
article a.dark, article a.black {
  color: var(--rt-black) !important;
}
article a.dark:hover, article a.black:hover {
  color: var(--rt-link-color) !important;
}
article a.bold-uppercase {
  text-transform: uppercase;
  font-weight: 900;
}
article a.quote-link {
  font-style: normal;
  font-weight: 600;
  color: var(--rt-beige-dark);
}
article a.quote-link:hover {
  color: var(--rt-link-color);
}
article .quote-source {
  color: var(--rt-beige-dark);
  font-style: normal;
}
article .quote-text {
  color: var(--rt-black);
}
article a[href^="https://click.adrecord.com"]:after,
article a[href^="https://rikatillsammans.se/partner/"]:after,
article a[href^="/partner/"]:after {
  content: " (REKLAMLÄNK) ";
  font-size: 70%;
  font-weight: 400;
}
article a[href^="https://click.adrecord.com"]:hover,
article a[href^="https://rikatillsammans.se/partner/"]:hover {
  color: rgba(var(--rt-partner-link-color-hover-rgb), 1) !important;
}

article:not(.rt-page-template-v2) p {
  max-width: 70ch;
}

.rt_affiliate-link-info, .rt_sponsor-info {
  max-width: 100ch;
}

small, .font-small, .text-small {
  line-height: 140%;
  max-width: 100ch;
  font-size: 0.833rem;
}
@supports (font-size: clamp(0.833rem, 0.8218rem + 0.056vw, 0.889rem)) {
  small, .font-small, .text-small {
    font-size: clamp(0.833rem, 0.8218rem + 0.056vw, 0.889rem);
  }
}

.font-smallest, .text-smallest {
  font-size: clamp(0.694rem, 0.5828rem + 0.556vw, 0.833rem);
  display: inline-block;
  line-height: 110% !important;
}

.max-width-100 {
  max-width: 100%;
}

.item-title {
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0;
  font-size: 1rem;
}
@supports (font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem)) {
  .item-title {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem);
  }
}

.semi-bold {
  font-weight: 700;
}

.rt-regular {
  font-weight: 300;
}
.rt-regular b {
  font-weight: 900;
}

.wp-block-quote {
  position: relative;
  padding: 30px 30px 30px 123px;
  display: flex;
  min-height: 120px;
  flex-direction: column;
  justify-content: center;
  max-width: 72ch;
  margin: 40px 0;
  font-size: 1rem;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background: rgba(216, 216, 216, 0.2);
  border-left-width: 10px;
}
.rt-bg-rt-beige-main .wp-block-quote, .rt-bg-beige-contrast .wp-block-quote {
  background-color: var(--rt-white);
  border-left-width: 10px;
  border-left-color: var(--rt-beige-dark);
}
@supports (font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem)) {
  .wp-block-quote {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem);
  }
}
.wp-block-quote.risk-info {
  border-left-color: var(--rt-beige-dark);
}
.wp-block-quote.risk-info p {
  font-size: clamp(0.833rem, 0.8218rem + 0.056vw, 0.889rem);
}
.wp-block-quote:before, .wp-block-quote.thought:before, .wp-block-quote.thought-left:before, .wp-block-quote.thought-right:before, .wp-block-quote.thought-down:before, .wp-block-quote.speech-left:before, .wp-block-quote.speech-right:before, .wp-block-quote.speech:before {
  content: "";
  display: block;
  position: absolute;
  left: 20px;
  top: 20px;
  width: 74px;
  height: 80px;
  background: url("assets/images/icon-speech-right.svg") no-repeat center;
  background-size: contain;
}
.wp-block-quote.speech:before, .wp-block-quote.speech-right:before {
  background-image: url("assets/images/icon-speech-right.svg");
}
.wp-block-quote.speech-left:before {
  background-image: url("assets/images/icon-speech-left.svg");
}
.wp-block-quote.thought:before, .wp-block-quote.thought-down:before {
  background-image: url("assets/images/icon-thought-down.svg");
}
.wp-block-quote.thought-left:before {
  background-image: url("assets/images/icon-thought-left.svg");
}
.wp-block-quote.thought-right:before {
  background-image: url("assets/images/icon-thought-right.svg");
}
.wp-block-quote strong {
  font-weight: 900;
}
@media (max-width: 575.98px) {
  .wp-block-quote {
    border-left-width: 6px;
    padding: 20px 20px 20px 74px;
    margin: 30px 0;
  }
  .wp-block-quote:before {
    left: 14px;
    top: 21px;
    width: 40px;
    height: 44px;
  }
  .wp-block-quote.thought::before, .wp-block-quote.thought-left::before, .wp-block-quote.thought-right::before, .wp-block-quote.thought-down::before, .wp-block-quote.speech-left::before, .wp-block-quote.speech-right::before, .wp-block-quote.speech::before {
    left: 14px;
    top: 25px;
    width: 44px;
    height: 50px;
  }
}
.wp-block-quote p {
  margin: 0 0 12px;
}
.wp-block-quote p.heading {
  margin-bottom: 0;
  color: var(--rt-beige-dark);
  font-size: 80%;
  text-transform: uppercase;
  font-weight: 900;
}
.wp-block-quote p:last-child {
  margin: 0;
}

ul.dropdown-menu h6, ul.dropdown-menu .dropdown-header {
  text-transform: uppercase;
  font-weight: 900;
}

.title-flag-under {
  position: relative;
  padding-bottom: 63px;
  text-align: center;
}
.title-flag-under::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 76px;
  height: 45px;
  background: url("assets/images/icon-flags.svg") no-repeat center;
  background-size: contain;
}

.text-muted {
  color: rgba(var(--rt-text-color-muted-rgb), 0.75) !important;
}

.rt-banner {
  color: var(--rt-white);
  border-radius: 10px;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.rt-banner.patreon {
  background-color: var(--rt-pink);
  color: var(--rt-text-color);
}
.rt-banner.patreon a {
  color: var(--rt-blue);
}
.rt-banner.patreon .icon {
  background-size: 150px;
  background: #fff url("assets/images/icon-heart.svg") no-repeat 35px 40px;
}
.rt-banner.info {
  background-color: var(--rt-blue);
  color: var(--rt-text-color);
}
.rt-banner.info .icon {
  background: url("assets/images/info.svg") no-repeat center var(--rt-white);
}
.rt-banner .icon {
  width: 185px;
  height: 185px;
  border-radius: 50%;
  margin-right: 97px;
  position: relative;
}
@media (max-width: 767px) {
  .rt-banner .icon {
    margin: 0 auto 97px;
  }
}
.rt-banner .icon:after, .rt-banner .icon:before {
  content: "";
  position: absolute;
  background: var(--rt-white);
  border-radius: 50%;
  top: 50%;
}
@media (max-width: 767px) {
  .rt-banner .icon:after, .rt-banner .icon:before {
    left: 50%;
    top: auto;
  }
}
.rt-banner .icon:before {
  width: 20px;
  height: 20px;
  right: -26px;
  margin-top: -10px;
}
@media (max-width: 767px) {
  .rt-banner .icon:before {
    margin-top: 0;
    margin-left: -10px;
    right: auto;
    bottom: -26px;
  }
}
.rt-banner .icon:after {
  width: 10px;
  height: 10px;
  right: -46px;
  margin-top: -5px;
}
@media (max-width: 767px) {
  .rt-banner .icon:after {
    margin-top: 0;
    margin-left: -5px;
    right: auto;
    bottom: -46px;
  }
}
.rt-banner .text {
  width: calc(100% - 282px);
}
@media (max-width: 767px) {
  .rt-banner .text {
    width: 100%;
  }
}
.rt-banner .text p {
  font-size: 18px;
  line-height: 25px;
  margin: 0 0 25px;
}
.rt-banner .text p:last-child {
  margin: 0;
}

.rt-speechbubble-left-blue {
  background: url("assets/images/rt-pratbubbla.php?d=left&c=blue") no-repeat center;
}
.rt-speechbubble-left-pink {
  background: url("assets/images/rt-pratbubbla.php?d=left&c=pink") no-repeat center;
}
.rt-speechbubble-left-dark {
  background: url("assets/images/rt-pratbubbla.php?d=left&c=dark") no-repeat center;
}
.rt-speechbubble-left-dark-2 {
  background: url("assets/images/rt-pratbubbla.php?d=left&c=dark-2") no-repeat center;
}
.rt-speechbubble-left-white {
  background: url("assets/images/rt-pratbubbla.php?d=left&c=white") no-repeat center;
}
.rt-speechbubble-left-beige-1 {
  background: url("assets/images/rt-pratbubbla.php?d=left&c=beige-1") no-repeat center;
}
.rt-speechbubble-left-beige-2 {
  background: url("assets/images/rt-pratbubbla.php?d=left&c=beige-2") no-repeat center;
}
.rt-speechbubble-right-blue {
  background: url("assets/images/rt-pratbubbla.php?d=right&c=blue") no-repeat center;
}
.rt-speechbubble-right-pink {
  background: url("assets/images/rt-pratbubbla.php?d=right&c=pink") no-repeat center;
}
.rt-speechbubble-right-dark {
  background: url("assets/images/rt-pratbubbla.php?d=right&c=dark") no-repeat center;
}
.rt-speechbubble-right-dark-2 {
  background: url("assets/images/rt-pratbubbla.php?d=right&c=dark-2") no-repeat center;
}
.rt-speechbubble-right-white {
  background: url("assets/images/rt-pratbubbla.php?d=right&c=white") no-repeat center;
}
.rt-speechbubble-right-beige-1 {
  background: url("assets/images/rt-pratbubbla.php?d=right&c=beige-1") no-repeat center;
}
.rt-speechbubble-right-beige-2 {
  background: url("assets/images/rt-pratbubbla.php?d=right&c=beige-2") no-repeat center;
}
.rt-speechbubble-left-blue, .rt-speechbubble-left-dark, .rt-speechbubble-left-dark-2, .rt-speechbubble-right-blue, .rt-speechbubble-right-dark, .rt-speechbubble-right-dark-2 {
  color: var(--rt-beige-main);
}
.rt-speechbubble-left-pink, .rt-speechbubble-left-white, .rt-speechbubble-left-beige-1, .rt-speechbubble-left-beige-2, .rt-speechbubble-right-pink, .rt-speechbubble-right-white, .rt-speechbubble-right-beige-1, .rt-speechbubble-right-beige-2 {
  color: var(--rt-black);
}
.rt-speechbubble-left-blue, .rt-speechbubble-left-pink, .rt-speechbubble-left-dark, .rt-speechbubble-left-dark-2, .rt-speechbubble-left-white, .rt-speechbubble-left-beige-1, .rt-speechbubble-left-beige-2, .rt-speechbubble-right-blue, .rt-speechbubble-right-pink, .rt-speechbubble-right-dark, .rt-speechbubble-right-dark-2, .rt-speechbubble-right-white, .rt-speechbubble-right-beige-1, .rt-speechbubble-right-beige-2 {
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 300px;
  height: 300px;
  text-transform: uppercase;
  padding: 0 10px 0 20px;
  font-size: 18px;
  line-height: 120%;
  font-weight: 300;
  margin: 0 auto;
}
.rt-speechbubble-left-blue b, .rt-speechbubble-left-blue strong, .rt-speechbubble-left-pink b, .rt-speechbubble-left-pink strong, .rt-speechbubble-left-dark b, .rt-speechbubble-left-dark strong, .rt-speechbubble-left-dark-2 b, .rt-speechbubble-left-dark-2 strong, .rt-speechbubble-left-white b, .rt-speechbubble-left-white strong, .rt-speechbubble-left-beige-1 b, .rt-speechbubble-left-beige-1 strong, .rt-speechbubble-left-beige-2 b, .rt-speechbubble-left-beige-2 strong, .rt-speechbubble-right-blue b, .rt-speechbubble-right-blue strong, .rt-speechbubble-right-pink b, .rt-speechbubble-right-pink strong, .rt-speechbubble-right-dark b, .rt-speechbubble-right-dark strong, .rt-speechbubble-right-dark-2 b, .rt-speechbubble-right-dark-2 strong, .rt-speechbubble-right-white b, .rt-speechbubble-right-white strong, .rt-speechbubble-right-beige-1 b, .rt-speechbubble-right-beige-1 strong, .rt-speechbubble-right-beige-2 b, .rt-speechbubble-right-beige-2 strong {
  font-weight: 900 !important;
}
.rt-speechbubble-left-blue .author, .rt-speechbubble-left-pink .author, .rt-speechbubble-left-dark .author, .rt-speechbubble-left-dark-2 .author, .rt-speechbubble-left-white .author, .rt-speechbubble-left-beige-1 .author, .rt-speechbubble-left-beige-2 .author, .rt-speechbubble-right-blue .author, .rt-speechbubble-right-pink .author, .rt-speechbubble-right-dark .author, .rt-speechbubble-right-dark-2 .author, .rt-speechbubble-right-white .author, .rt-speechbubble-right-beige-1 .author, .rt-speechbubble-right-beige-2 .author {
  text-transform: none;
  font-size: 15px;
  line-height: 16px;
  margin: 6px 0 0;
}
.rt-speechbubble-left-blue .author_byline, .rt-speechbubble-left-pink .author_byline, .rt-speechbubble-left-dark .author_byline, .rt-speechbubble-left-dark-2 .author_byline, .rt-speechbubble-left-white .author_byline, .rt-speechbubble-left-beige-1 .author_byline, .rt-speechbubble-left-beige-2 .author_byline, .rt-speechbubble-right-blue .author_byline, .rt-speechbubble-right-pink .author_byline, .rt-speechbubble-right-dark .author_byline, .rt-speechbubble-right-dark-2 .author_byline, .rt-speechbubble-right-white .author_byline, .rt-speechbubble-right-beige-1 .author_byline, .rt-speechbubble-right-beige-2 .author_byline {
  text-transform: none;
  font-size: 14px;
  margin: 0;
}
.rt-speechbubble-left-blue.font-size-small, .rt-speechbubble-left-pink.font-size-small, .rt-speechbubble-left-dark.font-size-small, .rt-speechbubble-left-dark-2.font-size-small, .rt-speechbubble-left-white.font-size-small, .rt-speechbubble-left-beige-1.font-size-small, .rt-speechbubble-left-beige-2.font-size-small, .rt-speechbubble-right-blue.font-size-small, .rt-speechbubble-right-pink.font-size-small, .rt-speechbubble-right-dark.font-size-small, .rt-speechbubble-right-dark-2.font-size-small, .rt-speechbubble-right-white.font-size-small, .rt-speechbubble-right-beige-1.font-size-small, .rt-speechbubble-right-beige-2.font-size-small {
  font-size: 14px;
}
.rt-speechbubble-left-blue.font-size-medium, .rt-speechbubble-left-pink.font-size-medium, .rt-speechbubble-left-dark.font-size-medium, .rt-speechbubble-left-dark-2.font-size-medium, .rt-speechbubble-left-white.font-size-medium, .rt-speechbubble-left-beige-1.font-size-medium, .rt-speechbubble-left-beige-2.font-size-medium, .rt-speechbubble-right-blue.font-size-medium, .rt-speechbubble-right-pink.font-size-medium, .rt-speechbubble-right-dark.font-size-medium, .rt-speechbubble-right-dark-2.font-size-medium, .rt-speechbubble-right-white.font-size-medium, .rt-speechbubble-right-beige-1.font-size-medium, .rt-speechbubble-right-beige-2.font-size-medium {
  font-size: 18px;
}
.rt-speechbubble-left-blue.font-size-big, .rt-speechbubble-left-pink.font-size-big, .rt-speechbubble-left-dark.font-size-big, .rt-speechbubble-left-dark-2.font-size-big, .rt-speechbubble-left-white.font-size-big, .rt-speechbubble-left-beige-1.font-size-big, .rt-speechbubble-left-beige-2.font-size-big, .rt-speechbubble-right-blue.font-size-big, .rt-speechbubble-right-pink.font-size-big, .rt-speechbubble-right-dark.font-size-big, .rt-speechbubble-right-dark-2.font-size-big, .rt-speechbubble-right-white.font-size-big, .rt-speechbubble-right-beige-1.font-size-big, .rt-speechbubble-right-beige-2.font-size-big {
  font-size: 22px;
}

.rt-thoughtbubble-top-blue {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top&c=blue") no-repeat center;
}
.rt-thoughtbubble-top-pink {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top&c=pink") no-repeat center;
}
.rt-thoughtbubble-top-dark {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top&c=dark") no-repeat center;
}
.rt-thoughtbubble-top-dark-2 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top&c=dark-2") no-repeat center;
}
.rt-thoughtbubble-top-white {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top&c=white") no-repeat center;
}
.rt-thoughtbubble-top-beige-1 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top&c=beige-1") no-repeat center;
}
.rt-thoughtbubble-top-beige-2 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top&c=beige-2") no-repeat center;
}
.rt-thoughtbubble-bottom-blue {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom&c=blue") no-repeat center;
}
.rt-thoughtbubble-bottom-pink {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom&c=pink") no-repeat center;
}
.rt-thoughtbubble-bottom-dark {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom&c=dark") no-repeat center;
}
.rt-thoughtbubble-bottom-dark-2 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom&c=dark-2") no-repeat center;
}
.rt-thoughtbubble-bottom-white {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom&c=white") no-repeat center;
}
.rt-thoughtbubble-bottom-beige-1 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom&c=beige-1") no-repeat center;
}
.rt-thoughtbubble-bottom-beige-2 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom&c=beige-2") no-repeat center;
}
.rt-thoughtbubble-top-left-blue {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top-left&c=blue") no-repeat center;
}
.rt-thoughtbubble-top-left-pink {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top-left&c=pink") no-repeat center;
}
.rt-thoughtbubble-top-left-dark {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top-left&c=dark") no-repeat center;
}
.rt-thoughtbubble-top-left-dark-2 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top-left&c=dark-2") no-repeat center;
}
.rt-thoughtbubble-top-left-white {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top-left&c=white") no-repeat center;
}
.rt-thoughtbubble-top-left-beige-1 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top-left&c=beige-1") no-repeat center;
}
.rt-thoughtbubble-top-left-beige-2 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top-left&c=beige-2") no-repeat center;
}
.rt-thoughtbubble-top-right-blue {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top-right&c=blue") no-repeat center;
}
.rt-thoughtbubble-top-right-pink {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top-right&c=pink") no-repeat center;
}
.rt-thoughtbubble-top-right-dark {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top-right&c=dark") no-repeat center;
}
.rt-thoughtbubble-top-right-dark-2 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top-right&c=dark-2") no-repeat center;
}
.rt-thoughtbubble-top-right-white {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top-right&c=white") no-repeat center;
}
.rt-thoughtbubble-top-right-beige-1 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top-right&c=beige-1") no-repeat center;
}
.rt-thoughtbubble-top-right-beige-2 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-top-right&c=beige-2") no-repeat center;
}
.rt-thoughtbubble-bottom-left-blue {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom-left&c=blue") no-repeat center;
}
.rt-thoughtbubble-bottom-left-pink {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom-left&c=pink") no-repeat center;
}
.rt-thoughtbubble-bottom-left-dark {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom-left&c=dark") no-repeat center;
}
.rt-thoughtbubble-bottom-left-dark-2 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom-left&c=dark-2") no-repeat center;
}
.rt-thoughtbubble-bottom-left-white {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom-left&c=white") no-repeat center;
}
.rt-thoughtbubble-bottom-left-beige-1 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom-left&c=beige-1") no-repeat center;
}
.rt-thoughtbubble-bottom-left-beige-2 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom-left&c=beige-2") no-repeat center;
}
.rt-thoughtbubble-bottom-right-blue {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom-right&c=blue") no-repeat center;
}
.rt-thoughtbubble-bottom-right-pink {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom-right&c=pink") no-repeat center;
}
.rt-thoughtbubble-bottom-right-dark {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom-right&c=dark") no-repeat center;
}
.rt-thoughtbubble-bottom-right-dark-2 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom-right&c=dark-2") no-repeat center;
}
.rt-thoughtbubble-bottom-right-white {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom-right&c=white") no-repeat center;
}
.rt-thoughtbubble-bottom-right-beige-1 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom-right&c=beige-1") no-repeat center;
}
.rt-thoughtbubble-bottom-right-beige-2 {
  background: url("assets/images/rt-pratbubbla.php?d=bubble-bottom-right&c=beige-2") no-repeat center;
}
.rt-thoughtbubble-bottom-blue, .rt-thoughtbubble-bottom-pink, .rt-thoughtbubble-bottom-dark, .rt-thoughtbubble-bottom-dark-2, .rt-thoughtbubble-bottom-white, .rt-thoughtbubble-bottom-beige-1, .rt-thoughtbubble-bottom-beige-2 {
  padding: 45px 34px 90px;
}
.rt-thoughtbubble-top-blue, .rt-thoughtbubble-top-pink, .rt-thoughtbubble-top-dark, .rt-thoughtbubble-top-dark-2, .rt-thoughtbubble-top-white, .rt-thoughtbubble-top-beige-1, .rt-thoughtbubble-top-beige-2 {
  padding: 120px 34px 20px;
}
.rt-thoughtbubble-bottom-left-blue, .rt-thoughtbubble-bottom-left-pink, .rt-thoughtbubble-bottom-left-dark, .rt-thoughtbubble-bottom-left-dark-2, .rt-thoughtbubble-bottom-left-white, .rt-thoughtbubble-bottom-left-beige-1, .rt-thoughtbubble-bottom-left-beige-2, .rt-thoughtbubble-bottom-right-blue, .rt-thoughtbubble-bottom-right-pink, .rt-thoughtbubble-bottom-right-dark, .rt-thoughtbubble-bottom-right-dark-2, .rt-thoughtbubble-bottom-right-white, .rt-thoughtbubble-bottom-right-beige-1, .rt-thoughtbubble-bottom-right-beige-2 {
  padding: 30px 34px 30px;
}
.rt-thoughtbubble-top-left-blue, .rt-thoughtbubble-top-left-pink, .rt-thoughtbubble-top-left-dark, .rt-thoughtbubble-top-left-dark-2, .rt-thoughtbubble-top-left-white, .rt-thoughtbubble-top-left-beige-1, .rt-thoughtbubble-top-left-beige-2, .rt-thoughtbubble-top-right-blue, .rt-thoughtbubble-top-right-pink, .rt-thoughtbubble-top-right-dark, .rt-thoughtbubble-top-right-dark-2, .rt-thoughtbubble-top-right-white, .rt-thoughtbubble-top-right-beige-1, .rt-thoughtbubble-top-right-beige-2 {
  padding: 76px 34px 30px;
}
.rt-thoughtbubble-top-blue, .rt-thoughtbubble-top-dark, .rt-thoughtbubble-top-dark-2, .rt-thoughtbubble-bottom-blue, .rt-thoughtbubble-bottom-dark, .rt-thoughtbubble-bottom-dark-2, .rt-thoughtbubble-top-left-blue, .rt-thoughtbubble-top-left-dark, .rt-thoughtbubble-top-left-dark-2, .rt-thoughtbubble-top-right-blue, .rt-thoughtbubble-top-right-dark, .rt-thoughtbubble-top-right-dark-2, .rt-thoughtbubble-bottom-left-blue, .rt-thoughtbubble-bottom-left-dark, .rt-thoughtbubble-bottom-left-dark-2, .rt-thoughtbubble-bottom-right-blue, .rt-thoughtbubble-bottom-right-dark, .rt-thoughtbubble-bottom-right-dark-2 {
  color: var(--rt-beige-main);
}
.rt-thoughtbubble-top-pink, .rt-thoughtbubble-top-white, .rt-thoughtbubble-top-beige-1, .rt-thoughtbubble-top-beige-2, .rt-thoughtbubble-bottom-pink, .rt-thoughtbubble-bottom-white, .rt-thoughtbubble-bottom-beige-1, .rt-thoughtbubble-bottom-beige-2, .rt-thoughtbubble-top-left-pink, .rt-thoughtbubble-top-left-white, .rt-thoughtbubble-top-left-beige-1, .rt-thoughtbubble-top-left-beige-2, .rt-thoughtbubble-top-right-pink, .rt-thoughtbubble-top-right-white, .rt-thoughtbubble-top-right-beige-1, .rt-thoughtbubble-top-right-beige-2, .rt-thoughtbubble-bottom-left-pink, .rt-thoughtbubble-bottom-left-white, .rt-thoughtbubble-bottom-left-beige-1, .rt-thoughtbubble-bottom-left-beige-2, .rt-thoughtbubble-bottom-right-pink, .rt-thoughtbubble-bottom-right-white, .rt-thoughtbubble-bottom-right-beige-1, .rt-thoughtbubble-bottom-right-beige-2 {
  color: var(--rt-black);
}
.rt-thoughtbubble-top-blue, .rt-thoughtbubble-top-pink, .rt-thoughtbubble-top-dark, .rt-thoughtbubble-top-dark-2, .rt-thoughtbubble-top-white, .rt-thoughtbubble-top-beige-1, .rt-thoughtbubble-top-beige-2, .rt-thoughtbubble-bottom-blue, .rt-thoughtbubble-bottom-pink, .rt-thoughtbubble-bottom-dark, .rt-thoughtbubble-bottom-dark-2, .rt-thoughtbubble-bottom-white, .rt-thoughtbubble-bottom-beige-1, .rt-thoughtbubble-bottom-beige-2, .rt-thoughtbubble-top-left-blue, .rt-thoughtbubble-top-left-pink, .rt-thoughtbubble-top-left-dark, .rt-thoughtbubble-top-left-dark-2, .rt-thoughtbubble-top-left-white, .rt-thoughtbubble-top-left-beige-1, .rt-thoughtbubble-top-left-beige-2, .rt-thoughtbubble-top-right-blue, .rt-thoughtbubble-top-right-pink, .rt-thoughtbubble-top-right-dark, .rt-thoughtbubble-top-right-dark-2, .rt-thoughtbubble-top-right-white, .rt-thoughtbubble-top-right-beige-1, .rt-thoughtbubble-top-right-beige-2, .rt-thoughtbubble-bottom-left-blue, .rt-thoughtbubble-bottom-left-pink, .rt-thoughtbubble-bottom-left-dark, .rt-thoughtbubble-bottom-left-dark-2, .rt-thoughtbubble-bottom-left-white, .rt-thoughtbubble-bottom-left-beige-1, .rt-thoughtbubble-bottom-left-beige-2, .rt-thoughtbubble-bottom-right-blue, .rt-thoughtbubble-bottom-right-pink, .rt-thoughtbubble-bottom-right-dark, .rt-thoughtbubble-bottom-right-dark-2, .rt-thoughtbubble-bottom-right-white, .rt-thoughtbubble-bottom-right-beige-1, .rt-thoughtbubble-bottom-right-beige-2 {
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 276px;
  height: 345px;
  text-transform: uppercase;
  margin: 0 auto;
  font-size: 18px;
  line-height: 26px;
}
.rt-thoughtbubble-top-blue b, .rt-thoughtbubble-top-blue strong, .rt-thoughtbubble-top-pink b, .rt-thoughtbubble-top-pink strong, .rt-thoughtbubble-top-dark b, .rt-thoughtbubble-top-dark strong, .rt-thoughtbubble-top-dark-2 b, .rt-thoughtbubble-top-dark-2 strong, .rt-thoughtbubble-top-white b, .rt-thoughtbubble-top-white strong, .rt-thoughtbubble-top-beige-1 b, .rt-thoughtbubble-top-beige-1 strong, .rt-thoughtbubble-top-beige-2 b, .rt-thoughtbubble-top-beige-2 strong, .rt-thoughtbubble-bottom-blue b, .rt-thoughtbubble-bottom-blue strong, .rt-thoughtbubble-bottom-pink b, .rt-thoughtbubble-bottom-pink strong, .rt-thoughtbubble-bottom-dark b, .rt-thoughtbubble-bottom-dark strong, .rt-thoughtbubble-bottom-dark-2 b, .rt-thoughtbubble-bottom-dark-2 strong, .rt-thoughtbubble-bottom-white b, .rt-thoughtbubble-bottom-white strong, .rt-thoughtbubble-bottom-beige-1 b, .rt-thoughtbubble-bottom-beige-1 strong, .rt-thoughtbubble-bottom-beige-2 b, .rt-thoughtbubble-bottom-beige-2 strong, .rt-thoughtbubble-top-left-blue b, .rt-thoughtbubble-top-left-blue strong, .rt-thoughtbubble-top-left-pink b, .rt-thoughtbubble-top-left-pink strong, .rt-thoughtbubble-top-left-dark b, .rt-thoughtbubble-top-left-dark strong, .rt-thoughtbubble-top-left-dark-2 b, .rt-thoughtbubble-top-left-dark-2 strong, .rt-thoughtbubble-top-left-white b, .rt-thoughtbubble-top-left-white strong, .rt-thoughtbubble-top-left-beige-1 b, .rt-thoughtbubble-top-left-beige-1 strong, .rt-thoughtbubble-top-left-beige-2 b, .rt-thoughtbubble-top-left-beige-2 strong, .rt-thoughtbubble-top-right-blue b, .rt-thoughtbubble-top-right-blue strong, .rt-thoughtbubble-top-right-pink b, .rt-thoughtbubble-top-right-pink strong, .rt-thoughtbubble-top-right-dark b, .rt-thoughtbubble-top-right-dark strong, .rt-thoughtbubble-top-right-dark-2 b, .rt-thoughtbubble-top-right-dark-2 strong, .rt-thoughtbubble-top-right-white b, .rt-thoughtbubble-top-right-white strong, .rt-thoughtbubble-top-right-beige-1 b, .rt-thoughtbubble-top-right-beige-1 strong, .rt-thoughtbubble-top-right-beige-2 b, .rt-thoughtbubble-top-right-beige-2 strong, .rt-thoughtbubble-bottom-left-blue b, .rt-thoughtbubble-bottom-left-blue strong, .rt-thoughtbubble-bottom-left-pink b, .rt-thoughtbubble-bottom-left-pink strong, .rt-thoughtbubble-bottom-left-dark b, .rt-thoughtbubble-bottom-left-dark strong, .rt-thoughtbubble-bottom-left-dark-2 b, .rt-thoughtbubble-bottom-left-dark-2 strong, .rt-thoughtbubble-bottom-left-white b, .rt-thoughtbubble-bottom-left-white strong, .rt-thoughtbubble-bottom-left-beige-1 b, .rt-thoughtbubble-bottom-left-beige-1 strong, .rt-thoughtbubble-bottom-left-beige-2 b, .rt-thoughtbubble-bottom-left-beige-2 strong, .rt-thoughtbubble-bottom-right-blue b, .rt-thoughtbubble-bottom-right-blue strong, .rt-thoughtbubble-bottom-right-pink b, .rt-thoughtbubble-bottom-right-pink strong, .rt-thoughtbubble-bottom-right-dark b, .rt-thoughtbubble-bottom-right-dark strong, .rt-thoughtbubble-bottom-right-dark-2 b, .rt-thoughtbubble-bottom-right-dark-2 strong, .rt-thoughtbubble-bottom-right-white b, .rt-thoughtbubble-bottom-right-white strong, .rt-thoughtbubble-bottom-right-beige-1 b, .rt-thoughtbubble-bottom-right-beige-1 strong, .rt-thoughtbubble-bottom-right-beige-2 b, .rt-thoughtbubble-bottom-right-beige-2 strong {
  font-weight: 900 !important;
}
.rt-thoughtbubble-top-blue .author, .rt-thoughtbubble-top-pink .author, .rt-thoughtbubble-top-dark .author, .rt-thoughtbubble-top-dark-2 .author, .rt-thoughtbubble-top-white .author, .rt-thoughtbubble-top-beige-1 .author, .rt-thoughtbubble-top-beige-2 .author, .rt-thoughtbubble-bottom-blue .author, .rt-thoughtbubble-bottom-pink .author, .rt-thoughtbubble-bottom-dark .author, .rt-thoughtbubble-bottom-dark-2 .author, .rt-thoughtbubble-bottom-white .author, .rt-thoughtbubble-bottom-beige-1 .author, .rt-thoughtbubble-bottom-beige-2 .author, .rt-thoughtbubble-top-left-blue .author, .rt-thoughtbubble-top-left-pink .author, .rt-thoughtbubble-top-left-dark .author, .rt-thoughtbubble-top-left-dark-2 .author, .rt-thoughtbubble-top-left-white .author, .rt-thoughtbubble-top-left-beige-1 .author, .rt-thoughtbubble-top-left-beige-2 .author, .rt-thoughtbubble-top-right-blue .author, .rt-thoughtbubble-top-right-pink .author, .rt-thoughtbubble-top-right-dark .author, .rt-thoughtbubble-top-right-dark-2 .author, .rt-thoughtbubble-top-right-white .author, .rt-thoughtbubble-top-right-beige-1 .author, .rt-thoughtbubble-top-right-beige-2 .author, .rt-thoughtbubble-bottom-left-blue .author, .rt-thoughtbubble-bottom-left-pink .author, .rt-thoughtbubble-bottom-left-dark .author, .rt-thoughtbubble-bottom-left-dark-2 .author, .rt-thoughtbubble-bottom-left-white .author, .rt-thoughtbubble-bottom-left-beige-1 .author, .rt-thoughtbubble-bottom-left-beige-2 .author, .rt-thoughtbubble-bottom-right-blue .author, .rt-thoughtbubble-bottom-right-pink .author, .rt-thoughtbubble-bottom-right-dark .author, .rt-thoughtbubble-bottom-right-dark-2 .author, .rt-thoughtbubble-bottom-right-white .author, .rt-thoughtbubble-bottom-right-beige-1 .author, .rt-thoughtbubble-bottom-right-beige-2 .author {
  text-transform: none;
  font-size: 15px;
  line-height: 16px;
  margin: 6px 0 0;
}
.rt-thoughtbubble-top-blue .author_byline, .rt-thoughtbubble-top-pink .author_byline, .rt-thoughtbubble-top-dark .author_byline, .rt-thoughtbubble-top-dark-2 .author_byline, .rt-thoughtbubble-top-white .author_byline, .rt-thoughtbubble-top-beige-1 .author_byline, .rt-thoughtbubble-top-beige-2 .author_byline, .rt-thoughtbubble-bottom-blue .author_byline, .rt-thoughtbubble-bottom-pink .author_byline, .rt-thoughtbubble-bottom-dark .author_byline, .rt-thoughtbubble-bottom-dark-2 .author_byline, .rt-thoughtbubble-bottom-white .author_byline, .rt-thoughtbubble-bottom-beige-1 .author_byline, .rt-thoughtbubble-bottom-beige-2 .author_byline, .rt-thoughtbubble-top-left-blue .author_byline, .rt-thoughtbubble-top-left-pink .author_byline, .rt-thoughtbubble-top-left-dark .author_byline, .rt-thoughtbubble-top-left-dark-2 .author_byline, .rt-thoughtbubble-top-left-white .author_byline, .rt-thoughtbubble-top-left-beige-1 .author_byline, .rt-thoughtbubble-top-left-beige-2 .author_byline, .rt-thoughtbubble-top-right-blue .author_byline, .rt-thoughtbubble-top-right-pink .author_byline, .rt-thoughtbubble-top-right-dark .author_byline, .rt-thoughtbubble-top-right-dark-2 .author_byline, .rt-thoughtbubble-top-right-white .author_byline, .rt-thoughtbubble-top-right-beige-1 .author_byline, .rt-thoughtbubble-top-right-beige-2 .author_byline, .rt-thoughtbubble-bottom-left-blue .author_byline, .rt-thoughtbubble-bottom-left-pink .author_byline, .rt-thoughtbubble-bottom-left-dark .author_byline, .rt-thoughtbubble-bottom-left-dark-2 .author_byline, .rt-thoughtbubble-bottom-left-white .author_byline, .rt-thoughtbubble-bottom-left-beige-1 .author_byline, .rt-thoughtbubble-bottom-left-beige-2 .author_byline, .rt-thoughtbubble-bottom-right-blue .author_byline, .rt-thoughtbubble-bottom-right-pink .author_byline, .rt-thoughtbubble-bottom-right-dark .author_byline, .rt-thoughtbubble-bottom-right-dark-2 .author_byline, .rt-thoughtbubble-bottom-right-white .author_byline, .rt-thoughtbubble-bottom-right-beige-1 .author_byline, .rt-thoughtbubble-bottom-right-beige-2 .author_byline {
  text-transform: none;
  font-size: 14px;
  margin: 0;
}

.main-text .rt-thoughtbubble-left-blue, .main-text .rt-thoughtbubble-left-pink, .main-text .rt-thoughtbubble-left-dark, .main-text .rt-thoughtbubble-left-dark-2, .main-text .rt-thoughtbubble-left-white, .main-text .rt-thoughtbubble-left-beige-1, .main-text .rt-thoughtbubble-left-beige-2, .main-text .rt-thoughtbubble-right-blue, .main-text .rt-thoughtbubble-right-pink, .main-text .rt-thoughtbubble-right-dark, .main-text .rt-thoughtbubble-right-dark-2, .main-text .rt-thoughtbubble-right-white, .main-text .rt-thoughtbubble-right-beige-1, .main-text .rt-thoughtbubble-right-beige-2, .main-text .rt-thoughtbubble-top-blue, .main-text .rt-thoughtbubble-top-pink, .main-text .rt-thoughtbubble-top-dark, .main-text .rt-thoughtbubble-top-dark-2, .main-text .rt-thoughtbubble-top-white, .main-text .rt-thoughtbubble-top-beige-1, .main-text .rt-thoughtbubble-top-beige-2, .main-text .rt-thoughtbubble-bottom-blue, .main-text .rt-thoughtbubble-bottom-pink, .main-text .rt-thoughtbubble-bottom-dark, .main-text .rt-thoughtbubble-bottom-dark-2, .main-text .rt-thoughtbubble-bottom-white, .main-text .rt-thoughtbubble-bottom-beige-1, .main-text .rt-thoughtbubble-bottom-beige-2, .main-text .rt-thoughtbubble-top-left-blue, .main-text .rt-thoughtbubble-top-left-pink, .main-text .rt-thoughtbubble-top-left-dark, .main-text .rt-thoughtbubble-top-left-dark-2, .main-text .rt-thoughtbubble-top-left-white, .main-text .rt-thoughtbubble-top-left-beige-1, .main-text .rt-thoughtbubble-top-left-beige-2, .main-text .rt-thoughtbubble-top-right-blue, .main-text .rt-thoughtbubble-top-right-pink, .main-text .rt-thoughtbubble-top-right-dark, .main-text .rt-thoughtbubble-top-right-dark-2, .main-text .rt-thoughtbubble-top-right-white, .main-text .rt-thoughtbubble-top-right-beige-1, .main-text .rt-thoughtbubble-top-right-beige-2, .main-text .rt-thoughtbubble-bottom-left-blue, .main-text .rt-thoughtbubble-bottom-left-pink, .main-text .rt-thoughtbubble-bottom-left-dark, .main-text .rt-thoughtbubble-bottom-left-dark-2, .main-text .rt-thoughtbubble-bottom-left-white, .main-text .rt-thoughtbubble-bottom-left-beige-1, .main-text .rt-thoughtbubble-bottom-left-beige-2, .main-text .rt-thoughtbubble-bottom-right-blue, .main-text .rt-thoughtbubble-bottom-right-pink, .main-text .rt-thoughtbubble-bottom-right-dark, .main-text .rt-thoughtbubble-bottom-right-dark-2, .main-text .rt-thoughtbubble-bottom-right-white, .main-text .rt-thoughtbubble-bottom-right-beige-1, .main-text .rt-thoughtbubble-bottom-right-beige-2,
.main-text .rt-speechbubble-left-blue,
.main-text .rt-speechbubble-left-pink,
.main-text .rt-speechbubble-left-dark,
.main-text .rt-speechbubble-left-dark-2,
.main-text .rt-speechbubble-left-white,
.main-text .rt-speechbubble-left-beige-1,
.main-text .rt-speechbubble-left-beige-2,
.main-text .rt-speechbubble-right-blue,
.main-text .rt-speechbubble-right-pink,
.main-text .rt-speechbubble-right-dark,
.main-text .rt-speechbubble-right-dark-2,
.main-text .rt-speechbubble-right-white,
.main-text .rt-speechbubble-right-beige-1,
.main-text .rt-speechbubble-right-beige-2,
.main-text .rt-speechbubble-top-blue,
.main-text .rt-speechbubble-top-pink,
.main-text .rt-speechbubble-top-dark,
.main-text .rt-speechbubble-top-dark-2,
.main-text .rt-speechbubble-top-white,
.main-text .rt-speechbubble-top-beige-1,
.main-text .rt-speechbubble-top-beige-2,
.main-text .rt-speechbubble-bottom-blue,
.main-text .rt-speechbubble-bottom-pink,
.main-text .rt-speechbubble-bottom-dark,
.main-text .rt-speechbubble-bottom-dark-2,
.main-text .rt-speechbubble-bottom-white,
.main-text .rt-speechbubble-bottom-beige-1,
.main-text .rt-speechbubble-bottom-beige-2,
.main-text .rt-speechbubble-top-left-blue,
.main-text .rt-speechbubble-top-left-pink,
.main-text .rt-speechbubble-top-left-dark,
.main-text .rt-speechbubble-top-left-dark-2,
.main-text .rt-speechbubble-top-left-white,
.main-text .rt-speechbubble-top-left-beige-1,
.main-text .rt-speechbubble-top-left-beige-2,
.main-text .rt-speechbubble-top-right-blue,
.main-text .rt-speechbubble-top-right-pink,
.main-text .rt-speechbubble-top-right-dark,
.main-text .rt-speechbubble-top-right-dark-2,
.main-text .rt-speechbubble-top-right-white,
.main-text .rt-speechbubble-top-right-beige-1,
.main-text .rt-speechbubble-top-right-beige-2,
.main-text .rt-speechbubble-bottom-left-blue,
.main-text .rt-speechbubble-bottom-left-pink,
.main-text .rt-speechbubble-bottom-left-dark,
.main-text .rt-speechbubble-bottom-left-dark-2,
.main-text .rt-speechbubble-bottom-left-white,
.main-text .rt-speechbubble-bottom-left-beige-1,
.main-text .rt-speechbubble-bottom-left-beige-2,
.main-text .rt-speechbubble-bottom-right-blue,
.main-text .rt-speechbubble-bottom-right-pink,
.main-text .rt-speechbubble-bottom-right-dark,
.main-text .rt-speechbubble-bottom-right-dark-2,
.main-text .rt-speechbubble-bottom-right-white,
.main-text .rt-speechbubble-bottom-right-beige-1,
.main-text .rt-speechbubble-bottom-right-beige-2 {
  position: absolute;
  right: 15px;
}
@media (max-width: 1199px) {
  .main-text .rt-thoughtbubble-left-blue, .main-text .rt-thoughtbubble-left-pink, .main-text .rt-thoughtbubble-left-dark, .main-text .rt-thoughtbubble-left-dark-2, .main-text .rt-thoughtbubble-left-white, .main-text .rt-thoughtbubble-left-beige-1, .main-text .rt-thoughtbubble-left-beige-2, .main-text .rt-thoughtbubble-right-blue, .main-text .rt-thoughtbubble-right-pink, .main-text .rt-thoughtbubble-right-dark, .main-text .rt-thoughtbubble-right-dark-2, .main-text .rt-thoughtbubble-right-white, .main-text .rt-thoughtbubble-right-beige-1, .main-text .rt-thoughtbubble-right-beige-2, .main-text .rt-thoughtbubble-top-blue, .main-text .rt-thoughtbubble-top-pink, .main-text .rt-thoughtbubble-top-dark, .main-text .rt-thoughtbubble-top-dark-2, .main-text .rt-thoughtbubble-top-white, .main-text .rt-thoughtbubble-top-beige-1, .main-text .rt-thoughtbubble-top-beige-2, .main-text .rt-thoughtbubble-bottom-blue, .main-text .rt-thoughtbubble-bottom-pink, .main-text .rt-thoughtbubble-bottom-dark, .main-text .rt-thoughtbubble-bottom-dark-2, .main-text .rt-thoughtbubble-bottom-white, .main-text .rt-thoughtbubble-bottom-beige-1, .main-text .rt-thoughtbubble-bottom-beige-2, .main-text .rt-thoughtbubble-top-left-blue, .main-text .rt-thoughtbubble-top-left-pink, .main-text .rt-thoughtbubble-top-left-dark, .main-text .rt-thoughtbubble-top-left-dark-2, .main-text .rt-thoughtbubble-top-left-white, .main-text .rt-thoughtbubble-top-left-beige-1, .main-text .rt-thoughtbubble-top-left-beige-2, .main-text .rt-thoughtbubble-top-right-blue, .main-text .rt-thoughtbubble-top-right-pink, .main-text .rt-thoughtbubble-top-right-dark, .main-text .rt-thoughtbubble-top-right-dark-2, .main-text .rt-thoughtbubble-top-right-white, .main-text .rt-thoughtbubble-top-right-beige-1, .main-text .rt-thoughtbubble-top-right-beige-2, .main-text .rt-thoughtbubble-bottom-left-blue, .main-text .rt-thoughtbubble-bottom-left-pink, .main-text .rt-thoughtbubble-bottom-left-dark, .main-text .rt-thoughtbubble-bottom-left-dark-2, .main-text .rt-thoughtbubble-bottom-left-white, .main-text .rt-thoughtbubble-bottom-left-beige-1, .main-text .rt-thoughtbubble-bottom-left-beige-2, .main-text .rt-thoughtbubble-bottom-right-blue, .main-text .rt-thoughtbubble-bottom-right-pink, .main-text .rt-thoughtbubble-bottom-right-dark, .main-text .rt-thoughtbubble-bottom-right-dark-2, .main-text .rt-thoughtbubble-bottom-right-white, .main-text .rt-thoughtbubble-bottom-right-beige-1, .main-text .rt-thoughtbubble-bottom-right-beige-2,
  .main-text .rt-speechbubble-left-blue,
  .main-text .rt-speechbubble-left-pink,
  .main-text .rt-speechbubble-left-dark,
  .main-text .rt-speechbubble-left-dark-2,
  .main-text .rt-speechbubble-left-white,
  .main-text .rt-speechbubble-left-beige-1,
  .main-text .rt-speechbubble-left-beige-2,
  .main-text .rt-speechbubble-right-blue,
  .main-text .rt-speechbubble-right-pink,
  .main-text .rt-speechbubble-right-dark,
  .main-text .rt-speechbubble-right-dark-2,
  .main-text .rt-speechbubble-right-white,
  .main-text .rt-speechbubble-right-beige-1,
  .main-text .rt-speechbubble-right-beige-2,
  .main-text .rt-speechbubble-top-blue,
  .main-text .rt-speechbubble-top-pink,
  .main-text .rt-speechbubble-top-dark,
  .main-text .rt-speechbubble-top-dark-2,
  .main-text .rt-speechbubble-top-white,
  .main-text .rt-speechbubble-top-beige-1,
  .main-text .rt-speechbubble-top-beige-2,
  .main-text .rt-speechbubble-bottom-blue,
  .main-text .rt-speechbubble-bottom-pink,
  .main-text .rt-speechbubble-bottom-dark,
  .main-text .rt-speechbubble-bottom-dark-2,
  .main-text .rt-speechbubble-bottom-white,
  .main-text .rt-speechbubble-bottom-beige-1,
  .main-text .rt-speechbubble-bottom-beige-2,
  .main-text .rt-speechbubble-top-left-blue,
  .main-text .rt-speechbubble-top-left-pink,
  .main-text .rt-speechbubble-top-left-dark,
  .main-text .rt-speechbubble-top-left-dark-2,
  .main-text .rt-speechbubble-top-left-white,
  .main-text .rt-speechbubble-top-left-beige-1,
  .main-text .rt-speechbubble-top-left-beige-2,
  .main-text .rt-speechbubble-top-right-blue,
  .main-text .rt-speechbubble-top-right-pink,
  .main-text .rt-speechbubble-top-right-dark,
  .main-text .rt-speechbubble-top-right-dark-2,
  .main-text .rt-speechbubble-top-right-white,
  .main-text .rt-speechbubble-top-right-beige-1,
  .main-text .rt-speechbubble-top-right-beige-2,
  .main-text .rt-speechbubble-bottom-left-blue,
  .main-text .rt-speechbubble-bottom-left-pink,
  .main-text .rt-speechbubble-bottom-left-dark,
  .main-text .rt-speechbubble-bottom-left-dark-2,
  .main-text .rt-speechbubble-bottom-left-white,
  .main-text .rt-speechbubble-bottom-left-beige-1,
  .main-text .rt-speechbubble-bottom-left-beige-2,
  .main-text .rt-speechbubble-bottom-right-blue,
  .main-text .rt-speechbubble-bottom-right-pink,
  .main-text .rt-speechbubble-bottom-right-dark,
  .main-text .rt-speechbubble-bottom-right-dark-2,
  .main-text .rt-speechbubble-bottom-right-white,
  .main-text .rt-speechbubble-bottom-right-beige-1,
  .main-text .rt-speechbubble-bottom-right-beige-2 {
    display: none;
  }
}

.rt-canva {
  width: 100%;
  max-width: 480px;
}
.rt-canva div {
  position: relative;
  height: 0;
  padding-top: 125%;
  padding-bottom: 0;
  box-shadow: 0 2px 8px 0 rgba(var(--rt-canva-box-shadow-rgb), 0.16);
  margin-top: 1.6em;
  margin-bottom: 0.9em;
  overflow: hidden;
  border-radius: 8px;
  will-change: transform;
}
.rt-canva div iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: none;
  padding: 0;
  margin: 0;
}

.rt-canva-fullscreen, .rt-youtube-fullscreen {
  height: 65vh;
}
.rt-canva-fullscreen div, .rt-youtube-fullscreen div {
  position: relative;
  height: 100%;
  padding-bottom: 0;
  box-shadow: 0 2px 8px 0 rgba(var(--rt-canva-box-shadow-rgb), 0.16);
  margin-top: 1.6em;
  margin-bottom: 0.9em;
  overflow: hidden;
  border-radius: 15px;
  will-change: transform;
}
.rt-canva-fullscreen div iframe, .rt-youtube-fullscreen div iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: none;
  padding: 0;
  margin: 0;
}

.rt-youtube-episodes-fullscreen {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--rt-black);
  border-radius: 15px;
  padding-bottom: 1px;
  color: var(--rt-beige-contrast);
}
.rt-youtube-episodes-fullscreen > div {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  box-shadow: 0 2px 8px 0 rgba(var(--rt-canva-box-shadow-rgb), 0.16);
  border-radius: 15px;
  padding-bottom: 0;
  will-change: transform;
  overflow: hidden;
}
.rt-youtube-episodes-fullscreen > div:has(.flying-press-youtube) {
  padding-top: 0;
}
.rt-youtube-episodes-fullscreen > div iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.rt-block-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns on large screens */
  gap: 1rem; /* mellanrum mellan korten */
  padding: 0;
  max-width: 75ch;
}
.rt-block-list li {
  background: white;
  border-radius: 10px;
  padding: 12px 15px 12px 15px;
  height: 100%;
  width: 100%;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.rt-bg-white .rt-block-list li, .rt-bg-beige-dark .rt-block-list li {
  background: var(--rt-beige-main);
}
.rt-bg-dark .rt-block-list li {
  background: var(--rt-beige-contrast);
}
.rt-block-list li a {
  color: var(--rt-text-color);
  text-decoration: none;
  font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem);
  font-weight: 400;
  line-height: 130%;
  display: inline-block;
  padding-left: 40px;
}
.rt-block-list li a:hover {
  color: var(--rt-link-color);
}
.rt-block-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-size: contain;
  display: block;
}
.rt-block-list li.icon-heart::before {
  background: url("assets/images/icon-heart.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-rikatillsammans::before {
  background: url("assets/images/logo.php?c=dark") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-tools::before, .rt-block-list li.icon-verktyg::before {
  background: url("assets/images/icon-screwdriver-wrench-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-book::before {
  background: url("assets/images/icon-book-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-vardagsekonomi::before {
  background: url("assets/images/icon-money-bag.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-advisor::before {
  background: url("assets/images/icon-user-tie.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-spara::before {
  background: url("assets/images/icon-money-bill-trend-up.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-piggy-bank::before {
  background: url("assets/images/icon-piggy-bank-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-mobile::before {
  background: url("assets/images/icon-mobile-screen-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-tag::before, .rt-block-list li.icon-tags::before {
  background: url("assets/images/icon-tags-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-steps::before {
  background: url("assets/images/icon-steps.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-skifte-i-livet::before {
  background: url("assets/images/icon-road-barrier-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-episode::before, .rt-block-list li.icon-rt_episodes::before {
  background: url("assets/images/icon-headphones.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-episodes::before {
  background: url("assets/images/icon-podcast-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-page::before {
  background: url("assets/images/icon-newspaper.svg") no-repeat center;
  background-size: cover;
}
.rt-block-list li.type-forum::before, .rt-block-list li.icon-forum::before {
  background: url("assets/images/icon-comments.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-chart::before, .rt-block-list li.icon-rt_charts::before {
  background: url("assets/images/icon-chart-simple-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-chart2::before {
  background: url("assets/images/icon-chart-line-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-pension::before {
  background: url("assets/images/icon-person-cane-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-compass::before {
  background: url("assets/images/icon-compass.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-children::before {
  background: url("assets/images/icon-children-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-video::before, .rt-block-list li.icon-reel::before, .rt-block-list li.icon-rt_reels::before {
  background: url("assets/images/icon-youtube-brands.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-study::before, .rt-block-list li.icon-rt_studies::before {
  background: url("assets/images/icon-microscope.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-rt_tips::before, .rt-block-list li.icon-tips::before, .rt-block-list li.icon-bulb::before {
  background: url("assets/images/icon-lightbulb-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-carousel::before, .rt-block-list li.icon-rt_carousels::before {
  background: url("assets/images/icon-images-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-external::before {
  background: url("assets/images/icon-square-arrow-up-right-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-checklist::before {
  background: url("assets/images/icon-list-check-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-basket::before {
  background: url("assets/images/icon-basket-shopping-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-risk::before {
  background: url("assets/images/icon-umbrella-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-nyhetsbrev::before, .rt-block-list li.icon-email::before {
  background: url("assets/images/icon-envelope-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-supporter::before, .rt-block-list li.icon-patreon::before {
  background: url("assets/images/icon-flag.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-fund::before, .rt-block-list li.icon-fond::before, .rt-block-list li.icon-investment::before {
  background: url("assets/images/_rt-icon.php?icon=icon-sack-dollar-solid&c=B86A7E") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-number1::before {
  background: url("assets/images/icon-number1.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-number2::before {
  background: url("assets/images/icon-number2.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-number3::before {
  background: url("assets/images/icon-number3.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-number4::before {
  background: url("assets/images/icon-number4.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-number5::before {
  background: url("assets/images/icon-number5.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li.icon-number6::before {
  background: url("assets/images/icon-number6.svg") no-repeat center;
  background-size: contain;
}
.rt-block-list li:hover {
  color: var(--rt-link-color);
  box-shadow: 0 0 10px rgba(var(--rt-black-rgb), 0.25);
}
@media (max-width: 575px) {
  .rt-block-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
  .rt-block-list li {
    padding: 8px 10px 8px 10px;
  }
}

.rt-resources-block {
  padding-top: 60px;
}
@media (max-width: 479px) {
  .rt-resources-block {
    padding: 30px 0;
  }
}
.rt-resources-block h2 {
  margin: 0 0 27px;
}
@media (max-width: 479px) {
  .rt-resources-block h2 {
    margin: 0 0 10px;
  }
}
.rt-resources-block .resources-list .resource-item {
  background: var(--rt-white);
  border-radius: 10px;
  padding: 15px 20px 15px 20px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rt-resources-block .resources-list .resource-item b {
  font-weight: 800;
}
.rt-resources-block .resources-list .resource-item:hover {
  box-shadow: 0 0 10px rgba(var(--rt-black-rgb), 0.25);
}
.rt-bg-white .rt-resources-block .resources-list .resource-item {
  background: var(--rt-beige-main);
}
.rt-resources-block .resources-list .resource-item.resource-item-row {
  background: #fbf9f7;
  border-radius: 6px;
  padding: 18px 38px 18px 22px;
}
.rt-resources-block .resources-list .resource-item.resource-item-row a {
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .rt-resources-block .resources-list .resource-item.resource-item-row a {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.rt-resources-block .resources-list .resource-item.resource-item-row a::before {
  background-image: url("assets/images/icon-link.svg");
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}
@media (max-width: 575.98px) {
  .rt-resources-block .resources-list .resource-item.resource-item-row a::before {
    top: 9px;
  }
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-title {
  font-size: 20px;
}
@media (min-width: 576px) {
  .rt-resources-block .resources-list .resource-item.resource-item-row .post-title {
    flex: 1;
  }
}
@media (max-width: 575.98px) {
  .rt-resources-block .resources-list .resource-item.resource-item-row .post-title {
    font-size: 18px;
    display: block;
    width: 100%;
    margin: 0 0 12px;
  }
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  display: block;
  margin-left: 20px;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-size: contain;
  display: block;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-heart::before {
  background: url("assets/images/icon-heart.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-rikatillsammans::before {
  background: url("assets/images/logo.php?c=dark") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-tools::before, .rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-verktyg::before {
  background: url("assets/images/icon-screwdriver-wrench-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-book::before {
  background: url("assets/images/icon-book-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-vardagsekonomi::before {
  background: url("assets/images/icon-money-bag.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-advisor::before {
  background: url("assets/images/icon-user-tie.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-spara::before {
  background: url("assets/images/icon-money-bill-trend-up.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-piggy-bank::before {
  background: url("assets/images/icon-piggy-bank-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-mobile::before {
  background: url("assets/images/icon-mobile-screen-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-tag::before, .rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-tags::before {
  background: url("assets/images/icon-tags-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-steps::before {
  background: url("assets/images/icon-steps.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-skifte-i-livet::before {
  background: url("assets/images/icon-road-barrier-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-episode::before, .rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-rt_episodes::before {
  background: url("assets/images/icon-headphones.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-episodes::before {
  background: url("assets/images/icon-podcast-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-page::before {
  background: url("assets/images/icon-newspaper.svg") no-repeat center;
  background-size: cover;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.type-forum::before, .rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-forum::before {
  background: url("assets/images/icon-comments.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-chart::before, .rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-rt_charts::before {
  background: url("assets/images/icon-chart-simple-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-chart2::before {
  background: url("assets/images/icon-chart-line-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-pension::before {
  background: url("assets/images/icon-person-cane-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-compass::before {
  background: url("assets/images/icon-compass.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-children::before {
  background: url("assets/images/icon-children-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-video::before, .rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-reel::before, .rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-rt_reels::before {
  background: url("assets/images/icon-youtube-brands.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-study::before, .rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-rt_studies::before {
  background: url("assets/images/icon-microscope.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-rt_tips::before, .rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-tips::before, .rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-bulb::before {
  background: url("assets/images/icon-lightbulb-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-carousel::before, .rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-rt_carousels::before {
  background: url("assets/images/icon-images-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-external::before {
  background: url("assets/images/icon-square-arrow-up-right-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-checklist::before {
  background: url("assets/images/icon-list-check-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-basket::before {
  background: url("assets/images/icon-basket-shopping-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-risk::before {
  background: url("assets/images/icon-umbrella-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-nyhetsbrev::before, .rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-email::before {
  background: url("assets/images/icon-envelope-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-supporter::before, .rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-patreon::before {
  background: url("assets/images/icon-flag.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-fund::before, .rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-fond::before, .rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-investment::before {
  background: url("assets/images/_rt-icon.php?icon=icon-sack-dollar-solid&c=B86A7E") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-number1::before {
  background: url("assets/images/icon-number1.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-number2::before {
  background: url("assets/images/icon-number2.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-number3::before {
  background: url("assets/images/icon-number3.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-number4::before {
  background: url("assets/images/icon-number4.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-number5::before {
  background: url("assets/images/icon-number5.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label.icon-number6::before {
  background: url("assets/images/icon-number6.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label::before {
  width: 18px;
  height: 18px;
}
@media (max-width: 575.98px) {
  .rt-resources-block .resources-list .resource-item.resource-item-row .post-type-label {
    order: 3;
  }
}
.rt-resources-block .resources-list .resource-item.resource-item-row .link-text {
  display: block;
  margin-left: 55px;
  border-bottom: 1px solid;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 575.98px) {
  .rt-resources-block .resources-list .resource-item.resource-item-row .link-text {
    margin-left: 0;
  }
}
.rt-resources-block .resources-list a {
  color: var(--rt-text-color);
  text-decoration: none;
  font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem);
  font-weight: 400;
  line-height: 130%;
  display: inline-block;
  padding-left: 40px;
  position: relative;
}
.rt-resources-block .resources-list a:hover {
  color: var(--rt-link-color);
}
.rt-resources-block .resources-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-size: contain;
  display: block;
}
.rt-resources-block .resources-list a.icon-heart::before {
  background: url("assets/images/icon-heart.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-rikatillsammans::before {
  background: url("assets/images/logo.php?c=dark") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-tools::before, .rt-resources-block .resources-list a.icon-verktyg::before {
  background: url("assets/images/icon-screwdriver-wrench-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-book::before {
  background: url("assets/images/icon-book-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-vardagsekonomi::before {
  background: url("assets/images/icon-money-bag.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-advisor::before {
  background: url("assets/images/icon-user-tie.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-spara::before {
  background: url("assets/images/icon-money-bill-trend-up.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-piggy-bank::before {
  background: url("assets/images/icon-piggy-bank-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-mobile::before {
  background: url("assets/images/icon-mobile-screen-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-tag::before, .rt-resources-block .resources-list a.icon-tags::before {
  background: url("assets/images/icon-tags-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-steps::before {
  background: url("assets/images/icon-steps.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-skifte-i-livet::before {
  background: url("assets/images/icon-road-barrier-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-episode::before, .rt-resources-block .resources-list a.icon-rt_episodes::before {
  background: url("assets/images/icon-headphones.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-episodes::before {
  background: url("assets/images/icon-podcast-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-page::before {
  background: url("assets/images/icon-newspaper.svg") no-repeat center;
  background-size: cover;
}
.rt-resources-block .resources-list a.type-forum::before, .rt-resources-block .resources-list a.icon-forum::before {
  background: url("assets/images/icon-comments.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-chart::before, .rt-resources-block .resources-list a.icon-rt_charts::before {
  background: url("assets/images/icon-chart-simple-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-chart2::before {
  background: url("assets/images/icon-chart-line-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-pension::before {
  background: url("assets/images/icon-person-cane-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-compass::before {
  background: url("assets/images/icon-compass.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-children::before {
  background: url("assets/images/icon-children-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-video::before, .rt-resources-block .resources-list a.icon-reel::before, .rt-resources-block .resources-list a.icon-rt_reels::before {
  background: url("assets/images/icon-youtube-brands.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-study::before, .rt-resources-block .resources-list a.icon-rt_studies::before {
  background: url("assets/images/icon-microscope.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-rt_tips::before, .rt-resources-block .resources-list a.icon-tips::before, .rt-resources-block .resources-list a.icon-bulb::before {
  background: url("assets/images/icon-lightbulb-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-carousel::before, .rt-resources-block .resources-list a.icon-rt_carousels::before {
  background: url("assets/images/icon-images-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-external::before {
  background: url("assets/images/icon-square-arrow-up-right-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-checklist::before {
  background: url("assets/images/icon-list-check-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-basket::before {
  background: url("assets/images/icon-basket-shopping-solid.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-risk::before {
  background: url("assets/images/icon-umbrella-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-nyhetsbrev::before, .rt-resources-block .resources-list a.icon-email::before {
  background: url("assets/images/icon-envelope-solid-full.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-supporter::before, .rt-resources-block .resources-list a.icon-patreon::before {
  background: url("assets/images/icon-flag.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-fund::before, .rt-resources-block .resources-list a.icon-fond::before, .rt-resources-block .resources-list a.icon-investment::before {
  background: url("assets/images/_rt-icon.php?icon=icon-sack-dollar-solid&c=B86A7E") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-number1::before {
  background: url("assets/images/icon-number1.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-number2::before {
  background: url("assets/images/icon-number2.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-number3::before {
  background: url("assets/images/icon-number3.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-number4::before {
  background: url("assets/images/icon-number4.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-number5::before {
  background: url("assets/images/icon-number5.svg") no-repeat center;
  background-size: contain;
}
.rt-resources-block .resources-list a.icon-number6::before {
  background: url("assets/images/icon-number6.svg") no-repeat center;
  background-size: contain;
}

.rt-resources-block .resources-list.sub-template-item-rt-x-card a {
  padding-left: 0;
}

.rt-swipe-block .swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  justify-content: center;
}
.rt-swipe-block .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px 10px;
  background: var(--rt-beige-contrast);
  border-radius: 50%;
  cursor: pointer;
}
.rt-bg-beige-contrast .rt-swipe-block .swiper-pagination .swiper-pagination-bullet {
  background: var(--rt-white);
}
.rt-bg-beige-main .rt-swipe-block .swiper-pagination .swiper-pagination-bullet {
  background: var(--rt-black);
}
.rt-swipe-block .swiper-pagination .swiper-pagination-bullet.tns-nav-active, .rt-swipe-block .swiper-pagination .swiper-pagination-bullet:hover {
  background: var(--rt-black);
}
.rt-swipe-block .swiper-container {
  position: relative;
}
.rt-swipe-block .swiper-container .swiper-wrapper {
  opacity: 0;
}
.rt-swipe-block .swiper-container .swiper-wrapper.tns-slider {
  opacity: 1;
}
@media (max-width: 639px) {
  .rt-swipe-block .swiper-container {
    padding: 0 5px;
  }
}
@media (max-width: 575px) {
  .rt-swipe-block .swiper-container {
    padding: 0;
    width: calc(100% + 13px);
  }
}
.rt-swipe-block .swiper-container .swiper-slide .col {
  height: 100%;
}
.rt-swipe-block .swiper-container .swiper-slide .rt-reel-card {
  width: 100%;
}
.rt-swipe-block .swiper-container .swiper-slide .rt-carousel-card {
  width: 100%;
}
.rt-swipe-block .swiper-container .swiper-button-next, .rt-swipe-block .swiper-container .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: url("assets/images/icon-chevron-down.svg") no-repeat center var(--rt-white);
  background-size: 100%;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.rt-swipe-block .swiper-container .swiper-button-next {
  transform: translateY(-50%) rotate(-90deg);
  right: -15px;
}
@media (max-width: 639px) {
  .rt-swipe-block .swiper-container .swiper-button-next {
    right: -5px;
  }
}
@media (max-width: 575.98px) {
  .rt-swipe-block .swiper-container .swiper-button-next {
    right: 8px;
  }
}
.rt-swipe-block .swiper-container .swiper-button-prev {
  transform: translateY(-50%) rotate(90deg);
  left: -15px;
}
@media (max-width: 639px) {
  .rt-swipe-block .swiper-container .swiper-button-prev {
    left: -5px;
  }
}
.rt-swipe-block .see-more-item, .rt-swipe-block .load-more-item {
  width: 100%;
  height: 100%;
  display: flex;
  background: var(--rt-beige-dark);
  border-radius: 10px;
}
.rt-swipe-block .see-more-item a, .rt-swipe-block .see-more-item button, .rt-swipe-block .load-more-item a, .rt-swipe-block .load-more-item button {
  border: none;
  color: #fff;
  background: none;
  font-weight: 700;
  font-size: 24px;
  text-decoration: none;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-appearance: none;
}
.rt-swipe-block .see-more-item:hover, .rt-swipe-block .load-more-item:hover {
  background: var(--rt-link-color);
}

.rt-swiper-v2-block {
  /* Container styles */
  /* Skeleton loader styles */
  /* Core Swiper styles needed for functionality */
  /* Override any inherited styles from .rt-swipe-block */
  /* Navigation buttons - matching tiny-slider style */
  /* Responsive adjustments to match tiny-slider */
  /* Pagination */
  /* Hide disabled button */
  /* Specific overrides to prevent conflicts with rt_swipe styles */
  /* Ensure our navigation works */
}
.rt-swiper-v2-block .rt-swiper-v2-container {
  position: relative;
  min-height: 300px;
}
.rt-swiper-v2-block .rt-swiper-v2-skeleton {
  padding: 20px 0;
}
.rt-swiper-v2-block .rt-skeleton-cards {
  display: flex;
  gap: 16px;
  overflow: hidden;
}
.rt-swiper-v2-block .rt-skeleton-card {
  flex: 0 0 calc(25% - 12px);
  height: 300px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: rt-loading 1.5s infinite;
  border-radius: 8px;
}
@media (max-width: 991px) {
  .rt-swiper-v2-block .rt-skeleton-card {
    flex: 0 0 calc(33.333% - 12px);
  }
}
@media (max-width: 767px) {
  .rt-swiper-v2-block .rt-skeleton-card {
    flex: 0 0 calc(50% - 8px);
  }
}
@media (max-width: 575px) {
  .rt-swiper-v2-block .rt-skeleton-card {
    flex: 0 0 calc(66.666% - 8px);
  }
}
@keyframes rt-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.rt-swiper-v2-block .rt-swiper-v2 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  z-index: 1;
}
.rt-swiper-v2-block .rt-swiper-v2-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.rt-swiper-v2-block .rt-swiper-v2-hold {
  position: relative;
}
.rt-swiper-v2-block .rt-swiper-v2-slide {
  flex-shrink: 0;
  width: 100%;
  align-self: stretch;
  position: relative;
  transition-property: transform;
}
.rt-swiper-v2-block .rt-swiper-v2-slide > .col {
  display: flex;
  height: 100%;
}
.rt-swiper-v2-block .rt-swiper-v2-slide .rt-reel-card {
  width: 100%;
}
.rt-swiper-v2-block .item {
  /* Ensure items display correctly */
  height: 100%;
}
.rt-swiper-v2-block .rt-swiper-v2-button-next,
.rt-swiper-v2-block .rt-swiper-v2-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: url("assets/images/icon-chevron-down.svg") no-repeat center var(--rt-white);
  background-size: 100%;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.rt-swiper-v2-block .rt-swiper-v2-button-next {
  transform: translateY(-50%) rotate(-90deg);
  right: -15px;
}
.rt-swiper-v2-block .rt-swiper-v2-button-prev {
  transform: translateY(-50%) rotate(90deg);
  left: -15px;
}
@media (max-width: 639px) {
  .rt-swiper-v2-block .rt-swiper-v2-button-next {
    right: -5px;
  }
  .rt-swiper-v2-block .rt-swiper-v2-button-prev {
    left: -5px;
  }
}
@media (max-width: 575.98px) {
  .rt-swiper-v2-block .rt-swiper-v2-button-next {
    right: 8px;
  }
  .rt-swiper-v2-block .rt-swiper-v2-button-prev {
    left: 8px;
  }
  .rt-swiper-v2-block .col-12 {
    padding: 0;
  }
}
.rt-swiper-v2-block .rt-swiper-v2-pagination {
  text-align: center;
  margin: 20px 0 0;
  width: 100%;
}
.rt-swiper-v2-block .rt-swiper-v2-pagination .swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: var(--rt-beige-main);
  border-radius: 50%;
  cursor: pointer;
}
.rt-bg-beige-main .rt-swiper-v2-block .rt-swiper-v2-pagination .swiper-pagination-bullet {
  background: var(--rt-beige-dark);
}
.rt-swiper-v2-block .rt-swiper-v2-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--rt-black);
}
.rt-swiper-v2-block .rt-swiper-v2-button-prev.swiper-button-disabled,
.rt-swiper-v2-block .rt-swiper-v2-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.rt-swiper-v2-block .swiper-button-next,
.rt-swiper-v2-block .swiper-button-prev,
.rt-swiper-v2-block .swiper-pagination,
.rt-swiper-v2-block .swiper-wrapper,
.rt-swiper-v2-block .swiper-slide {
  /* These classes don't exist in our markup, but just in case */
  all: unset;
  display: none !important;
}
.rt-swiper-v2-block .rt-swiper-v2-button-next,
.rt-swiper-v2-block .rt-swiper-v2-button-prev {
  display: flex !important;
}
@media (min-width: 992px) {
  .rt-swiper-v2-block .rt-reel-card.small {
    max-width: none;
  }
}

.rt-video-img {
  position: relative;
  width: 100%;
  display: inline-block;
}
.rt-video-img > a {
  display: block;
}
.rt-video-img .main-image {
  width: 100%;
  height: auto;
  display: block;
}
.rt-video-img .corner-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: auto;
  z-index: 2;
}
@media (min-width: 768px) {
  .rt-video-img .corner-logo {
    width: 60px;
    top: 20px;
    left: 20px;
  }
}
.rt-video-img .rt-overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 10px;
  background: rgba(var(--rt-black-rgb), 0.7);
  border-radius: 6px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  z-index: 2;
  text-transform: uppercase;
}
.rt-video-img .rt-overlay-badge .duration, .rt-video-img .rt-overlay-badge .text, .rt-video-img .rt-overlay-badge .time-since {
  color: var(--rt-white);
  font-size: clamp(0.694rem, 0.5828rem + 0.556vw, 0.833rem);
}
.rt-video-img .rt-overlay-badge b {
  font-weight: 900;
}
@media (min-width: 768px) {
  .rt-video-img .rt-overlay-badge {
    bottom: 30px;
    left: 20px;
  }
}
.rt-video-img:hover .rt-overlay-badge {
  background: rgba(var(--rt-blue-rgb), 0.8);
}

.rt-video-img.has-play-button a,
.rt-supporter-episode-img.has-play-button .img-container {
  position: relative;
}
.rt-video-img.has-play-button a::after, .rt-video-img.has-play-button a::before,
.rt-supporter-episode-img.has-play-button .img-container::after,
.rt-supporter-episode-img.has-play-button .img-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url("assets/images/icon-play-solid.svg") no-repeat center;
  background-size: contain;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.rt-video-img.has-play-button a::before,
.rt-supporter-episode-img.has-play-button .img-container::before {
  background-image: url("assets/images/icon-play-solid-hover.svg");
  z-index: 2;
  opacity: 0;
}
.rt-video-img.has-play-button a:hover::before,
.rt-supporter-episode-img.has-play-button .img-container:hover::before {
  opacity: 1;
}

.rt-support-block {
  background: var(--rt-pink);
}
.rt-support-block .rt-support .rt-support-title {
  position: relative;
  padding-top: 47px;
  font-size: 20px;
  margin: 0;
}
.rt-support-block .rt-support .rt-support-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 76px;
  height: 45px;
  margin-left: -38px;
  background: url("assets/images/icon-flags.svg") no-repeat center;
  background-size: contain;
}
.rt-support-block .rt-support small {
  font-size: 10px;
  line-height: 1;
  margin: 0 0 11px;
  display: block;
}
.rt-support-block .rt-support .rt-support-price {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
}
.rt-support-block .btn.btn-primary {
  background: var(--rt-beige-main);
  font-weight: 500;
  font-size: 18px;
}
.rt-support-block .btn.btn-primary:hover, .rt-support-block .btn.btn-primary:active {
  background: var(--rt-btn-primary-hover);
}
.rt-support-block.support-v2 .text-hold {
  position: relative;
}
.rt-support-block.support-v2 .text-hold::after {
  content: "";
  position: absolute;
  top: -32px;
  right: -12px;
  width: 1px;
  height: calc(100% + 64px);
  background: #000;
  opacity: 0.1;
}
@media (max-width: 767px) {
  .rt-support-block.support-v2 .text-hold::after {
    display: none;
  }
}
.rt-support-block.support-v2 .text-hold > * {
  max-width: 500px;
}
@media (min-width: 992px) {
  .rt-support-block.support-v2 .text-hold h2 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 40px;
  }
}
.rt-support-block.support-v2 .text-hold p {
  font-size: 0.875rem;
  margin: 0 0 21px;
}
.rt-support-block.support-v2 .text-hold p.lead {
  font-size: 1.125rem;
  margin: 0 0 28px;
}
.rt-support-block.support-v2 .text-hold a {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}
.rt-support-block.support-v2 .text-hold img {
  margin: 22px 0 0;
}
.rt-support-block.support-v2 .btn {
  border-radius: 36px;
  max-width: 257px;
  margin-left: auto;
  margin-right: auto;
}
.rt-support-block.support-v2 .btn.btn-primary {
  background: rgba(255, 255, 255, 0.2);
}
.rt-support-block.support-v2 .btn.btn-primary:hover, .rt-support-block.support-v2 .btn.btn-primary:active {
  background: rgb(255, 255, 255);
}
.rt-support-block.support-v2 .rt-support {
  position: relative;
}
.rt-support-block.support-v2 .rt-support::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -12px;
  width: calc(100% + 24px);
  height: 1px;
  background: #000;
  opacity: 0.1;
}
.rt-support-block.support-v2 .rt-support p {
  font-size: 1.125rem;
  margin: 13px 0 24px;
}
.rt-support-block.support-v2 .rt-support .btn {
  font-weight: 700;
}
.rt-support-block.support-v2 .rt-support-2 {
  padding-top: 22px;
}
.rt-support-block.support-v2 .rt-support-2 p {
  text-align: center;
}
.rt-support-block.support-v2 .rt-support-2 p:first-child {
  font-size: 0.875rem;
}
.rt-support-block.support-v2 .rt-support-2 .btn {
  font-size: 0.875rem;
}

.rt-comments-mobile {
  border: 1px solid var(--rt-black);
  border-radius: 10px;
  padding: 13px 20px 13px 70px;
  position: relative;
  width: 100%;
  font-weight: 900;
  font-size: 18px;
  line-height: 32px;
}
.rt-comments-mobile::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: url("assets/images/icon-comment-single.svg") no-repeat center;
  background-size: contain;
}

.media-block-wrapper.warning {
  background: rgba(248, 200, 216, 0.7);
}
.media-block-wrapper .nav-link {
  border: 0;
  padding-bottom: 5px;
}
@media (max-width: 479px) {
  .media-block-wrapper .nav-link .text-small {
    display: none;
  }
}
@media (max-width: 420px) {
  .media-block-wrapper .nav-link {
    padding: 0 12px 5px !important;
  }
}
@media (max-width: 365px) {
  .media-block-wrapper .nav-link {
    padding: 0 8px 5px !important;
  }
}
.media-block-wrapper .tab-content .tab-pane {
  background: var(--rt-white);
  padding: 15px;
  border-radius: 0 10px 10px 10px;
  font-size: clamp(0.833rem, 0.8218rem + 0.056vw, 0.889rem);
}
.media-block-wrapper .tab-content .tab-pane p {
  max-width: 90ch;
}
@media (max-width: 500px) {
  .media-block-wrapper .btn.btn-rt-nav {
    padding: 14px 10px !important;
    height: auto !important;
    min-width: 0;
  }
  .media-block-wrapper .btn.btn-rt-nav .text-small {
    display: none;
  }
}
@media (max-width: 500px) {
  .media-block-wrapper .btn.btn-rt-nav.btn-prev {
    padding-left: 26px !important;
  }
}
@media (max-width: 500px) {
  .media-block-wrapper .btn.btn-rt-nav.btn-next {
    padding-right: 26px !important;
  }
}
@media (max-width: 450px) {
  .media-block-wrapper .btn.btn-rt-nav {
    font-size: 14px;
    line-height: 15px;
  }
}
@media (max-width: 365px) {
  .media-block-wrapper .btn.btn-rt-nav {
    font-size: 11px;
    line-height: 11px;
  }
}

@media (max-width: 991.98px) {
  .more-calculators-block {
    padding: 72px 0;
  }
}
@media (max-width: 767px) {
  .more-calculators-block {
    padding: 50px 0;
  }
}
.more-calculators-block h2 {
  text-transform: uppercase;
}

.rt-post_type-base-card {
  border: 0;
  background: var(--rt-beige-main);
  border-radius: 15px;
}
.rt-bg-beige-main .rt-post_type-base-card {
  background-color: var(--rt-white);
}
.rt-bg-main .rt-post_type-base-card {
  background: var(--rt-white);
}
.rt-bg-white .rt-post_type-base-card {
  background: var(--rt-beige-main);
}
.rt-post_type-base-card .card-img-top {
  border-radius: 10px 10px 0 0;
}
.rt-post_type-base-card .post-image {
  position: relative;
}
@media (max-width: 575.98px) {
  .rt-post_type-base-card .post-image {
    overflow: hidden;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}
.rt-post_type-base-card .post-image .overlay {
  position: absolute;
  bottom: 15px;
  left: 30px;
  color: #fff;
  background: rgba(60, 60, 59, 0.7);
  border-radius: 6px;
  font-size: 12px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
  transition: all 0.2s ease;
}
.rt-post_type-base-card .post-image .overlay.top-right {
  right: 0;
  left: auto;
  top: 0;
  bottom: auto;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 10px;
}
.rt-post_type-base-card .post-image .overlay.bottom-left {
  left: 0;
  bottom: 0;
  border-radius: 0;
  border-top-right-radius: 6px;
}
.rt-post_type-base-card .post-image .overlay.icon-play {
  padding-left: 30px;
  padding-top: 6px;
}
.rt-post_type-base-card .post-image .overlay.icon-play::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("assets/images/icon-play-solid-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.rt-post_type-base-card .post-image .mobile-picture {
  display: none;
}
@media (max-width: 575.98px) {
  .rt-post_type-base-card .post-image-mobile .desktop-picture {
    display: none;
  }
}
.rt-post_type-base-card .post-image-mobile .mobile-picture {
  display: none;
}
@media (max-width: 575.98px) {
  .rt-post_type-base-card .post-image-mobile .mobile-picture {
    display: block;
  }
}
.rt-post_type-base-card .post-image-mobile .mobile-picture img {
  width: 100%;
  height: auto;
  display: block;
}
.rt-post_type-base-card .card-img-top-reel {
  width: 100%;
  border-radius: 10px 10px 0 0;
  max-height: 190px;
  object-position: center;
  object-fit: cover;
}
.rt-post_type-base-card .card-img-top-carousel {
  max-width: 100%;
  background-color: #3c3c3b;
  border-radius: 10px 10px 0 0;
  max-height: 190px;
  object-fit: contain;
}
.rt-post_type-base-card .card-body {
  border-radius: 15px 15px 0 0;
}
.rt-post_type-base-card .card-body h3, .rt-post_type-base-card .card-body h4, .rt-post_type-base-card .card-body h5 {
  line-height: 1.3;
  hyphens: auto;
  margin-top: 0;
  color: var(--rt-text-color);
}
@supports (font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem)) {
  .rt-post_type-base-card .card-body h3, .rt-post_type-base-card .card-body h4, .rt-post_type-base-card .card-body h5 {
    font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem);
  }
}
.rt-post_type-base-card .card-body p, .rt-post_type-base-card .card-body li {
  margin: 0;
  padding: 0;
  hyphens: auto;
  color: var(--rt-text-color);
}
@supports (font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem)) {
  .rt-post_type-base-card .card-body p, .rt-post_type-base-card .card-body li {
    font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem);
  }
}
.rt-post_type-base-card .card-body p:not(:last-child), .rt-post_type-base-card .card-body li:not(:last-child) {
  margin-bottom: 10px;
}
.rt-post_type-base-card .card-body ul {
  margin: 0;
}
.rt-post_type-base-card .card-body strong, .rt-post_type-base-card .card-body b {
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.rt-post_type-base-card .card-footer {
  border-radius: 0 0 15px 15px;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
}
.rt-post_type-base-card .card-footer .link-more, .rt-post_type-base-card .card-footer .post-created {
  font-size: 12px;
  line-height: 16px;
  text-decoration: none;
  color: var(--rt-black);
  font-weight: 700;
  text-transform: uppercase;
}
.rt-post_type-base-card .card-footer .link-more span, .rt-post_type-base-card .card-footer .post-created span {
  border-bottom: 1px solid var(--rt-black);
}
.rt-post_type-base-card .card-footer .link-more:hover span, .rt-post_type-base-card .card-footer .post-created:hover span {
  border-bottom: none;
}
.rt-post_type-base-card .card-footer .post-created {
  font-weight: 500;
}
.rt-post_type-base-card .card-footer .post-type {
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  position: relative;
}
.rt-post_type-base-card .card-footer .post-type.type-avsnitt, .rt-post_type-base-card .card-footer .post-type.type-verktyg, .rt-post_type-base-card .card-footer .post-type.type-graf, .rt-post_type-base-card .card-footer .post-type.type-studie {
  padding-left: 22px;
}
.rt-post_type-base-card .card-footer .post-type.type-avsnitt:before, .rt-post_type-base-card .card-footer .post-type.type-verktyg:before, .rt-post_type-base-card .card-footer .post-type.type-graf:before, .rt-post_type-base-card .card-footer .post-type.type-studie:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}
.rt-post_type-base-card .card-footer .post-type.type-avsnitt:before {
  background-image: url("assets/images/icon-headphones.svg");
}
.rt-post_type-base-card .card-footer .post-type.type-verktyg:before {
  background-image: url("assets/images/icon-calc.svg");
}
.rt-post_type-base-card .card-footer .post-type.type-graf:before {
  background-image: url("assets/images/icon-chart-line-solid.svg");
}
.rt-post_type-base-card .card-footer .post-type.type-studie:before {
  background-image: url("assets/images/icon-book-solid.svg");
}
.rt-post_type-base-card.card-mobile {
  background: none;
}
.rt-post_type-base-card.card-mobile .card-body {
  padding-left: 0;
  padding-right: 0;
}
.rt-post_type-base-card.card-mobile .card-body .card-title {
  font-size: 1.625rem;
  line-height: 1.25;
}
.rt-post_type-base-card.card-mobile .card-body .card-text {
  font-size: 1.125rem;
  line-height: 1.375;
}
.rt-post_type-base-card.card-mobile .post-image {
  overflow: hidden;
  border-radius: 10px !important;
  margin: 0 0 20px;
}

.rt-link-card-item, .more-calculator-item {
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  color: var(--rt-black);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 20px 30px;
}
.rt-link-card-item:hover, .more-calculator-item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.rt-link-card-item.parent-rt-bg-black:hover, .more-calculator-item.parent-rt-bg-black:hover {
  box-shadow: 0 0 10px rgb(249, 255, 255);
  background: var(--rt-beige-main);
}
.rt-link-card-item.has-icon, .more-calculator-item.has-icon {
  padding-left: 106px;
  position: relative;
}
.rt-link-card-item.has-icon img, .more-calculator-item.has-icon img {
  position: absolute;
  left: 30px;
  max-width: 62px;
  top: 50%;
  transform: translateY(-50%);
}
.rt-link-card-item h4, .more-calculator-item h4 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 900;
  margin: 0 0 5px;
}
.rt-link-card-item p, .more-calculator-item p {
  font-size: 14px;
  line-height: 18px;
  margin: 0;
}

/**
 * Often used with
 * .rt-reel-card
 * .rt-supporter-episode-img
 */
.rt-overlay-img .img-container {
  border-radius: 15px;
  position: relative;
  width: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.rt-overlay-img .img-container:hover {
  box-shadow: 0 0 10px rgba(22, 69, 99, 0.8);
}
.rt-overlay-img .img-container:hover .overlay {
  background: linear-gradient(to top, rgba(22, 69, 99, 0.8), transparent 60%);
}
.rt-overlay-img .corner-logo {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background-image: url("assets/images/logo.php?c=white");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
.rt-overlay-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(60, 60, 60), transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.rt-overlay-img .overlay.blue {
  background: linear-gradient(to top, rgb(22, 69, 99), transparent 60%);
  color: var(--rt-beige-main);
}
.rt-overlay-img .heading {
  margin: 0;
  color: var(--rt-beige-main);
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  hyphens: auto;
  /* Extra Small (xs) - Default, no media query needed */
  /* 0px to 575.98px */
  font-size: clamp(1.7rem, 1.64rem + 0.3vw, 2rem);
  line-height: 1.2;
  /* Small (sm) - 576px and up */
  /* Large (lg) and up - 992px and up */
}
.rt-overlay-img .heading .gt50chars {
  font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
  line-height: 1.2;
  display: inline-block;
}
@media (min-width: 576px) {
  .rt-overlay-img .heading {
    /* sm styles */
    font-size: clamp(1.5rem, 1.42rem + 0.4vw, 1.9rem);
  }
}
@media (min-width: 992px) {
  .rt-overlay-img .heading {
    /* lg, xl, xxl styles */
    font-size: clamp(1.5rem, 1.42rem + 0.4vw, 1.9rem);
    line-height: 1.2;
  }
  .rt-overlay-img .heading .gt50chars {
    font-size: clamp(1.6rem, 1.52rem + 0.4vw, 2rem);
  }
}
.rt-overlay-img .heading b, .rt-overlay-img .heading strong {
  font-weight: 900;
}
.rt-overlay-img .heading:hover {
  color: #FFF;
}
.rt-overlay-img .rt-overlay-badge {
  margin-top: 26px;
  align-self: flex-start;
  background: rgba(var(--rt-black-rgb), 0.7);
  border-radius: 6px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  z-index: 2;
  text-transform: uppercase;
}
.rt-overlay-img .rt-overlay-badge .duration, .rt-overlay-img .rt-overlay-badge .text, .rt-overlay-img .rt-overlay-badge .time-since {
  color: var(--rt-white);
  font-size: clamp(0.694rem, 0.5828rem + 0.556vw, 0.833rem);
}
.rt-overlay-img .rt-overlay-badge b {
  font-weight: 900;
}
.rt-overlay-img.rt-color-beige-main > *, .rt-overlay-img.rt-color-beige-contrast > *, .rt-overlay-img.rt-color-beige-dark > *, .rt-overlay-img.rt-color-beige-alt-1 > *, .rt-overlay-img.rt-color-beige-alt-2 > * {
  z-index: 1;
}
.rt-overlay-img.rt-color-beige-main .overlay:before, .rt-overlay-img.rt-color-beige-contrast .overlay:before, .rt-overlay-img.rt-color-beige-dark .overlay:before, .rt-overlay-img.rt-color-beige-alt-1 .overlay:before, .rt-overlay-img.rt-color-beige-alt-2 .overlay:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.rt-overlay-img.rt-color-beige-main.rt-half-opacity .overlay:before, .rt-overlay-img.rt-color-beige-contrast.rt-half-opacity .overlay:before, .rt-overlay-img.rt-color-beige-dark.rt-half-opacity .overlay:before, .rt-overlay-img.rt-color-beige-alt-1.rt-half-opacity .overlay:before, .rt-overlay-img.rt-color-beige-alt-2.rt-half-opacity .overlay:before {
  opacity: 0.5;
}
.rt-overlay-img.rt-color-beige-main .heading, .rt-overlay-img.rt-color-beige-contrast .heading, .rt-overlay-img.rt-color-beige-dark .heading, .rt-overlay-img.rt-color-beige-alt-1 .heading, .rt-overlay-img.rt-color-beige-alt-2 .heading {
  position: relative;
  color: #3c3c3b;
}
.rt-overlay-img.rt-color-beige-main .corner-logo, .rt-overlay-img.rt-color-beige-contrast .corner-logo, .rt-overlay-img.rt-color-beige-dark .corner-logo, .rt-overlay-img.rt-color-beige-alt-1 .corner-logo, .rt-overlay-img.rt-color-beige-alt-2 .corner-logo {
  background-image: url("assets/images/logo.php?c=black");
}
.rt-overlay-img.rt-color-beige-main .overlay:before {
  background: #f5f3ef;
}
.rt-overlay-img.rt-color-beige-contrast .overlay:before {
  background: #e6ded2;
}
.rt-overlay-img.rt-color-beige-dark .overlay:before {
  background: #c4beb6;
}
.rt-overlay-img.rt-color-beige-alt-1 .overlay:before {
  background: #F3EADB;
}
.rt-overlay-img.rt-color-beige-alt-2 .overlay:before {
  background: #E5D4C4;
}

.rt-reel-card {
  width: 330px;
  color: var(--rt-white);
}
.rt-reel-card .img-container {
  aspect-ratio: 9/16;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .rt-reel-card .img-container {
    aspect-ratio: auto;
    background: #426281;
    max-height: 540px;
  }
}
.rt-reel-card .img-container picture {
  display: block;
  width: 100%;
  height: 100%;
}
.rt-reel-card .img-container picture .rt-reel-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.rt-reel-card.small {
  /* MD breakpoint (768px) */
  /* LG breakpoint (992px) */
}
@media (max-width: 767.98px) {
  .rt-reel-card.small { /* sm and below */
    width: 100%;
  }
}
@media (min-width: 768px) {
  .rt-reel-card.small {
    max-width: 324px;
  }
}
@media (min-width: 992px) {
  .rt-reel-card.small {
    max-width: 270px;
  }
}
.rt-reel-card br.title-br {
  display: none !important;
}

.subscribe-block {
  border-radius: 10px;
  overflow: hidden;
}
.rt-bg-beige-main .subscribe-block, .rt-bg-main .subscribe-block, .rt-bg-beige-dark .subscribe-block {
  background: var(--rt-beige-contrast);
  background: #ede8e0;
}
.rt-bg-beige-contrast .subscribe-block {
  background: var(--rt-white);
}
.rt-bg-white .subscribe-block {
  background: var(--rt-beige-main);
}
.subscribe-block h2 {
  margin: 0 0 25px;
}
.subscribe-block p, .subscribe-block ul {
  max-width: 600px;
  margin: 0;
}
.subscribe-block p > small {
  display: block;
  margin-top: 44px;
  margin-left: 10px;
}
@media (max-width: 991px) {
  .subscribe-block p > small {
    margin-top: 24px;
    margin-left: 0;
  }
}
.subscribe-block ul {
  list-style: none;
  padding: 0;
}
.subscribe-block ul li {
  position: relative;
  padding-left: 38px;
  margin: 0 0 6px;
}
.subscribe-block ul li:last-child {
  margin-bottom: 0;
}
.subscribe-block ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 24px;
  height: 24px;
  background-image: url("assets/images/icon-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.subscribe-block .text-hold {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 44px 0 52px;
}
@media (max-width: 991px) {
  .subscribe-block .text-hold {
    margin: 0;
  }
}
.subscribe-block .text-hold p {
  width: 50%;
  padding: 0px 70px 0 0;
}
@media (max-width: 991px) {
  .subscribe-block .text-hold p {
    padding: 0 20px 0 0;
  }
}
@media (max-width: 767px) {
  .subscribe-block .text-hold p {
    width: 100%;
    margin-bottom: 20px;
  }
}
.subscribe-block .text-hold ul {
  width: 50%;
}
@media (max-width: 767px) {
  .subscribe-block .text-hold ul {
    width: 100%;
  }
}
.subscribe-block form {
  max-width: 710px;
  margin: 30px 0 0;
}
.subscribe-block form input {
  padding: 26px 20px !important;
  font-size: 18px !important;
  line-height: 1 !important;
  border: none !important;
  border-radius: 0 !important;
  border-top-left-radius: 36px !important;
  border-bottom-left-radius: 36px !important;
  margin: 0;
}
@media (max-width: 991.98px) {
  .subscribe-block form input {
    padding: 18px 20px;
  }
}
.subscribe-block form .formkit-submit,
.subscribe-block form .btn {
  font-size: 18px !important;
  line-height: 1 !important;
  border: none !important;
}
.subscribe-block form .formkit-submit:hover, .subscribe-block form .formkit-submit:active,
.subscribe-block form .btn:hover,
.subscribe-block form .btn:active {
  border-color: #fff !important;
}
@media (max-width: 767px) {
  .subscribe-block form .input-group {
    display: block;
  }
  .subscribe-block form .input-group input {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 10px !important;
  }
  .subscribe-block form .input-group .formkit-submit,
  .subscribe-block form .input-group .btn {
    width: 100%;
    border: none;
    border-radius: 10px !important;
    padding: 21px 20px;
  }
}
.subscribe-block form.formkit-form {
  max-width: 1047px !important;
}
.subscribe-block form.formkit-form [data-style=clean] {
  padding: 0 !important;
}
.subscribe-block form.formkit-form .formkit-fields {
  margin: 0 !important;
}
.subscribe-block form.formkit-form .formkit-field {
  margin: 0 !important;
}
.subscribe-block form.formkit-form input {
  padding-left: 37px !important;
  font-size: 21px !important;
  line-height: 24px !important;
  -webkit-appearance: none !important;
  -webkit-border-radius: 0 !important;
  -webkit-border-top-left-radius: 36px !important;
  -webkit-border-bottom-left-radius: 36px !important;
  color: var(--bs-body-color) !important;
}
.rt-bg-beige-contrast .subscribe-block form.formkit-form input {
  border-top-left-radius: 36px !important;
  border-bottom-left-radius: 36px !important;
  background: #F5F3EF !important;
}
.subscribe-block form.formkit-form .formkit-submit {
  -webkit-appearance: none !important;
  -webkit-border-radius: 0 !important;
  margin: 0 !important;
  border-radius: 36px !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  background: #164563 !important;
  font-weight: 900 !important;
  padding: 14px 20px !important;
  line-height: 44px !important;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.rt-bg-beige-contrast .subscribe-block form.formkit-form .formkit-submit {
  border-left: 0 !important;
}
@media (max-width: 767px) {
  .subscribe-block form.formkit-form .formkit-submit {
    border: none !important;
  }
}
.subscribe-block form.formkit-form .formkit-submit span {
  padding: 0 !important;
}
.subscribe-block form.formkit-form .formkit-submit:hover, .subscribe-block form.formkit-form .formkit-submit:active {
  background: #123855 !important;
}
.subscribe-block form.formkit-form .formkit-submit > span {
  display: none;
}
.subscribe-block form.formkit-form .formkit-submit::after {
  content: "Prenumerera";
  text-transform: uppercase;
  padding: 0 26px 0 26px;
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 768px) and (max-width: 991px) {
  .subscribe-block form.formkit-form .formkit-field {
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    -webkit-flex: 1 1 auto;
  }
  .subscribe-block form.formkit-form .formkit-submit {
    flex: none;
  }
}
@media (max-width: 767px) {
  .subscribe-block form.formkit-form .formkit-input {
    margin-bottom: 10px;
    border-radius: 10px !important;
  }
  .subscribe-block form.formkit-form .formkit-field {
    width: 100%;
  }
  .subscribe-block form.formkit-form .formkit-submit {
    width: 100%;
    border-radius: 10px !important;
    padding: 14px 20px !important;
  }
}

details {
  background: rgba(var(--rt-facts-bg-rgb));
  padding: 10px 15px;
  border-radius: 10px;
  margin: 0 0 10px;
  max-width: 70ch;
}
.rt-bg-beige-main details {
  background: var(--rt-white);
}

details[open] summary {
  padding-bottom: 1rem; /* or whatever value you prefer */
}

.schema-faq-section {
  background: var(--rt-beige-main);
  padding: 10px 15px;
  border-radius: 10px;
  margin: 0 0 10px;
  max-width: 70ch;
}
.rt-bg-beige-main .schema-faq-section {
  background: var(--rt-white);
}
.schema-faq-section .schema-faq-question {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
  display: block;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem);
}
.schema-faq-section .schema-faq-question:before {
  width: 20px;
  height: 20px;
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
  background: url("assets/images/icon-chevron-down.svg") no-repeat center;
  background-size: contain;
  transition: all 0.3s;
}
.schema-faq-section .schema-faq-question.close:before {
  transform: rotate(180deg);
}
.schema-faq-section .schema-faq-question:hover {
  opacity: 0.8;
}
.schema-faq-section .schema-faq-answer {
  display: none;
  padding: 20px 0 0;
  max-width: none;
}
.schema-faq-section .schema-faq-answer.default {
  display: block;
}

.archive-page-nav-bar-row .nav {
  border-bottom: 0;
}
.archive-page-nav-bar-row .nav li {
  margin-bottom: 12px;
}
.archive-page-nav-bar-row .nav li a {
  color: var(--rt-black);
}
.archive-page-nav-bar-row .nav-tabs li {
  margin-bottom: 0 !important;
}
.archive-page-nav-bar-row .nav-tabs .nav-link {
  transition: none;
  /* Or if you have multiple transitions, remove only border */
  transition-property: color, background-color;
}
@media (max-width: 991.98px) {
  .archive-page-nav-bar-row .nav-tabs .nav-link {
    margin: 0 8px -1px;
    padding: 11px 14px !important;
  }
}
@media (max-width: 767px) {
  .archive-page-nav-bar-row .nav-tabs .nav-link {
    margin: 0 2px -1px;
    padding: 11px 11px !important;
  }
}
@media (max-width: 440px) {
  .archive-page-nav-bar-row .nav-tabs .nav-link {
    margin: 0 1px -1px;
    padding: 11px 9px !important;
  }
}
@media (max-width: 369px) {
  .archive-page-nav-bar-row .nav-tabs .nav-link {
    padding: 11px 7px !important;
  }
}
.archive-page-nav-bar-row .nav-tabs .nav-link:hover {
  background: var(--rt-white);
  border-bottom: 0;
}
@media (max-width: 515px) {
  .archive-page-nav-bar-row .col-9 {
    width: calc(100% - 88px);
    padding-right: 0;
  }
  .archive-page-nav-bar-row .col-3 {
    width: 88px;
  }
}
@media (max-width: 460px) {
  .archive-page-nav-bar-row .nav-tabs .nav-link {
    font-size: 15px;
  }
}
@media (max-width: 440px) {
  .archive-page-nav-bar-row .nav-tabs .nav-link {
    font-size: 14px;
    padding: 9px 6px !important;
  }
}
@media (max-width: 360px) {
  .archive-page-nav-bar-row .nav-tabs .nav-link {
    font-size: 12px;
    padding: 9px 5px !important;
    margin: 0 0px -1px;
  }
}
@media (max-width: 330px) {
  .archive-page-nav-bar-row .col-9 {
    width: calc(100% - 80px);
    margin-right: -8px;
  }
}

.item-rt-post-table-row {
  border-left: 4px solid transparent;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}
.item-rt-post-table-row a {
  text-decoration: none;
  color: var(--rt-text-color);
}
@media (max-width: 767px) {
  .item-rt-post-table-row a {
    line-height: 133%;
    display: inline-block;
  }
}
.item-rt-post-table-row a:hover {
  color: var(--rt-link-color);
}
.item-rt-post-table-row small {
  display: inline-block;
  line-height: 100%;
  color: var(--rt-text-color-muted);
}
.item-rt-post-table-row small a {
  color: var(--rt-text-color-muted);
}
.item-rt-post-table-row small a:hover {
  text-decoration: underline;
}
.item-rt-post-table-row:hover {
  border-left: 4px solid var(--rt-beige-dark);
  background-color: rgba(var(--rt-beige-dark-rgb), 0.25) !important;
}
.item-rt-post-table-row:hover .rt-gray-scale {
  filter: grayscale(0%);
  transition: filter 0.3s ease-in-out;
  opacity: 1;
}
.item-rt-post-table-row .rt-gray-scale {
  filter: grayscale(100%);
  opacity: 0.8;
}

#embedblock.full-width {
  position: relative;
  margin-left: calc(-50vw + 50%);
  width: 100vw;
  aspect-ratio: auto;
}

.megamenu.btn {
  text-transform: uppercase;
}
.megamenu.btn b {
  font-weight: 900;
}

.rt-facts {
  border-radius: 15px;
  padding: 25px 25px 25px 45px;
  max-width: 80ch;
  padding: 32px 25px 32px 37px;
  background-color: rgba(var(--rt-facts-bg-rgb), 1) !important;
  margin-top: 2rem;
  margin-bottom: 2rem;
  list-style: none;
}
@media (max-width: 991.98px) {
  .rt-facts {
    padding-left: 20px;
  }
}
@media (min-width: 1200px) {
  .rt-facts {
    margin-left: -40px;
    margin-right: -40px;
  }
}
.rt-facts[data-title]::before {
  content: attr(data-title);
  font-size: 12px;
  line-height: 1.2;
  display: block;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.rt-facts[data-title]::before:empty {
  display: none;
}
.rt-facts a {
  color: inherit !important;
}
.rt-facts a:hover {
  color: var(--rt-link-color) !important;
}
.rt-facts li {
  position: relative;
  margin: 0;
  padding-left: 27px;
  padding-bottom: 20px;
}
.rt-facts li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 1px;
  height: 100%;
  background: #e6e4e2;
}
.rt-facts li:last-child {
  padding-bottom: 0;
}
.rt-facts li:last-child::before {
  height: calc(100% - 8px);
}

.rt-math {
  background-color: rgba(var(--rt-facts-bg-rgb), 0.3);
  border-radius: 15px;
  padding: 25px 25px 25px 45px;
  max-width: 80ch;
}
.rt-bg-beige-contrast .rt-math {
  background-color: var(--rt-beige-main);
}
.rt-math .formkit-form [data-style=clean] {
  padding: 10px 0 0 0 !important;
}
.rt-math li:last-child {
  margin-bottom: 0;
}

.toc-block {
  background: #f5f3ef;
}
.toc-block .container {
  padding-top: 60px;
  padding-bottom: 60px;
}
.toc-block h2 {
  text-transform: none;
  margin: 0 0 24px;
}
@media (min-width: 992px) {
  .toc-block h2 {
    font-size: 2.1625rem;
    line-height: 1.2;
    margin: 0 0 44px;
  }
}
.toc-block a {
  color: inherit;
  font-size: 90%;
  text-decoration: underline;
}
.toc-block a:hover {
  color: var(--rt-link-color);
}
.toc-block .toc-wrapper > ul {
  margin: 0 0 24px;
  padding: 0;
}
@media (min-width: 992px) {
  .toc-block .toc-wrapper > ul {
    margin: 0 0 40px;
  }
}
.toc-block .toc-wrapper > ul li {
  list-style: none;
  position: relative;
  padding-left: 32px;
  padding-bottom: 8px;
  margin: 0;
  line-height: 1.2;
}
.toc-block .toc-wrapper > ul li::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #e6e4e2;
  position: absolute;
  left: 3px;
  top: 5px;
}
.toc-block .toc-wrapper > ul li ul {
  padding-left: 0;
}
.toc-block .toc-wrapper > ul li ul li {
  line-height: 1.2;
  color: inherit;
  font-size: 90%;
}
.toc-block .toc-wrapper > ul li ul li:first-child {
  margin-top: 8px;
}
.toc-block .toc-wrapper > ul li:last-child {
  padding-bottom: 0;
}
.toc-block .toc-wrapper > ul li:last-child::before {
  height: calc(100% - 5px);
}
.toc-block .text-small {
  font-style: italic;
  font-size: 12px;
}

.risk-warning {
  border: none !important;
}
@media (min-width: 1200px) {
  .risk-warning {
    margin-left: -40px;
    margin-right: -40px;
  }
}
.risk-warning img {
  display: none;
}
.risk-warning > div {
  position: relative;
  padding: 13px 0 13px 78px;
}
@media (max-width: 575.98px) {
  .risk-warning > div {
    padding: 8px 0 8px 40px;
  }
}
.risk-warning > div::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 15px;
  width: 28px;
  height: 28px;
  background: url("assets/images/icon-alert-triangle.svg") no-repeat center;
  background-size: contain;
}
@media (max-width: 575.98px) {
  .risk-warning > div::before {
    left: 0px;
    width: 25px;
    height: 25px;
  }
}
.risk-warning .rt_risk-warning {
  font-size: 0.75rem;
  line-height: 1.49;
}
.risk-warning .rt_risk-warning > b.text-uppercase:first-child {
  text-transform: none !important;
}
.risk-warning a {
  text-decoration: underline;
  color: inherit;
}
.risk-warning a:hover {
  color: hsl(0, 0%, -10%);
}

.rt-math {
  margin: 1rem 0 1rem 0;
}
@media (max-width: 991.98px) {
  .rt-math {
    padding: 20px 30px;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .rt-math {
    width: 100%;
  }
  .rt-math math mrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
@media (max-width: 479px) {
  .rt-math {
    padding: 15px 20px;
    font-size: 14px;
  }
}

.rt-info {
  background-color: rgba(var(--rt-info-bg-rgb), 0.15);
  border-radius: 15px;
  padding: 25px 25px 25px 45px;
  max-width: 80ch;
}

.rt-alert {
  background-color: rgba(var(--rt-pink-rgb), 0.3);
  border-radius: 15px;
  padding: 25px 25px 25px 45px;
  max-width: 80ch;
}

.rt-reklam {
  background-color: rgba(var(--rt-link-color-rgb), 0.15);
  border-radius: 15px;
  padding: 25px 25px 25px 45px;
  max-width: 80ch;
}

.toc-wrapper ul li {
  margin-bottom: 0;
}
.toc-wrapper ul li a {
  font-weight: 500;
}

.home .main-banner-block h1,
.page-template-page-startpage .main-banner-block h1,
.page-template-page-startpage-v2 .main-banner-block h1 {
  font-weight: 400;
}
.home .main-banner-block h1 strong,
.page-template-page-startpage .main-banner-block h1 strong,
.page-template-page-startpage-v2 .main-banner-block h1 strong {
  font-weight: 900;
}
.home .main-banner-block .lead,
.page-template-page-startpage .main-banner-block .lead,
.page-template-page-startpage-v2 .main-banner-block .lead {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  line-height: 133%;
  font-weight: 400;
}
.home .quick-start-block,
.page-template-page-startpage .quick-start-block,
.page-template-page-startpage-v2 .quick-start-block {
  display: flex;
  flex-wrap: wrap;
}
.home .quick-start-block h4,
.page-template-page-startpage .quick-start-block h4,
.page-template-page-startpage-v2 .quick-start-block h4 {
  position: relative;
  display: block;
  margin: 0 34px 0 0;
}
@media (max-width: 767px) {
  .home .quick-start-block h4,
  .page-template-page-startpage .quick-start-block h4,
  .page-template-page-startpage-v2 .quick-start-block h4 {
    margin-right: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
  }
}
@media (min-width: 768px) {
  .home .quick-start-block h4,
  .page-template-page-startpage .quick-start-block h4,
  .page-template-page-startpage-v2 .quick-start-block h4 {
    font-size: 15px;
    background: var(--rt-black);
    color: var(--rt-white);
    width: 112px;
    height: 112px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .home .quick-start-block h4:after, .home .quick-start-block h4:before,
  .page-template-page-startpage .quick-start-block h4:after,
  .page-template-page-startpage .quick-start-block h4:before,
  .page-template-page-startpage-v2 .quick-start-block h4:after,
  .page-template-page-startpage-v2 .quick-start-block h4:before {
    content: "";
    position: absolute;
    background: var(--rt-black);
    border-radius: 50%;
    top: 50%;
  }
  .home .quick-start-block h4:before,
  .page-template-page-startpage .quick-start-block h4:before,
  .page-template-page-startpage-v2 .quick-start-block h4:before {
    width: 14px;
    height: 14px;
    right: -21px;
    margin-top: -7px;
  }
}
@media (min-width: 768px) and (max-width: 767px) {
  .home .quick-start-block h4:before,
  .page-template-page-startpage .quick-start-block h4:before,
  .page-template-page-startpage-v2 .quick-start-block h4:before {
    right: auto;
    left: 11px;
    margin: 0;
    bottom: -7px;
    top: auto;
  }
}
@media (min-width: 768px) {
  .home .quick-start-block h4:after,
  .page-template-page-startpage .quick-start-block h4:after,
  .page-template-page-startpage-v2 .quick-start-block h4:after {
    width: 7px;
    height: 7px;
    right: -35px;
    margin-top: -3.5px;
  }
}
@media (min-width: 768px) and (max-width: 767px) {
  .home .quick-start-block h4:after,
  .page-template-page-startpage .quick-start-block h4:after,
  .page-template-page-startpage-v2 .quick-start-block h4:after {
    right: auto;
    left: 2px;
    margin: 0;
    bottom: -11px;
    top: auto;
  }
}
.home .quick-start-block .quick-start-item,
.page-template-page-startpage .quick-start-block .quick-start-item,
.page-template-page-startpage-v2 .quick-start-block .quick-start-item {
  background: var(--rt-white);
  border-radius: 10px;
  padding: 20px 30px;
  text-decoration: none;
  color: var(--rt-text-color);
  display: block;
  margin-left: 30px;
  width: calc((100% - 146px) / 3 - 30px);
  transition: all 0.3s;
}
@media (max-width: 1199px) {
  .home .quick-start-block .quick-start-item,
  .page-template-page-startpage .quick-start-block .quick-start-item,
  .page-template-page-startpage-v2 .quick-start-block .quick-start-item {
    margin-left: 16px;
    width: calc((100% - 146px) / 3 - 16px);
  }
}
@media (max-width: 991.98px) {
  .home .quick-start-block .quick-start-item,
  .page-template-page-startpage .quick-start-block .quick-start-item,
  .page-template-page-startpage-v2 .quick-start-block .quick-start-item {
    padding: 15px 18px;
  }
}
@media (max-width: 767px) {
  .home .quick-start-block .quick-start-item,
  .page-template-page-startpage .quick-start-block .quick-start-item,
  .page-template-page-startpage-v2 .quick-start-block .quick-start-item {
    margin-left: 0;
    width: 100%;
    margin-bottom: 30px;
    padding: 20px 25px;
  }
  .home .quick-start-block .quick-start-item:last-child,
  .page-template-page-startpage .quick-start-block .quick-start-item:last-child,
  .page-template-page-startpage-v2 .quick-start-block .quick-start-item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .home .quick-start-block .quick-start-item,
  .page-template-page-startpage .quick-start-block .quick-start-item,
  .page-template-page-startpage-v2 .quick-start-block .quick-start-item {
    margin-bottom: 20px;
  }
}
.home .quick-start-block .quick-start-item:hover,
.page-template-page-startpage .quick-start-block .quick-start-item:hover,
.page-template-page-startpage-v2 .quick-start-block .quick-start-item:hover {
  box-shadow: 0 0 10px rgba(var(--rt-black-rgb), 0.25);
}
.home .quick-start-block .quick-start-item.has-icon,
.page-template-page-startpage .quick-start-block .quick-start-item.has-icon,
.page-template-page-startpage-v2 .quick-start-block .quick-start-item.has-icon {
  padding-left: 75px;
  position: relative;
}
@media (max-width: 991.98px) {
  .home .quick-start-block .quick-start-item.has-icon,
  .page-template-page-startpage .quick-start-block .quick-start-item.has-icon,
  .page-template-page-startpage-v2 .quick-start-block .quick-start-item.has-icon {
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .home .quick-start-block .quick-start-item.has-icon,
  .page-template-page-startpage .quick-start-block .quick-start-item.has-icon,
  .page-template-page-startpage-v2 .quick-start-block .quick-start-item.has-icon {
    padding-left: 98px;
  }
}
@media (max-width: 575.98px) {
  .home .quick-start-block .quick-start-item.has-icon,
  .page-template-page-startpage .quick-start-block .quick-start-item.has-icon,
  .page-template-page-startpage-v2 .quick-start-block .quick-start-item.has-icon {
    padding-left: 70px;
  }
}
.home .quick-start-block .quick-start-item.has-icon img,
.page-template-page-startpage .quick-start-block .quick-start-item.has-icon img,
.page-template-page-startpage-v2 .quick-start-block .quick-start-item.has-icon img {
  position: absolute;
  left: 30px;
  max-width: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .home .quick-start-block .quick-start-item.has-icon img,
  .page-template-page-startpage .quick-start-block .quick-start-item.has-icon img,
  .page-template-page-startpage-v2 .quick-start-block .quick-start-item.has-icon img {
    left: 14px;
    max-width: 26px;
  }
}
@media (max-width: 767px) {
  .home .quick-start-block .quick-start-item.has-icon img,
  .page-template-page-startpage .quick-start-block .quick-start-item.has-icon img,
  .page-template-page-startpage-v2 .quick-start-block .quick-start-item.has-icon img {
    left: 50px;
    max-width: 30px;
  }
}
@media (max-width: 575.98px) {
  .home .quick-start-block .quick-start-item.has-icon img,
  .page-template-page-startpage .quick-start-block .quick-start-item.has-icon img,
  .page-template-page-startpage-v2 .quick-start-block .quick-start-item.has-icon img {
    left: 25px;
  }
}
.home .quick-start-block .quick-start-item h5,
.page-template-page-startpage .quick-start-block .quick-start-item h5,
.page-template-page-startpage-v2 .quick-start-block .quick-start-item h5 {
  font-size: 18px;
  line-height: 25px;
  font-weight: 900;
  margin-bottom: 0;
}
.home .quick-start-block .quick-start-item p,
.page-template-page-startpage .quick-start-block .quick-start-item p,
.page-template-page-startpage-v2 .quick-start-block .quick-start-item p {
  font-size: 14px;
  line-height: 18px;
  color: var(--rt-text-color);
  margin: 0;
}
.home .about-block .dark-bg,
.page-template-page-startpage .about-block .dark-bg,
.page-template-page-startpage-v2 .about-block .dark-bg {
  border-radius: 10px;
  overflow: hidden;
}
.home .about-block figure,
.page-template-page-startpage .about-block figure,
.page-template-page-startpage-v2 .about-block figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
}
.home .about-block figure img,
.page-template-page-startpage .about-block figure img,
.page-template-page-startpage-v2 .about-block figure img {
  max-width: none;
  width: 100%;
  height: auto;
}
@media (max-width: 991.98px) {
  .home .about-block h2,
  .page-template-page-startpage .about-block h2,
  .page-template-page-startpage-v2 .about-block h2 {
    margin-bottom: 4px;
  }
}
@media (min-width: 992px) {
  .home .about-block h2,
  .page-template-page-startpage .about-block h2,
  .page-template-page-startpage-v2 .about-block h2 {
    text-transform: uppercase;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .home .about-block p,
  .page-template-page-startpage .about-block p,
  .page-template-page-startpage-v2 .about-block p {
    font-size: 1rem;
    line-height: 1.425;
  }
  .home .about-block .px-4,
  .page-template-page-startpage .about-block .px-4,
  .page-template-page-startpage-v2 .about-block .px-4 {
    padding-left: 0 !important;
  }
  .home .about-block .btn.btn-lg,
  .page-template-page-startpage .about-block .btn.btn-lg,
  .page-template-page-startpage-v2 .about-block .btn.btn-lg {
    padding: 12px 34px;
  }
}
@media (max-width: 767px) {
  .home .about-block .font-big,
  .page-template-page-startpage .about-block .font-big,
  .page-template-page-startpage-v2 .about-block .font-big {
    line-height: 25px;
  }
}
.home p.lead, .home .episode-excerpt p,
.page-template-page-startpage p.lead,
.page-template-page-startpage .episode-excerpt p,
.page-template-page-startpage-v2 p.lead,
.page-template-page-startpage-v2 .episode-excerpt p {
  font-size: 1.424rem;
}
@supports (font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem)) {
  .home p.lead, .home .episode-excerpt p,
  .page-template-page-startpage p.lead,
  .page-template-page-startpage .episode-excerpt p,
  .page-template-page-startpage-v2 p.lead,
  .page-template-page-startpage-v2 .episode-excerpt p {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem);
  }
}
.home p.lead a, .home .episode-excerpt p a,
.page-template-page-startpage p.lead a,
.page-template-page-startpage .episode-excerpt p a,
.page-template-page-startpage-v2 p.lead a,
.page-template-page-startpage-v2 .episode-excerpt p a {
  color: var(--rt-link-color);
  text-decoration: none;
  font-weight: 600;
}
.home p.lead a:hover, .home .episode-excerpt p a:hover,
.page-template-page-startpage p.lead a:hover,
.page-template-page-startpage .episode-excerpt p a:hover,
.page-template-page-startpage-v2 p.lead a:hover,
.page-template-page-startpage-v2 .episode-excerpt p a:hover {
  color: rgba(var(--rt-link-color-rgb), 0.75);
  text-decoration: none;
}

.page-template-page-startpage-v2 h2.block-title {
  font-weight: 900;
  font-size: 26px;
}
.page-template-page-startpage-v2 .home-main-banner .title-hold .subtitle {
  font-size: 1.25rem;
  margin: 0 0 4px;
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .home-main-banner .title-hold .subtitle {
    font-size: 0.875rem;
    margin: 0;
  }
}
.page-template-page-startpage-v2 .home-main-banner figure {
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .home-main-banner .banner-content {
    margin: -8px -12px -8px;
    position: relative;
    height: 476px;
    width: calc(100% + 24px);
  }
  .page-template-page-startpage-v2 .home-main-banner .banner-content .title-hold {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .page-template-page-startpage-v2 .home-main-banner .banner-content .title-hold .subtitle {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .page-template-page-startpage-v2 .home-main-banner .banner-content figure {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 0;
    opacity: 0.3;
  }
  .page-template-page-startpage-v2 .home-main-banner .banner-content figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
  }
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .home-main-banner .home-main-text {
    display: none;
  }
}
.page-template-page-startpage-v2 .home-main-banner .rt-speechbubble-left-dark-2 {
  margin-top: -86px;
}
.page-template-page-startpage-v2 .home-main-banner p.lead {
  margin: 0;
}
@media (min-width: 1280px) {
  .page-template-page-startpage-v2 .home-main-banner p.lead {
    font-size: 24px;
    line-height: 1.33;
  }
}
@media (min-width: 1400px) {
  .page-template-page-startpage-v2 .episodes-slider-block .rt-swiper-v2-slide {
    width: 368px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .page-template-page-startpage-v2 .episodes-slider-block .rt-swiper-v2-slide {
    width: 353.3333333333px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .page-template-page-startpage-v2 .episodes-slider-block .rt-swiper-v2-slide {
    width: 296px;
  }
}
.page-template-page-startpage-v2 .guest-episodes-slider-block .rt-swiper-v2-slide {
  width: 210px;
}
.page-template-page-startpage-v2 .guest-episodes-slider-block .rt-post_type-base-card {
  background: none;
}
.page-template-page-startpage-v2 .guest-episodes-slider-block .rt-post_type-base-card .post-image .mobile-picture {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.page-template-page-startpage-v2 .guest-episodes-slider-block .rt-post_type-base-card .post-image .mobile-picture img {
  width: 100%;
  height: auto;
}
.page-template-page-startpage-v2 .guest-episodes-slider-block .rt-post_type-base-card .post-image .desktop-picture {
  display: none;
}
.page-template-page-startpage-v2 .guest-episodes-slider-block .rt-post_type-base-card .post-image .overlay.bottom-left {
  border-bottom-left-radius: 10px;
}
.page-template-page-startpage-v2 .guest-episodes-slider-block .rt-post_type-base-card .card-title {
  text-align: center;
  margin-bottom: 0;
}
.page-template-page-startpage-v2 .guest-episodes-slider-block .rt-post_type-base-card .card-text {
  display: none;
}
.page-template-page-startpage-v2 .guest-episodes-slider-block .rt-post_type-base-card .card-footer {
  display: none;
}
.page-template-page-startpage-v2 .guest-episodes-slider-block .rt-swiper-v2-block .rt-swiper-v2-pagination {
  margin: 0;
}
.page-template-page-startpage-v2 .episodes-slider-block .rt-swiper-v2-block .rt-swiper-v2-button-prev,
.page-template-page-startpage-v2 .guest-episodes-slider-block .rt-swiper-v2-block .rt-swiper-v2-button-prev {
  left: 15px;
}
.page-template-page-startpage-v2 .episodes-slider-block .rt-swiper-v2-block .rt-swiper-v2-button-next,
.page-template-page-startpage-v2 .guest-episodes-slider-block .rt-swiper-v2-block .rt-swiper-v2-button-next {
  right: 15px;
}
@media (max-width: 991px) {
  .page-template-page-startpage-v2 .episodes-slider-block .rt-swiper-v2-block .rt-swiper-v2-slide,
  .page-template-page-startpage-v2 .guest-episodes-slider-block .rt-swiper-v2-block .rt-swiper-v2-slide {
    padding-left: 12px;
  }
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .quick-start-block {
    background: #E6E1D7;
    padding-top: 20px;
  }
}
.page-template-page-startpage-v2 .quick-start-block .quick-start-item {
  margin-left: 25px;
  padding: 25px 30px;
  width: calc((100% - 75px) / 4);
}
.page-template-page-startpage-v2 .quick-start-block .quick-start-item:first-child {
  margin-left: 0;
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .quick-start-block .quick-start-item {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .page-template-page-startpage-v2 .quick-start-block .quick-start-item {
    width: calc((100% - 25px) / 2);
    margin-left: 25px;
    margin-bottom: 25px;
  }
  .page-template-page-startpage-v2 .quick-start-block .quick-start-item:last-child {
    margin-bottom: 25px;
  }
  .page-template-page-startpage-v2 .quick-start-block .quick-start-item:nth-child(2n+1) {
    margin-left: 0;
  }
}
.page-template-page-startpage-v2 .quick-start-block .quick-start-item.has-icon {
  padding-left: 54px;
  padding-right: 16px;
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .quick-start-block .quick-start-item.has-icon {
    padding-left: 16px;
    padding-top: 54px;
  }
}
.page-template-page-startpage-v2 .quick-start-block .quick-start-item.has-icon img {
  left: 27px;
  max-width: 30px;
  transform: translateY(-50%) translateX(-50%);
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .quick-start-block .quick-start-item.has-icon img {
    left: 50%;
    top: 27px;
  }
}
.page-template-page-startpage-v2 .quick-start-block .quick-start-item h5 {
  margin-bottom: 3px;
}
.page-template-page-startpage-v2 .news-block h2.block-title {
  position: relative;
  margin-bottom: 40px;
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .news-block h2.block-title {
    margin-bottom: 24px;
  }
}
.page-template-page-startpage-v2 .news-block h2.block-title span {
  background-color: var(--rt-beige-main);
  padding-right: 12px;
  position: relative;
  z-index: 1;
}
.page-template-page-startpage-v2 .news-block h2.block-title::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: #000;
  top: 50%;
  left: 0;
  opacity: 0.5;
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .news-block h2.block-title::after {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .news-block .latest-episode .rt-beige-1-on-one-col-breakpoint {
    background: none;
  }
  .page-template-page-startpage-v2 .news-block .latest-episode .rt-episode-card .rt-episode-card-image figure {
    border-radius: 0;
    margin-left: -12px;
    margin-right: -12px;
  }
  .page-template-page-startpage-v2 .news-block .latest-episode .rt-episode-card .rt-episode-card-image figure img.desktop-image {
    display: block;
  }
  .page-template-page-startpage-v2 .news-block .latest-episode .rt-episode-card .rt-episode-card-image figure img.mobile-image {
    display: none;
  }
  .page-template-page-startpage-v2 .news-block .latest-episode p:last-child {
    margin-bottom: 0;
  }
}
.page-template-page-startpage-v2 .guest-episodes-intro h2 {
  font-size: 2.75rem;
  line-height: 1.137;
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .guest-episodes-intro h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1280px) {
  .page-template-page-startpage-v2 .guest-episodes-intro p.lead {
    font-size: 24px;
    line-height: 1.33;
  }
}
.page-template-page-startpage-v2 .faq-block .faq-block-hold {
  border-radius: 10px;
  background: #E9E3D8;
  padding: 33px 0 22px;
}
.page-template-page-startpage-v2 .faq-block h2.block-title {
  margin: 0 0 20px;
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .faq-block h2.block-title {
    font-size: 20px;
  }
}
.page-template-page-startpage-v2 .faq-block .wp-block-yoast-faq-block {
  border-top: 1px solid #3c3c3b;
}
.page-template-page-startpage-v2 .faq-block .wp-block-yoast-faq-block + .btn {
  margin: 21px 0 0 86px;
}
@media (max-width: 991px) {
  .page-template-page-startpage-v2 .faq-block .wp-block-yoast-faq-block + .btn {
    margin: 21px 0 0 28px;
  }
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .faq-block .wp-block-yoast-faq-block + .btn {
    margin: 21px 0 0 20px;
  }
}
.page-template-page-startpage-v2 .faq-block .schema-faq-section {
  max-width: none;
  width: 100%;
  border-radius: 0;
  background: none;
  border-bottom: 1px solid #3c3c3b;
  margin: 0;
  padding: 30px 21px 29px 87px;
  position: relative;
}
@media (max-width: 991px) {
  .page-template-page-startpage-v2 .faq-block .schema-faq-section {
    padding-left: 28px;
  }
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .faq-block .schema-faq-section {
    padding: 20px;
  }
}
.page-template-page-startpage-v2 .faq-block .schema-faq-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #e6ded2;
  opacity: 0;
  transition: all 0.3s;
  z-index: 1;
}
.page-template-page-startpage-v2 .faq-block .schema-faq-section.opened::before {
  opacity: 1;
}
.page-template-page-startpage-v2 .faq-block .schema-faq-section .schema-faq-question {
  font-weight: 700;
  line-height: 1.25;
  padding-right: 40px;
  position: relative;
  z-index: 2;
}
.page-template-page-startpage-v2 .faq-block .schema-faq-section .schema-faq-question:before {
  width: 40px;
  height: 40px;
  margin-top: -20px;
}
.page-template-page-startpage-v2 .faq-block .schema-faq-section .schema-faq-answer {
  padding-right: 60px;
  max-width: 800px;
  position: relative;
  z-index: 2;
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .faq-block .schema-faq-section .schema-faq-answer {
    padding-right: 0;
  }
}
.page-template-page-startpage-v2 .faq-block .schema-faq-section .schema-faq-answer p {
  font-size: 1rem;
  line-height: 155%;
}
@supports (font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem)) {
  .page-template-page-startpage-v2 .faq-block .schema-faq-section .schema-faq-answer p {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem);
  }
}
.page-template-page-startpage-v2 .faq-block .schema-faq-section .schema-faq-answer p:last-child {
  margin-bottom: 0;
}
.page-template-page-startpage-v2 .faq-block .schema-faq-section .schema-faq-answer p a {
  color: inherit;
  line-height: 155%;
  letter-spacing: 0;
  margin-bottom: 1.2rem;
}
.page-template-page-startpage-v2 .faq-block .schema-faq-section .schema-faq-answer p a:hover {
  color: var(--rt-link-color);
}
.page-template-page-startpage-v2 .premium-block .block-title {
  position: relative;
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .premium-block .block-title {
    text-align: center;
    padding-top: 54px;
  }
  .page-template-page-startpage-v2 .premium-block .block-title:before {
    content: "";
    position: absolute;
    display: block;
    width: 79px;
    height: 46px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background: url("assets/images/icon-flags-dark.svg") no-repeat center;
    background-size: contain;
  }
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .premium-block .row > div:last-child .text-hold {
    overflow: hidden;
    background: #e6ded2;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 12px 20px 0;
  }
  .page-template-page-startpage-v2 .premium-block .row > div .premium-features {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
.page-template-page-startpage-v2 .premium-block .premium-features {
  position: relative;
  background: #e6ded2;
  border-radius: 10px;
  padding: 70px 62px 32px;
}
@media (max-width: 1199.98px) {
  .page-template-page-startpage-v2 .premium-block .premium-features {
    padding: 50px 40px 36px;
  }
}
@media (max-width: 991px) {
  .page-template-page-startpage-v2 .premium-block .premium-features {
    padding: 40px 12px 40px;
  }
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .premium-block .premium-features {
    padding: 20px 20px 26px;
  }
}
.page-template-page-startpage-v2 .premium-block .premium-features ul {
  margin: 0;
}
.page-template-page-startpage-v2 .premium-block .premium-features ul li {
  font-weight: 700;
  margin: 0 0 7px;
  line-height: 1.575;
}
.page-template-page-startpage-v2 .premium-block .premium-features ul li:last-child {
  margin-bottom: 0;
}
.page-template-page-startpage-v2 .premium-block .premium-features .rt-speechbubble-left-dark-2 {
  position: absolute;
  top: -62px;
  right: -39px;
  width: 223px;
  height: 232px;
}
@media (max-width: 1199.98px) {
  .page-template-page-startpage-v2 .premium-block .premium-features .rt-speechbubble-left-dark-2 {
    top: -84px;
    right: -45px;
    width: 187px;
    height: 200px;
  }
}
@media (max-width: 991px) {
  .page-template-page-startpage-v2 .premium-block .premium-features .rt-speechbubble-left-dark-2 {
    top: -132px;
    right: -30px;
    width: 150px;
    height: 165px;
    font-size: 14px;
    line-height: 18px;
    padding: 0 12px;
  }
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .premium-block .premium-features .rt-speechbubble-left-dark-2 {
    display: block;
    position: initial;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    color: var(--rt-black);
    text-align: left;
    margin: 0 0 20px;
  }
}
.page-template-page-startpage-v2 .premium-block .premium-features:after {
  content: "";
  position: absolute;
  display: block;
  width: 79px;
  height: 46px;
  bottom: 5px;
  right: 16px;
  background: url("assets/images/icon-flags-dark.svg") no-repeat center;
  background-size: contain;
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .premium-block .premium-features:after {
    display: none;
  }
}
@media (min-width: 992px) {
  .page-template-page-startpage-v2 .premium-block .text-hold {
    padding-top: 40px;
    padding-left: 40px;
  }
}
.page-template-page-startpage-v2 .premium-block .text-hold h2.block-title {
  margin: 0 0 10px;
}
.page-template-page-startpage-v2 .text-info-block .hold {
  border-radius: 10px;
  padding: 50px 78px;
  border: 1px solid #c4beb6;
}
@media (max-width: 992px) {
  .page-template-page-startpage-v2 .text-info-block .hold {
    padding: 40px 60px;
  }
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .text-info-block .hold {
    padding: 30px 20px;
  }
}
.page-template-page-startpage-v2 .text-info-block h2 {
  font-size: 2.75rem;
  line-height: 1.137;
  margin: 0 0 24px;
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .text-info-block h2 {
    font-size: 2rem;
  }
}
.page-template-page-startpage-v2 .text-info-block p {
  font-style: italic;
  margin: 0 0 22px;
}
@media (min-width: 1280px) {
  .page-template-page-startpage-v2 .text-info-block p {
    font-size: 20px;
    line-height: 1.33;
  }
}
.page-template-page-startpage-v2 .text-info-block .regular-link {
  font-size: 20px;
}
.page-template-page-startpage-v2 .about-block {
  margin-top: 220px;
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .about-block {
    background: #e6ded2;
    padding-top: 25px;
    margin-top: 0;
  }
}
.page-template-page-startpage-v2 .about-block .dark-bg {
  overflow: visible;
}
.page-template-page-startpage-v2 .about-block .rt-thoughtbubble-bottom-left-dark-2 {
  position: absolute;
  top: -224px;
  right: -65px;
  font-style: italic;
}
@media (max-width: 1199.98px) {
  .page-template-page-startpage-v2 .about-block .rt-thoughtbubble-bottom-left-dark-2 {
    width: 240px;
    height: 300px;
  }
}
@media (max-width: 991px) {
  .page-template-page-startpage-v2 .about-block .rt-thoughtbubble-bottom-left-dark-2 {
    top: -200px;
    right: -23px;
  }
}
@media (max-width: 575.98px) {
  .page-template-page-startpage-v2 .about-block .rt-thoughtbubble-bottom-left-dark-2 {
    display: none;
  }
}
.page-template-page-startpage-v2 .about-block + section .container {
  padding-top: 17px;
}
.page-template-page-startpage-v2 .subscribe-block {
  background: #3c3c3b;
  color: #f5f3ef;
  text-align: center;
}
.page-template-page-startpage-v2 .subscribe-block h2 {
  text-transform: uppercase;
}
.page-template-page-startpage-v2 .subscribe-block > div {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.page-template-page-startpage-v2 .subscribe-block .text-hold {
  flex-direction: column;
  margin: 0;
}
.page-template-page-startpage-v2 .subscribe-block .text-hold p {
  width: 100%;
  padding: 0px;
  margin: 0;
}
.page-template-page-startpage-v2 .subscribe-block .text-hold ul {
  width: 100%;
}
.page-template-page-startpage-v2 .subscribe-block ul {
  text-align: left;
  list-style: disc;
  padding-left: 28px;
  margin: 20px 0 0;
}
.page-template-page-startpage-v2 .subscribe-block ul li {
  padding-left: 0;
}
.page-template-page-startpage-v2 .subscribe-block ul li::before {
  display: none;
}
.page-template-page-startpage-v2 .subscribe-block form {
  width: 100%;
}
.page-template-page-startpage-v2 .subscribe-block form + p {
  display: none;
}
.page-template-page-startpage-v2 .subscribe-block form.formkit-form {
  max-width: 700px !important;
}
.page-template-page-startpage-v2 .subscribe-block form.formkit-form input {
  padding-left: 20px !important;
  font-size: 18px !important;
  line-height: 1 !important;
  -webkit-border-top-left-radius: 10px !important;
  -webkit-border-bottom-left-radius: 10px !important;
}
.rt-bg-beige-contrast .page-template-page-startpage-v2 .subscribe-block form.formkit-form input {
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}
.page-template-page-startpage-v2 .subscribe-block form.formkit-form .formkit-submit, .page-template-page-startpage-v2 .subscribe-block form.formkit-form .btn {
  color: #404040 !important;
  background: #E4DED3 !important;
  border: 2px solid #fff !important;
  border-top-right-radius: 15px !important;
  border-bottom-right-radius: 15px !important;
}
.page-template-page-startpage-v2 .subscribe-block form.formkit-form .formkit-submit::after, .page-template-page-startpage-v2 .subscribe-block form.formkit-form .btn::after {
  text-transform: none;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}
@media (max-width: 767px) {
  .page-template-page-startpage-v2 .subscribe-block form.formkit-form .formkit-submit, .page-template-page-startpage-v2 .subscribe-block form.formkit-form .btn {
    border: none !important;
    border-radius: 10px !important;
  }
}

.rt-calc .form-group {
  margin-bottom: 20px;
}
.rt-calc .form-group label {
  font-weight: 500;
  line-height: 120%;
}
.rt-calc .form-group label small {
  font-weight: 400;
  font-size: 80%;
}
@media (max-width: 767.98px) {
  .rt-calc .rt-settings-card {
    /* Gäller endast för XS + SM */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .rt-calc .rt-result-card:not(.separate-cards) {
    /* Gäller endast för XS + SM */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
.rt-calc .rt-result-card .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.rt-calc .rt-result-card .calc-result {
  font-size: clamp(2.5rem, 2rem + 2.5vw, 5rem);
  font-weight: 900;
  line-height: 120%;
  color: var(--rt-blue);
}
.rt-calc .rt-result-card .calc-result-md {
  font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.5rem);
  font-weight: 900;
  color: var(--rt-blue);
}
.rt-calc .rt-result-card .calc-result-lg {
  font-size: clamp(2.5rem, 1.5rem + 2.5vw, 4rem);
  font-weight: 900;
  color: var(--rt-blue);
}
.rt-calc .rt-result-card-sm {
  border-radius: 10px;
  border: 0;
}
.rt-calc .rt-result-card-sm .card-title {
  display: block;
  text-transform: uppercase;
  font-size: clamp(0.833rem, 0.8218rem + 0.056vw, 0.889rem);
}
.rt-calc .rt-result-card-sm .card-body {
  display: block;
}
.rt-calc .rt-result-card-sm .card-text {
  margin-bottom: 0;
  padding: 10px 0 10px 0;
}
.rt-calc .rt-result-card-sm .calc-result {
  font-size: clamp(2.5rem, 2rem + 2.5vw, 5rem);
  font-weight: 900;
  line-height: 120%;
  color: var(--rt-blue);
}
.rt-calc .rt-result-card-sm .calc-result-md {
  font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.5rem);
  font-weight: 900;
  color: var(--rt-blue);
}
.rt-calc .rt-result-card-sm .calc-result-lg {
  font-size: clamp(2.5rem, 1.5rem + 2.5vw, 4rem);
  font-weight: 900;
  color: var(--rt-blue);
}
.rt-calc .calculator-block .chart-container {
  position: relative;
  width: 100%;
}
@media (max-width: 767.98px) {
  .rt-calc .calculator-block .chart-container {
    height: 400px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .rt-calc .calculator-block .chart-container {
    height: 500px;
  }
}
@media (min-width: 992px) {
  .rt-calc .calculator-block .chart-container {
    height: 500px;
  }
}
.rt-calc .calculator-block .nav-tabs {
  border: none;
  margin: 0 0 10px;
}
.rt-calc .calculator-block .nav-tabs .nav-link:not(.dropdown-item) {
  margin: 0 20px 10px 0;
  border: 1px solid var(--rt-blue);
  color: var(--rt-blue);
  border-radius: 10px;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem);
  line-height: 120%;
  padding: 10px 20px;
  text-decoration: none !important;
}
.rt-calc .calculator-block .nav-tabs .nav-link:not(.dropdown-item):hover {
  background: rgba(var(--rt-blue-rgb), 0.8);
  color: var(--rt-white);
}
.rt-calc .calculator-block .nav-tabs .nav-link:not(.dropdown-item).active {
  background: var(--rt-blue);
  color: #fff;
}
.rt-calc .calculator-block .nav-tabs .nav-link:not(.dropdown-item).active:hover {
  background: rgba(var(--rt-blue-rgb), 0.8);
  color: #fff;
}
.rt-calc .calculator-block .nav-tabs .dropdown-item.active {
  background: var(--rt-blue);
}

@media (min-width: 768px) and (max-width: 991px) {
  .page-template-page-episodes .nav-bar-row {
    width: calc(100% + 16px);
    max-width: none;
    margin: 0 -8px;
  }
  .page-template-page-episodes .nav-bar-row .col-10 {
    width: 81%;
  }
  .page-template-page-episodes .nav-bar-row .col-2 {
    width: 19%;
  }
  .page-template-page-episodes .nav-bar-row .col-2 .nav {
    padding: 8px 0 9px !important;
  }
}
@media (max-width: 767px) {
  .page-template-page-episodes .nav-bar-row {
    width: calc(100% + 4px);
    max-width: none;
    margin: 0 -2px;
  }
  .page-template-page-episodes .nav-bar-row .col-10 {
    width: 83%;
  }
  .page-template-page-episodes .nav-bar-row .col-2 {
    width: 17%;
  }
  .page-template-page-episodes .nav-bar-row .col-2 .nav {
    padding: 8px 0 9px !important;
  }
}
@media (max-width: 540px) {
  .page-template-page-episodes .nav-bar-row {
    flex-direction: column-reverse;
  }
  .page-template-page-episodes .nav-bar-row .col-10 {
    width: 100%;
    padding-right: 0;
  }
  .page-template-page-episodes .nav-bar-row .col-2 {
    width: 100%;
  }
}
@media (max-width: 440px) {
  .page-template-page-episodes .nav-bar-row {
    width: calc(100% + 2px);
    margin: 0 -1px;
  }
}
.page-template-page-episodes .nav-bar-row .nav-tabs {
  margin-bottom: -1px;
}
@media (max-width: 991.98px) {
  .page-template-page-episodes .nav-bar-row .nav-tabs .nav-link {
    font-size: 15px;
    margin: 0 8px -1px;
    padding: 11px 14px !important;
  }
}
@media (max-width: 767px) {
  .page-template-page-episodes .nav-bar-row .nav-tabs .nav-link {
    margin: 0 2px -1px;
    padding: 11px 11px !important;
  }
}
@media (max-width: 440px) {
  .page-template-page-episodes .nav-bar-row .nav-tabs .nav-link {
    margin: 0 1px -1px;
    font-size: 13px;
    padding: 11px 9px !important;
  }
}
@media (max-width: 369px) {
  .page-template-page-episodes .nav-bar-row .nav-tabs .nav-link {
    font-size: 11px;
    padding: 11px 7px !important;
  }
}
.page-template-page-episodes .episodes-container {
  border-top: 1px solid var(--bs-border-color);
}

.page-template-page-supporter .main-text h1 {
  position: relative;
  padding-right: 150px;
}
@media (max-width: 767px) {
  .page-template-page-supporter .main-text h1 {
    padding-right: 120px;
  }
}
@media (max-width: 575.98px) {
  .page-template-page-supporter .main-text h1 {
    padding-right: 0;
  }
}
.page-template-page-supporter .main-text h1:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 139px;
  height: 83px;
  background: url("assets/images/icon-flags.svg") no-repeat center;
  background-size: contain;
}
@media (max-width: 767px) {
  .page-template-page-supporter .main-text h1:after {
    width: 100px;
    height: 60px;
  }
}
@media (max-width: 575.98px) {
  .page-template-page-supporter .main-text h1:after {
    display: none;
  }
}
.page-template-page-supporter h2:not(.subtitle) {
  text-transform: none;
  font-weight: 900;
  font-size: 1.625rem;
}
.page-template-page-supporter h2 {
  max-width: 100% !important;
}

.forum-ads-block {
  border: 1px solid var(--rt-beige-dark);
  border-radius: 10px;
  padding: 30px 45px;
  position: relative;
}
@media (max-width: 479px) {
  .forum-ads-block {
    padding: 30px 35px;
  }
}
.forum-ads-block ul {
  padding: 0 35px 0 20px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .forum-ads-block ul {
    column-count: 3;
  }
}
.forum-ads-block ul li {
  margin-bottom: 10px;
}
.forum-ads-block p:last-child {
  margin-bottom: 0;
}
.forum-ads-block .rt-speechbubble-left-blue {
  top: -50%;
  font-size: 20px;
  line-height: 26px;
  font-style: normal;
  width: 214px;
  height: 214px;
  text-transform: none;
  padding: 0 30px 30px;
}
.forum-ads-block .rt-speechbubble-left-blue b {
  font-weight: 800;
}
@media (max-width: 1199px) {
  .forum-ads-block .rt-speechbubble-left-blue {
    display: block;
    position: initial;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    color: var(--rt-black);
    text-align: left;
    margin: 0 0 20px;
  }
}

.support-plans-block .container {
  max-width: 952px;
  padding-top: 34px;
  padding-bottom: 40px;
}
.support-plans-block .support-title {
  position: relative;
  padding-top: 58px;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 26px;
  text-transform: uppercase;
  text-align: center;
}
.support-plans-block .support-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 76px;
  height: 45px;
  margin-left: -38px;
  background: url("assets/images/icon-flags.svg") no-repeat center;
  background-size: contain;
}
.support-plans-block .plans-grid p, .support-plans-block .plans-grid ul li {
  font-size: 14px;
  line-height: 22px;
}
.support-plans-block .plans-grid ul li {
  margin: 0;
}
.support-plans-block .plans-grid .pricing {
  min-height: 112px;
  margin: 0 0 22px;
}
.support-plans-block .plans-grid .pricing h4 {
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.support-plans-block .plans-grid .pricing .line-separator {
  max-width: 120px;
  margin-bottom: 12px;
}
.support-plans-block .plans-grid .pricing .price {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 6px;
}
.support-plans-block .plans-grid .pricing small {
  font-size: 12px;
  display: block;
}
.support-plans-block .plans-grid .pricing .expand-btn {
  display: none;
}
@media (max-width: 575.98px) {
  .support-plans-block .plans-grid .pricing {
    position: relative;
  }
  .support-plans-block .plans-grid .pricing h4 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .support-plans-block .plans-grid .pricing .expand-btn {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: var(--rt-black);
    width: 28px;
    height: 28px;
    cursor: pointer;
    border-radius: 4px;
  }
  .support-plans-block .plans-grid .pricing .expand-btn::before {
    content: "+";
    color: #fff;
    font-size: 28px;
    line-height: 1;
  }
}
.support-plans-block .plans-grid ul li.unavailable {
  opacity: 0.2;
  pointer-events: none;
}
@media (max-width: 575.98px) {
  .support-plans-block .plans-grid ul li.unavailable {
    display: none;
  }
}
.support-plans-block .plans-grid .item {
  display: flex;
}
.support-plans-block .plans-grid .item .hold {
  padding: 30px 20px 15px;
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid var(--rt-beige-main);
  transition: border-color 0.3s ease-in-out;
}
@media (max-width: 575.98px) {
  .support-plans-block .plans-grid .item .hold {
    cursor: pointer;
  }
  .support-plans-block .plans-grid .item .hold.active {
    border-color: var(--rt-black);
  }
  .support-plans-block .plans-grid .item .hold.active .pricing .expand-btn::before {
    content: "-";
  }
}
.support-plans-block .plans-grid .item .hold.most-popular {
  position: relative;
}
.support-plans-block .plans-grid .item .hold.most-popular:after {
  content: "Populärast";
  position: absolute;
  top: -15px;
  right: -10px;
  display: block;
  width: auto;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--rt-white);
  background-color: var(--rt-blue);
  padding: 6px 15px;
  border-radius: 20px;
}
.support-plans-block .plans-grid .item .hold .text-hold {
  flex: 1;
}
.support-plans-block .plans-grid .item .collapsible {
  height: 100%;
  flex-direction: column;
}
@media (min-width: 576px) {
  .support-plans-block .plans-grid .item .collapsible {
    display: flex !important;
  }
}
@media (max-width: 575.98px) {
  .support-plans-block .plans-grid .item .collapsible {
    display: flex;
  }
}
.support-plans-block .plans-grid .item .btn.btn-bmac {
  padding-left: 52px;
}
.support-plans-block .plans-grid .item .btn.btn-swish {
  padding-left: 52px;
  padding-right: 10px;
}

.supporters-list-block h2 {
  margin-bottom: 24px;
}
.supporters-list-block p {
  max-width: none;
  font-style: italic;
}

.supporter-heroes {
  background: #F5F5F5;
  border-radius: 10px;
  text-align: center;
  color: #000;
  display: block !important;
  padding: 30px 40px 50px;
}
.supporter-heroes h2 {
  margin: 0 0 45px;
  position: relative;
  padding-bottom: 15px;
}
.supporter-heroes h2:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  max-width: 562px;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  background: #000;
}
.supporter-heroes .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  align-items: center;
}
.supporter-heroes .items .item {
  font-size: 70px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 20px;
}
@media (max-width: 400px) {
  .supporter-heroes .items .item {
    width: 100%;
  }
}

.heroes-grid-block h2 {
  margin-bottom: 45px;
}
.heroes-grid-block .heroes-grid .item .hold {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.heroes-grid-block .heroes-grid .item .hold img {
  border-radius: 50%;
  width: 45px;
  height: auto;
  filter: grayscale(100%);
}
.heroes-grid-block .heroes-grid .item .hold p {
  width: calc(100% - 45px);
  padding-left: 15px;
  line-height: 1.1;
}

.rt-page-template-v2 .container.normal-width {
  width: 100%;
  max-width: 1190px;
}
.rt-page-template-v2 .rt-section-tips .container {
  width: 100%;
  max-width: 1190px;
}
.rt-page-template-v2 .rt-section-tips .inner-section {
  width: 724px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .rt-page-template-v2 .container {
    width: 724px;
  }
  .rt-page-template-v2 .rt-thoughtbubble-left-blue, .rt-page-template-v2 .rt-thoughtbubble-left-pink, .rt-page-template-v2 .rt-thoughtbubble-left-dark, .rt-page-template-v2 .rt-thoughtbubble-left-dark-2, .rt-page-template-v2 .rt-thoughtbubble-left-white, .rt-page-template-v2 .rt-thoughtbubble-left-beige-1, .rt-page-template-v2 .rt-thoughtbubble-left-beige-2, .rt-page-template-v2 .rt-thoughtbubble-right-blue, .rt-page-template-v2 .rt-thoughtbubble-right-pink, .rt-page-template-v2 .rt-thoughtbubble-right-dark, .rt-page-template-v2 .rt-thoughtbubble-right-dark-2, .rt-page-template-v2 .rt-thoughtbubble-right-white, .rt-page-template-v2 .rt-thoughtbubble-right-beige-1, .rt-page-template-v2 .rt-thoughtbubble-right-beige-2, .rt-page-template-v2 .rt-thoughtbubble-top-blue, .rt-page-template-v2 .rt-thoughtbubble-top-pink, .rt-page-template-v2 .rt-thoughtbubble-top-dark, .rt-page-template-v2 .rt-thoughtbubble-top-dark-2, .rt-page-template-v2 .rt-thoughtbubble-top-white, .rt-page-template-v2 .rt-thoughtbubble-top-beige-1, .rt-page-template-v2 .rt-thoughtbubble-top-beige-2, .rt-page-template-v2 .rt-thoughtbubble-bottom-blue, .rt-page-template-v2 .rt-thoughtbubble-bottom-pink, .rt-page-template-v2 .rt-thoughtbubble-bottom-dark, .rt-page-template-v2 .rt-thoughtbubble-bottom-dark-2, .rt-page-template-v2 .rt-thoughtbubble-bottom-white, .rt-page-template-v2 .rt-thoughtbubble-bottom-beige-1, .rt-page-template-v2 .rt-thoughtbubble-bottom-beige-2, .rt-page-template-v2 .rt-thoughtbubble-top-left-blue, .rt-page-template-v2 .rt-thoughtbubble-top-left-pink, .rt-page-template-v2 .rt-thoughtbubble-top-left-dark, .rt-page-template-v2 .rt-thoughtbubble-top-left-dark-2, .rt-page-template-v2 .rt-thoughtbubble-top-left-white, .rt-page-template-v2 .rt-thoughtbubble-top-left-beige-1, .rt-page-template-v2 .rt-thoughtbubble-top-left-beige-2, .rt-page-template-v2 .rt-thoughtbubble-top-right-blue, .rt-page-template-v2 .rt-thoughtbubble-top-right-pink, .rt-page-template-v2 .rt-thoughtbubble-top-right-dark, .rt-page-template-v2 .rt-thoughtbubble-top-right-dark-2, .rt-page-template-v2 .rt-thoughtbubble-top-right-white, .rt-page-template-v2 .rt-thoughtbubble-top-right-beige-1, .rt-page-template-v2 .rt-thoughtbubble-top-right-beige-2, .rt-page-template-v2 .rt-thoughtbubble-bottom-left-blue, .rt-page-template-v2 .rt-thoughtbubble-bottom-left-pink, .rt-page-template-v2 .rt-thoughtbubble-bottom-left-dark, .rt-page-template-v2 .rt-thoughtbubble-bottom-left-dark-2, .rt-page-template-v2 .rt-thoughtbubble-bottom-left-white, .rt-page-template-v2 .rt-thoughtbubble-bottom-left-beige-1, .rt-page-template-v2 .rt-thoughtbubble-bottom-left-beige-2, .rt-page-template-v2 .rt-thoughtbubble-bottom-right-blue, .rt-page-template-v2 .rt-thoughtbubble-bottom-right-pink, .rt-page-template-v2 .rt-thoughtbubble-bottom-right-dark, .rt-page-template-v2 .rt-thoughtbubble-bottom-right-dark-2, .rt-page-template-v2 .rt-thoughtbubble-bottom-right-white, .rt-page-template-v2 .rt-thoughtbubble-bottom-right-beige-1, .rt-page-template-v2 .rt-thoughtbubble-bottom-right-beige-2,
  .rt-page-template-v2 .rt-speechbubble-left-blue,
  .rt-page-template-v2 .rt-speechbubble-left-pink,
  .rt-page-template-v2 .rt-speechbubble-left-dark,
  .rt-page-template-v2 .rt-speechbubble-left-dark-2,
  .rt-page-template-v2 .rt-speechbubble-left-white,
  .rt-page-template-v2 .rt-speechbubble-left-beige-1,
  .rt-page-template-v2 .rt-speechbubble-left-beige-2,
  .rt-page-template-v2 .rt-speechbubble-right-blue,
  .rt-page-template-v2 .rt-speechbubble-right-pink,
  .rt-page-template-v2 .rt-speechbubble-right-dark,
  .rt-page-template-v2 .rt-speechbubble-right-dark-2,
  .rt-page-template-v2 .rt-speechbubble-right-white,
  .rt-page-template-v2 .rt-speechbubble-right-beige-1,
  .rt-page-template-v2 .rt-speechbubble-right-beige-2,
  .rt-page-template-v2 .rt-speechbubble-top-blue,
  .rt-page-template-v2 .rt-speechbubble-top-pink,
  .rt-page-template-v2 .rt-speechbubble-top-dark,
  .rt-page-template-v2 .rt-speechbubble-top-dark-2,
  .rt-page-template-v2 .rt-speechbubble-top-white,
  .rt-page-template-v2 .rt-speechbubble-top-beige-1,
  .rt-page-template-v2 .rt-speechbubble-top-beige-2,
  .rt-page-template-v2 .rt-speechbubble-bottom-blue,
  .rt-page-template-v2 .rt-speechbubble-bottom-pink,
  .rt-page-template-v2 .rt-speechbubble-bottom-dark,
  .rt-page-template-v2 .rt-speechbubble-bottom-dark-2,
  .rt-page-template-v2 .rt-speechbubble-bottom-white,
  .rt-page-template-v2 .rt-speechbubble-bottom-beige-1,
  .rt-page-template-v2 .rt-speechbubble-bottom-beige-2,
  .rt-page-template-v2 .rt-speechbubble-top-left-blue,
  .rt-page-template-v2 .rt-speechbubble-top-left-pink,
  .rt-page-template-v2 .rt-speechbubble-top-left-dark,
  .rt-page-template-v2 .rt-speechbubble-top-left-dark-2,
  .rt-page-template-v2 .rt-speechbubble-top-left-white,
  .rt-page-template-v2 .rt-speechbubble-top-left-beige-1,
  .rt-page-template-v2 .rt-speechbubble-top-left-beige-2,
  .rt-page-template-v2 .rt-speechbubble-top-right-blue,
  .rt-page-template-v2 .rt-speechbubble-top-right-pink,
  .rt-page-template-v2 .rt-speechbubble-top-right-dark,
  .rt-page-template-v2 .rt-speechbubble-top-right-dark-2,
  .rt-page-template-v2 .rt-speechbubble-top-right-white,
  .rt-page-template-v2 .rt-speechbubble-top-right-beige-1,
  .rt-page-template-v2 .rt-speechbubble-top-right-beige-2,
  .rt-page-template-v2 .rt-speechbubble-bottom-left-blue,
  .rt-page-template-v2 .rt-speechbubble-bottom-left-pink,
  .rt-page-template-v2 .rt-speechbubble-bottom-left-dark,
  .rt-page-template-v2 .rt-speechbubble-bottom-left-dark-2,
  .rt-page-template-v2 .rt-speechbubble-bottom-left-white,
  .rt-page-template-v2 .rt-speechbubble-bottom-left-beige-1,
  .rt-page-template-v2 .rt-speechbubble-bottom-left-beige-2,
  .rt-page-template-v2 .rt-speechbubble-bottom-right-blue,
  .rt-page-template-v2 .rt-speechbubble-bottom-right-pink,
  .rt-page-template-v2 .rt-speechbubble-bottom-right-dark,
  .rt-page-template-v2 .rt-speechbubble-bottom-right-dark-2,
  .rt-page-template-v2 .rt-speechbubble-bottom-right-white,
  .rt-page-template-v2 .rt-speechbubble-bottom-right-beige-1,
  .rt-page-template-v2 .rt-speechbubble-bottom-right-beige-2 {
    right: -245px;
    width: 245px;
  }
  .rt-page-template-v2 .wp-block-image {
    margin: 2rem -50px 2rem -50px;
  }
  .faq-block .container {
    width: 724px;
  }
}
@media (min-width: 1400px) {
  .rt-page-template-v2 .rt-thoughtbubble-left-blue, .rt-page-template-v2 .rt-thoughtbubble-left-pink, .rt-page-template-v2 .rt-thoughtbubble-left-dark, .rt-page-template-v2 .rt-thoughtbubble-left-dark-2, .rt-page-template-v2 .rt-thoughtbubble-left-white, .rt-page-template-v2 .rt-thoughtbubble-left-beige-1, .rt-page-template-v2 .rt-thoughtbubble-left-beige-2, .rt-page-template-v2 .rt-thoughtbubble-right-blue, .rt-page-template-v2 .rt-thoughtbubble-right-pink, .rt-page-template-v2 .rt-thoughtbubble-right-dark, .rt-page-template-v2 .rt-thoughtbubble-right-dark-2, .rt-page-template-v2 .rt-thoughtbubble-right-white, .rt-page-template-v2 .rt-thoughtbubble-right-beige-1, .rt-page-template-v2 .rt-thoughtbubble-right-beige-2, .rt-page-template-v2 .rt-thoughtbubble-top-blue, .rt-page-template-v2 .rt-thoughtbubble-top-pink, .rt-page-template-v2 .rt-thoughtbubble-top-dark, .rt-page-template-v2 .rt-thoughtbubble-top-dark-2, .rt-page-template-v2 .rt-thoughtbubble-top-white, .rt-page-template-v2 .rt-thoughtbubble-top-beige-1, .rt-page-template-v2 .rt-thoughtbubble-top-beige-2, .rt-page-template-v2 .rt-thoughtbubble-bottom-blue, .rt-page-template-v2 .rt-thoughtbubble-bottom-pink, .rt-page-template-v2 .rt-thoughtbubble-bottom-dark, .rt-page-template-v2 .rt-thoughtbubble-bottom-dark-2, .rt-page-template-v2 .rt-thoughtbubble-bottom-white, .rt-page-template-v2 .rt-thoughtbubble-bottom-beige-1, .rt-page-template-v2 .rt-thoughtbubble-bottom-beige-2, .rt-page-template-v2 .rt-thoughtbubble-top-left-blue, .rt-page-template-v2 .rt-thoughtbubble-top-left-pink, .rt-page-template-v2 .rt-thoughtbubble-top-left-dark, .rt-page-template-v2 .rt-thoughtbubble-top-left-dark-2, .rt-page-template-v2 .rt-thoughtbubble-top-left-white, .rt-page-template-v2 .rt-thoughtbubble-top-left-beige-1, .rt-page-template-v2 .rt-thoughtbubble-top-left-beige-2, .rt-page-template-v2 .rt-thoughtbubble-top-right-blue, .rt-page-template-v2 .rt-thoughtbubble-top-right-pink, .rt-page-template-v2 .rt-thoughtbubble-top-right-dark, .rt-page-template-v2 .rt-thoughtbubble-top-right-dark-2, .rt-page-template-v2 .rt-thoughtbubble-top-right-white, .rt-page-template-v2 .rt-thoughtbubble-top-right-beige-1, .rt-page-template-v2 .rt-thoughtbubble-top-right-beige-2, .rt-page-template-v2 .rt-thoughtbubble-bottom-left-blue, .rt-page-template-v2 .rt-thoughtbubble-bottom-left-pink, .rt-page-template-v2 .rt-thoughtbubble-bottom-left-dark, .rt-page-template-v2 .rt-thoughtbubble-bottom-left-dark-2, .rt-page-template-v2 .rt-thoughtbubble-bottom-left-white, .rt-page-template-v2 .rt-thoughtbubble-bottom-left-beige-1, .rt-page-template-v2 .rt-thoughtbubble-bottom-left-beige-2, .rt-page-template-v2 .rt-thoughtbubble-bottom-right-blue, .rt-page-template-v2 .rt-thoughtbubble-bottom-right-pink, .rt-page-template-v2 .rt-thoughtbubble-bottom-right-dark, .rt-page-template-v2 .rt-thoughtbubble-bottom-right-dark-2, .rt-page-template-v2 .rt-thoughtbubble-bottom-right-white, .rt-page-template-v2 .rt-thoughtbubble-bottom-right-beige-1, .rt-page-template-v2 .rt-thoughtbubble-bottom-right-beige-2,
  .rt-page-template-v2 .rt-speechbubble-left-blue,
  .rt-page-template-v2 .rt-speechbubble-left-pink,
  .rt-page-template-v2 .rt-speechbubble-left-dark,
  .rt-page-template-v2 .rt-speechbubble-left-dark-2,
  .rt-page-template-v2 .rt-speechbubble-left-white,
  .rt-page-template-v2 .rt-speechbubble-left-beige-1,
  .rt-page-template-v2 .rt-speechbubble-left-beige-2,
  .rt-page-template-v2 .rt-speechbubble-right-blue,
  .rt-page-template-v2 .rt-speechbubble-right-pink,
  .rt-page-template-v2 .rt-speechbubble-right-dark,
  .rt-page-template-v2 .rt-speechbubble-right-dark-2,
  .rt-page-template-v2 .rt-speechbubble-right-white,
  .rt-page-template-v2 .rt-speechbubble-right-beige-1,
  .rt-page-template-v2 .rt-speechbubble-right-beige-2,
  .rt-page-template-v2 .rt-speechbubble-top-blue,
  .rt-page-template-v2 .rt-speechbubble-top-pink,
  .rt-page-template-v2 .rt-speechbubble-top-dark,
  .rt-page-template-v2 .rt-speechbubble-top-dark-2,
  .rt-page-template-v2 .rt-speechbubble-top-white,
  .rt-page-template-v2 .rt-speechbubble-top-beige-1,
  .rt-page-template-v2 .rt-speechbubble-top-beige-2,
  .rt-page-template-v2 .rt-speechbubble-bottom-blue,
  .rt-page-template-v2 .rt-speechbubble-bottom-pink,
  .rt-page-template-v2 .rt-speechbubble-bottom-dark,
  .rt-page-template-v2 .rt-speechbubble-bottom-dark-2,
  .rt-page-template-v2 .rt-speechbubble-bottom-white,
  .rt-page-template-v2 .rt-speechbubble-bottom-beige-1,
  .rt-page-template-v2 .rt-speechbubble-bottom-beige-2,
  .rt-page-template-v2 .rt-speechbubble-top-left-blue,
  .rt-page-template-v2 .rt-speechbubble-top-left-pink,
  .rt-page-template-v2 .rt-speechbubble-top-left-dark,
  .rt-page-template-v2 .rt-speechbubble-top-left-dark-2,
  .rt-page-template-v2 .rt-speechbubble-top-left-white,
  .rt-page-template-v2 .rt-speechbubble-top-left-beige-1,
  .rt-page-template-v2 .rt-speechbubble-top-left-beige-2,
  .rt-page-template-v2 .rt-speechbubble-top-right-blue,
  .rt-page-template-v2 .rt-speechbubble-top-right-pink,
  .rt-page-template-v2 .rt-speechbubble-top-right-dark,
  .rt-page-template-v2 .rt-speechbubble-top-right-dark-2,
  .rt-page-template-v2 .rt-speechbubble-top-right-white,
  .rt-page-template-v2 .rt-speechbubble-top-right-beige-1,
  .rt-page-template-v2 .rt-speechbubble-top-right-beige-2,
  .rt-page-template-v2 .rt-speechbubble-bottom-left-blue,
  .rt-page-template-v2 .rt-speechbubble-bottom-left-pink,
  .rt-page-template-v2 .rt-speechbubble-bottom-left-dark,
  .rt-page-template-v2 .rt-speechbubble-bottom-left-dark-2,
  .rt-page-template-v2 .rt-speechbubble-bottom-left-white,
  .rt-page-template-v2 .rt-speechbubble-bottom-left-beige-1,
  .rt-page-template-v2 .rt-speechbubble-bottom-left-beige-2,
  .rt-page-template-v2 .rt-speechbubble-bottom-right-blue,
  .rt-page-template-v2 .rt-speechbubble-bottom-right-pink,
  .rt-page-template-v2 .rt-speechbubble-bottom-right-dark,
  .rt-page-template-v2 .rt-speechbubble-bottom-right-dark-2,
  .rt-page-template-v2 .rt-speechbubble-bottom-right-white,
  .rt-page-template-v2 .rt-speechbubble-bottom-right-beige-1,
  .rt-page-template-v2 .rt-speechbubble-bottom-right-beige-2 {
    right: -300px;
    width: 300px;
  }
}
#header {
  padding: 20px 0;
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s;
  background: rgba(var(--rt-white-rgb), 1);
}
.page-template-page-startpage-v2 #header, .page-template-page-search #header, .page-template-page-rt_tools #header, .post-type-archive #header, .tag #header, .blog #header {
  background: rgba(var(--rt-white-rgb), 0);
}
#header.fixed {
  position: fixed;
  background: rgba(var(--rt-white-rgb), 1);
}
@media (max-width: 1079px) {
  #header.fixed {
    position: absolute;
    background: rgba(var(--rt-white-rgb), 1);
  }
  #header.fixed.scrolled {
    position: fixed;
    background: rgba(var(--rt-white-rgb), 1);
  }
  #header.fixed.scrolled.scroll-down:not(.has-dropdown-active):not(.search-panel-active) {
    top: -91px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #header .col-lg-2 {
    width: 13%;
  }
  #header .col-lg-10 {
    width: 87%;
  }
  #header .col-lg-10 .nav .nav-link {
    margin: 0 10px;
  }
  #header .col-lg-10 .rt-menu {
    padding: 0 0 0 20px;
    width: 85%;
  }
  #header .col-lg-10 .header-buttons {
    width: 15%;
  }
  #header .col-lg-10 .header-buttons .premium-btn {
    display: none;
  }
  #header .col-lg-10 .header-buttons .btn.btn-primary {
    margin: 0 15px 0 0 !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  #header .col-lg-2 {
    width: 11%;
  }
  #header .col-lg-10 {
    width: 89%;
  }
  #header .col-lg-10 .nav .nav-link {
    margin: 0 14px;
  }
  #header .col-lg-10 .rt-menu {
    padding: 0 0 0 20px;
  }
}
@media (max-width: 575.98px) {
  #header .col-lg-10 .header-buttons {
    padding: 0 12px !important;
  }
  #header .col-lg-10 .header-buttons .btn {
    width: 100% !important;
    margin: 0 0 12px !important;
  }
  #header .col-lg-10 .header-buttons .search-icon {
    display: none !important;
  }
}
#header .logo {
  position: relative;
  z-index: 1;
}
#header.search-panel-active, #header.has-dropdown-active {
  background: var(--rt-white);
}
#header.search-panel-active .search-panel {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: -1;
  background: var(--rt-white);
  box-shadow: 0 10px 10px rgba(var(--rt-black-rgb), 0.15);
  padding: 30px 0;
}
#header .nav {
  margin-bottom: -4px;
}
@media (max-width: 991px) {
  #header .nav {
    padding: 0 24px;
  }
}
@media (max-width: 575px) {
  #header .nav {
    padding: 0 12px;
  }
}
@media (max-width: 1399px) {
  #header .nav .nav-link {
    margin: 0 18px;
  }
}
@media (max-width: 1199px) {
  #header .nav .nav-link {
    margin: 0 9px;
  }
}
@media (max-width: 991.98px) {
  #header .nav .nav-link {
    font-size: 18px;
    line-height: 26px;
    margin: 0;
  }
}
@media (min-width: 992px) {
  #header .nav .nav-link {
    position: relative;
    z-index: 1;
  }
  #header .nav .nav-link::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 6px;
    left: -8px;
    bottom: -3px;
    width: calc(100% + 16px);
    height: calc(100% + 6px);
    opacity: 0;
    background: var(--rt-beige-contrast);
    transition: all 0.3s ease-in-out;
    z-index: -1;
  }
  #header .nav .nav-link:hover::after {
    opacity: 1;
  }
}
@media (max-width: 991.98px) {
  #header .nav li {
    margin-bottom: 10px;
  }
}
#header .nav li.has-dropdown {
  /*&:hover > .sub-menu,*/
}
@media (max-width: 991.98px) {
  #header .nav li.has-dropdown {
    position: relative;
  }
  #header .nav li.has-dropdown.opened::after {
    content: "";
    position: absolute;
    left: -10px;
    top: -8px;
    width: calc(100% + 20px);
    height: calc(100% + 16px);
    background: var(--rt-beige-contrast);
    border-radius: 10px;
    opacity: 0.2;
    display: block;
    z-index: -1;
  }
  #header .nav li.has-dropdown.opened .nav-link {
    font-weight: 700;
  }
}
#header .nav li.has-dropdown .nav-link {
  position: relative;
  color: var(--rt-black);
  padding-right: 16px;
}
@media (max-width: 991.98px) {
  #header .nav li.has-dropdown .nav-link {
    padding-right: 30px;
    z-index: 1;
  }
}
#header .nav li.has-dropdown .nav-link .open-dropdown {
  display: block;
  position: absolute;
  background: url("assets/images/icon-caret-down.svg") no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  right: 0;
  top: 5px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991.98px) {
  #header .nav li.has-dropdown .nav-link .open-dropdown {
    background-size: 20px;
    width: 24px;
    height: 24px;
    top: 0;
    background-position: center;
  }
  #header .nav li.has-dropdown .nav-link .open-dropdown.active {
    transform: rotate(180deg);
  }
}
#header .nav li.has-dropdown .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
  background: var(--rt-white);
  box-shadow: 0 10px 10px rgba(var(--rt-black-rgb), 0.15);
}
@media (max-width: 991.98px) {
  #header .nav li.has-dropdown .sub-menu {
    background: none;
    box-shadow: none;
    z-index: 1;
  }
  #header .nav li.has-dropdown .sub-menu.show {
    display: block;
    position: initial;
  }
  #header .nav li.has-dropdown .sub-menu .container {
    padding: 0;
  }
}
@media (min-width: 992px) {
  #header .nav li.has-dropdown .sub-menu .menu-column:nth-child(3) {
    padding-left: 74px;
    position: relative;
  }
  #header .nav li.has-dropdown .sub-menu .menu-column:nth-child(3)::before {
    content: "";
    position: absolute;
    left: 35px;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgb(var(--rt-black-rgb));
    opacity: 0.25;
  }
}
@media (max-width: 991.98px) {
  #header .nav li.has-dropdown .sub-menu .menu-column {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0 !important;
  }
}
@media (max-width: 767px) {
  #header .nav li.has-dropdown .sub-menu .menu-column {
    width: 100%;
  }
}
#header .nav li.has-dropdown .sub-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header .nav li.has-dropdown .sub-menu ul.featured-sub-items li {
  position: relative;
  z-index: 1;
}
#header .nav li.has-dropdown .sub-menu ul.featured-sub-items li::after, #header .nav li.has-dropdown .sub-menu ul.featured-sub-items li > a::after {
  content: "";
  position: absolute;
  left: -15px;
  top: -10px;
  width: calc(100% + 30px);
  background: var(--rt-beige-main);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  height: calc(100% + 10px);
}
@media (max-width: 991.98px) {
  #header .nav li.has-dropdown .sub-menu ul.featured-sub-items li::after, #header .nav li.has-dropdown .sub-menu ul.featured-sub-items li > a::after {
    display: none;
    height: calc(100% + 20px);
  }
}
#header .nav li.has-dropdown .sub-menu ul.featured-sub-items li > a::after {
  height: calc(100% + 20px);
}
#header .nav li.has-dropdown .sub-menu ul.featured-sub-items li a:hover {
  color: inherit;
}
@media (min-width: 1400px) {
  #header .nav li.has-dropdown .sub-menu ul.featured-sub-items li:hover::after, #header .nav li.has-dropdown .sub-menu ul.featured-sub-items li.active::after {
    opacity: 1;
  }
}
@media (max-width: 1399px) {
  #header .nav li.has-dropdown .sub-menu ul.featured-sub-items li:hover > a::after, #header .nav li.has-dropdown .sub-menu ul.featured-sub-items li.active > a::after {
    opacity: 1;
  }
}
@media (max-width: 991.98px) {
  #header .nav li.has-dropdown .sub-menu ul + .btn {
    margin-bottom: 20px;
  }
}
#header .nav li.has-dropdown .sub-menu a {
  color: var(--rt-text-color);
  text-decoration: none;
}
#header .nav li.has-dropdown .sub-menu a:not(.btn):hover {
  color: var(--bs-nav-link-hover-color);
}
#header .nav li.has-dropdown .sub-menu a.active:not(.has-icon) {
  color: var(--rt-link-color);
  font-weight: 700;
}
@media (max-width: 991.98px) {
  #header .nav li.has-dropdown .sub-menu .default-sub-items {
    width: 50%;
    padding-top: 10px;
  }
  #header .nav li.has-dropdown .sub-menu .default-sub-items:nth-child(2n+1) {
    padding-right: 10px;
  }
  #header .nav li.has-dropdown .sub-menu .default-sub-items:nth-child(2n) {
    padding-left: 10px;
  }
}
#header .nav li.has-dropdown .sub-menu .default-sub-items li {
  margin: 0 0 5px;
}
#header .nav li.has-dropdown .sub-menu .default-sub-items li h4 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 28px 0 7px;
}
@media (max-width: 991.98px) {
  #header .nav li.has-dropdown .sub-menu .default-sub-items li h4 {
    margin-top: 0;
  }
}
#header .nav li.has-dropdown .sub-menu .default-sub-items li a {
  font-size: 14px;
  line-height: 18px;
}
#header .nav li.has-dropdown .sub-menu .default-sub-items:first-child li h4 {
  margin-top: 0;
}
#header .nav li.has-dropdown .sub-menu .featured-sub-items li {
  margin: 0 0 25px;
}
#header .nav li.has-dropdown .sub-menu .featured-sub-items li a {
  display: block;
}
#header .nav li.has-dropdown .sub-menu .featured-sub-items li a.has-icon {
  position: relative;
  padding-left: 37px;
}
#header .nav li.has-dropdown .sub-menu .featured-sub-items li a.has-icon img {
  position: absolute;
  left: 0;
  top: 20%;
  transform: translateY(-20%);
  max-width: 27px;
}
#header .nav li.has-dropdown .sub-menu .featured-sub-items li a h4 {
  font-size: 18px;
  line-height: 25px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
}
#header .nav li.has-dropdown .sub-menu .featured-sub-items li a p {
  font-size: 14px;
  line-height: 18px;
  margin: 0;
}
@media (min-width: 1400px) {
  #header .nav li.has-dropdown .sub-menu .featured-sub-items li a p {
    min-height: 36px;
  }
}
@media (min-width: 992px) {
  #header .nav li.has-dropdown.active .nav-link .open-dropdown {
    transform: rotate(180deg);
  }
  #header .nav li.has-dropdown.active > .sub-menu {
    display: block;
  }
}
@media (max-width: 991px) {
  #header #nav {
    position: fixed;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 100%;
    top: calc(-100% - 30px);
    background: var(--rt-white);
    transition: all 400ms ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 135px 0 0;
    box-shadow: 0 10px 10px rgba(var(--rt-black-rgb), 0.15);
  }
  #header #nav.show {
    top: 0;
  }
  #header #nav .mobile-nav-hold {
    width: 100%;
    max-width: 748px;
    overflow-y: auto;
    padding-bottom: 20px;
    padding-top: 8px;
  }
}
@media (max-width: 767px) {
  #header #nav {
    padding-top: 91px;
  }
  #header #nav .mobile-nav-hold {
    max-width: 564px;
  }
}
@media (max-width: 575px) {
  #header #nav .mobile-nav-hold .search-panel {
    display: block !important;
    order: 3;
    margin: 10px 0 0;
  }
  #header #nav .mobile-nav-hold .search-panel .container {
    padding: 0;
  }
}
@media (max-width: 440px) {
  #header #nav {
    justify-content: start;
  }
}
#header #menu-toggle {
  display: none;
  position: relative;
  z-index: 1000;
  width: 20px;
  height: 11px;
  cursor: pointer;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  #header #menu-toggle {
    display: block;
  }
}
@media (max-width: 375px) {
  #header #menu-toggle {
    margin-right: 10px;
  }
}
#header #menu-toggle.active span {
  width: 0;
}
#header #menu-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
#header #menu-toggle.active span::after {
  bottom: 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
#header #menu-toggle.active span::before, #header #menu-toggle.active span::after {
  transition-delay: 0s, 0.3s;
  -webkit-transition-delay: 0s, 0.3s;
}
#header #menu-toggle span {
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: var(--rt-text-color);
  transition: all 0.3s;
}
#header #menu-toggle span:before {
  top: -7px;
  transition-property: top, transform;
  -webkit-transition-property: top, transform;
}
#header #menu-toggle span:after {
  bottom: -7px;
  transition-property: bottom, transform;
  -webkit-transition-property: bottom, transform;
}
#header #menu-toggle span:before, #header #menu-toggle span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  border-radius: 3px;
  left: 0;
  background-color: var(--rt-text-color);
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
  -webkit-transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0s;
}

body.fixed #header.fixed {
  top: 0 !important;
}
body.fixed #header.fixed.scrolled.scroll-down {
  top: 0 !important;
}

/** Fix issue with scrolling due to header */
@media (min-width: 992px) {
  :target {
    scroll-margin-top: 110px;
  }
}

.rt-episode-card .rt-episode-card-image {
  position: relative;
}
.rt-episode-card .rt-episode-card-image figure {
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
}
.rt-episode-card .rt-episode-card-image figure img {
  width: 100%;
  height: auto;
  display: block;
}
.rt-episode-card .rt-episode-card-image figure img.desktop-image {
  display: block;
}
@media (max-width: 575.98px) {
  .rt-episode-card .rt-episode-card-image figure img.desktop-image {
    display: none;
  }
}
.rt-episode-card .rt-episode-card-image figure img.mobile-image {
  display: none;
}
@media (max-width: 575.98px) {
  .rt-episode-card .rt-episode-card-image figure img.mobile-image {
    display: block;
  }
}
.rt-episode-card .rt-episode-card-image .corner-logo {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background-image: url("assets/images/logo.php?c=white");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
.rt-episode-card .rt-episode-card-image .corner-logo-black {
  background-image: url("assets/images/logo.php?c=black");
}
.rt-episode-card .rt-episode-card-image .overlay {
  position: absolute;
  background: rgba(var(--rt-black-rgb), 0.7);
  border-radius: 6px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  z-index: 2;
  text-transform: uppercase;
  bottom: 15px;
  left: 15px;
}
.rt-episode-card .rt-episode-card-image .overlay .duration, .rt-episode-card .rt-episode-card-image .overlay .text, .rt-episode-card .rt-episode-card-image .overlay .time-since {
  color: var(--rt-white);
  font-size: clamp(0.694rem, 0.5828rem + 0.556vw, 0.833rem);
}
.rt-episode-card .rt-episode-card-image .overlay b {
  font-weight: 900;
}
.rt-episode-card .rt-episode-card-image .overlay-duration {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(var(--rt-black-rgb), 0.7);
  border-radius: 6px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  z-index: 2;
  text-transform: uppercase;
}
.rt-episode-card .rt-episode-card-image .overlay-duration .duration, .rt-episode-card .rt-episode-card-image .overlay-duration .text, .rt-episode-card .rt-episode-card-image .overlay-duration .time-since {
  color: var(--rt-white);
  font-size: clamp(0.694rem, 0.5828rem + 0.556vw, 0.833rem);
}
.rt-episode-card .rt-episode-card-image .overlay-duration b {
  font-weight: 900;
}
.rt-episode-card .rt-episode-card-image .rt-overlay-badge-left {
  position: absolute;
  background: rgba(var(--rt-black-rgb), 0.7);
  border-radius: 6px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  z-index: 2;
  text-transform: uppercase;
  bottom: 10px;
  left: 10px;
}
.rt-episode-card .rt-episode-card-image .rt-overlay-badge-left .duration, .rt-episode-card .rt-episode-card-image .rt-overlay-badge-left .text, .rt-episode-card .rt-episode-card-image .rt-overlay-badge-left .time-since {
  color: var(--rt-white);
  font-size: clamp(0.694rem, 0.5828rem + 0.556vw, 0.833rem);
}
.rt-episode-card .rt-episode-card-image .rt-overlay-badge-left b {
  font-weight: 900;
}
@media (min-width: 768px) {
  .rt-episode-card .rt-episode-card-image .rt-overlay-badge-left {
    bottom: 20px;
    left: 20px;
  }
}
.rt-episode-card .rt-episode-card-image .rt-overlay-badge-right {
  position: absolute;
  background: rgba(var(--rt-black-rgb), 0.7);
  border-radius: 6px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  z-index: 2;
  text-transform: uppercase;
  bottom: 10px;
  right: 10px;
}
.rt-episode-card .rt-episode-card-image .rt-overlay-badge-right .duration, .rt-episode-card .rt-episode-card-image .rt-overlay-badge-right .text, .rt-episode-card .rt-episode-card-image .rt-overlay-badge-right .time-since {
  color: var(--rt-white);
  font-size: clamp(0.694rem, 0.5828rem + 0.556vw, 0.833rem);
}
.rt-episode-card .rt-episode-card-image .rt-overlay-badge-right b {
  font-weight: 900;
}
@media (min-width: 768px) {
  .rt-episode-card .rt-episode-card-image .rt-overlay-badge-right {
    bottom: 20px;
    right: 20px;
  }
}
.rt-episode-card .post-label {
  display: block;
  font-size: 0.75em;
  margin-bottom: 5px;
}
.rt-episode-card .episode-title {
  color: var(--rt-text-color);
  text-decoration: none;
  font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.5rem);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .rt-episode-card .episode-title {
    text-transform: none;
    font-size: 24px;
    line-height: 24px;
    margin: 0 0 22px;
    display: block;
  }
}
.rt-episode-card .episode-title a {
  text-decoration: none;
}
.rt-episode-card p, .rt-episode-card p.lead {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem);
  font-weight: 400;
  line-height: 133%;
  margin: 0 0 20px;
  color: var(--rt-text-color);
}
@media (max-width: 991.98px) {
  .rt-episode-card a.btn {
    background: rgba(var(--rt-black-rgb), 0.8);
    color: var(--rt-white);
  }
  .rt-episode-card a.btn:hover {
    background: rgba(var(--rt-black-rgb), 1);
  }
}

.episode-meta {
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(0.833rem, 0.8218rem + 0.056vw, 0.889rem);
  display: inline-block;
  line-height: 130%;
  padding-bottom: 15px;
  padding-top: 10px;
}

.rt_sponsor-info b {
  font-weight: 900;
  color: var(--rt-text-color);
}

/**
 * Works in combination of
 */
.rt-supporter-episode-img {
  width: 100%;
}
.rt-supporter-episode-img .img-container {
  aspect-ratio: 16/9;
}
.rt-supporter-episode-img .overlay .heading .supporter-episode {
  padding: 5px 20px;
  background: rgba(var(--rt-pink-rgb), 0.7);
  border-radius: 10px;
  line-height: 220%;
  font-size: 0.5rem;
}
@supports (font-size: clamp(0.5rem, 0.2rem + 1.5vw, 2rem)) {
  .rt-supporter-episode-img .overlay .heading .supporter-episode {
    font-size: clamp(0.5rem, 0.2rem + 1.5vw, 2rem);
  }
}
@media (max-width: 767.98px) {
  .rt-supporter-episode-img .overlay .heading .supporter-episode {
    padding: 5px 10px;
    border-radius: 7px;
  }
}
.rt-supporter-episode-img .overlay .heading .gt50chars, .rt-supporter-episode-img .overlay .heading .lt50chars {
  font-size: clamp(1rem, 0.4rem + 3vw, 4rem);
}
@media (max-width: 767.98px) {
  .rt-supporter-episode-img .overlay .heading .gt50chars, .rt-supporter-episode-img .overlay .heading .lt50chars {
    line-height: 120%;
    display: inline-block;
  }
}
@media (max-width: 767.98px) {
  .rt-supporter-episode-img .overlay .rt-overlay-badge {
    margin-top: 10px;
  }
}

.toc-list li {
  font-size: clamp(0.833rem, 0.8218rem + 0.056vw, 0.889rem);
  margin-bottom: 0;
}

.rt-flourish-fullscreen {
  width: 100%;
  aspect-ratio: 16/9;
}

.rt-flourish-story {
  background: var(--rt-white);
  border-radius: 15px;
}

.rt-bg-beige-main .swiper-slide .rt_charts {
  background-color: var(--rt-white);
}

.rt-tips-block h2, .rt-actions-block h2, .rt-quote-block h2 {
  margin: 0 0 1.5rem;
}
.rt-tips-block .tips-grid, .rt-tips-block .actions-grid, .rt-tips-block .quote-grid, .rt-actions-block .tips-grid, .rt-actions-block .actions-grid, .rt-actions-block .quote-grid, .rt-quote-block .tips-grid, .rt-quote-block .actions-grid, .rt-quote-block .quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns on large screens */
  gap: 1rem; /* mellanrum mellan korten */
  padding: 0;
}
@media (max-width: 991.98px) {
  .rt-tips-block .tips-grid, .rt-tips-block .actions-grid, .rt-tips-block .quote-grid, .rt-actions-block .tips-grid, .rt-actions-block .actions-grid, .rt-actions-block .quote-grid, .rt-quote-block .tips-grid, .rt-quote-block .actions-grid, .rt-quote-block .quote-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on medium and small screens */
  }
}
@media (max-width: 575.98px) {
  .rt-tips-block .tips-grid, .rt-tips-block .actions-grid, .rt-tips-block .quote-grid, .rt-actions-block .tips-grid, .rt-actions-block .actions-grid, .rt-actions-block .quote-grid, .rt-quote-block .tips-grid, .rt-quote-block .actions-grid, .rt-quote-block .quote-grid {
    grid-template-columns: 1fr; /* 1 column on extra small screens */
  }
}
.rt-tips-block .tips-grid .quote-item, .rt-tips-block .actions-grid .quote-item, .rt-tips-block .quote-grid .quote-item, .rt-actions-block .tips-grid .quote-item, .rt-actions-block .actions-grid .quote-item, .rt-actions-block .quote-grid .quote-item, .rt-quote-block .tips-grid .quote-item, .rt-quote-block .actions-grid .quote-item, .rt-quote-block .quote-grid .quote-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.rt-tips-block .tips-grid .quote-item blockquote, .rt-tips-block .actions-grid .quote-item blockquote, .rt-tips-block .quote-grid .quote-item blockquote, .rt-actions-block .tips-grid .quote-item blockquote, .rt-actions-block .actions-grid .quote-item blockquote, .rt-actions-block .quote-grid .quote-item blockquote, .rt-quote-block .tips-grid .quote-item blockquote, .rt-quote-block .actions-grid .quote-item blockquote, .rt-quote-block .quote-grid .quote-item blockquote {
  flex: 1;
  margin-bottom: 1rem;
}
.rt-tips-block .tips-grid .quote-item .text-small, .rt-tips-block .actions-grid .quote-item .text-small, .rt-tips-block .quote-grid .quote-item .text-small, .rt-actions-block .tips-grid .quote-item .text-small, .rt-actions-block .actions-grid .quote-item .text-small, .rt-actions-block .quote-grid .quote-item .text-small, .rt-quote-block .tips-grid .quote-item .text-small, .rt-quote-block .actions-grid .quote-item .text-small, .rt-quote-block .quote-grid .quote-item .text-small {
  margin-top: auto;
}
.rt-tips-block .tips-grid .tip-item, .rt-tips-block .tips-grid .action-item, .rt-tips-block .tips-grid .quote-item, .rt-tips-block .actions-grid .tip-item, .rt-tips-block .actions-grid .action-item, .rt-tips-block .actions-grid .quote-item, .rt-tips-block .quote-grid .tip-item, .rt-tips-block .quote-grid .action-item, .rt-tips-block .quote-grid .quote-item, .rt-actions-block .tips-grid .tip-item, .rt-actions-block .tips-grid .action-item, .rt-actions-block .tips-grid .quote-item, .rt-actions-block .actions-grid .tip-item, .rt-actions-block .actions-grid .action-item, .rt-actions-block .actions-grid .quote-item, .rt-actions-block .quote-grid .tip-item, .rt-actions-block .quote-grid .action-item, .rt-actions-block .quote-grid .quote-item, .rt-quote-block .tips-grid .tip-item, .rt-quote-block .tips-grid .action-item, .rt-quote-block .tips-grid .quote-item, .rt-quote-block .actions-grid .tip-item, .rt-quote-block .actions-grid .action-item, .rt-quote-block .actions-grid .quote-item, .rt-quote-block .quote-grid .tip-item, .rt-quote-block .quote-grid .action-item, .rt-quote-block .quote-grid .quote-item {
  padding: 1.5rem;
  background: var(--rt-white);
  border-radius: 15px;
  position: relative;
}
.rt-bg-white .rt-tips-block .tips-grid .tip-item, .rt-bg-white .rt-tips-block .tips-grid .action-item, .rt-bg-white .rt-tips-block .tips-grid .quote-item, .rt-bg-white .rt-tips-block .actions-grid .tip-item, .rt-bg-white .rt-tips-block .actions-grid .action-item, .rt-bg-white .rt-tips-block .actions-grid .quote-item, .rt-bg-white .rt-tips-block .quote-grid .tip-item, .rt-bg-white .rt-tips-block .quote-grid .action-item, .rt-bg-white .rt-tips-block .quote-grid .quote-item, .rt-bg-white .rt-actions-block .tips-grid .tip-item, .rt-bg-white .rt-actions-block .tips-grid .action-item, .rt-bg-white .rt-actions-block .tips-grid .quote-item, .rt-bg-white .rt-actions-block .actions-grid .tip-item, .rt-bg-white .rt-actions-block .actions-grid .action-item, .rt-bg-white .rt-actions-block .actions-grid .quote-item, .rt-bg-white .rt-actions-block .quote-grid .tip-item, .rt-bg-white .rt-actions-block .quote-grid .action-item, .rt-bg-white .rt-actions-block .quote-grid .quote-item, .rt-bg-white .rt-quote-block .tips-grid .tip-item, .rt-bg-white .rt-quote-block .tips-grid .action-item, .rt-bg-white .rt-quote-block .tips-grid .quote-item, .rt-bg-white .rt-quote-block .actions-grid .tip-item, .rt-bg-white .rt-quote-block .actions-grid .action-item, .rt-bg-white .rt-quote-block .actions-grid .quote-item, .rt-bg-white .rt-quote-block .quote-grid .tip-item, .rt-bg-white .rt-quote-block .quote-grid .action-item, .rt-bg-white .rt-quote-block .quote-grid .quote-item {
  background: var(--rt-beige-main);
}
.rt-bg-beige-contrast .rt-tips-block .tips-grid .tip-item, .rt-bg-beige-contrast .rt-tips-block .tips-grid .action-item, .rt-bg-beige-contrast .rt-tips-block .tips-grid .quote-item, .rt-bg-beige-contrast .rt-tips-block .actions-grid .tip-item, .rt-bg-beige-contrast .rt-tips-block .actions-grid .action-item, .rt-bg-beige-contrast .rt-tips-block .actions-grid .quote-item, .rt-bg-beige-contrast .rt-tips-block .quote-grid .tip-item, .rt-bg-beige-contrast .rt-tips-block .quote-grid .action-item, .rt-bg-beige-contrast .rt-tips-block .quote-grid .quote-item, .rt-bg-beige-contrast .rt-actions-block .tips-grid .tip-item, .rt-bg-beige-contrast .rt-actions-block .tips-grid .action-item, .rt-bg-beige-contrast .rt-actions-block .tips-grid .quote-item, .rt-bg-beige-contrast .rt-actions-block .actions-grid .tip-item, .rt-bg-beige-contrast .rt-actions-block .actions-grid .action-item, .rt-bg-beige-contrast .rt-actions-block .actions-grid .quote-item, .rt-bg-beige-contrast .rt-actions-block .quote-grid .tip-item, .rt-bg-beige-contrast .rt-actions-block .quote-grid .action-item, .rt-bg-beige-contrast .rt-actions-block .quote-grid .quote-item, .rt-bg-beige-contrast .rt-quote-block .tips-grid .tip-item, .rt-bg-beige-contrast .rt-quote-block .tips-grid .action-item, .rt-bg-beige-contrast .rt-quote-block .tips-grid .quote-item, .rt-bg-beige-contrast .rt-quote-block .actions-grid .tip-item, .rt-bg-beige-contrast .rt-quote-block .actions-grid .action-item, .rt-bg-beige-contrast .rt-quote-block .actions-grid .quote-item, .rt-bg-beige-contrast .rt-quote-block .quote-grid .tip-item, .rt-bg-beige-contrast .rt-quote-block .quote-grid .action-item, .rt-bg-beige-contrast .rt-quote-block .quote-grid .quote-item {
  background: var(--rt-beige-main);
}
.rt-tips-block .tips-grid .tip-item h3, .rt-tips-block .tips-grid .tip-item h4, .rt-tips-block .tips-grid .tip-item h5, .rt-tips-block .tips-grid .action-item h3, .rt-tips-block .tips-grid .action-item h4, .rt-tips-block .tips-grid .action-item h5, .rt-tips-block .tips-grid .quote-item h3, .rt-tips-block .tips-grid .quote-item h4, .rt-tips-block .tips-grid .quote-item h5, .rt-tips-block .actions-grid .tip-item h3, .rt-tips-block .actions-grid .tip-item h4, .rt-tips-block .actions-grid .tip-item h5, .rt-tips-block .actions-grid .action-item h3, .rt-tips-block .actions-grid .action-item h4, .rt-tips-block .actions-grid .action-item h5, .rt-tips-block .actions-grid .quote-item h3, .rt-tips-block .actions-grid .quote-item h4, .rt-tips-block .actions-grid .quote-item h5, .rt-tips-block .quote-grid .tip-item h3, .rt-tips-block .quote-grid .tip-item h4, .rt-tips-block .quote-grid .tip-item h5, .rt-tips-block .quote-grid .action-item h3, .rt-tips-block .quote-grid .action-item h4, .rt-tips-block .quote-grid .action-item h5, .rt-tips-block .quote-grid .quote-item h3, .rt-tips-block .quote-grid .quote-item h4, .rt-tips-block .quote-grid .quote-item h5, .rt-actions-block .tips-grid .tip-item h3, .rt-actions-block .tips-grid .tip-item h4, .rt-actions-block .tips-grid .tip-item h5, .rt-actions-block .tips-grid .action-item h3, .rt-actions-block .tips-grid .action-item h4, .rt-actions-block .tips-grid .action-item h5, .rt-actions-block .tips-grid .quote-item h3, .rt-actions-block .tips-grid .quote-item h4, .rt-actions-block .tips-grid .quote-item h5, .rt-actions-block .actions-grid .tip-item h3, .rt-actions-block .actions-grid .tip-item h4, .rt-actions-block .actions-grid .tip-item h5, .rt-actions-block .actions-grid .action-item h3, .rt-actions-block .actions-grid .action-item h4, .rt-actions-block .actions-grid .action-item h5, .rt-actions-block .actions-grid .quote-item h3, .rt-actions-block .actions-grid .quote-item h4, .rt-actions-block .actions-grid .quote-item h5, .rt-actions-block .quote-grid .tip-item h3, .rt-actions-block .quote-grid .tip-item h4, .rt-actions-block .quote-grid .tip-item h5, .rt-actions-block .quote-grid .action-item h3, .rt-actions-block .quote-grid .action-item h4, .rt-actions-block .quote-grid .action-item h5, .rt-actions-block .quote-grid .quote-item h3, .rt-actions-block .quote-grid .quote-item h4, .rt-actions-block .quote-grid .quote-item h5, .rt-quote-block .tips-grid .tip-item h3, .rt-quote-block .tips-grid .tip-item h4, .rt-quote-block .tips-grid .tip-item h5, .rt-quote-block .tips-grid .action-item h3, .rt-quote-block .tips-grid .action-item h4, .rt-quote-block .tips-grid .action-item h5, .rt-quote-block .tips-grid .quote-item h3, .rt-quote-block .tips-grid .quote-item h4, .rt-quote-block .tips-grid .quote-item h5, .rt-quote-block .actions-grid .tip-item h3, .rt-quote-block .actions-grid .tip-item h4, .rt-quote-block .actions-grid .tip-item h5, .rt-quote-block .actions-grid .action-item h3, .rt-quote-block .actions-grid .action-item h4, .rt-quote-block .actions-grid .action-item h5, .rt-quote-block .actions-grid .quote-item h3, .rt-quote-block .actions-grid .quote-item h4, .rt-quote-block .actions-grid .quote-item h5, .rt-quote-block .quote-grid .tip-item h3, .rt-quote-block .quote-grid .tip-item h4, .rt-quote-block .quote-grid .tip-item h5, .rt-quote-block .quote-grid .action-item h3, .rt-quote-block .quote-grid .action-item h4, .rt-quote-block .quote-grid .action-item h5, .rt-quote-block .quote-grid .quote-item h3, .rt-quote-block .quote-grid .quote-item h4, .rt-quote-block .quote-grid .quote-item h5 {
  line-height: 1.3;
  hyphens: auto;
  margin-top: 0;
  color: var(--rt-text-color);
}
@supports (font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem)) {
  .rt-tips-block .tips-grid .tip-item h3, .rt-tips-block .tips-grid .tip-item h4, .rt-tips-block .tips-grid .tip-item h5, .rt-tips-block .tips-grid .action-item h3, .rt-tips-block .tips-grid .action-item h4, .rt-tips-block .tips-grid .action-item h5, .rt-tips-block .tips-grid .quote-item h3, .rt-tips-block .tips-grid .quote-item h4, .rt-tips-block .tips-grid .quote-item h5, .rt-tips-block .actions-grid .tip-item h3, .rt-tips-block .actions-grid .tip-item h4, .rt-tips-block .actions-grid .tip-item h5, .rt-tips-block .actions-grid .action-item h3, .rt-tips-block .actions-grid .action-item h4, .rt-tips-block .actions-grid .action-item h5, .rt-tips-block .actions-grid .quote-item h3, .rt-tips-block .actions-grid .quote-item h4, .rt-tips-block .actions-grid .quote-item h5, .rt-tips-block .quote-grid .tip-item h3, .rt-tips-block .quote-grid .tip-item h4, .rt-tips-block .quote-grid .tip-item h5, .rt-tips-block .quote-grid .action-item h3, .rt-tips-block .quote-grid .action-item h4, .rt-tips-block .quote-grid .action-item h5, .rt-tips-block .quote-grid .quote-item h3, .rt-tips-block .quote-grid .quote-item h4, .rt-tips-block .quote-grid .quote-item h5, .rt-actions-block .tips-grid .tip-item h3, .rt-actions-block .tips-grid .tip-item h4, .rt-actions-block .tips-grid .tip-item h5, .rt-actions-block .tips-grid .action-item h3, .rt-actions-block .tips-grid .action-item h4, .rt-actions-block .tips-grid .action-item h5, .rt-actions-block .tips-grid .quote-item h3, .rt-actions-block .tips-grid .quote-item h4, .rt-actions-block .tips-grid .quote-item h5, .rt-actions-block .actions-grid .tip-item h3, .rt-actions-block .actions-grid .tip-item h4, .rt-actions-block .actions-grid .tip-item h5, .rt-actions-block .actions-grid .action-item h3, .rt-actions-block .actions-grid .action-item h4, .rt-actions-block .actions-grid .action-item h5, .rt-actions-block .actions-grid .quote-item h3, .rt-actions-block .actions-grid .quote-item h4, .rt-actions-block .actions-grid .quote-item h5, .rt-actions-block .quote-grid .tip-item h3, .rt-actions-block .quote-grid .tip-item h4, .rt-actions-block .quote-grid .tip-item h5, .rt-actions-block .quote-grid .action-item h3, .rt-actions-block .quote-grid .action-item h4, .rt-actions-block .quote-grid .action-item h5, .rt-actions-block .quote-grid .quote-item h3, .rt-actions-block .quote-grid .quote-item h4, .rt-actions-block .quote-grid .quote-item h5, .rt-quote-block .tips-grid .tip-item h3, .rt-quote-block .tips-grid .tip-item h4, .rt-quote-block .tips-grid .tip-item h5, .rt-quote-block .tips-grid .action-item h3, .rt-quote-block .tips-grid .action-item h4, .rt-quote-block .tips-grid .action-item h5, .rt-quote-block .tips-grid .quote-item h3, .rt-quote-block .tips-grid .quote-item h4, .rt-quote-block .tips-grid .quote-item h5, .rt-quote-block .actions-grid .tip-item h3, .rt-quote-block .actions-grid .tip-item h4, .rt-quote-block .actions-grid .tip-item h5, .rt-quote-block .actions-grid .action-item h3, .rt-quote-block .actions-grid .action-item h4, .rt-quote-block .actions-grid .action-item h5, .rt-quote-block .actions-grid .quote-item h3, .rt-quote-block .actions-grid .quote-item h4, .rt-quote-block .actions-grid .quote-item h5, .rt-quote-block .quote-grid .tip-item h3, .rt-quote-block .quote-grid .tip-item h4, .rt-quote-block .quote-grid .tip-item h5, .rt-quote-block .quote-grid .action-item h3, .rt-quote-block .quote-grid .action-item h4, .rt-quote-block .quote-grid .action-item h5, .rt-quote-block .quote-grid .quote-item h3, .rt-quote-block .quote-grid .quote-item h4, .rt-quote-block .quote-grid .quote-item h5 {
    font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem);
  }
}
.rt-tips-block .tips-grid .tip-item p, .rt-tips-block .tips-grid .tip-item li, .rt-tips-block .tips-grid .action-item p, .rt-tips-block .tips-grid .action-item li, .rt-tips-block .tips-grid .quote-item p, .rt-tips-block .tips-grid .quote-item li, .rt-tips-block .actions-grid .tip-item p, .rt-tips-block .actions-grid .tip-item li, .rt-tips-block .actions-grid .action-item p, .rt-tips-block .actions-grid .action-item li, .rt-tips-block .actions-grid .quote-item p, .rt-tips-block .actions-grid .quote-item li, .rt-tips-block .quote-grid .tip-item p, .rt-tips-block .quote-grid .tip-item li, .rt-tips-block .quote-grid .action-item p, .rt-tips-block .quote-grid .action-item li, .rt-tips-block .quote-grid .quote-item p, .rt-tips-block .quote-grid .quote-item li, .rt-actions-block .tips-grid .tip-item p, .rt-actions-block .tips-grid .tip-item li, .rt-actions-block .tips-grid .action-item p, .rt-actions-block .tips-grid .action-item li, .rt-actions-block .tips-grid .quote-item p, .rt-actions-block .tips-grid .quote-item li, .rt-actions-block .actions-grid .tip-item p, .rt-actions-block .actions-grid .tip-item li, .rt-actions-block .actions-grid .action-item p, .rt-actions-block .actions-grid .action-item li, .rt-actions-block .actions-grid .quote-item p, .rt-actions-block .actions-grid .quote-item li, .rt-actions-block .quote-grid .tip-item p, .rt-actions-block .quote-grid .tip-item li, .rt-actions-block .quote-grid .action-item p, .rt-actions-block .quote-grid .action-item li, .rt-actions-block .quote-grid .quote-item p, .rt-actions-block .quote-grid .quote-item li, .rt-quote-block .tips-grid .tip-item p, .rt-quote-block .tips-grid .tip-item li, .rt-quote-block .tips-grid .action-item p, .rt-quote-block .tips-grid .action-item li, .rt-quote-block .tips-grid .quote-item p, .rt-quote-block .tips-grid .quote-item li, .rt-quote-block .actions-grid .tip-item p, .rt-quote-block .actions-grid .tip-item li, .rt-quote-block .actions-grid .action-item p, .rt-quote-block .actions-grid .action-item li, .rt-quote-block .actions-grid .quote-item p, .rt-quote-block .actions-grid .quote-item li, .rt-quote-block .quote-grid .tip-item p, .rt-quote-block .quote-grid .tip-item li, .rt-quote-block .quote-grid .action-item p, .rt-quote-block .quote-grid .action-item li, .rt-quote-block .quote-grid .quote-item p, .rt-quote-block .quote-grid .quote-item li {
  margin: 0;
  padding: 0;
  hyphens: auto;
  color: var(--rt-text-color);
}
@supports (font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem)) {
  .rt-tips-block .tips-grid .tip-item p, .rt-tips-block .tips-grid .tip-item li, .rt-tips-block .tips-grid .action-item p, .rt-tips-block .tips-grid .action-item li, .rt-tips-block .tips-grid .quote-item p, .rt-tips-block .tips-grid .quote-item li, .rt-tips-block .actions-grid .tip-item p, .rt-tips-block .actions-grid .tip-item li, .rt-tips-block .actions-grid .action-item p, .rt-tips-block .actions-grid .action-item li, .rt-tips-block .actions-grid .quote-item p, .rt-tips-block .actions-grid .quote-item li, .rt-tips-block .quote-grid .tip-item p, .rt-tips-block .quote-grid .tip-item li, .rt-tips-block .quote-grid .action-item p, .rt-tips-block .quote-grid .action-item li, .rt-tips-block .quote-grid .quote-item p, .rt-tips-block .quote-grid .quote-item li, .rt-actions-block .tips-grid .tip-item p, .rt-actions-block .tips-grid .tip-item li, .rt-actions-block .tips-grid .action-item p, .rt-actions-block .tips-grid .action-item li, .rt-actions-block .tips-grid .quote-item p, .rt-actions-block .tips-grid .quote-item li, .rt-actions-block .actions-grid .tip-item p, .rt-actions-block .actions-grid .tip-item li, .rt-actions-block .actions-grid .action-item p, .rt-actions-block .actions-grid .action-item li, .rt-actions-block .actions-grid .quote-item p, .rt-actions-block .actions-grid .quote-item li, .rt-actions-block .quote-grid .tip-item p, .rt-actions-block .quote-grid .tip-item li, .rt-actions-block .quote-grid .action-item p, .rt-actions-block .quote-grid .action-item li, .rt-actions-block .quote-grid .quote-item p, .rt-actions-block .quote-grid .quote-item li, .rt-quote-block .tips-grid .tip-item p, .rt-quote-block .tips-grid .tip-item li, .rt-quote-block .tips-grid .action-item p, .rt-quote-block .tips-grid .action-item li, .rt-quote-block .tips-grid .quote-item p, .rt-quote-block .tips-grid .quote-item li, .rt-quote-block .actions-grid .tip-item p, .rt-quote-block .actions-grid .tip-item li, .rt-quote-block .actions-grid .action-item p, .rt-quote-block .actions-grid .action-item li, .rt-quote-block .actions-grid .quote-item p, .rt-quote-block .actions-grid .quote-item li, .rt-quote-block .quote-grid .tip-item p, .rt-quote-block .quote-grid .tip-item li, .rt-quote-block .quote-grid .action-item p, .rt-quote-block .quote-grid .action-item li, .rt-quote-block .quote-grid .quote-item p, .rt-quote-block .quote-grid .quote-item li {
    font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem);
  }
}
.rt-tips-block .tips-grid .tip-item p:not(:last-child), .rt-tips-block .tips-grid .tip-item li:not(:last-child), .rt-tips-block .tips-grid .action-item p:not(:last-child), .rt-tips-block .tips-grid .action-item li:not(:last-child), .rt-tips-block .tips-grid .quote-item p:not(:last-child), .rt-tips-block .tips-grid .quote-item li:not(:last-child), .rt-tips-block .actions-grid .tip-item p:not(:last-child), .rt-tips-block .actions-grid .tip-item li:not(:last-child), .rt-tips-block .actions-grid .action-item p:not(:last-child), .rt-tips-block .actions-grid .action-item li:not(:last-child), .rt-tips-block .actions-grid .quote-item p:not(:last-child), .rt-tips-block .actions-grid .quote-item li:not(:last-child), .rt-tips-block .quote-grid .tip-item p:not(:last-child), .rt-tips-block .quote-grid .tip-item li:not(:last-child), .rt-tips-block .quote-grid .action-item p:not(:last-child), .rt-tips-block .quote-grid .action-item li:not(:last-child), .rt-tips-block .quote-grid .quote-item p:not(:last-child), .rt-tips-block .quote-grid .quote-item li:not(:last-child), .rt-actions-block .tips-grid .tip-item p:not(:last-child), .rt-actions-block .tips-grid .tip-item li:not(:last-child), .rt-actions-block .tips-grid .action-item p:not(:last-child), .rt-actions-block .tips-grid .action-item li:not(:last-child), .rt-actions-block .tips-grid .quote-item p:not(:last-child), .rt-actions-block .tips-grid .quote-item li:not(:last-child), .rt-actions-block .actions-grid .tip-item p:not(:last-child), .rt-actions-block .actions-grid .tip-item li:not(:last-child), .rt-actions-block .actions-grid .action-item p:not(:last-child), .rt-actions-block .actions-grid .action-item li:not(:last-child), .rt-actions-block .actions-grid .quote-item p:not(:last-child), .rt-actions-block .actions-grid .quote-item li:not(:last-child), .rt-actions-block .quote-grid .tip-item p:not(:last-child), .rt-actions-block .quote-grid .tip-item li:not(:last-child), .rt-actions-block .quote-grid .action-item p:not(:last-child), .rt-actions-block .quote-grid .action-item li:not(:last-child), .rt-actions-block .quote-grid .quote-item p:not(:last-child), .rt-actions-block .quote-grid .quote-item li:not(:last-child), .rt-quote-block .tips-grid .tip-item p:not(:last-child), .rt-quote-block .tips-grid .tip-item li:not(:last-child), .rt-quote-block .tips-grid .action-item p:not(:last-child), .rt-quote-block .tips-grid .action-item li:not(:last-child), .rt-quote-block .tips-grid .quote-item p:not(:last-child), .rt-quote-block .tips-grid .quote-item li:not(:last-child), .rt-quote-block .actions-grid .tip-item p:not(:last-child), .rt-quote-block .actions-grid .tip-item li:not(:last-child), .rt-quote-block .actions-grid .action-item p:not(:last-child), .rt-quote-block .actions-grid .action-item li:not(:last-child), .rt-quote-block .actions-grid .quote-item p:not(:last-child), .rt-quote-block .actions-grid .quote-item li:not(:last-child), .rt-quote-block .quote-grid .tip-item p:not(:last-child), .rt-quote-block .quote-grid .tip-item li:not(:last-child), .rt-quote-block .quote-grid .action-item p:not(:last-child), .rt-quote-block .quote-grid .action-item li:not(:last-child), .rt-quote-block .quote-grid .quote-item p:not(:last-child), .rt-quote-block .quote-grid .quote-item li:not(:last-child) {
  margin-bottom: 10px;
}
.rt-tips-block .tips-grid .tip-item ul, .rt-tips-block .tips-grid .action-item ul, .rt-tips-block .tips-grid .quote-item ul, .rt-tips-block .actions-grid .tip-item ul, .rt-tips-block .actions-grid .action-item ul, .rt-tips-block .actions-grid .quote-item ul, .rt-tips-block .quote-grid .tip-item ul, .rt-tips-block .quote-grid .action-item ul, .rt-tips-block .quote-grid .quote-item ul, .rt-actions-block .tips-grid .tip-item ul, .rt-actions-block .tips-grid .action-item ul, .rt-actions-block .tips-grid .quote-item ul, .rt-actions-block .actions-grid .tip-item ul, .rt-actions-block .actions-grid .action-item ul, .rt-actions-block .actions-grid .quote-item ul, .rt-actions-block .quote-grid .tip-item ul, .rt-actions-block .quote-grid .action-item ul, .rt-actions-block .quote-grid .quote-item ul, .rt-quote-block .tips-grid .tip-item ul, .rt-quote-block .tips-grid .action-item ul, .rt-quote-block .tips-grid .quote-item ul, .rt-quote-block .actions-grid .tip-item ul, .rt-quote-block .actions-grid .action-item ul, .rt-quote-block .actions-grid .quote-item ul, .rt-quote-block .quote-grid .tip-item ul, .rt-quote-block .quote-grid .action-item ul, .rt-quote-block .quote-grid .quote-item ul {
  margin: 0;
}
.rt-tips-block .tips-grid .tip-item strong, .rt-tips-block .tips-grid .tip-item b, .rt-tips-block .tips-grid .action-item strong, .rt-tips-block .tips-grid .action-item b, .rt-tips-block .tips-grid .quote-item strong, .rt-tips-block .tips-grid .quote-item b, .rt-tips-block .actions-grid .tip-item strong, .rt-tips-block .actions-grid .tip-item b, .rt-tips-block .actions-grid .action-item strong, .rt-tips-block .actions-grid .action-item b, .rt-tips-block .actions-grid .quote-item strong, .rt-tips-block .actions-grid .quote-item b, .rt-tips-block .quote-grid .tip-item strong, .rt-tips-block .quote-grid .tip-item b, .rt-tips-block .quote-grid .action-item strong, .rt-tips-block .quote-grid .action-item b, .rt-tips-block .quote-grid .quote-item strong, .rt-tips-block .quote-grid .quote-item b, .rt-actions-block .tips-grid .tip-item strong, .rt-actions-block .tips-grid .tip-item b, .rt-actions-block .tips-grid .action-item strong, .rt-actions-block .tips-grid .action-item b, .rt-actions-block .tips-grid .quote-item strong, .rt-actions-block .tips-grid .quote-item b, .rt-actions-block .actions-grid .tip-item strong, .rt-actions-block .actions-grid .tip-item b, .rt-actions-block .actions-grid .action-item strong, .rt-actions-block .actions-grid .action-item b, .rt-actions-block .actions-grid .quote-item strong, .rt-actions-block .actions-grid .quote-item b, .rt-actions-block .quote-grid .tip-item strong, .rt-actions-block .quote-grid .tip-item b, .rt-actions-block .quote-grid .action-item strong, .rt-actions-block .quote-grid .action-item b, .rt-actions-block .quote-grid .quote-item strong, .rt-actions-block .quote-grid .quote-item b, .rt-quote-block .tips-grid .tip-item strong, .rt-quote-block .tips-grid .tip-item b, .rt-quote-block .tips-grid .action-item strong, .rt-quote-block .tips-grid .action-item b, .rt-quote-block .tips-grid .quote-item strong, .rt-quote-block .tips-grid .quote-item b, .rt-quote-block .actions-grid .tip-item strong, .rt-quote-block .actions-grid .tip-item b, .rt-quote-block .actions-grid .action-item strong, .rt-quote-block .actions-grid .action-item b, .rt-quote-block .actions-grid .quote-item strong, .rt-quote-block .actions-grid .quote-item b, .rt-quote-block .quote-grid .tip-item strong, .rt-quote-block .quote-grid .tip-item b, .rt-quote-block .quote-grid .action-item strong, .rt-quote-block .quote-grid .action-item b, .rt-quote-block .quote-grid .quote-item strong, .rt-quote-block .quote-grid .quote-item b {
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.rt-tips-block .tips-grid .tip-item h3, .rt-tips-block .tips-grid .action-item h3, .rt-tips-block .tips-grid .quote-item h3, .rt-tips-block .actions-grid .tip-item h3, .rt-tips-block .actions-grid .action-item h3, .rt-tips-block .actions-grid .quote-item h3, .rt-tips-block .quote-grid .tip-item h3, .rt-tips-block .quote-grid .action-item h3, .rt-tips-block .quote-grid .quote-item h3, .rt-actions-block .tips-grid .tip-item h3, .rt-actions-block .tips-grid .action-item h3, .rt-actions-block .tips-grid .quote-item h3, .rt-actions-block .actions-grid .tip-item h3, .rt-actions-block .actions-grid .action-item h3, .rt-actions-block .actions-grid .quote-item h3, .rt-actions-block .quote-grid .tip-item h3, .rt-actions-block .quote-grid .action-item h3, .rt-actions-block .quote-grid .quote-item h3, .rt-quote-block .tips-grid .tip-item h3, .rt-quote-block .tips-grid .action-item h3, .rt-quote-block .tips-grid .quote-item h3, .rt-quote-block .actions-grid .tip-item h3, .rt-quote-block .actions-grid .action-item h3, .rt-quote-block .actions-grid .quote-item h3, .rt-quote-block .quote-grid .tip-item h3, .rt-quote-block .quote-grid .action-item h3, .rt-quote-block .quote-grid .quote-item h3 {
  font-weight: 800;
}
.rt-tips-block .tips-grid .tip-item ul, .rt-tips-block .tips-grid .tip-item ol, .rt-tips-block .tips-grid .action-item ul, .rt-tips-block .tips-grid .action-item ol, .rt-tips-block .tips-grid .quote-item ul, .rt-tips-block .tips-grid .quote-item ol, .rt-tips-block .actions-grid .tip-item ul, .rt-tips-block .actions-grid .tip-item ol, .rt-tips-block .actions-grid .action-item ul, .rt-tips-block .actions-grid .action-item ol, .rt-tips-block .actions-grid .quote-item ul, .rt-tips-block .actions-grid .quote-item ol, .rt-tips-block .quote-grid .tip-item ul, .rt-tips-block .quote-grid .tip-item ol, .rt-tips-block .quote-grid .action-item ul, .rt-tips-block .quote-grid .action-item ol, .rt-tips-block .quote-grid .quote-item ul, .rt-tips-block .quote-grid .quote-item ol, .rt-actions-block .tips-grid .tip-item ul, .rt-actions-block .tips-grid .tip-item ol, .rt-actions-block .tips-grid .action-item ul, .rt-actions-block .tips-grid .action-item ol, .rt-actions-block .tips-grid .quote-item ul, .rt-actions-block .tips-grid .quote-item ol, .rt-actions-block .actions-grid .tip-item ul, .rt-actions-block .actions-grid .tip-item ol, .rt-actions-block .actions-grid .action-item ul, .rt-actions-block .actions-grid .action-item ol, .rt-actions-block .actions-grid .quote-item ul, .rt-actions-block .actions-grid .quote-item ol, .rt-actions-block .quote-grid .tip-item ul, .rt-actions-block .quote-grid .tip-item ol, .rt-actions-block .quote-grid .action-item ul, .rt-actions-block .quote-grid .action-item ol, .rt-actions-block .quote-grid .quote-item ul, .rt-actions-block .quote-grid .quote-item ol, .rt-quote-block .tips-grid .tip-item ul, .rt-quote-block .tips-grid .tip-item ol, .rt-quote-block .tips-grid .action-item ul, .rt-quote-block .tips-grid .action-item ol, .rt-quote-block .tips-grid .quote-item ul, .rt-quote-block .tips-grid .quote-item ol, .rt-quote-block .actions-grid .tip-item ul, .rt-quote-block .actions-grid .tip-item ol, .rt-quote-block .actions-grid .action-item ul, .rt-quote-block .actions-grid .action-item ol, .rt-quote-block .actions-grid .quote-item ul, .rt-quote-block .actions-grid .quote-item ol, .rt-quote-block .quote-grid .tip-item ul, .rt-quote-block .quote-grid .tip-item ol, .rt-quote-block .quote-grid .action-item ul, .rt-quote-block .quote-grid .action-item ol, .rt-quote-block .quote-grid .quote-item ul, .rt-quote-block .quote-grid .quote-item ol {
  padding-left: 20px;
}
.rt-tips-block .tips-grid .tip-item ul li, .rt-tips-block .tips-grid .tip-item ol li, .rt-tips-block .tips-grid .action-item ul li, .rt-tips-block .tips-grid .action-item ol li, .rt-tips-block .tips-grid .quote-item ul li, .rt-tips-block .tips-grid .quote-item ol li, .rt-tips-block .actions-grid .tip-item ul li, .rt-tips-block .actions-grid .tip-item ol li, .rt-tips-block .actions-grid .action-item ul li, .rt-tips-block .actions-grid .action-item ol li, .rt-tips-block .actions-grid .quote-item ul li, .rt-tips-block .actions-grid .quote-item ol li, .rt-tips-block .quote-grid .tip-item ul li, .rt-tips-block .quote-grid .tip-item ol li, .rt-tips-block .quote-grid .action-item ul li, .rt-tips-block .quote-grid .action-item ol li, .rt-tips-block .quote-grid .quote-item ul li, .rt-tips-block .quote-grid .quote-item ol li, .rt-actions-block .tips-grid .tip-item ul li, .rt-actions-block .tips-grid .tip-item ol li, .rt-actions-block .tips-grid .action-item ul li, .rt-actions-block .tips-grid .action-item ol li, .rt-actions-block .tips-grid .quote-item ul li, .rt-actions-block .tips-grid .quote-item ol li, .rt-actions-block .actions-grid .tip-item ul li, .rt-actions-block .actions-grid .tip-item ol li, .rt-actions-block .actions-grid .action-item ul li, .rt-actions-block .actions-grid .action-item ol li, .rt-actions-block .actions-grid .quote-item ul li, .rt-actions-block .actions-grid .quote-item ol li, .rt-actions-block .quote-grid .tip-item ul li, .rt-actions-block .quote-grid .tip-item ol li, .rt-actions-block .quote-grid .action-item ul li, .rt-actions-block .quote-grid .action-item ol li, .rt-actions-block .quote-grid .quote-item ul li, .rt-actions-block .quote-grid .quote-item ol li, .rt-quote-block .tips-grid .tip-item ul li, .rt-quote-block .tips-grid .tip-item ol li, .rt-quote-block .tips-grid .action-item ul li, .rt-quote-block .tips-grid .action-item ol li, .rt-quote-block .tips-grid .quote-item ul li, .rt-quote-block .tips-grid .quote-item ol li, .rt-quote-block .actions-grid .tip-item ul li, .rt-quote-block .actions-grid .tip-item ol li, .rt-quote-block .actions-grid .action-item ul li, .rt-quote-block .actions-grid .action-item ol li, .rt-quote-block .actions-grid .quote-item ul li, .rt-quote-block .actions-grid .quote-item ol li, .rt-quote-block .quote-grid .tip-item ul li, .rt-quote-block .quote-grid .tip-item ol li, .rt-quote-block .quote-grid .action-item ul li, .rt-quote-block .quote-grid .action-item ol li, .rt-quote-block .quote-grid .quote-item ul li, .rt-quote-block .quote-grid .quote-item ol li {
  margin-bottom: 3px !important;
}
.rt-tips-block .tips-grid .tip-item ul li:last-child, .rt-tips-block .tips-grid .tip-item ol li:last-child, .rt-tips-block .tips-grid .action-item ul li:last-child, .rt-tips-block .tips-grid .action-item ol li:last-child, .rt-tips-block .tips-grid .quote-item ul li:last-child, .rt-tips-block .tips-grid .quote-item ol li:last-child, .rt-tips-block .actions-grid .tip-item ul li:last-child, .rt-tips-block .actions-grid .tip-item ol li:last-child, .rt-tips-block .actions-grid .action-item ul li:last-child, .rt-tips-block .actions-grid .action-item ol li:last-child, .rt-tips-block .actions-grid .quote-item ul li:last-child, .rt-tips-block .actions-grid .quote-item ol li:last-child, .rt-tips-block .quote-grid .tip-item ul li:last-child, .rt-tips-block .quote-grid .tip-item ol li:last-child, .rt-tips-block .quote-grid .action-item ul li:last-child, .rt-tips-block .quote-grid .action-item ol li:last-child, .rt-tips-block .quote-grid .quote-item ul li:last-child, .rt-tips-block .quote-grid .quote-item ol li:last-child, .rt-actions-block .tips-grid .tip-item ul li:last-child, .rt-actions-block .tips-grid .tip-item ol li:last-child, .rt-actions-block .tips-grid .action-item ul li:last-child, .rt-actions-block .tips-grid .action-item ol li:last-child, .rt-actions-block .tips-grid .quote-item ul li:last-child, .rt-actions-block .tips-grid .quote-item ol li:last-child, .rt-actions-block .actions-grid .tip-item ul li:last-child, .rt-actions-block .actions-grid .tip-item ol li:last-child, .rt-actions-block .actions-grid .action-item ul li:last-child, .rt-actions-block .actions-grid .action-item ol li:last-child, .rt-actions-block .actions-grid .quote-item ul li:last-child, .rt-actions-block .actions-grid .quote-item ol li:last-child, .rt-actions-block .quote-grid .tip-item ul li:last-child, .rt-actions-block .quote-grid .tip-item ol li:last-child, .rt-actions-block .quote-grid .action-item ul li:last-child, .rt-actions-block .quote-grid .action-item ol li:last-child, .rt-actions-block .quote-grid .quote-item ul li:last-child, .rt-actions-block .quote-grid .quote-item ol li:last-child, .rt-quote-block .tips-grid .tip-item ul li:last-child, .rt-quote-block .tips-grid .tip-item ol li:last-child, .rt-quote-block .tips-grid .action-item ul li:last-child, .rt-quote-block .tips-grid .action-item ol li:last-child, .rt-quote-block .tips-grid .quote-item ul li:last-child, .rt-quote-block .tips-grid .quote-item ol li:last-child, .rt-quote-block .actions-grid .tip-item ul li:last-child, .rt-quote-block .actions-grid .tip-item ol li:last-child, .rt-quote-block .actions-grid .action-item ul li:last-child, .rt-quote-block .actions-grid .action-item ol li:last-child, .rt-quote-block .actions-grid .quote-item ul li:last-child, .rt-quote-block .actions-grid .quote-item ol li:last-child, .rt-quote-block .quote-grid .tip-item ul li:last-child, .rt-quote-block .quote-grid .tip-item ol li:last-child, .rt-quote-block .quote-grid .action-item ul li:last-child, .rt-quote-block .quote-grid .action-item ol li:last-child, .rt-quote-block .quote-grid .quote-item ul li:last-child, .rt-quote-block .quote-grid .quote-item ol li:last-child {
  margin-bottom: 10px !important;
}
.rt-tips-block .tips-grid .tip-item.quote, .rt-tips-block .tips-grid .action-item.quote, .rt-tips-block .tips-grid .quote-item.quote, .rt-tips-block .actions-grid .tip-item.quote, .rt-tips-block .actions-grid .action-item.quote, .rt-tips-block .actions-grid .quote-item.quote, .rt-tips-block .quote-grid .tip-item.quote, .rt-tips-block .quote-grid .action-item.quote, .rt-tips-block .quote-grid .quote-item.quote, .rt-actions-block .tips-grid .tip-item.quote, .rt-actions-block .tips-grid .action-item.quote, .rt-actions-block .tips-grid .quote-item.quote, .rt-actions-block .actions-grid .tip-item.quote, .rt-actions-block .actions-grid .action-item.quote, .rt-actions-block .actions-grid .quote-item.quote, .rt-actions-block .quote-grid .tip-item.quote, .rt-actions-block .quote-grid .action-item.quote, .rt-actions-block .quote-grid .quote-item.quote, .rt-quote-block .tips-grid .tip-item.quote, .rt-quote-block .tips-grid .action-item.quote, .rt-quote-block .tips-grid .quote-item.quote, .rt-quote-block .actions-grid .tip-item.quote, .rt-quote-block .actions-grid .action-item.quote, .rt-quote-block .actions-grid .quote-item.quote, .rt-quote-block .quote-grid .tip-item.quote, .rt-quote-block .quote-grid .action-item.quote, .rt-quote-block .quote-grid .quote-item.quote {
  padding-top: 35px;
  font-style: italic;
}
.rt-tips-block .tips-grid .tip-item.quote .quote-icon, .rt-tips-block .tips-grid .action-item.quote .quote-icon, .rt-tips-block .tips-grid .quote-item.quote .quote-icon, .rt-tips-block .actions-grid .tip-item.quote .quote-icon, .rt-tips-block .actions-grid .action-item.quote .quote-icon, .rt-tips-block .actions-grid .quote-item.quote .quote-icon, .rt-tips-block .quote-grid .tip-item.quote .quote-icon, .rt-tips-block .quote-grid .action-item.quote .quote-icon, .rt-tips-block .quote-grid .quote-item.quote .quote-icon, .rt-actions-block .tips-grid .tip-item.quote .quote-icon, .rt-actions-block .tips-grid .action-item.quote .quote-icon, .rt-actions-block .tips-grid .quote-item.quote .quote-icon, .rt-actions-block .actions-grid .tip-item.quote .quote-icon, .rt-actions-block .actions-grid .action-item.quote .quote-icon, .rt-actions-block .actions-grid .quote-item.quote .quote-icon, .rt-actions-block .quote-grid .tip-item.quote .quote-icon, .rt-actions-block .quote-grid .action-item.quote .quote-icon, .rt-actions-block .quote-grid .quote-item.quote .quote-icon, .rt-quote-block .tips-grid .tip-item.quote .quote-icon, .rt-quote-block .tips-grid .action-item.quote .quote-icon, .rt-quote-block .tips-grid .quote-item.quote .quote-icon, .rt-quote-block .actions-grid .tip-item.quote .quote-icon, .rt-quote-block .actions-grid .action-item.quote .quote-icon, .rt-quote-block .actions-grid .quote-item.quote .quote-icon, .rt-quote-block .quote-grid .tip-item.quote .quote-icon, .rt-quote-block .quote-grid .action-item.quote .quote-icon, .rt-quote-block .quote-grid .quote-item.quote .quote-icon {
  width: 25px;
  height: 25px;
  background: url("assets/images/icon-quote-right-solid-full.svg") no-repeat center center;
  background-size: contain;
  margin: -3px 0 5px -2px;
}
.rt-tips-block .tips-grid .tip-item.quote .quote-icon .dashicons, .rt-tips-block .tips-grid .action-item.quote .quote-icon .dashicons, .rt-tips-block .tips-grid .quote-item.quote .quote-icon .dashicons, .rt-tips-block .actions-grid .tip-item.quote .quote-icon .dashicons, .rt-tips-block .actions-grid .action-item.quote .quote-icon .dashicons, .rt-tips-block .actions-grid .quote-item.quote .quote-icon .dashicons, .rt-tips-block .quote-grid .tip-item.quote .quote-icon .dashicons, .rt-tips-block .quote-grid .action-item.quote .quote-icon .dashicons, .rt-tips-block .quote-grid .quote-item.quote .quote-icon .dashicons, .rt-actions-block .tips-grid .tip-item.quote .quote-icon .dashicons, .rt-actions-block .tips-grid .action-item.quote .quote-icon .dashicons, .rt-actions-block .tips-grid .quote-item.quote .quote-icon .dashicons, .rt-actions-block .actions-grid .tip-item.quote .quote-icon .dashicons, .rt-actions-block .actions-grid .action-item.quote .quote-icon .dashicons, .rt-actions-block .actions-grid .quote-item.quote .quote-icon .dashicons, .rt-actions-block .quote-grid .tip-item.quote .quote-icon .dashicons, .rt-actions-block .quote-grid .action-item.quote .quote-icon .dashicons, .rt-actions-block .quote-grid .quote-item.quote .quote-icon .dashicons, .rt-quote-block .tips-grid .tip-item.quote .quote-icon .dashicons, .rt-quote-block .tips-grid .action-item.quote .quote-icon .dashicons, .rt-quote-block .tips-grid .quote-item.quote .quote-icon .dashicons, .rt-quote-block .actions-grid .tip-item.quote .quote-icon .dashicons, .rt-quote-block .actions-grid .action-item.quote .quote-icon .dashicons, .rt-quote-block .actions-grid .quote-item.quote .quote-icon .dashicons, .rt-quote-block .quote-grid .tip-item.quote .quote-icon .dashicons, .rt-quote-block .quote-grid .action-item.quote .quote-icon .dashicons, .rt-quote-block .quote-grid .quote-item.quote .quote-icon .dashicons {
  display: none;
}
.rt-tips-block .tips-grid .tip-item.quote p, .rt-tips-block .tips-grid .action-item.quote p, .rt-tips-block .tips-grid .quote-item.quote p, .rt-tips-block .actions-grid .tip-item.quote p, .rt-tips-block .actions-grid .action-item.quote p, .rt-tips-block .actions-grid .quote-item.quote p, .rt-tips-block .quote-grid .tip-item.quote p, .rt-tips-block .quote-grid .action-item.quote p, .rt-tips-block .quote-grid .quote-item.quote p, .rt-actions-block .tips-grid .tip-item.quote p, .rt-actions-block .tips-grid .action-item.quote p, .rt-actions-block .tips-grid .quote-item.quote p, .rt-actions-block .actions-grid .tip-item.quote p, .rt-actions-block .actions-grid .action-item.quote p, .rt-actions-block .actions-grid .quote-item.quote p, .rt-actions-block .quote-grid .tip-item.quote p, .rt-actions-block .quote-grid .action-item.quote p, .rt-actions-block .quote-grid .quote-item.quote p, .rt-quote-block .tips-grid .tip-item.quote p, .rt-quote-block .tips-grid .action-item.quote p, .rt-quote-block .tips-grid .quote-item.quote p, .rt-quote-block .actions-grid .tip-item.quote p, .rt-quote-block .actions-grid .action-item.quote p, .rt-quote-block .actions-grid .quote-item.quote p, .rt-quote-block .quote-grid .tip-item.quote p, .rt-quote-block .quote-grid .action-item.quote p, .rt-quote-block .quote-grid .quote-item.quote p {
  padding-top: 25px;
}
.rt-tips-block .tips-grid .tip-item.quote .quote-icon, .rt-tips-block .tips-grid .action-item.quote .quote-icon, .rt-tips-block .tips-grid .quote-item.quote .quote-icon, .rt-tips-block .actions-grid .tip-item.quote .quote-icon, .rt-tips-block .actions-grid .action-item.quote .quote-icon, .rt-tips-block .actions-grid .quote-item.quote .quote-icon, .rt-tips-block .quote-grid .tip-item.quote .quote-icon, .rt-tips-block .quote-grid .action-item.quote .quote-icon, .rt-tips-block .quote-grid .quote-item.quote .quote-icon, .rt-actions-block .tips-grid .tip-item.quote .quote-icon, .rt-actions-block .tips-grid .action-item.quote .quote-icon, .rt-actions-block .tips-grid .quote-item.quote .quote-icon, .rt-actions-block .actions-grid .tip-item.quote .quote-icon, .rt-actions-block .actions-grid .action-item.quote .quote-icon, .rt-actions-block .actions-grid .quote-item.quote .quote-icon, .rt-actions-block .quote-grid .tip-item.quote .quote-icon, .rt-actions-block .quote-grid .action-item.quote .quote-icon, .rt-actions-block .quote-grid .quote-item.quote .quote-icon, .rt-quote-block .tips-grid .tip-item.quote .quote-icon, .rt-quote-block .tips-grid .action-item.quote .quote-icon, .rt-quote-block .tips-grid .quote-item.quote .quote-icon, .rt-quote-block .actions-grid .tip-item.quote .quote-icon, .rt-quote-block .actions-grid .action-item.quote .quote-icon, .rt-quote-block .actions-grid .quote-item.quote .quote-icon, .rt-quote-block .quote-grid .tip-item.quote .quote-icon, .rt-quote-block .quote-grid .action-item.quote .quote-icon, .rt-quote-block .quote-grid .quote-item.quote .quote-icon {
  position: absolute;
  top: 25px;
  left: 25px;
  color: #3c3c3b;
  font-size: 64px;
}
.rt-tips-block .tips-grid .action-item, .rt-tips-block .actions-grid .action-item, .rt-tips-block .quote-grid .action-item, .rt-actions-block .tips-grid .action-item, .rt-actions-block .actions-grid .action-item, .rt-actions-block .quote-grid .action-item, .rt-quote-block .tips-grid .action-item, .rt-quote-block .actions-grid .action-item, .rt-quote-block .quote-grid .action-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.rt-tips-block .tips-grid .action-item .action-content h3, .rt-tips-block .actions-grid .action-item .action-content h3, .rt-tips-block .quote-grid .action-item .action-content h3, .rt-actions-block .tips-grid .action-item .action-content h3, .rt-actions-block .actions-grid .action-item .action-content h3, .rt-actions-block .quote-grid .action-item .action-content h3, .rt-quote-block .tips-grid .action-item .action-content h3, .rt-quote-block .actions-grid .action-item .action-content h3, .rt-quote-block .quote-grid .action-item .action-content h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.rt-tips-block .tips-grid .action-item .action-content p, .rt-tips-block .actions-grid .action-item .action-content p, .rt-tips-block .quote-grid .action-item .action-content p, .rt-actions-block .tips-grid .action-item .action-content p, .rt-actions-block .actions-grid .action-item .action-content p, .rt-actions-block .quote-grid .action-item .action-content p, .rt-quote-block .tips-grid .action-item .action-content p, .rt-quote-block .actions-grid .action-item .action-content p, .rt-quote-block .quote-grid .action-item .action-content p {
  margin-bottom: 0;
}
.rt-tips-block .tips-grid .action-item .action-time, .rt-tips-block .actions-grid .action-item .action-time, .rt-tips-block .quote-grid .action-item .action-time, .rt-actions-block .tips-grid .action-item .action-time, .rt-actions-block .actions-grid .action-item .action-time, .rt-actions-block .quote-grid .action-item .action-time, .rt-quote-block .tips-grid .action-item .action-time, .rt-quote-block .actions-grid .action-item .action-time, .rt-quote-block .quote-grid .action-item .action-time {
  display: flex;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  color: #666;
  font-size: clamp(0.833rem, 0.8218rem + 0.056vw, 0.889rem);
}
.rt-tips-block .tips-grid .action-item .action-time .dashicons, .rt-tips-block .actions-grid .action-item .action-time .dashicons, .rt-tips-block .quote-grid .action-item .action-time .dashicons, .rt-actions-block .tips-grid .action-item .action-time .dashicons, .rt-actions-block .actions-grid .action-item .action-time .dashicons, .rt-actions-block .quote-grid .action-item .action-time .dashicons, .rt-quote-block .tips-grid .action-item .action-time .dashicons, .rt-quote-block .actions-grid .action-item .action-time .dashicons, .rt-quote-block .quote-grid .action-item .action-time .dashicons {
  width: 1.7rem;
  height: 1.7rem;
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.33rem);
}
.rt-tips-block .tips-grid .action-item .action-time .dashicons::before, .rt-tips-block .actions-grid .action-item .action-time .dashicons::before, .rt-tips-block .quote-grid .action-item .action-time .dashicons::before, .rt-actions-block .tips-grid .action-item .action-time .dashicons::before, .rt-actions-block .actions-grid .action-item .action-time .dashicons::before, .rt-actions-block .quote-grid .action-item .action-time .dashicons::before, .rt-quote-block .tips-grid .action-item .action-time .dashicons::before, .rt-quote-block .actions-grid .action-item .action-time .dashicons::before, .rt-quote-block .quote-grid .action-item .action-time .dashicons::before {
  content: "";
  background: url("assets/images/icon-clock-solid-full.svg") no-repeat center center;
  background-size: contain;
  width: 19px;
  height: 19px;
  display: block;
}

.swiper-slide .tip-item, .rt-swiper-v2-slide .tip-item {
  padding: 1.5rem;
  background-color: var(--rt-white);
  border-radius: 15px;
}
.rt-bg-white .swiper-slide .tip-item, .rt-bg-white .rt-swiper-v2-slide .tip-item {
  background-color: var(--rt-beige-main);
}
.swiper-slide .tip-item h3, .swiper-slide .tip-item h4, .swiper-slide .tip-item h5, .rt-swiper-v2-slide .tip-item h3, .rt-swiper-v2-slide .tip-item h4, .rt-swiper-v2-slide .tip-item h5 {
  line-height: 1.3;
  hyphens: auto;
  margin-top: 0;
  color: var(--rt-text-color);
}
@supports (font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem)) {
  .swiper-slide .tip-item h3, .swiper-slide .tip-item h4, .swiper-slide .tip-item h5, .rt-swiper-v2-slide .tip-item h3, .rt-swiper-v2-slide .tip-item h4, .rt-swiper-v2-slide .tip-item h5 {
    font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem);
  }
}
.swiper-slide .tip-item p, .swiper-slide .tip-item li, .rt-swiper-v2-slide .tip-item p, .rt-swiper-v2-slide .tip-item li {
  margin: 0;
  padding: 0;
  hyphens: auto;
  color: var(--rt-text-color);
}
@supports (font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem)) {
  .swiper-slide .tip-item p, .swiper-slide .tip-item li, .rt-swiper-v2-slide .tip-item p, .rt-swiper-v2-slide .tip-item li {
    font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem);
  }
}
.swiper-slide .tip-item p:not(:last-child), .swiper-slide .tip-item li:not(:last-child), .rt-swiper-v2-slide .tip-item p:not(:last-child), .rt-swiper-v2-slide .tip-item li:not(:last-child) {
  margin-bottom: 10px;
}
.swiper-slide .tip-item ul, .rt-swiper-v2-slide .tip-item ul {
  margin: 0;
}
.swiper-slide .tip-item strong, .swiper-slide .tip-item b, .rt-swiper-v2-slide .tip-item strong, .rt-swiper-v2-slide .tip-item b {
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.swiper-slide .tip-item h3, .rt-swiper-v2-slide .tip-item h3 {
  font-weight: 800;
}
.swiper-slide .tip-item blockquote, .rt-swiper-v2-slide .tip-item blockquote {
  font-style: italic;
  border-left: 5px solid var(--rt-beige-contrast);
  padding: 10px 10px 10px 15px;
  background: rgba(216, 216, 216, 0.2);
}
.swiper-slide .tip-item ul, .swiper-slide .tip-item ol, .rt-swiper-v2-slide .tip-item ul, .rt-swiper-v2-slide .tip-item ol {
  padding-left: 20px;
}
.swiper-slide .tip-item ul li, .swiper-slide .tip-item ol li, .rt-swiper-v2-slide .tip-item ul li, .rt-swiper-v2-slide .tip-item ol li {
  margin-bottom: 3px !important;
}
.swiper-slide .tip-item ul li:last-child, .swiper-slide .tip-item ol li:last-child, .rt-swiper-v2-slide .tip-item ul li:last-child, .rt-swiper-v2-slide .tip-item ol li:last-child {
  margin-bottom: 10px !important;
}
.swiper-slide .tip-item .quote-icon, .rt-swiper-v2-slide .tip-item .quote-icon {
  width: 25px;
  height: 25px;
  background: url("assets/images/icon-quote-right-solid-full.svg") no-repeat center center;
  background-size: contain;
  margin: -3px 0 5px -2px;
}
.swiper-slide .tip-item .quote-icon .dashicons, .rt-swiper-v2-slide .tip-item .quote-icon .dashicons {
  display: none;
}

.rt-carousel-card {
  width: 540px;
  color: var(--rt-white);
}
.rt-carousel-card.small {
  /* MD breakpoint (768px) */
  /* LG breakpoint (992px) */
}
@media (max-width: 767.98px) {
  .rt-carousel-card.small { /* sm and below */
    width: 100%;
  }
}
@media (min-width: 768px) {
  .rt-carousel-card.small {
    max-width: 324px;
  }
}
@media (min-width: 992px) {
  .rt-carousel-card.small {
    max-width: 270px;
  }
}
.rt-carousel-card .img-container {
  background: var(--rt-black);
  position: relative;
  width: 100%;
  aspect-ratio: 1080/1350;
  overflow: hidden;
  border-radius: 15px;
}
.rt-carousel-card .img-container:hover {
  border: 3px solid var(--rt-black);
}
.rt-carousel-card .img-container picture {
  display: block;
  width: 100%;
  height: 100%;
}
.rt-carousel-card .img-container picture .rt-carousel-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.rt-carousel-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.rt-carousel-card .badge {
  background: rgba(0, 0, 0, 0.3);
  font-size: 0.75rem;
  padding: 6px 8px;
  border-radius: 4px;
  margin-top: 32px;
  align-self: flex-start;
}

.advisor p {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: clamp(0.833rem, 0.8218rem + 0.056vw, 0.889rem);
}
.advisor .avatar {
  width: 200px;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  margin: 0 auto;
  /* Medium devices (md, max-width: 991.98px) */
  /* Extra-small devices (xs, max-width: 575.98px) */
}
@media (max-width: 991.98px) {
  .advisor .avatar {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 767.98px) {
  .advisor .avatar {
    width: 250px;
    height: 250px;
  }
}
.advisor .name {
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
  margin-top: 0.5rem;
}

.tag-group ul {
  display: flex; /* Makes the list a flex container */
  flex-direction: row; /* Aligns items in a single row */
  list-style: none; /* Removes default bullet points */
  padding: 0; /* Removes default padding */
  margin: 0; /* Removes default margin */
}
.tag-group ul li {
  margin-right: 15px; /* Optional: spacing between list items */
}

.search-form {
  /* Style the placeholder text only */
}
.search-form input::placeholder {
  font-style: italic;
  opacity: 1;
}

input[type=range] {
  accent-color: var(--rt-blue);
  width: 100%;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  background-color: var(--rt-blue);
}

select {
  background-image: url("assets/images/caret-down.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position-y: calc(100% - 12px);
  background-position-x: calc(100% - 10px);
}

.btn-xs {
  padding: 10px 20px;
}

/* 
 * Discourse Comments Styling
 * CSS suggestions to format the comments in a similar way to other content on site
 */
.rt-comments-area.forum-comments .comment-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
}
.rt-comments-area.forum-comments .comment-list li {
  margin-bottom: 2rem;
  max-width: 85ch;
}
.rt-comments-area.forum-comments .comment-list li .comment-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}
@media (max-width: 767px) {
  .rt-comments-area.forum-comments .comment-list li .comment-item {
    flex-direction: column;
    align-items: stretch;
    row-gap: 0;
  }
}
.rt-comments-area.forum-comments .comment-list li .comment-item header.comment-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 115px;
  flex-shrink: 0;
  margin-top: 0.3rem;
}
@media (max-width: 767px) {
  .rt-comments-area.forum-comments .comment-list li .comment-item header.comment-meta {
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 0;
    padding-left: 1.5rem;
  }
}
.rt-comments-area.forum-comments .comment-list li .comment-item header.comment-meta .avatar-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.4rem;
}
@media (max-width: 767px) {
  .rt-comments-area.forum-comments .comment-list li .comment-item header.comment-meta .avatar-img {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}
.rt-comments-area.forum-comments .comment-list li .comment-item header.comment-meta .avatar-img img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  display: block;
}
.rt-comments-area.forum-comments .comment-list li .comment-item header.comment-meta .user-info {
  text-align: center;
  line-height: 16px;
}
@media (max-width: 767px) {
  .rt-comments-area.forum-comments .comment-list li .comment-item header.comment-meta .user-info {
    display: flex;
    flex-direction: column;
    gap: 0rem;
  }
}
.rt-comments-area.forum-comments .comment-list li .comment-item header.comment-meta .username {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 16px;
  display: inline-block;
}
@media (max-width: 767px) {
  .rt-comments-area.forum-comments .comment-list li .comment-item header.comment-meta .username {
    text-align: left;
  }
}
.rt-comments-area.forum-comments .comment-list li .comment-item header.comment-meta .datetime-wrapper {
  text-align: center;
  line-height: 16px;
}
@media (max-width: 767px) {
  .rt-comments-area.forum-comments .comment-list li .comment-item header.comment-meta .datetime-wrapper {
    text-align: left;
  }
}
.rt-comments-area.forum-comments .comment-list li .comment-item header.comment-meta .datetime-wrapper time {
  font-size: 12px;
  color: #888;
  line-height: 1.3;
  display: inline-block;
}
@media (max-width: 767px) {
  .rt-comments-area.forum-comments .comment-list li .comment-item header.comment-meta .datetime-wrapper time {
    text-align: left;
  }
}
.rt-comments-area.forum-comments .comment-list li .comment-item header.comment-meta .datetime-wrapper time br {
  display: none;
}
@media (max-width: 768px) {
  .rt-comments-area.forum-comments .comment-list li .comment-item header.comment-meta .datetime-wrapper time br {
    display: inline;
  }
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content {
  background: var(--rt-white);
  border-radius: 24px;
  padding: 1.5rem;
  flex: 1;
}
.rt-bg-white .rt-comments-area.forum-comments .comment-list li .comment-item .comment-content {
  background: var(--rt-beige-main);
}
@media (max-width: 767px) {
  .rt-comments-area.forum-comments .comment-list li .comment-item .comment-content {
    width: 100%;
    padding-bottom: 0;
    margin-top: 0.5rem;
  }
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap {
  overflow-wrap: break-word;
  word-wrap: break-word; /* for older browsers */
  word-break: break-word; /* WebKit fallback */
  white-space: normal; /* ensure text can wrap */
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap p, .rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap li, .rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap h1, .rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap h2, .rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap h3, .rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap td, .rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap th {
  font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem);
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 100ch;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap p img.emoji, .rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap li img.emoji, .rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap h1 img.emoji, .rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap h2 img.emoji, .rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap h3 img.emoji, .rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap td img.emoji, .rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap th img.emoji {
  vertical-align: middle;
  width: 20px;
  height: 20px;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap p img:not(.emoji),
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .section-wrap > img:not(.emoji) {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap p img.animated,
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap p img[width][height]:not(.emoji) {
  max-width: 100%;
  height: auto !important;
  width: auto !important;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap li {
  margin-bottom: 0.7rem;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap table {
  width: 100%;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap aside.quote {
  border-left: 5px solid var(--rt-beige-dark);
  padding: 10px 15px 5px 15px;
  background: rgba(var(--rt-beige-contrast-rgb), 0.3);
  font-size: clamp(0.9rem, 0.88rem + 0.1vw, 1rem);
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 1rem;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap aside.quote img {
  border-radius: 10px;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap h1, .rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap h2, .rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap h3 {
  font-weight: 800;
  margin-top: 1.8rem;
  margin-bottom: 0.2rem;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .youtube-onebox {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(var(--rt-black-rgb), 0.08);
  background: #000;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .youtube-onebox .video-thumbnail {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: #000;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .youtube-onebox .video-thumbnail img.youtube-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .youtube-onebox .video-thumbnail:hover img.youtube-thumbnail {
  transform: scale(1.03);
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .youtube-onebox .video-thumbnail::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  background: url("https://img.icons8.com/ios-filled/100/ffffff/play-button-circled.png") no-repeat center center;
  background-size: 64px;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  pointer-events: none;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .lightbox-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  text-align: center;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .lightbox-wrapper a.lightbox {
  display: block;
  position: relative;
  text-decoration: none;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .lightbox-wrapper a.lightbox img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  height: auto;
  width: auto;
  transition: transform 0.3s ease;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .lightbox-wrapper a.lightbox img:hover {
  transform: scale(1.02);
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .lightbox-wrapper a.lightbox .meta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(var(--rt-black-rgb), 0.6);
  color: var(--rt-white);
  font-size: 12px;
  padding: 0.4rem 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .lightbox-wrapper a.lightbox .meta svg {
  fill: var(--rt-white);
  width: 14px;
  height: 14px;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .lightbox-wrapper a.lightbox .meta .filename {
  font-weight: 500;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .lightbox-wrapper a.lightbox .meta .informations {
  font-style: italic;
  opacity: 0.85;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .lightbox-wrapper a.lightbox:hover .meta {
  opacity: 1;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .onebox.allowlistedgeneric {
  border: 5px solid #e9e9e9;
  border-radius: 10px;
  margin: 1em 0;
  padding: 1em;
  font-size: 14px;
  background: #fff;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .onebox.allowlistedgeneric header {
  align-items: center;
  display: flex;
  margin-bottom: 1em;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .onebox.allowlistedgeneric header .site-icon {
  width: 16px;
  height: 16px;
  margin-right: 0.5em;
  border-radius: 25%;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .onebox.allowlistedgeneric header .d-icon {
  margin-right: 5px;
  margin-top: 2px;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .onebox.allowlistedgeneric header a[href] {
  color: #919191;
  text-decoration: none;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .onebox.allowlistedgeneric header a {
  margin-bottom: 0;
  line-height: 1;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .onebox.allowlistedgeneric .onebox-body h3,
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .onebox.allowlistedgeneric .onebox-body h4 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  font-size: 16px;
  margin: 0;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .onebox.allowlistedgeneric .onebox-body h3 > a,
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .onebox.allowlistedgeneric .onebox-body h4 > a {
  font-weight: 900;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .onebox.allowlistedgeneric .onebox-body a[href] {
  color: var(--rt-link-color);
  text-decoration: none;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .onebox.allowlistedgeneric .onebox-body img {
  max-height: 170px;
  max-width: 20%;
  height: auto;
  float: left;
  margin-right: 1em;
}
@media all and (max-width: 600px) {
  .rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .onebox.allowlistedgeneric .onebox-body img {
    max-width: 35%;
  }
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .onebox.allowlistedgeneric .onebox-body img.onebox-full-image {
  max-height: none;
  max-width: none;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .onebox.allowlistedgeneric .onebox-body [style*="--aspect-ratio"] > :first-child {
  width: 100%;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .onebox.allowlistedgeneric .onebox-body [style*="--aspect-ratio"] > img {
  height: auto;
}
.rt-comments-area.forum-comments .comment-list li .comment-item .comment-content .section-wrap .onebox.allowlistedgeneric .onebox-body .label1 {
  display: none;
}

body {
  color: var(--rt-text-color);
  background: var(--rt-beige-main);
  font-family: "Nunito", sans-serif;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.2rem);
  line-height: 1.6;
}
@media (min-width: 1400px) {
  body .container,
  body .container-lg,
  body .container-md,
  body .container-sm,
  body .container-xl,
  body .container-xxl {
    max-width: 1190px;
  }
}

.page-wrap {
  position: relative;
  padding-top: 91px;
}
.page-wrap.with-top-bar {
  padding-top: calc(91px + 30px);
}
.page-wrap.with-top-bar #header {
  top: 30px;
}
.page-wrap.with-top-bar #header.fixed {
  top: 0;
}
@media (max-width: 767px) {
  .page-wrap.with-top-bar #header #nav {
    padding-top: 130px;
  }
  .page-wrap.with-top-bar #header.fixed #nav {
    padding-top: 91px;
  }
}
.page-wrap main {
  overflow: hidden;
}

.admin-bar .page-wrap #header.fixed, .admin-bar .page-wrap.with-top-bar #header.fixed {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .page-wrap #header.fixed, .admin-bar .page-wrap.with-top-bar #header.fixed {
    top: 46px;
  }
}
@media screen and (max-width: 600px) {
  .admin-bar .page-wrap #header.fixed, .admin-bar .page-wrap.with-top-bar #header.fixed {
    top: 0;
  }
}
@media screen and (max-width: 782px) {
  .admin-bar .page-wrap.with-top-bar #header:not(.fixed) #nav {
    padding-top: 176px;
  }
}
@media screen and (max-width: 991px) and (min-width: 783px) {
  .admin-bar .page-wrap.with-top-bar #header:not(.fixed) #nav {
    padding-top: 162px;
  }
}

.top-bar {
  background: var(--top-bar-bg);
  color: var(--rt-white);
  text-align: center;
  position: absolute;
  top: 0;
  width: 100%;
  height: 30px;
  line-height: 24px;
  padding: 3px 0;
  font-size: 14px;
  z-index: 1000;
}

/* Header - moved to separate file so it can be reused in forum. */
#footer .footer-text a {
  color: var(--rt-link-color);
  text-decoration: none;
  font-weight: 700;
}
#footer .footer-text a:hover {
  text-decoration: underline;
}
#footer .nav-column h5, #footer .rt-footer-column h5 {
  margin-bottom: 10px;
}
@media (max-width: 575.98px) {
  #footer .nav-column h5, #footer .rt-footer-column h5 {
    margin-bottom: 0;
    margin-top: 10px;
  }
}
#footer .nav-column h5 a, #footer .rt-footer-column h5 a {
  text-decoration: none;
  color: var(--rt-black);
}
#footer .nav-column h5 a:hover, #footer .rt-footer-column h5 a:hover {
  color: var(--rt-link-color);
}
#footer .nav-column .nav-item, #footer .rt-footer-column .nav-item {
  margin-bottom: 5px;
  font-size: clamp(0.833rem, 0.8218rem + 0.056vw, 0.889rem);
}
@media (max-width: 575.98px) {
  #footer .nav-column .nav-item, #footer .rt-footer-column .nav-item {
    margin-bottom: 0;
  }
}
#footer .nav-column .nav-item a:hover, #footer .rt-footer-column .nav-item a:hover {
  color: var(--rt-link-color);
}
@media (max-width: 540px) {
  #footer .footer-menu .nav-item {
    width: 100%;
    margin-bottom: 11px;
  }
  #footer .footer-menu .nav-item:last-child {
    margin-bottom: 0;
  }
}
#footer .footer-menu .nav-item .nav-link {
  margin-right: 50px;
}
@media (max-width: 767px) {
  #footer .footer-menu .nav-item .nav-link {
    margin-right: 25px;
  }
}
@media (max-width: 540px) {
  #footer .footer-menu .nav-item .nav-link {
    width: 100%;
    margin-right: 0;
  }
}
#footer .footer-menu .nav-item .nav-link:hover {
  color: var(--rt-link-color);
}
#footer .footer-menu .nav-item:last-child .nav-link {
  margin-right: 0;
}
#footer .social-links {
  margin-bottom: 30px;
}
#footer .social-links li {
  margin-right: 30px;
  margin-bottom: 30px;
}
#footer .social-links li:last-child {
  margin-right: 0;
}
@media (max-width: 575.98px) {
  #footer .nav:not(.social-links) {
    display: block !important;
    overflow: hidden;
  }
  #footer .nav:not(.social-links) .nav-item {
    display: inline-block;
    width: auto;
    margin-right: 16px;
    margin-left: -11px;
    position: relative;
    padding-left: 11px;
    font-size: 14px;
    line-height: 1;
  }
  #footer .nav:not(.social-links) .nav-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    margin-right: 10px;
    height: 14px;
    width: 1px;
    background-color: var(--rt-black);
  }
  #footer .nav:not(.social-links) .nav-item .nav-link {
    margin: 0;
  }
}

/*# sourceMappingURL=style.css.map */
