:root {
    --header-bg-color: #326A32;
    --main-bg-color: #0F110B;
    --footer-bg-color: #214321;
    --main-text-color: #FCF9DE;
    --link-text-color: #51A851;
    --button-text-color: #FFFFFF;
    --button-bg-color: #51A851;
    --button-second-bg-color: #51A851;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: none;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    font-family: Rubik, sans-serif;
    line-height: 1.6;
    color: var(--main-text-color);
}

button {
    font-family: Rubik, sans-serif;
    cursor: pointer;
    border: none !important;
}

a {
    color: var(--link-text-color);
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
    color: var(--link-text-color);
}

h1,
h2,
h3,
h4 {
    color: var(--main-text-color);
}

h1 {
    font-size: 45px;
    font-weight: 900;
    line-height: 45px;
    margin-bottom: 30px;
    text-align: center;
}

@media screen and (max-width: 992px) {
    h1 {
        font-size: 30px;
        line-height: 42px;
    }
}

h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 30px;
}

@media screen and (max-width: 992px) {
    h2 {
        font-size: 30px;
        line-height: 44px;
    }
}

h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 44px;
    margin-bottom: 30px;
}

@media screen and (max-width: 992px) {
    h3 {
        font-size: 24px;
        line-height: 32px;
    }
}

p {
    font-size: 16px;
    letter-spacing: normal;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 24px;
}

@media screen and (max-width: 992px) {
    p {
        font-size: 14px;
        line-height: 29px;
    }
}

strong {
    font-weight: 600;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    white-space: nowrap;
    display: block;
    overflow-x: auto;
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

table p {
    margin: 0;
}

tbody {
    width: calc(100% - 2px);
    display: table;
}

th {
    background: var(--footer-bg-color);
}

th,
td {
    border: 1px solid var(--main-text-color);
    padding: 8px;
    box-sizing: border-box;
}

th:first-child {
    border-top-left-radius: 10px;
}

th:last-child {
    border-top-right-radius: 10px;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

tr:first-child td:first-child {
    border-top-left-radius: 10px;
}

tr:first-child td:last-child {
    border-top-right-radius: 10px;
}

table::-webkit-scrollbar {
    height: 8px;
}

table::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

table::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

footer,
header,
nav,
section,
main {
    display: block;
    position: relative;
}

main {
    flex: 1 0 auto;
    background-color: var(--main-bg-color);
}

section {
    padding: 20px 0;
}

@media screen and (max-width: 768px) {
    section {
        padding: 20px 0;
    }
}

.fortunehorse-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1200px) {
    .fortunehorse-container {
        max-width: 100%;
        padding: 0 15px;
    }
}

img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


.fortunehorse-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.fortunehorse-col:first-child {
    width: 820px;

}

.fortunehorse-col:last-child {
    flex: 0 0 330px;
}

@media (max-width: 1030px) {
    .fortunehorse-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .fortunehorse-col:first-child,
    .fortunehorse-col:last-child {
        width: 100%;
        flex: auto;
    }
}

.fortunehorse-jc-end {
    justify-content: end !important;
}

.fortunehorse-jc-center {
    justify-content: center;
}

.fortunehorse-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: inherit;
    height: auto;
    padding: 12px 24px;
    border-radius: 11px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.fortunehorse-btn:hover {
    transform: scale(1.1);
}

.fortunehorse-btn__wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .fortunehorse-btn__wrapper {
        gap: 20px;
    }
}

.fortunehorse-btn-primary {
    color: var(--button-text-color);
    background-color: var(--button-bg-color);
}

.fortunehorse-btn-primary:hover {
    color: var(--button-text-color);
    background-color: var(--button-bg-color);
}

.fortunehorse-btn-secondary {
    color: var(--button-text-color);
    background-color: var(--button-second-bg-color);
}

.fortunehorse-btn-secondary:hover {
    color: var(--button-text-color);
    background-color: var(--button-second-bg-color);
}

.fortunehorse-btn-pulse {
    animation: pulse 1.5s infinite;
}

.fortunehorse-btn-uppercase {
    text-transform: uppercase;
}


.fortunehorse-header {
    display: none;
    background-color: var(--header-bg-color);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.fortunehorse-header ul,
.fortunehorse-header ol,
.fortunehorse-header li,
.fortunehorse-footer ul,
.fortunehorse-footer ol,
.fortunehorse-footer li {
    margin: 0;
    padding: 0;
    border: 0;
    list-style-type: none;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    text-size-adjust: none;
}

.fortunehorse-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.fortunehorse-header__inner-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: auto;
}

.fortunehorse-header__inner-second {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fortunehorse-header__row {
    flex-direction: row;
    height: 80px;
}

.fortunehorse-header__inner-second .fortunehorse-header__row {
    flex-direction: row;
    gap: 10px;
    height: auto;
}

.fortunehorse-header__col {
    flex-direction: column;
}

.fortunehorse-header__inner-second.fortunehorse-header__col {
    padding: 10px 0;
}

.fortunehorse-header__logo {
    display: flex;
    max-height: 60px;
    height: 100%;
}

.fortunehorse-header__logo a {
    text-decoration: none;
    display: flex;
}

.fortunehorse-header__logo img {
    object-fit: contain;
    border-radius: initial;
}

.fortunehorse-header__nav {
    display: flex;
}

.fortunehorse-header__nav ul {
    display: flex;
    gap: 10px;
    height: 100%;
    align-items: center;
    list-style-type: none;
    padding: 0;
}

.fortunehorse-header__nav ul li {
    display: flex;
    align-items: center;
    height: 100%;
}

.fortunehorse-header__nav ul li a {
    color: var(--link-text-color);
    text-decoration: none;
    padding: 10px;
}

.fortunehorse-header__nav ul li a:hover {
    opacity: .2;
}

.fortunehorse-section img {
    max-width: 1097px;
    display: block;
    margin: auto;
}

.fortunehorse-section--main .fortunehorse-container> :not(:last-child) {
    margin-bottom: 30px;
}

.fortunehorse-btn__wrapper-main {
    max-width: 300px;
    width: 100%;
    margin: auto;
}

.fortunehorse-btn__wrapper-main .fortunehorse-btn-primary {
    padding: 20px 70px;
    border-radius: 17px;
}

.fortunehorse-burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.fortunehorse-burger-menu span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--main-text-color);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.fortunehorse-burger-menu.fortunehorse-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.fortunehorse-burger-menu.fortunehorse-active span:nth-child(2) {
    opacity: 0;
}

.fortunehorse-burger-menu.fortunehorse-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.fortunehorse-section--content h1:first-of-type,
.fortunehorse-section--content h2:first-of-type,
.fortunehorse-section--content h3:first-of-type,
.fortunehorse-section--content h4:first-of-type {
    margin-top: 0;
    margin-bottom: 30px;
}

.fortunehorse-section--content h1:not(:first-of-type),
.fortunehorse-section--content h2:not(:first-of-type),
.fortunehorse-section--content h3:not(:first-of-type),
.fortunehorse-section--content h4:not(:first-of-type) {
    margin: 30px 0;
}

.fortunehorse-section--content .fortunehorse-update-post {
    display: flex;
    align-items: center;
}

.fortunehorse-section--content .fortunehorse-update-post p {
    width: 100%;
    margin: 0;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--main-text-color);
}

footer {
    flex-shrink: 0;
    background-color: var(--footer-bg-color);
    color: var(--main-text-color);
}

.fortunehorse-footer__wrapper {
    display: flex;
    flex-direction: column;
    justify-self: center;
    padding: 20px 0;
    gap: 17px;
}

.fortunehorse-footer__nav,
.fortunehorse-footer__icons,
.fortunehorse-footer__inner {
    display: flex;
    justify-content: center;
}

.fortunehorse-footer__icons--link img {
    border-radius: initial;
}

.fortunehorse-footer__nav--list {
    display: flex;
    list-style-type: none;
    justify-content: center;
    gap: 42px;
}

.fortunehorse-footer__nav--link {
    text-decoration: none;
    color: var(--link-text-color);
    font-size: 14px;
}

.fortunehorse-footer__nav--link:hover {
    color: var(--link-text-color);
    opacity: .2;
}

.fortunehorse-footer__icons {
    gap: 24px;
    flex-wrap: wrap;
}

.fortunehorse-footer__inner p {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
}

.fortunehorse-breadcrumbs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 1em 0;
    font-size: 0.95em;
    gap: 0.5em;
}

.fortunehorse-breadcrumbs li {
    display: flex;
    align-items: center;
}

.fortunehorse-breadcrumbs li a {
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.fortunehorse-breadcrumbs li::after {
    content: "›";
    margin: 0 0.5em;
}

.fortunehorse-breadcrumbs li:last-child::after {
    content: "";
    margin: 0;
}

.fortunehorse-content__row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
}

.fortunehorse-content__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1;
}

.fortunehorse-content__col.fortunehorse-content__col--img {
    max-width: 550px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--button-bg-color);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px 8px var(--button-bg-color);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--button-bg-color);
    }
}

.fortunehorse-layout {
    display: flex;
}

.fortunehorse-sidebar {
    position: relative;
    width: 172px;
    background-color: var(--header-bg-color);
    color: #fff;
    padding: 20px;
    flex-shrink: 0;
    z-index: 10000;
}

.fortunehorse-sidebar__wrapper {
    position: fixed;
    width: 172px;
}

.fortunehorse-header__sidebar {
    flex-direction: column;
    row-gap: 60px;
}

.fortunehorse-header__sidebar .fortunehorse-btn__wrapper {
    flex-direction: column;
    width: 100%;
}

.fortunehorse-header__sidebar .fortunehorse-header__nav ul {
    flex-direction: column;
    width: 100%;
}

.fortunehorse-header__sidebar .fortunehorse-header__nav-wrapper {
    width: 100%;
}

.fortunehorse-header__sidebar .fortunehorse-header__nav ul li {
    width: 100%;
    justify-content: center;
}

.fortunehorse-header__sidebar .fortunehorse-header__nav ul li a {
    width: 100%;
    text-align: center;
    padding: 20px 10px;
}

#fortunehorse-main {
    flex: 1;
}

.fortunehorse-footer {
    margin-top: auto;
}

.fortunehorse-footer__row {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.fortunehorse-footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fortunehorse-footer__col:first-child {
    flex: 2;
}

.fortunehorse-footer__col:last-child {
    flex: 1;
}

.fortunehorse-footer__logo {
    max-width: 132px;
}

.fortunehorse-footer__logo img {
    border-radius: 0;
}

.fortunehorse-footer__icons {
    justify-content: flex-start;
}


.fortunehorse-footer__nav--list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.fortunehorse-footer__nav--list li {
    flex: 0 0 calc(50% - 20px);
}

.fortunehorse-footer__nav--list li:nth-child(odd) {
    flex: auto;
}

.fortunehorse-error-page {
    align-content: center;
}

.fortunehorse-error-page__wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fortunehorse-error-page .fortunehorse-error-page__wrapper h1,
.fortunehorse-error-page .fortunehorse-error-page__wrapper p {
    margin-bottom: 0;
}

@media screen and (max-width: 992px) {
    .fortunehorse-content__wrapper {
        flex-direction: column;
    }

    .fortunehorse-content__col.fortunehorse-content__col--img {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .fortunehorse-layout {
        display: block;
    }

    .fortunehorse-sidebar {
        display: none;
    }

    .fortunehorse-header {
        display: block;
    }

    .fortunehorse-burger-menu {
        display: flex;
        order: 1;
    }

    .fortunehorse-burger-menu-rev {
        order: -1;
    }

    .fortunehorse-header__inner {
        justify-content: space-between;
        gap: 20px;
    }

    .fortunehorse-header__logo {
        max-height: 50px;
    }

    .fortunehorse-header__logo img {
        max-width: 100px;
    }

    #fortunehorse-nav-menu {
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--header-bg-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start !important;
        display: none;
    }

    .fortunehorse-header__nav ul {
        flex-direction: column;
        text-align: center;
        width: 100%;
        height: auto;
        padding: 20px 0;
    }

    .fortunehorse-header__nav ul li {
        padding: 10px 0;
    }

    .fortunehorse-header .fortunehorse-btn {
        padding: 9px 21px;
    }

    #fortunehorse-nav-menu.fortunehorse-active {
        display: flex;
    }

    .fortunehorse-header__row {
        height: 68px;
    }

    .fortunehorse-header__inner-second.fortunehorse-header__col {
        flex-direction: row;
    }

    .fortunehorse-footer__nav--list {
        gap: 20px;
        justify-content: center;
        text-align: center;
    }

    .fortunehorse-footer__row {
        flex-direction: column;
        align-items: center;
    }

    .fortunehorse-footer__logo {
        margin: auto;
    }

    .fortunehorse-footer__icons {
        justify-content: center;
    }
}



















#fortunehorse-demo-iframe,
#fortunehorse-offer-link {
    text-transform: uppercase;
    cursor: pointer;
    border: none !important;
}

.fortunehorse-overlay-btn {
    transition: transform 0.3s;
    min-width: 225px;
}

#fortunehorse-iframe-modal {
    z-index: 99999;
    max-width: 100%;
}

.fortunehorse-iframe-block {
    width: 100%;
    height: 100%;
    min-width: 650px;
    position: relative;
}

.fortunehorse-iframe-overlay {
    position: relative;
    background: var(--footer-bg-color);
    background-size: cover;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;

}

#fortunehorse-bonus-modal,
#fortunehorse-mobile-fullscreen,
.fortunehorse-bonus-modal,
.fortunehorse-mobile-fullscreen,
.fortunehorse-modal {
    position: fixed;
    left: 0;
    display: none;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
}

a#fortunehorse-bonus-pop-btn {
    border: none;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
}

#fortunehorse-demo-iframe:hover {
    transform: scale(1.1);
}

#fortunehorse-offer-link:hover,
a#fortunehorse-bonus-pop-btn:hover {
    transform: scale(1.1);
}

.fortunehorse-bonus-modal,
.fortunehorse-mobile-fullscreen,
.fortunehorse-modal {
    top: 0;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.fortunehorse-modal-block {
    position: relative;
    width: 800px;
    height: 600px;
    background: 0 0;
    padding: 0;
    border-radius: 9px;
}

.fortunehorse-close-btn,
.fortunehorse-fullscreen-btn {
    width: 40px;
    margin-left: 15px;
    right: -40px;
    background: 0 0;
}

iframe {
    width: 100%;
    height: 100%;
    border-radius: 9px;
}

.fortunehorse-bonus-btn,
.fortunehorse-close-btn,
.fortunehorse-fullscreen-btn {
    border: none;
    position: absolute;
    cursor: pointer;
}

.fortunehorse-close-btn img {
    width: 20px;
    height: 20px;
}

.fortunehorse-fullscreen-btn {
    top: 40px;
    color: #fff;
}

.fortunehorse-bonus-btn {
    width: 50px;
    height: 50px;
    top: 0;
    left: -70px;
    background: #37bd00;
    box-shadow: 0 0 46.5px #37bd00;
    color: #fff;
    padding: 10px;
    font-size: 29px;
    border-radius: 11px;
}

.fortunehorse-mobile-fullscreen {
    align-items: center;
    flex-direction: column;
}

.fortunehorse-mobile-header {
    position: relative;
    background-color: #000;
    color: #fff;
    padding: 10px;
    z-index: 999;
}

.fortunehorse-mobile-header .fortunehorse-close-btn {
    position: absolute;
    right: 50%;
    top: 50%;
    background: 0 0;
    color: red;
    border: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
}

.fortunehorse-close-btn:hover,
.fortunehorse-fullscreen-btn:hover {
    filter: brightness(0) invert(1);
    transition: 0.5s;
}

#fortunehorse-bonus-modal {
    top: 0;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    max-width: 100%;
}

.fortunehorse-bonus-content {
    position: relative;
    background: #bd0009;
    padding: 34px 40px 54px;
    text-align: center;
    border-radius: 9px;
}

.fortunehorse-bonus-title {
    font-size: 2rem !important;
    color: #fff !important;
}

.fortunehorse-bonus-text {
    color: #d6dff1 !important;
    font-size: 20px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 30px;
    padding-bottom: 0 !important;
}

#fortunehorse-mobile-fullscreen {
    top: 0;
    z-index: 9999;
    overflow: hidden;
}

#fortunehorse-mobile-iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.fortunehorse-bonus-modal .fortunehorse-close-btn {
    position: absolute;
    top: 0;
    right: -15%;
    background: 0 0;
    border: none;
    cursor: pointer;
}

.fortunehorse-overlay-btn {
    z-index: 9;
}

.fortunehorse-overlay-btn:hover {
    transform: scale(1.1);
}

.fortunehorse-bonus-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fortunehorse-bonus-btn:hover {
    transform: scale(1.1) rotate(5deg);
    animation: 0.5s infinite shakes;
}

@keyframes shakes {

    0%,
    100% {
        transform: scale(1.1) rotate(5deg);
    }

    50% {
        transform: scale(1.1) rotate(-5deg);
    }
}

@media (max-width: 1030px) {
    .fortunehorse-iframe-block {
        height: 540px;
    }
}

@media (max-width: 768px) {
    .fortunehorse-modal-block {
        width: 100%;
        height: 100%;
    }

    .fortunehorse-fullscreen-btn {
        display: none;
    }

    a#fortunehorse-bonus-pop-btn {
        padding: 18px 30px;
    }
}

@media (max-width: 720px) {

    .fortunehorse-bonus-btn,
    .fortunehorse-close-btn {
        width: 50px;
        height: 50px;
    }

    #fortunehorse-close-iframe img {
        position: relative;
        top: -2px;
    }

    #fortunehorse-demo-iframe,
    #fortunehorse-offer-link {
        white-space: nowrap;
        text-align: center;
        display: inline-block;
    }

    .fortunehorse-close-btn {
        background: #232a5c;
        right: 0;
        border-radius: 0 0 0 11px;
        font-size: 32px;
    }

    .fortunehorse-bonus-btn {
        left: 0;
        border-radius: 0 0 11px;
        padding-top: 6px;
    }

    .fortunehorse-bonus-content {
        padding: 26px 26px 46px;
        margin: 10px;
    }

    #fortunehorse-close-menu {
        right: 0;
    }
}

@media (max-width: 800px) {
    .fortunehorse-iframe-block {
        min-width: auto;
    }
}

@media (max-width: 500px) {
    .fortunehorse-iframe-block {
        min-height: 350px;
        height: 100%;
    }
}





/* TOC Styles */
.fortunehorse-toc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px 0 40px;
    margin: 0;
    display: block;
    column-count: 2;
    column-gap: 40px;
}

.fortunehorse-toc li {
    break-inside: avoid;
    margin-bottom: 10px;
}

.fortunehorse-toc li::marker {
    color: var(--link-text-color);
}

.fortunehorse-toc-wrapper {
    margin: 20px auto;
    border-radius: 10px;
    border: 1px solid var(--main-text-color);
}

.fortunehorse-toc-title {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 10px;
}

.fortunehorse-toc.fortunehorse-is-open {
    margin: inherit;
    margin-top: 0;
    max-height: 2000px !important;
}

.fortunehorse-toc-arrow {
    width: 20px;
    height: 21px;
    order: -1;
    display: inline-block;
    background-color: var(--main-text-color);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 21'><path d='M5.55054 7.1665L14.4489 7.1665C14.7429 7.1665 14.9777 7.26655 15.1534 7.46665C15.3291 7.66592 15.417 7.89882 15.417 8.16534C15.417 8.24899 15.4058 8.33632 15.3834 8.42735C15.3619 8.51756 15.3287 8.60407 15.284 8.6869L10.8114 15.8743C10.7076 16.0269 10.5886 16.1417 10.4544 16.2188C10.321 16.295 10.1697 16.3332 10.0003 16.3332C9.83099 16.3332 9.67963 16.295 9.54624 16.2188C9.41285 16.1425 9.29384 16.0277 9.1892 15.8743L4.71665 8.6869C4.67272 8.60407 4.63957 8.51674 4.61721 8.42489C4.59484 8.33304 4.58366 8.24571 4.58366 8.16288C4.58366 7.89554 4.67152 7.66264 4.84724 7.46419C5.02297 7.26573 5.2574 7.1665 5.55054 7.1665Z'/></svg>") no-repeat center/contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    transition: transform 0.3s ease;
}

.fortunehorse-toc-arrow.fortunehorse-rotated {
    transform: rotate(180deg);
    margin-bottom: -4px;
}

@media (max-width: 500px) {
    .fortunehorse-toc {
        column-count: 1;
    }
}