﻿:root {
    --font-family: 'DM Sans', sans-serif;
    --wrapper-width: 1200px;

    /* Colors */
    --color-primary: #000;
    --color-secondary: #8E8E8E;
    --color-secondary-disabled: #B396FF;
    --color-neutral: #FFFFFF;
    --color-neutral-200: #E1E1E1;
    --color-brand-600: #8252FF;
    --color-brand-700: #5324CE;
    --color-brand-800: #250A6C;
    --color-content-on-dark: #FFFFFF;
    --color-accent-secondary: #F4C000;
    --color-success-500: #36E152;

    --color-background-primary: #FAF8FF;
    --color-background-surface-brand: #8252FF;
    --color-background-surface-brand-60: #8252FF60;
    --color-background-surface-tertiary: #5324CE;
    --color-background-surface-secondary: #E8DFFF;
    --color-background-neutral: #FFFFFF;

    --color-border-primary: #E8DFFF;

    /* Helpers */
    --card-padding: 80px 56px;
}

body {
    background-color: var(--color-background-neutral);
    color: var(--color-primary);
}

img {
    pointer-events: none;
    /*display: block;*/
}

button {
    font-family: var(--font-family), sans-serif;
}

button.button-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    display: flex;
    gap: 8px;
}

/* Backgrounds */
.bg-primary {
    background-color: var(--color-background-primary);
}

.bg-surface-brand {
    background-color: var(--color-background-surface-brand);
}

.bg-surface-tertiary {
    background-color: var(--color-background-surface-tertiary);
}

.bg-surface-secondary {
    background-color: var(--color-background-surface-secondary);
}

.bg-surface-secondary-disabled {
    background-color: var(--color-secondary-disabled);
}

.bg-brand-800 {
    background-color: var(--color-brand-800);
}

.has-background-image {
    position: relative;
    overflow: hidden;
}

.has-background-image>* {
    z-index: 1;
}

.has-background-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.background-position-right::before{
    background-position: right;
    left: unset;
    right: 0;
    transform: unset;
    background-size: contain;
}

.rewards-image {
    justify-content: flex-end !important;
}

.radial-background-1::before {
    background-image: url('../image/radial-1.svg');
}

.radial-background-2::before {
    background-image: url('../image/radial-2.svg');
}

.radial-background-3::before {
    background-image: url('../image/radial-3.svg');
}

.radial-background-4::before {
    background-image: url('../image/radial-4.svg');
}

.radial-background-6::before {
    background-image: url('../image/radial-6.svg');
}

.radial-background-11::before {
    background-image: url('../image/radial-11.svg');
    right: -54px;
}

.radial-background-2 figure img,
.radial-background-1 figure img,
.radial-background-3 figure img,
.radial-background-4 figure img {
    max-height: 650px;
    object-fit: contain;
    padding-top: 3rem;
}

.images-height-80 img {
    max-height: 80px;
    width: auto;
}

.home-youtube-iframe {
    height: 467px;
    width: 80%;
    border-radius: 24px;
}

/* Typography */
.headline-s {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    letter-spacing: 0;
}

.headline-m {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
}

.headline-l {
    font-family: var(--font-family);
    font-size: 42px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: -0.84px;
}

.headline-xl {
    font-family: var(--font-family);
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    letter-spacing: -1.12px;
}

.headline-sub-headline {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: normal;
}

.text-title {
    color: var(--color-accent-secondary);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.28px;
    text-transform: uppercase;
}

.text-body-xs {
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: 0.32px;
}

.text-body-s {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.32px;
}

.text-body-bold {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.32px;
}

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

.text-primary {
    color: var(--color-primary);
}

.text-neutral {
    color: var(--color-neutral);
}

.text-secondary {
    color: var(--color-secondary);
}

.text-surface-secondary {
    color: var(--color-background-surface-secondary);
}

.text-brand-600 {
    color: var(--color-brand-600);
}

.text-center {
    text-align: center;
}

/* Layout */
.wrapper {
    max-width: var(--wrapper-width);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.content-container {
    gap: 80px;
}

.layout__grid-col-2 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.layout__grid-col-3 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.layout__grid-col-3.grid-no-gap {
    border-radius: 24px;
    overflow: hidden;
    gap: 0;
}

.layout__grid-col-3.justify-start .grid-card {
    align-items: flex-start !important;
}

.layout__flex-row {
    display: flex;
    gap: 56px;
    justify-content: center;
    align-items: center;
}

.align-items-start {
    align-items: flex-start !important;
}

.pawns-vs-table thead th:not(:last-child) {
    border-right: 1px solid #B396FF;
}

.pawns-vs-table tbody td:not(:last-child) {
    border-right: 1px solid #E8DFFF;
}

.pawns-vs-table-after {
    padding-top: 10px;
}

.pawns-vs-table-mobile tbody tr td[colspan="2"] {
    background-color: #E8DFFF;
}

.pawns-vs-table-mobile tbody tr:first-child td:first-child {
    border-radius: 16px 16px 0 0;
}

.pawns-vs-table-mobile td {
    border: unset;
    height: 56px;
    padding: 16px;
}

.pawns-vs-table-mobile table {
    background-color: #FAF8FF;
}

.pawns-vs-table-mobile {
    display: none;
}


.layout__with-headline {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: center;
}

.layout__with-headline-page-vs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
}

.layout__with-headline h2 {
    margin: 0;
    max-width: 794px;
}

/* Buttons */

.button-outline .wp-block-button__link {
    color: var(--color-content-on-dark);
    background: none;
    border: 1px solid var(--color-neutral);
    padding: 16px 24px;
    border-radius: 16px;
}

.button-outline.outline-border-brand .wp-block-button__link {
    padding: 10px 16px;
    border-color: var(--color-brand-600);
    background: none;
    color: var(--color-primary);
    line-height: 20px;
    font-size: 12px;
    font-weight: 700;
    height: 40px;
    border-radius: 8px;
}

.wp-block-button__link {
    text-wrap: unset;
    width: 100%;
}

/* Spacing */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.pawns-signup-button {
    background-color: #f5ff00;
    color: #000;
    width: max-content;
    margin-top: 20px;
}


/* Header */
.site-header {
    max-width: 1240px;
    display: flex;
    justify-content: center;
    background-color: var(--color-background-neutral);
    padding: 20px;
    transition: all 0.3s ease;
    border-radius: 16px;
}


.site-header>*:first-child,
.site-header>*:last-child {
    flex: 1;
}

.site-header>*:last-child {
    justify-content: flex-end;
}

header {
    top: 0;
    position: sticky;
    z-index: 99;
}

.sticky-header {
    box-shadow: 0px 0px 10px 0px #0000001A;
    z-index: 2;
    margin: 8px auto 0 !important;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
}

.site-header .wp-block-navigation__responsive-container-open {
    --hamburger-icon: url("https://pawns.app/app/themes/pawns/assets/css/assets/images/hamburger-dark.svg") !important;
}

.sticky-header .current-menu-item {
    background-color: var(--wp--preset--color--tertiary) !important;
}

.sticky-header a svg {
    color: var(--wp--preset--color--black) !important;
}

.sticky-header .site-header-button {
    background-color: var(--wp--preset--color--primary) !important;
}

.sticky-header .site-header-button .wp-block-navigation-item__label {
    color: var(--wp--preset--color--white);
}

.sticky-header .wp-block-navigation-item__label {
    color: var(--wp--preset--color--black);
}

.sticky-header .site-header {
    width: 100%;
    margin: 0 auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between !important;
    align-items: center;
    margin: 0 auto !important;
}

.header-content .wp-block-template-part {
    width: 100%;
}

.site-header .wp-block-navigation-item {
    border-radius: 8px;
    padding: 8px 16px;
    overflow: hidden;
}

.wp-block-navigation__responsive-container.is-menu-open {
    padding: 20px 32px;
}

.wp-block-navigation-link svg {
    vertical-align: bottom;
}

.header-download-link {
    max-width: max-content;
    margin-left: 10px;
}

.header-download-link .wp-block-navigation-link {
    overflow: unset !important;
}

.header-login-link {
    max-width: max-content;
}

.header-navigation-links {
    width: 63%;
}

/* Header language */

.choose-language-menu {
    cursor: pointer;
    position: relative;
    right: 30px;
    top: 7px;
    height: 32px;
    width: 32px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.choose-language-menu.active {
    background: #E8DFFF;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 172%;
    padding-top: 15px;
    padding-bottom: 5px;
    padding-right: 5px;
    padding-left: 5px;
    left: -24px;
    background: white;
    z-index: 1000;
    border-radius: 16px;
    min-width: 84px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

}

.language-dropdown.show {
    display: flex;
    flex-direction: column;
}

.language-item {
    display: flex !important;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 4px;
    justify-content: center;
}

.language-item:hover {
    background-color: #E8DFFF;
}

.language-item.active {
    font-weight: bold;
    background-color: #E8DFFF;
    padding-right: 20px;
    padding-left: 20px;
}

/* Downloads page */
.downloads-list {
    border: 1px #9972FF solid;
    border-radius: 16px;
    width: 400px;
    padding: 16px 16px 8px 16px;
}

.downloads-list p {
    font-weight: 700;
    font-size: 24px;
}

.downloads-hero-youtube iframe {
    max-width: unset;
}

.downloads-list ol {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: stepCounter;
    padding-top: 12px;
}

.downloads-list li {
    counter-increment: stepCounter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 8px;
    line-height: 32px;
    text-align: left;
}

.downloads-list li::before {
    content: counter(stepCounter);
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background-color: #8252FF;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
}

/* Footer */
footer .content-container {
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 80px;
    color: var(--color-neutral);
}

footer>.wp-block-group {
    background: var(--color-brand-800);
}

.footer__download {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.footer__download>p {
    color: var(--color-secondary-disabled);
}

.footer__download-links .wp-block-buttons {
    justify-content: center;
    gap: 20px;
}

.footer__download-links .wp-block-button__link {
    height: auto;
    box-sizing: border-box;
    padding: 9px 16px;
    display: flex;
    gap: 8px;
    background: var(--color-background-surface-tertiary);
    border: 1px solid var(--color-neutral);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.32px;
}

.footer__spacer {
    width: 100%;
    background-color: var(--color-background-surface-tertiary);
}

.footer__links .footer__spacer {
    display: none;
}

.footer__links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer__column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer__column .footer__title {
    color: var(--color-secondary-disabled);
    font-weight: 700;
    text-transform: uppercase;
}

.footer__column>.wp-block-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__column .wp-block-navigation__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.footer__socials {
    display: flex;
    gap: 12px;
}

.footer__bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.footer__partners {
    display: flex;
    width: 100%;
    gap: 18px;
    align-items: center;
}

.footer__partners p {
    font-size: 12px;
    padding-top: 7px;
    margin-right: 14px;
}

.footer__bottom-links {
    display: flex;
    gap: 20px;
}

.footer__bottom-links a,
.footer__column a {
    color: var(--color-neutral);
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 0.32px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__copyrights {
    color: var(--color-secondary-disabled);
}

/* New contact us */
.contact-us__radial-both-sides {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border-radius: 24px;
    background: var(--color-background-surface-secondary);
    padding: 56px;
    color: var(--color-primary);
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.contact-us-hero-img {
    margin: 0 !important;
}

.contact-us__radial-both-sides p {
    text-align: center;
}

.contact-us__radial-both-sides::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../image/contact-us-radial-right.svg');
    background-repeat: no-repeat;
    background-position: center left;
    background-size: auto 75%;
    z-index: -1;
    top: 64px;
    left: -45px;
    z-index: -1;
}

.contact-us__radial-both-sides::after {
    content: '';
    position: absolute;
    bottom: 37%;
    left: 48%;
    width: 200%;
    height: 200%;
    ;
    background-image: url('../image/contact-us-radial-left.svg');
    background-repeat: no-repeat;
    z-index: -1;
}

.contact-us__radial-both-sides::after {
    transform: rotate(338deg);
}

/* Cards */
.hero-card {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 40px 80px;
    border-radius: 24px;
    background-color: var(--color-background-surface-tertiary);
    position: relative;
}

.hero-card .hero-stickers {
    justify-content: flex-start;
    gap: 20px;
}

.pawns-download-button {
    display: flex;
    border: 1px solid;
    border-color: var(--download-action-section-border-color);
    padding: 7px;
    border-radius: 24px;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    width: min-content;
}

.pawns-download-button .text-gift {
    display: flex;
    gap: 4px;
    padding-right: 0px;
    align-items: center;
    min-width: 300px;
    max-width: 300px;
    width: auto;
    justify-content: center;
}

.survey-countries-page__hero-buttons .pawns-download-button .text-gift {
    color: unset;
}

.hero-homepage-v1 {
    display: grid;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 40px 80px;
    border-radius: 24px;
    background-color: var(--color-background-surface-tertiary);
    position: relative;
    --bg-radial-image: url('../image/radial-dark.svg');
    --download-action-section-color: #E8DFFF;
    --download-action-section-border-color: #B396FF;
}

.hero-homepage-v1::before {
    background-image: var(--bg-radial-image);
    background-position: center right;
    transform: translateX(-44%);
}

@media (max-width: 1110px) {
    .pawns-download-button .text-gift {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    /* Make money online page */
    .make-money-online .show-sign-up-desktop .pawns-signup-button{
        display: none !important; 
    }
    .make-money-online .hide-sign-up-desktop .pawns-signup-button{
        display: flex !important;
    }
    .make-money-online .list-with-checkmark{
        order: 99999;
        max-width: fit-content;
        margin: 30px auto 0 !important;
    }
    .make-money-online .pawns-download-button{
        padding: 0;
    }

}

.pawns-download-button svg {
    margin-right: 5px;
}

.hero-homepage-v1 .filled-inverted-button.accent-variant-300 {
    padding: 0 24px;
}

.hero-homepage-v1 .hero-stickers {
    justify-content: flex-start;
    gap: 20px;
}

/* November banner */

@keyframes slides-november {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.november-banner {
    overflow: hidden;
    white-space: nowrap;
    display: block;
    position: relative;
}

.november-banner-content {
    display: unset;
    padding-bottom: 0px;
}

.november-banner:before,
.november-banner:after {
    position: absolute;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 2;
}

.november-banner:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.november-banner:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.november-banner-items {
    display: inline-block;
    animation: 35s slides-november infinite linear;
}

.november-banner-items img {
    padding-right: 5px;
    padding-left: 5px;
    max-height: 48px;
}

/* Sign up card */
.sign-up-card {
    grid-column: 2;
    grid-row: 1 / 5;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
    border-radius: 16px;
    background-color: var(--color-background-neutral);
    border: 1px solid var(--color-neutral-200);
    color: var(--color-primary);
}

.sign-up-card .bonus-sticker {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background-color: var(--color-background-primary);
    color: var(--color-brand-600);
    border-radius: 8px;
}

.sign-up-card__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sign-up-card__form h3 {
    margin: 0;
    text-align: center;
}

.sign-up-card__form .form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sign-up-card__form .form-group label {
    text-align: left;
}

.sign-up-card__form .form-group .text-control {
    border-color: var(--color-border-primary);
}

.sign-up-card__form .form-group .text-control:focus {
    border-color: var(--color-brand-600);
}

.sign-up-card__form button.filled-inverted-button {
    width: 100%;
    margin-top: 8px;
    background-color: var(--color-background-surface-brand);
    color: var(--color-neutral);
}

.sign-up-card__social-logins {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.sign-up-card__social-logins .button {
    width: 100%;
}

.hero-homepage-image-v1 {
    grid-column: 2;
    grid-row: 1 / 5;
    display: flex;
    flex-direction: column;
    width: 100%;
    left: 70px;
    position: relative;
}

/* Grid card */

.grid-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 24px;
    gap: 16px;
    padding: var(--card-padding);
}

.grid-card.card-with-image {
    justify-content: flex-end;
}

.grid-no-gap .grid-card {
    border-radius: 0;
}

.grid-card.no-padding {
    padding: 0;
}

.card-fixed-padding {
    --card-padding: 56px;
}

.card-padding {
    padding: var(--card-padding);
}

.numbered-cards .card-fixed-padding {
    --card-padding: 40px;
}

.card-with-image {
    --card-padding: 0;
    align-items: center;
}

body:not(.home) .card-with-image.responsive-image figure:nth-of-type(2) {
    display: none;
}

.numbered-cards .grid-card {
    align-items: flex-start !important;
}

.grid-card .card-number {
    --number-size: 32px;
    width: var(--number-size);
    height: var(--number-size);
    line-height: var(--number-size);
    border-radius: 50%;
    background-color: var(--color-secondary-disabled);
    text-align: center;
}

.wp-block-embed__wrapper {
    border-radius: 24px;
}

.content-card {
    padding: var(--card-padding);
    display: flex;
    flex-direction: column;
}

.double-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
}

/* Helpers */
.row-align-top {
    align-items: flex-start;
}

.shrink-0 {
    flex-shrink: 0;
}

.w-100 {
    width: 100%;
}

.flex-1 {
    flex: 1;
}

.gap-0 {
    gap: 0 !important;
}

.primary-spacer {
    height: 56px;
}

/* Lists */
.list-custom {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-with-checkmark {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
}

.list-with-checkmark li {
    display: flex;
    gap: 12px;
    align-items: center;
}

.list-with-checkmark li::before {
    content: "";
    display: inline-block;
    height: 24px;
    min-width: 24px;
    max-width: 24px;
    background-image: url('../image/other-check.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.grid-card:has(.list-expandable) {
    gap: 56px;
}

.list-expandable {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0;
}

.list-expandable>.wp-block-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.list-expandable .wp-block-group>h2,
.list-expandable .wp-block-group>p {
    margin-left: 26px;
}

.list-expandable .wp-block-group>h2 {
    color: var(--color-secondary);
    margin-bottom: 0;
    cursor: pointer;
    transition: color 0.3s ease, margin-bottom 0.3s ease;
}

.list-expandable .wp-block-group>*:not(h2) {
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.list-expandable>.wp-block-group::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    max-height: 100%;
    width: 2px;
    border-radius: 1px;
    background-color: var(--color-secondary);
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
}

.list-expandable>.wp-block-group.active h2 {
    color: var(--color-primary);
    margin-bottom: 12px;
}

.list-expandable>.wp-block-group.active::before {
    background-color: var(--color-brand-600);
}

.list-expandable>.wp-block-group.active>*:not(h2) {
    visibility: visible;
    max-height: unset;
}

.list-expandable>.wp-block-group>p {
    transition: max-height 0.3s ease;
}

.list-expandable>.wp-block-group.active p {
    max-height: 72px;
}

.list-expandable button {
    margin-left: 26px;
}

.list-changes-image.disable-autoplay .list-expandable>.wp-block-group.active>p {
    overflow: hidden;
    max-height: 120px;
}

.list-changes-image.disable-autoplay .list-expandable>.wp-block-group.active>p.active {
    /*max-height: unset;*/
}

.list-expandable>.wp-block-group>p.active~svg {
    transform: rotate(180deg);
}

.list-expandable>.wp-block-group.active .button-link {
    margin-top: 24px;
}

.list-changes-image .images-slider {
    display: flex;
    flex-direction: row;
    gap: 0;
    overflow: hidden;
}

.list-changes-image .images-slider figure {
    min-width: 100%;
    justify-content: center;
    margin-left: 0;
    transition: margin-left 0.3s ease;
    text-align: center;
}

/* Images container */
.images-container {
    display: flex;
    overflow: hidden;
    gap: 20px;
}

/* Carousel shared */
.carousel__buttons {
    display: flex;
    gap: 24px;
}

.carousel__buttons.buttons-mobile {
    display: none;
}

.carousel__container.wrapper {
    display: flex;
    flex-direction: column;
    gap: 56px;
    width: 100%;
}

.carousel__container .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    gap: 24px;
    padding: 0 3px;
}

.carousel__container .swiper-pagination-bullet {
    --bullet-size: 48px;
    background: var(--wp--preset--color--primary);
    width: var(--bullet-size);
    height: var(--bullet-size);
    border-radius: 50%;
    color: var(--wp--preset--color--white);
    opacity: 1;
    transition: box-shadow 0.2s ease-in-out;
    cursor: pointer;
}

.carousel__container .swiper-pagination-bullet:hover {
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 1);
}

.carousel__container .swiper-pagination-bullet img {
    max-height: 20px;
    vertical-align: middle;
}

.carousel__content {
    display: flex;
    flex-direction: column;
    gap: 56px;
    width: 100%;
}

.carousel__title h2 {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 16px;
}

.carousel__title h2 img {
    max-height: 40px;
    vertical-align: middle;
}

.carousel__title p {
    max-width: 700px;
    margin: 0;
}

/* How to Get Started section */

.section__get-started,
.section__get-started .layout__grid-col-3 {
    gap: 56px;
}

/* Reviews slider */
.reviews-carousel__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.reviews-carousel__swiper {
    width: 100%;
    overflow: hidden;
    padding: 3px;
}

.reviews-carousel__item {
    display: flex !important;
    flex-direction: column;
    gap: 32px;
    background: var(--color-background-primary);
    border: 1px solid var(--color-border-primary);
    border-radius: 16px;
    padding: 32px;
    margin-right: 20px;
    height: auto !important;
    justify-content: space-between;
}

.reviews-carousel__item.swiper-slide {
    max-width: calc(33.3333% - 13px);
}

.reviews-carousel__item img {
    width: max-content;
    height: auto;
    max-width: 100%;
    max-height: 20px;
}

.reviews-carousel__item-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.reviews-carousel__item h3,
.reviews-carousel__item p {
    margin: 0;
}

.reviews-carousel__item p {
    display: -webkit-box;
    line-clamp: 8;
    -webkit-line-clamp: 8;
    -moz-box-orient: vertical;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Youtube slider */
.youtube-video__container {
    padding-top: 0;
}

.youtube-video__container h3 {
    margin-top: 0;
}

.youtube-video__container iframe {
    width: 100%;
    max-width: 854px;
    aspect-ratio: 16 / 9;
}

.youtube-video__container {
    padding-top: 0;
    padding-bottom: 0;
}

.youtube-video__container h3 {
    margin-top: 0;
}

.youtube-video__container iframe {
    width: 100%;
    max-width: 854px;
    aspect-ratio: 16 / 9;
}

.youtube-carousel__content h2 {
    margin: 0;
}

.youtube-carousel__content h3 {
    color: #000;
    font-family: var(--wp--preset--font-family--dm-sans);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    text-align: left;
    margin: 0;
}

.youtube-carousel__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.youtube-carousel__swiper {
    width: 100%;
    overflow: hidden;
    padding: 3px;
}

.youtube-carousel__item.swiper-slide {
    background: var(--wp--preset--color--white);
    border: 1px solid var(--wp--preset--color--tertiary);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    height: auto;
    max-width: calc(25% - 15px);
    margin-right: 20px;
    cursor: pointer;
    transition: box-shadow 0.2s ease-in-out;
}

.youtube-carousel__item:hover {
    box-shadow: 3px 3px 0px #000000;
}

.youtube-carousel__item .image-container {
    border-bottom: 1px solid var(--wp--preset--color--tertiary);
    aspect-ratio: 2 / 1;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.youtube-carousel__item img.thumbnail {
    width: auto;
    height: 160%;
}

.youtube-carousel__item img.play-button {
    width: 68px;
    height: 68px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.youtube-carousel__item h4 {
    font-family: var(--wp--preset--font-family--dm-sans);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.32px;
    margin: 20px;
    display: -webkit-box;
    max-height: 72px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-container {
    overflow: hidden;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    padding: 16px 8px;
}

.video-container iframe {
    max-width: 800px;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
}

.heading-sm {
    font-size: 42px;
    font-weight: 700;
    line-height: 56px;
}

/* Partners cards */
.partners-cards {
    width: 100%;
    column-count: 3;
    column-gap: 20px;
    row-gap: 20px;
}

.partners-cards>.wp-block-group:not(:nth-child(4)) {
    padding-bottom: 20px;
}

.partners-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--color-neutral);
    border: 1px solid var(--color-border-primary);
    height: auto;
    /*margin-bottom: 20px;*/
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

.partners-card img {
    display: block;
    margin: 40px;
    width: auto;
    height: 56px;
}

.partners-card p {
    background-color: var(--color-background-surface-secondary);
    padding: 40px;
}

/* About us page */
.about-us-hero.radial-background::before {
    background-image: url('../image/radial-about-us.svg');
    background-position: center right;
    background-size: auto 100%;
}

.about-us-hero {
    padding: 80px 0 80px 80px;
    justify-content: space-between;
}

.opportunities-image {
    padding: 16px;
}

.opportunities-image::before {
    background-position-y: -80px;
}

.justify-child-center>* {
    justify-content: center;
}

.about-us__radial-both-sides {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border-radius: 24px;
    background: var(--color-background-surface-tertiary);
    padding: 56px;
    color: var(--color-neutral);
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.about-us__radial-both-sides::before,
.about-us__radial-both-sides::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/radial-about-us-desktop.svg');
    background-repeat: no-repeat;
    background-position: center left;
    background-size: auto 100%;
    z-index: -1;
}

.about-us__radial-both-sides::after {
    transform: rotate(180deg);
}

/* Blog archive */
.page-template-archive .content-container,
.archive .content-container {
    gap: 40px;
}

.wp-block-categories {
    display: flex;
    flex-wrap: nowrap;
    padding: 0 24px 40px;
    gap: 4px;
}

.wp-block-categories::-webkit-scrollbar {
    display: none;
}

.archive .wp-block-categories,
.page-template-archive .wp-block-categories {
    overflow-x: scroll;
    max-width: fit-content !important;
}

.wp-block-categories .cat-item {
    display: flex;
    min-width: fit-content;
}

.wp-block-categories .cat-item a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    border-radius: 8px;
    transition: background-color 0.3s ease-in-out;
}

.archive .wp-block-categories .cat-item a:hover,
.page-template-archive .wp-block-categories .cat-item a:hover {
    background-color: var(--color-background-primary);
}

.wp-block-categories .current-cat a {
    background: var(--color-background-surface-secondary);
}

.layout__posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: min-content;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}

.wp-block-categories a,
.wp-block-post-title a {
    color: #000;
}

.layout__posts-grid h2.wp-block-post-title {
    font-size: 24px;
    line-height: 34px;
}

.content-container>.wp-block-query {
    width: 100%;
}

.wp-block-post {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    align-items: center;
    margin-bottom: 16px !important;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0);
    transition: box-shadow 0.3s ease-in-out;
    border-radius: 16px;
    position: relative;
}

.wp-block-post:hover {
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
}

.sticky-posts .wp-block-post {
    box-shadow: none;
}

.wp-block-post .wp-block-post-date {
    width: 100%;
}

.wp-block-post .wp-block-post-excerpt__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.wp-block-post .wp-block-post-excerpt__more-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}

.wp-block-post .wp-block-post-featured-image {
    margin: 0 0 8px;
    min-height: 180px;
    max-height: 220px;
    height: 24vw;
    width: 100%;
}

.wp-block-post .wp-block-post-featured-image a {
    display: contents;
}

.wp-block-post .wp-block-post-featured-image img {
    object-fit: cover;
    height: 100%;
}

.post__page-content .wp-block-image,
.wp-block-post-featured-image {
    border-radius: 8px;
    overflow: hidden;
}

h2.wp-block-post-title a {
    text-decoration: none;
}

.wp-block-post-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    align-self: flex-start;
}

.wp-block-post-terms a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px 10px;
    background: var(--wp--preset--color--tertiary);
    color: var(--wp--preset--color--primary);
    border-radius: 8px;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.02em;
    font-weight: 700;
    text-transform: uppercase;
    font-family: inherit;
    text-decoration: none;
}

.wp-block-post-terms__separator {
    display: none;
}

.wp-block-post .post-date {
    width: 100%;
    color: #8E8E8E;
}

.wp-block-post .post-date>* {
    display: inline;
}

.sticky-posts .wp-block-post {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
}

.sticky-posts .wp-block-post .wp-block-post-title {
    margin-bottom: 8px;
}

.sticky-posts .wp-block-post .wp-block-post-terms {
    margin-bottom: 24px;
}

.sticky-posts .wp-block-post .wp-block-post-excerpt__excerpt {
    margin-bottom: 24px;
    -webkit-line-clamp: 2;
}

.sticky-posts .wp-block-post>figure {
    min-height: unset;
    max-height: unset;
    margin: 0;
    height: 100%;
}

.sticky-posts .wp-block-post>figure img {
    object-fit: cover;
    height: 100%;
}

.wp-block-query-pagination {
    gap: 8px;
    align-items: center;
}

.wp-block-query-pagination-numbers {
    display: flex;
    gap: 8px !important;
    align-items: center;
    margin: 0 !important;
}

.wp-block-query-pagination .page-numbers {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 4px;
    color: var(--color-primary);
    transition: background-color 0.3s ease-in-out;
}

.wp-block-query-pagination .page-numbers:not(.dots):hover {
    background-color: var(--color-background-primary);
}

.wp-block-query-pagination .page-numbers.current {
    background: var(--color-background-surface-secondary);
}

.wp-block-query-pagination-previous,
.wp-block-query-pagination-next {
    margin: 0 !important;
}

.wp-block-query-pagination-previous img,
.wp-block-query-pagination-next img {
    display: block;
}

/* Single post */
.back-link {
    text-decoration: none;
    color: var(--color-primary);
}

.single .content-container {
    gap: 32px;
}

.post__page-container {
    width: 100%;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr min-content;
    grid-template-rows: auto;
    align-items: flex-start;
    justify-content: space-between;
    grid-template-areas: "content aside";
}

.post__aside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-area: aside;
    width: 28vw !important;
    max-width: 284px;
    min-width: 254px;
    height: 100%;
}

.post__page-container main .top-block {
    display: none;
    margin-top: 24px;
}

.post__aside .top-block {
    flex: 1;
}

.post__aside .sticky-area {
    position: sticky;
    top: 120px;
    padding-bottom: 32px;
}

.post__aside .bottom-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog__toc ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
}

.blog__toc li a {
    text-decoration: none;
    color: var(--color-primary);
}

.blog__toc li a.active,
.blog__toc li a:hover {
    color: var(--color-brand-600);
}

.blog__toc>h4 {
    margin: 0 0 24px;
}

.post__page-container .wp-block-post-content:is(.wp-block-image, .wp-block-post-featured-image) {
    margin: 32px auto;
}

.post__page-container .wp-block-post-content p {
    margin: 8px 0;
}

.post__page-container h1.wp-block-post-title {
    margin: 24px 0;
}

.post__page-container>main.wp-block-group {
    max-width: 800px;
}

.post__page-container .wp-block-post-content h2 {
    font-size: var(--wp--custom--typography--font-size--headline-m);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: var(--wp--custom--typography--line-height--headline-m);
}

.post__page-container .wp-block-post-content :is(h2, h3, h4) {
    margin: 16px 0;
}

.wp-block-query-pagination {
    padding: 40px var(--additional-padding-on-mobile);
}

.post__aside-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
}

.post__aside-categories .cat-item {
    width: 100%;
    height: 40px;
    border: 1px solid var(--color-border-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    font-weight: 700;
}

.post__aside-categories .cat-item a {
    padding: 0;
}

.post__related {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 56px;
    padding-top: 48px;
}

.blog__download-banner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    padding: 32px;
    border-radius: 16px;
    background-color: var(--color-background-surface-tertiary);
    background-image: url('../image/radial-download-banner.svg');
    background-position: bottom center;
    background-repeat: no-repeat;
    color: var(--color-neutral);
    text-align: center;
}

.post__page-container main .blog__download-banner {
    background-image: url('../image/radial-download-banner-wide.svg');
    background-size: cover;
    background-position-y: 60px;
}

.blog__share-wrapper {
    display: flex;
    gap: 32px;
    justify-content: flex-start;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #EBEBEB;
}

/* Blog author */
.author__wrapper {
    border-radius: 16px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
    padding: 32px;
    border: 1px solid var(--color-border-primary);
}

.author__layout-short .author__last-updated {
    font-size: 14px;
    color: #8E8E8E;
}

.single .author__layout-short {
    border-bottom: 1px solid #EBEBEB;
}

.author__layout-long {
    border: 1px solid #EBEBEB;
    border-left: 0;
    border-right: 0;
}

.author__layout-long .author__main-info {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}

.author__layout-long .author__main-info>.wp-block-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    justify-content: center;
}

.author__name {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 400;
}

.author__layout-long .author__name {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
}

.author__layout-long .author__main-info p {
    margin: 0;
}

.author__layout-long .author__bio {
    margin-top: 20px;
}

/* Author archive */
.page-author__layout {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
}

.page-author__image {
    border-radius: 50%;
    overflow: hidden;
    width: 120px;
    height: 120px;
    margin-bottom: 32px;
}

.page-author__position {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: var(--color-brand-700);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.page-author__linkedin {
    display: flex;
    align-items: center;
    flex-direction: row;
    color: #747474;
    gap: 5px;
    text-transform: none;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 18px;
}

.page-author__name {
    margin-top: 0;
    margin-bottom: 12px;
}

.page-author__bio {
    max-width: 794px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 24px;
}

.page-author__articles-count {
    margin: 0;
    color: var(--color-secondary);
}

/* Accordion */
.faq-block {
    flex-wrap: wrap !important;
}

.faq-info h2 {
    margin: 0 0 16px !important;
}

.faq-info h2,
.faq-info p {
    width: max-content;
}

.wp-block-ub-content-toggle .wp-block-ub-content-toggle-accordion {
    margin-bottom: 16px;
    border: 1px solid var(--color-border-primary) !important;
    border-radius: 16px;
    background-color: var(--color-background-primary);
    padding-right: 12px;
}

.wp-block-ub-content-toggle .wp-block-ub-content-toggle-accordion-title {
    padding: 19px 0 19px 24px;
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
}

.content-container {
    padding-top: 32px;
}

.wp-block-ub-content-toggle {
    flex: 1;
    padding: 0;
    max-width: unset;
}

.faq__show-more {
    flex-basis: 100%;
    margin: 20px auto 0 !important;
}

/* Payouts in new section */
.payouts-in-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 1px solid var(--color-background-surface-secondary);
    border-radius: 16px;
    background: var(--color-background-neutral);
    text-align: center;
    margin-right: 10px;
}

.payouts-in-card {
    height: 128px !important;
    display: flex !important;
}

.payouts-in-card__name {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-primary);
}

.payouts-in-ontent-container {
    width: 100%;
    overflow: hidden;
    padding: 0 0 24px;
    position: relative;
}

/* Payouts in section */

.section__payouts-in {
    width: 100%;
}

.section__payouts-in>p {
    margin-bottom: 12px;
}

.payouts-in__wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    width: 100%;
    gap: 16px;
    justify-content: space-between;
    padding: 0;
}

.payouts-in__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding: 0;
    border: 1px solid var(--color-background-surface-secondary);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    height: 128px;
}

.payouts-in__item .wp-block-image {
    display: flex;
    height: 100%;
    align-items: center;
}

.payouts-in__item figure,
.payouts-in__item p.headline-l {
    margin: auto;
}

.payouts-in__item p.headline-l {
    width: 100%;
    text-align: center;
}

.payouts-in__item p:not(.headline-l) {
    background-color: var(--color-background-primary);
    padding: 16px;
    border-top: 1px solid var(--color-background-surface-secondary);
    text-align: center;
}

.payouts-in__item.tablet-visible {
    display: none;
}

.earnings-select__wrapper {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 56px 0 24px !important;
}

.content-card:has(.earnings-select__wrapper)>p {
    max-width: 794px;
    margin: auto;
    text-align: center;
}

.earnings-select__options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
}

.selection-option {
    display: flex;
    padding: 8px 16px;
    border: 1px solid var(--color-border-primary);
    border-radius: 16px;
    cursor: pointer;
    height: 84px;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0);
    transition: box-shadow 0.3s ease-in-out, background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.selection-option.active {
    background: var(--color-background-surface-secondary);
    border-color: var(--color-background-surface-brand);
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
}

.selection-option__row {
    display: flex;
    gap: 4px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.earnings-select__results-col {
    max-width: 460px;
}

.earnings-select__results {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
    max-width: 460px;
}

.earnings-select__result-box {
    line-height: 84px;
    background: var(--color-background-surface-secondary);
    width: 100%;
    border-radius: 12px;
    text-align: center;
}

.variable-image .show-on-tablet,
.variable-image .show-on-mobile {
    display: none;
}

.variable-image figure,
.variable-image img {
    width: 100%;
    height: auto;
}

/* Table to compare */
.table__compare {
    width: 100%;
}

.table__compare table {
    border-collapse: separate;
    border-spacing: 0 4px;
}

.table__compare thead,
.table__compare td,
.table__compare th {
    border: 0;
}

.table__compare td,
.table__compare th {
    padding: 16px 32px;
}

.table__compare tr {
    border-radius: 16px;
}

.table__compare thead tr {
    background: var(--color-background-surface-secondary)
}

.table__compare tbody tr {
    background: var(--color-background-primary);
}

.table__compare thead th:first-child,
.table__compare tbody td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.table__compare thead th:last-child,
.table__compare tbody td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.table__compare tbody td:first-child {
    text-wrap: nowrap;
}


/* Welcome Page */

.welcome-hero-image {
    top: 10vw;
    position: relative;
    max-height: 300px;
}

.refferal-button a {
    background-color: #8252FF;
    margin-top: 20px;
}

.entry-content:has(.hidden-overflow) {
    overflow-x: hidden;
}

.community-1-about-carousel-container,
.community-2-about-carousel-container,
.community-3-about-carousel-container {
    margin-bottom: -60px;
}

.layout__hero-header-2 {
    position: relative;
    z-index: 1;
    overflow: hidden;
    gap: 40px;
    padding-top: 129px;
    padding-right: 44px;
    padding-bottom: 129px;
    padding-left: 80px;
}

.layout__hero-header-2::before {
    content: "";
    position: absolute;
    width: 985px;
    height: 985px;
    left: 610px;
    background: #250a6c;
    opacity: 0.3;
    border-radius: 50%;
    z-index: -1;
}

.layout__hero-header-2 .wp-block-heading {
    font-size: 56px;
    line-height: 64px;
}

.layout__hero-header-2 ul {
    list-style: none;
    padding: 0;
}

.layout__hero-header-2 li {
    position: relative;
    line-height: 30px;
    padding-left: 40px;
    margin-bottom: 8px;
}

.layout__hero-header-2 li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url('../image/list_arrow_right.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.features-carousel-container.swiper,
.benefits-carousel-container.swiper,
.team-onscreen-carousel-container.swiper,
.team-creative-carousel-container.swiper,
.partners-about-carousel-container.swiper,
.community-1-about-carousel-container.swiper,
.community-2-about-carousel-container.swiper,
.community-3-about-carousel-container.swiper {
    overflow: visible;
}

.features-carousel-container .swiper-wrapper,
.benefits-carousel-container .swiper-wrapper,
.partners-about-carousel-container .swiper-wrapper {
    gap: 20px;
}

.team-creative-carousel-container .swiper-wrapper,
.team-onscreen-carousel-container .swiper-wrapper {
    gap: 24px;
}

.features-carousel-container .carousel-nav,
.benefits-carousel-container .carousel-nav,
.team-creative-carousel-container .carousel-nav,
.team-onscreen-carousel-container .carousel-nav {
    gap: 20px;
}

.features-carousel-container .swiper-slide,
.benefits-carousel-container .swiper-slide {
    width: 328px;
    height: auto;
}

.team-creative-carousel-container .swiper-slide,
.team-onscreen-carousel-container .swiper-slide {
    width: 260px;
    min-width: 260px;
    height: 406px;
}

.partners-about-carousel-container .swiper-slide {
    width: 387px;
    height: auto;
    min-width: 387px;
    background-color: #E8DFFF;
    box-shadow: 0px 4px 20px 0px #0000001A;
}

.community-1-about-carousel-container .swiper-slide,
.community-3-about-carousel-container .swiper-slide {
    width: 672px;
    min-width: 672px;
}

.community-2-about-carousel-container .swiper-slide {
    width: 532px;
    min-width: 532px;
}

.partners-about-carousel-container .swiper-slide>.wp-block-group:first-of-type {
    height: 136px;
    padding: 40px;
    align-content: center;
    background-color: #FFFFFF;
}

.partners-about-carousel-container .swiper-slide>.wp-block-group:nth-of-type(2) {
    padding: 40px;
}

.features-carousel-container .swiper-slide .wp-block-heading,
.benefits-carousel-container .swiper-slide .wp-block-heading {
    margin-bottom: 8px;
}

.features-carousel-container .swiper-button-prev,
.features-carousel-container .swiper-button-next,
.benefits-carousel-container .swiper-button-prev,
.benefits-carousel-container .swiper-button-next,
.team-creative-carousel-container .swiper-button-prev,
.team-creative-carousel-container .swiper-button-next,
.team-onscreen-carousel-container .swiper-button-prev,
.team-onscreen-carousel-container .swiper-button-next {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    position: inherit;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.features-carousel-container .swiper-button-next::after,
.features-carousel-container .swiper-button-prev::after,
.benefits-carousel-container .swiper-button-next::after,
.benefits-carousel-container .swiper-button-prev::after,
.team-creative-carousel-container .swiper-button-next::after,
.team-creative-carousel-container .swiper-button-prev::after,
.team-onscreen-carousel-container .swiper-button-next::after,
.team-onscreen-carousel-container .swiper-button-prev::after {
    content: none;
}

.features-carousel-container .swiper-button-prev img,
.benefits-carousel-container .swiper-button-prev img,
.team-creative-carousel-container .swiper-button-prev img,
.team-onscreen-carousel-container .swiper-button-prev img {
    transform: rotate(180deg);
}

.team-creative-carousel-container .swiper-button-prev,
.team-creative-carousel-container .swiper-button-next,
.team-onscreen-carousel-container .swiper-button-prev,
.team-onscreen-carousel-container .swiper-button-next {
    width: 48px;
    height: 48px;
}

.layout__steps {
    max-width: 794px;
}

.layout__steps .steps-card {
    position: relative;
}

.layout__steps .wp-block-group-is-layout-grid {
    row-gap: 32px;
    column-gap: 20px;
    padding: 40px;
}

.layout__steps .arrow-down {
    position: absolute;
    left: 45%;
    right: 45%;
    bottom: -30px;
}

.layout__steps .arrow-down.show-mobile {
    display: none;
}

.layout__info-banner-2 {
    padding: 56px;
}

.layout__info-banner-2 p {
    font-size: 22px;
    line-height: 30px;
}

.layout__info-banner-2 .cta-mobile,
.about-us__radial-both-sides .cta-mobile {
    display: none;
}

.about-card {
    padding: 56px;
    gap: 56px;
}

.about-card .wp-block-image {
    min-width: 188px;
}

.about-card p,
.about-facts p {
    font-size: 22px;
    line-height: 30px;
}

.about-feature-card {
    padding: 56px;
    gap: 16px;
}

.about-feature-card .wp-block-image {
    padding-bottom: 16px;
}

.about-feature-card .wp-block-heading {
    padding-bottom: 8px;
}

.about-feature-card strong {
    padding-bottom: 8px;
}

.about-feature-card ul {
    list-style: none;
    padding: 0;
}

.about-feature-card li {
    position: relative;
    line-height: 24px;
    padding-left: 32px;
    padding-bottom: 8px;
}

.about-feature-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    padding-bottom: 8px;
    background-image: url('../image/other_check.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.about-connect {
    gap: 56px;
}

.about-connect .row-wrapper {
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch;
}

.about-connect .row-wrapper-middle {
    margin-bottom: 24px;
}

.about-connect .row-wrapper-middle a {
    color: #000000;
    font-weight: 400;
}

.about-connect .row-wrapper-bottom {
    display: flex;
    gap: 32px;
    justify-content: center;
}

.about-connect .row-wrapper-bottom .wp-block-group {
    gap: 8px;
    align-items: start;
}

.about-connect .row-wrapper-bottom img {
    min-width: 25px;
}

.about-social-icons {
    gap: 8px;
}

.welcome-influencers-p {
    font-size: 14px;
}

.welcome-influencers-headline {
    font-size: 22px;
}

@media (max-width: 1300px) {
    .site-header {
        margin: 0 !important;
        max-width: 100%;
        border-radius: 0;
    }

    .content-container {
        max-width: 1200px !important;
        padding: 32px;
    }
}

@media (max-width: 1263px) {
    .site-header {
        padding: 20px 32px;
    }

    .content-container {
        padding: 32px;
    }

    .youtube-carousel__item.swiper-slide {
        max-width: calc(33.3333% - 13px);
    }

    .reviews-carousel__item.swiper-slide {
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 1200px) {
    .site-header {
        gap: 24px;
    }

    .site-header .wp-block-navigation {
        order: 3;
    }

    .payouts-in__wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px 20px;
    }

    .payouts-in__item.tablet-visible {
        display: flex;
    }

    .header-download-link {
        display: none !important;
    }

    .header-login-link {
        max-width: unset;
    }

    .header-navigation-links {
        width: auto;
    }

    .header-navigation-links {
        max-width: unset;
    }

    .language-dropdown {
        display: none;
        position: absolute;
        top: 172%;
        left: unset;
        padding: 10px;
        background: white;
        z-index: 1000;
        border-radius: 16px;
        min-width: 84px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .language-dropdown.show {
        display: grid;
        flex-direction: row;
        gap: 15px;
        grid-template-columns: repeat(4, 1fr);
    }

    .choose-language-menu {
        right: unset;
    }
}

@media (max-width: 1110px) {
    .layout__grid-col-3:not(.about-us__values-grid, .break-mobile) {
        grid-template-columns: 1fr;
    }

    .layout__with-headline {
        gap: 40px;
    }

    .hero-homepage-image-v1 {
        left: 0px;
    }

    .pawns-download-button {
        display: flex;
        flex-direction: column;
        border: none;
        gap: 0px;
        align-items: center;
        width: 100%;
    }

    .pawns-download-button .filled-inverted-button {
        width: 100%;
    }

    .downloads-hero-youtube iframe {
        max-width: 100%;
    }

    .pawns-download-button p {
        font-size: 12px;
    }

    .hero-card.hero-about .wp-block-heading {
        text-align: center;
    }

    .about-card {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    /* Hero card AB-TEST-ORIGINAL */
    .hero-card {
        flex-direction: column;
        text-align: center;
        padding: 56px;
    }

    .home .hero-card {
        gap: 24px;
    }

    .home .hero-card h2 {
        margin: 0 !important;
    }

    .home .hero-card .list-custom.list-with-checkmark {
        order: 5;
        margin-top: 16px;
    }

    .hero-card .sign-up-card {
        margin-top: 16px;
    }

    .hero-card .home-page__buttons {
        padding-top: 0 !important;
        margin-top: 16px;
    }

    .hero-card h2 {
        text-align: center;
    }

    .hero-card .home-page__buttons {
        justify-content: center;
    }

    .hero-card .hero-stickers {
        justify-content: center;
    }

    .hero-homepage-v1 {
        flex-direction: column;
        text-align: center;
        padding: 56px;
        display: flex;
    }

    .home .hero-homepage-v1 {
        gap: 24px;
    }

    .home .hero-homepage-v1 h2 {
        margin: 0 !important;
    }

    .home .hero-homepage-v1 .list-custom.list-with-checkmark {
        order: 5;
        margin-top: 16px;
    }

    .hero-homepage-v1 .sign-up-card {
        margin-top: 16px;
    }

    .hero-homepage-v1 .home-page__buttons {
        padding-top: 0 !important;
        margin-top: 16px;
    }

    .hero-homepage-v1 h2 {
        text-align: center;
    }

    .hero-homepage-v1 .home-page__buttons {
        justify-content: center;
    }

    .hero-homepage-v1::before {
        background-position: center bottom;
        transform: translateX(-50%);
    }

    .hero-homepage-v1 .hero-stickers {
        justify-content: center;
    }

    .downloads-list ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .downloads-list li {
        width: 300px;
    }

    .downloads-hero-headline {
        text-align: center;
    }


    /* FAQ */
    .faq-block {
        width: 100%;
        flex-direction: column;
    }

    .faq-info>* {
        width: auto !important;
        max-width: unset !important;
    }

    .layout__grid-col-3 .grid-card {
        align-items: center;
    }

    .earnings-select__wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .earnings-select__wrapper>div.wp-block-group {
        width: 100%;
        align-items: center;
    }

    .earnings-select__wrapper>div.wp-block-group>p {
        text-align: center;
    }

    .earnings-select__results,
    .earnings-select__results-col {
        max-width: unset;
    }

    .about-us-hero {
        padding: 56px;
    }

    .hero-contact .text-neutral {
        margin-right: 0px !important;
    }

    .about-us-hero.radial-background::before {
        background-image: url('../image/radial-about-us-bottom.svg');
        background-position: center 250px;
        background-size: 100%;
    }

    .footer__socials {
        gap: 4px;
    }

    /* Downloads page */
    .downloads-list {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 1053px) {
    .layout__hero-header-2 {
        padding: 56px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 102px;
    }

    .layout__hero-header-2::before {
        left: 50%;
        right: 50%;
        top: 420px;
        transform: translateX(-50%);
    }

    .layout__hero-header-2 .wp-block-heading {
        text-align: center;
    }

    .about-connect .row-wrapper-bottom {
        display: grid;
        grid-template-columns: 455px;
    }

    .partners-about-carousel-container {
        gap: 40px;
    }

    .features-carousel-container h2,
    .benefits-carousel-container h2,
    .community-heading,
    .partners-about-carousel-container h2,
    .community-about-carousel-container h2,
    .about-connect h2 {
        font-size: 42px;
        line-height: 56px;
    }

    .features-carousel-container.swiper,
    .benefits-carousel-container.swiper,
    .team-creative-carousel-container.swiper,
    .team-onscreen-carousel-container.swiper,
    .partners-about-carousel-container.swiper,
    .community-1-about-carousel-container.swiper,
    .community-2-about-carousel-container.swiper,
    .community-3-about-carousel-container.swiper {
        overflow: clip;
    }

    .team-creative-carousel-container>.wp-block-group:first-child,
    .team-onscreen-carousel-container>.wp-block-group:first-child {
        display: block;
    }

    .features-carousel-container>.wp-block-group:first-child,
    .benefits-carousel-container>.wp-block-group:first-child {
        justify-content: center;
        text-align: center;
    }

    .team-creative-carousel-container h2,
    .team-onscreen-carousel-container h2 {
        max-width: 524px;
        font-size: 42px;
        line-height: 56px;
    }

    .features-carousel-container .carousel-nav,
    .benefits-carousel-container .carousel-nav {
        display: none;
    }

    .team-creative-carousel-container .carousel-nav,
    .team-onscreen-carousel-container .carousel-nav {
        justify-content: end;
    }

    .partners-about-carousel-container .swiper-wrapper {
        gap: 24px;
    }

    .features-carousel-container .swiper-slide,
    .benefits-carousel-container .swiper-slide {
        width: 366px;
    }

    .partners-about-carousel-container .swiper-slide {
        width: 380px;
        min-width: 380px;
        margin-bottom: 20px;
    }

    .layout__info-banner-2 {
        flex-direction: column;
        text-align: center;
    }

    .layout__info-banner-2 h2 {
        font-size: 42px;
        line-height: 56px;
    }

    .layout__info-banner-2 .wp-block-group {
        flex-basis: auto;
        order: 2;
        align-items: center;
    }

    .layout__info-banner-2 .cta-desktop,
    .about-us__radial-both-sides .cta-desktop {
        display: none;
    }

    .layout__info-banner-2 .cta-mobile,
    .about-us__radial-both-sides .cta-mobile {
        display: block;
    }
}

@media (max-width: 1003px) {
    .post-layout__related li:last-child {
        display: none;
    }

    body:not(.home) .card-with-image.responsive-image figure:nth-of-type(1) {
        display: none;
    }

    body:not(.home) .card-with-image.responsive-image figure:nth-of-type(2) {
        display: block;
    }

}

@media (max-width: 995px) {
    .partners-cards {
        column-count: 2;
    }

    .contact-us__radial-both-sides::after {
        transform: rotate(337deg);
    }

    .contact-us__radial-both-sides::after {
        bottom: -36%;
        left: 61%;
        top: unset;
    }

    .partners-cards>.wp-block-group:nth-child(4) {
        padding-bottom: 20px;
    }

    .partners-cards>.wp-block-group:nth-child(3) {
        padding-bottom: 0;
    }

    .home-page__earnings-container {
        flex-direction: column;
    }

    .home-page__earnings-result {
        max-width: unset;
        width: 100%;
    }

    .about-us__values-grid {
        grid-template-columns: 1fr;
    }

    .opportunities-image::before {
        background-position-y: unset;
    }

    .about-us__radial-both-sides::before,
    .about-us__radial-both-sides::after {
        background-image: url('../image/radial-about-us-tablet.svg');
    }

    /* Footer */
    footer .content-container {
        padding-bottom: 56px;
    }

    .footer__download {
        flex-direction: column;
    }

    .footer__links {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 40px;
    }

    .footer__links .footer__contacts {
        order: 9;
        grid-column: span 3;
    }

    .footer__links .footer__contacts {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .footer__links .footer__spacer {
        display: block;
        order: 8;
        grid-column: span 3;
    }

    .features-carousel-container .swiper-slide,
    .benefits-carousel-container .swiper-slide {
        width: 290px;
    }
}

@media only screen and (min-width: 820px) {
    .new-blog-sidebar {
        background-position: 0 -125%;
    }

    .blog-sidebar-desktop {
        display: flex;
    }

    .blog-sidebar-mobile {
        display: none;
    }

}

@media (max-width: 820px) {
    .blog-sidebar-desktop {
        display: none;
    }

    .blog-sidebar-mobile {
        display: flex;
    }

    .pawns-signup-button {
        width: 100%;
    }

    .tablet-filled-on-dark {
        width: 100%;
    }

    .hero-homepage-v1 .home-page__buttons a,
    .hero-homepage-v1 .home-page__buttons .wp-block-buttons {
        width: 100%;
    }

    .tablet-filled-on-dark .wp-block-button__link {
        width: 100%;
        color: var(--color-primary);
        background-color: var(--color-background-neutral);
    }

    .tablet-filled-on-dark .wp-block-button__link svg path {
        fill: var(--color-primary);
    }

    .content-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    /* Layout */
    .layout__grid-col-2:not(.break-mobile) {
        grid-template-columns: 1fr;
    }

    .double-card .layout__grid-col-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .youtube-carousel__item.swiper-slide {
        max-width: calc(50% - 10px);
    }

    /* Carousel container */
    .carousel__container {
        /*padding: 32px 24px;*/
    }

    .card-with-image {
        order: 2;
    }

    .layout__grid-col-2 .grid-card:has(figure) {
        order: 2;
    }

    .layout__grid-col-2 .card-fixed-padding,
    .layout__grid-col-3 .card-fixed-padding {
        --card-padding: 40px;
    }

    .layout__grid-col-2.break-mobile .card-fixed-padding {
        --card-padding: 24px;
    }

    body:not(.home) .card-with-image.responsive-image figure:nth-of-type(1) {
        display: block;
    }

    body:not(.home) .card-with-image.responsive-image figure:nth-of-type(2) {
        display: none;
    }

    .section__get-started .layout__grid-col-3 {
        gap: 20px;
    }

    .hero-card .home-page__buttons a,
    .hero-card .home-page__buttons .wp-block-buttons {
        width: 100%;
    }

    .home-page__buttons.home-page__buttons>a {
        padding: 0 20px;
    }

    .home-youtube-iframe {
        height: 267px;
        width: 100%;
        border-radius: 24px;
    }

    .variable-image .show-on-tablet {
        display: block;
    }

    .variable-image .show-on-desktop {
        display: none;
    }

    .earnings-select__options {
        grid-template-columns: repeat(2, 1fr);
    }

    .primary-spacer {
        height: 40px;
    }

    .sticky-posts .wp-block-post {
        grid-template-columns: 1fr;
    }

    .page-template-archive .recent-payouts-header {
        padding-right: 30px !important;
        padding-left: 30px !important;
    }

    /* Single post */
    .page-template-archive .content-container:not(footer .content-container),
    .archive .content-container:not(footer .content-container),
    .single .content-container:not(footer .content-container) {
        padding: 0;
    }

    .post__aside {
        max-width: unset;
        width: 100% !important;
    }

    .post__page-container main .top-block {
        display: block;
    }

    .post__aside .top-block {
        display: none;
    }

    .single .post__page-container {
        display: flex;
        flex-direction: column;
    }

    .page-author__layout {
        padding: 0 24px;
    }

    .sticky-posts .wp-block-post {
        box-shadow: none;
    }

    .wp-block-post:hover {
        box-shadow: none;
    }

    .opportunities-image {
        padding: 120px 32px;
    }

    .opportunities-image::before {
        background-position-y: bottom;
    }

    .faq__show-more {
        margin-top: 4px;
        width: 100%;
    }

    .faq__show-more button {
        width: 100%;
    }

    .carousel__title h2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .section__get-started {
        gap: 40px;
    }

    .radial-background-2 figure img,
    .radial-background-1 figure img,
    .radial-background-3 figure img,
    .radial-background-4 figure img {
        max-height: 530px;
    }

    .features-carousel-container .swiper-slide,
    .benefits-carousel-container .swiper-slide {
        width: 276px;
    }

    .giftcard-doordash-how-p {
        font-size: 22px;
    }

    .new-giftcards h2 {
        font-size: 42px;
    }

    /* Make Money Online Page */
    .make-money-online .layout__info-grid figure{
        order:9999;
    } 

}

@media (max-width: 767px) {
    .layout__hero-header-2 {
        padding: 40px 20px;
        gap: 57px;
    }

    .layout__hero-header-2::before {
        display: none;
    }

    .layout__hero-header-2 .wp-block-heading {
        font-size: 32px;
        line-height: 42px;
    }

    .layout__hero-header-2 .wp-block-image {
        max-width: 224px;
    }

    .layout__hero-header-2 li {
        font-size: 16px;
        line-height: 24px;
    }

    .team-creative-carousel-container,
    .team-onscreen-carousel-container {
        gap: 8px;
    }

    .partners-about-carousel-container {
        gap: 32px;
    }

    .partners-about-carousel-container .swiper-slide>.wp-block-group:first-of-type {
        padding: 40px 22px;
    }

    .partners-about-carousel-container .swiper-slide>.wp-block-group:nth-of-type(2) {
        padding: 24px;
    }

    .features-carousel-container h2,
    .benefits-carousel-container h2,
    .about-connect h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .team-creative-carousel-container h2,
    .team-onscreen-carousel-container h2,
    .partners-about-carousel-container h2,
    .community-heading {
        font-size: 32px;
        line-height: 42px;
        max-width: 312px;
    }

    .features-carousel-container .swiper-slide,
    .benefits-carousel-container .swiper-slide {
        width: 276px;
    }

    .team-creative-carousel-container .carousel-nav,
    .team-onscreen-carousel-container .carousel-nav {
        display: none;
    }

    .partners-about-carousel-container .swiper-slide {
        width: 264px;
        min-width: 264px;
    }

    .about-connect {
        gap: 32px;
    }

    .about-connect .row-wrapper {
        flex-direction: column;
    }

    .about-connect .row-wrapper-bottom {
        display: flex;
        flex-direction: column;
    }

    .about-social-icons {
        max-width: 268px;
        margin-top: 20px;
    }

    .layout__steps .wp-block-group-is-layout-grid {
        padding: 24px;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .layout__steps .steps-card:nth-child(2) {
        order: 4;
    }

    .layout__steps .steps-card:nth-child(3) {
        order: 2;
    }

    .layout__steps .steps-card:nth-child(4) {
        order: 5;
    }

    .layout__steps .steps-card:nth-child(5) {
        order: 3;
    }

    .layout__steps .steps-card:nth-child(6) {
        order: 6;
    }

    .layout__steps .arrow-down.show-mobile {
        display: block;
    }

    .layout__info-banner-2 {
        padding: 24px;
        gap: 24px;
    }

    .layout__info-banner-2 .wp-block-heading {
        font-size: 32px;
        line-height: 42px;
    }

    .layout__info-banner-2 p {
        font-size: 16px;
        line-height: 24px;
    }

    .layout__info-banner-2 .wp-block-buttons,
    .layout__info-banner-2 .wp-block-buttons .cta-mobile,
    .layout__info-banner-2 .wp-block-buttons .cta-mobile .wp-block-button__link {
        width: 100%;
    }
}

@media (max-width: 700px) {

    /* Headlines */
    .headline-l {
        font-size: 32px;
        line-height: 42px;
    }

    .hero-card .list-with-checkmark li {
        justify-content: flex-start;
        text-align: left;
    }

    .hero-card .home-page__buttons {
        display: flex;
        flex-direction: column;
    }

    .hero-card .home-page__buttons .wp-block-buttons {
        width: 100%;
    }

    .hero-homepage-v1 .list-with-checkmark li {
        justify-content: flex-start;
        text-align: left;
    }

    .hero-homepage-v1 .home-page__buttons {
        display: flex;
        flex-direction: column;
    }

    .hero-homepage-v1 .home-page__buttons .wp-block-buttons {
        width: 100%;
    }

    .hero-homepage-v1 {
        padding: 40px 20px;
    }

    .hero-homepage-v1 .wp-block-buttons,
    .hero-homepage-v1 .wp-block-buttons .wp-block-button__link {
        width: 100%;
    }

    .payouts-in__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .payouts-in__item:last-of-type {
        grid-column: span 2;
    }

    .payouts-in__item.tablet-visible {
        display: none;
    }


    /* Partners cards */
    .partners-cards {
        column-count: 1;
    }

    .partners-cards>.wp-block-group:nth-child(3) {
        padding-bottom: 20px;
    }

    /* Table to compare */
    .table__compare {
        overflow-x: scroll;
    }

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

    .table__compare table {
        width: max-content;
    }

    .table__compare tbody td {
        border-right: 1px solid var(--color-border-primary);
        max-width: 270px;
    }

    .table__compare tbody td:last-child {
        border-right: 0;
    }

    .table__compare tbody td:first-child {
        text-wrap: wrap;
        max-width: 160px;
    }

    .table__compare th:not(:first-child),
    .table__compare td:not(:first-child) {
        text-align: left;
    }

    /* Footer */
    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__links .double-rows {
        grid-row: span 2;
    }

    .footer__links .footer__contacts,
    .footer__links .footer__spacer {
        grid-column: span 2;
    }

    .footer__links .footer__contacts {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .footer__links .footer__contacts>figure {
        margin-bottom: 8px;
    }

    .sign-up-card {
        width: 100%;
    }

    /* Make Money Online Page */

    .make-money-online .partners-cards > .wp-block-group:last-child{
        padding-bottom:0;
    }
    .make-money-online .partners-card p{
        padding: 32px 20px;
    }

}

@media (max-width: 640px) {
    :root {
        --card-padding: 32px 20px;
    }

    .hero-card {
        padding: 40px 20px;
    }

    .hero-card.hero-about {
        gap: 32px;
    }

    .hero-card .wp-block-buttons,
    .hero-card .wp-block-buttons .wp-block-button__link {
        width: 100%;
    }

    .reviews-carousel__item.swiper-slide {
        max-width: 100%;
    }

    .hero-homepage-v1::before {
        content: none;
    }

    .double-card .layout__grid-col-2 {
        grid-template-columns: 1fr;
    }

    .about-us-hero.radial-background::before {
        background-position: center bottom;
    }
}

@media (max-width: 549px) {
    .content-container {
        gap: 40px;
    }

    /* Carousel container */
    .carousel__container.wrapper {
        gap: 32px;
    }

    .carousel__content {
        gap: 32px;
    }

    .carousel__buttons {
        display: none;
    }

    .carousel__buttons.buttons-mobile {
        display: flex;
    }

    .carousel__container a.outlined-button {
        width: 100%;
    }

    /* Youtube carousel */
    .youtube-carousel__item.swiper-slide {
        max-width: 100%;
    }

    .layout__flex-row>.wp-block-group {
        flex-direction: column;
    }

    .layout__flex-row>.wp-block-group>h2 {
        text-align: center;
    }

    .layout__grid-col-2 .card-fixed-padding:not(.extended-mobile-padding) {
        padding: 20px;
    }

    .layout__grid-col-2.break-mobile {
        grid-template-columns: 1fr;
    }

    .layout__grid-col-3:not(.justify-start) .grid-card {
        text-align: center;
    }

    .layout__grid-col-3.numbered-cards .grid-card {
        text-align: start;
    }

    .layout__grid-col-3.break-mobile {
        grid-template-columns: 1fr;
    }

    .november-banner:before,
    .november-banner:after {
        width: 50px !important;
    }

    .november-banner-content {
        padding: 18px !important;
    }

    .hero-card::before {
        content: none;
    }

    .hero-stickers .images-height-80 {
        display: none;
    }

    .hero-homepage-v1 .hero-stickers {
        flex-direction: column;
        gap: 8px;
    }

    .hero-card .hero-stickers {
        flex-direction: column;
        gap: 8px;
    }

    .hero-homepage-v1 .headline-xl {
        font-size: 32px;
        line-height: 42px;
    }

    .home-page__buttons.home-page__buttons>a {
        padding: 0 20px;
    }

    .card-fixed-padding {
        padding: 32px;
    }

    .hero-card .headline-xl {
        font-size: 32px;
        line-height: 42px;
    }

    .headline-m {
        font-size: 24px;
        font-weight: 700;
        line-height: 34px;
    }

    .headline-l {
        font-size: 32px;
        line-height: 42px;
    }

    .headline-sub-headline {
        font-size: 16px;
        line-height: 24px;
    }

    .list-changes-image h2.headline-l {
        font-size: 24px;
        line-height: 34px;
    }

    .grid-card:has(.list-expandable) {
        gap: 24px;
    }

    .list-expandable .wp-block-group>h2 {
        font-size: 16px;
        line-height: 24px;
    }

    .images-height-32 img {
        width: auto;
        max-height: 32px;
    }

    .images-height-40 img {
        width: auto;
        max-height: 40px;
    }

    .images-height-80 img {
        width: auto;
        max-height: 80px;
    }

    .variable-image .show-on-tablet {
        display: none;
    }

    .variable-image .show-on-mobile {
        display: block;
    }

    .earnings-select__options {
        grid-template-columns: 1fr;
    }

    .opportunities-image {
        padding: 100px 32px;
    }

    .opportunities-image::before {
        background-position-y: center;
    }

    .about-us__radial-both-sides {
        padding: 40px 24px;
    }

    .about-us__radial-both-sides::before,
    .about-us__radial-both-sides::after {
        content: none;
    }

    .about-us__radial-both-sides p,
    .about-us__radial-both-sides p>a {
        width: 100%;
    }

    .section__get-started {
        gap: 24px;
    }

    .contact-us__radial-both-sides {
        padding: 40px 24px;
    }

    .contact-us__radial-both-sides::after {
        transform: rotate(8deg);
    }

    .contact-us__radial-both-sides::after {
        bottom: -80%;
        left: 57%;
        top: unset;
    }

    .contact-us__radial-both-sides::before {
        top: 43%;
        left: -37%;
    }

    .contact-us__radial-both-sides p,
    .contact-us__radial-both-sides p>a {
        width: 100%;
    }

    .downloads-list li {
        width: 100%;
    }

    /* Footer */
    footer .content-container {
        padding-bottom: 40px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer__bottom .has-text-align-right {
        text-align: left !important;
    }

    .footer__partners {
        display: flex;
        width: 100%;
        gap: 6px;
        align-items: center;
        flex-wrap: wrap;
    }

    .footer__partners p {
        flex: 0 0 100%;
    }

    .footer__download-links .wp-block-button,
    .footer__download-links .wp-block-button__link {
        width: 100%;
    }

    .sign-up-card {
        padding: 24px;
    }

    .sign-up-card__social-logins {
        flex-direction: column;
    }

    .downloads-list p {
        font-size: 16px;
    }

    .hero-homepage-image-v1.abtest-homev4-hero-image {
        display: none !important;
    }

    .about-card {
        padding: 24px;
        gap: 32px;
    }

    .about-card img {
        width: 145px;
    }

    .about-card .wp-block-heading {
        font-size: 32px;
        line-height: 42px;
    }

    .about-card p {
        font-size: 16px;
        line-height: 24px;
    }

    .about-feature-card {
        padding: 24px;
    }

    /* Make money online page */

    .make-money-online .hide-sign-up-desktop .pawns-signup-button{
        width: 100% !important;
    }
    .make-money-online .layout__with-headline h2{
        font-size: 32px !important;
        line-height: 42px !important;
    }
    .make-money-online .card-fixed-padding{
        padding: 24px;
    }
    .make-money-online .flexible-ways-money .pawns-signup-button{
        display: none;
    }
    .make-money-online .layout__with-headline h3{
        font-size: 24px;
        line-height: 34px; 
    }
    .make-money-online .layout__info-grid figure{
        min-height:340px !important;
    }
    .make-money-online .layout__with-headline{
        gap: 32px;
    }
    .make-money-online .layout__info-grid figure img{
        max-width: 95%;
    }
    .make-money-online .layout__info-grid .content,
    .make-money-online .layout__info-grid figure{
        padding:0 !important;
    }
    .make-money-online .post-reviews-button{
        display: block !important;
    }
    .make-money-online .hero-stickers .images-height-80 {
        display: flex;
    }
    .make-money-online .app-rating-two{
        gap: 8px;
    }
    .make-money-online .hero-card .hero-stickers{
        gap: 14px;
    }
    .make-money-online .app-rating-container{
        gap: 8px !important;
    }
    .make-money-online .pawns-download-button .text-gift div:last-child{
        text-align: left;
        max-width: 200px;
    }
    .make-money-online .list-with-checkmark{
        margin: 24px auto 0;
    }
    .make-money-online .hero-image{
        padding: 20px 0 !important;
        max-width: 70%;
    }

}

@media (max-width: 440px) {

    .post__page-container .wp-block-buttons,
    .post__page-container .wp-block-button,
    .post__page-container .wp-block-button__link {
        width: 100%;
    }

    .post__page-container .wp-block-button__link span {
        display: none;
    }
}

/* March banner */
.march-banner-desktop {
    background: linear-gradient(90deg, #FFE236 0%, #F5FF00 49.5%, #FFE236 100%);
    padding: 0;
    margin: 0;
    height: 48px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.march-banner-desktop p {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.header-banner-button {
    background: var(--Content-Brand, rgba(130, 82, 255, 1));
    color: #fff;
    text-align: center;
    text-decoration: none;
    min-width: 140px;
    width: auto;
    font-size: 12px;
    font-weight: 700;
    height: 24px;
    line-height: 15.5px;
    padding: 4px;
    border-radius: 8px;
    margin-left: 20px;
}

.march-banner-mobile {
    background: linear-gradient(90deg, #FFE236 0%, #F5FF00 49.5%, #FFE236 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.march-banner-group {
    display: flex;
    align-items: center;
    gap: 10px;
}


.march-banner-mobile p {
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
}

@media only screen and (max-width: 750px) {
    .march-banner-mobile {
        display: flex;
        min-height: 48px;
    }

    .march-banner-desktop {
        display: none;
    }
}

@media only screen and (min-width: 750px) {
    .march-banner-mobile {
        display: none;
    }

    .march-banner-desktop {
        display: flex;
    }
}

/* SDK PAGE */
.sdk-page .hero-card {
    background-color: #250A6C;
    padding-top: 80px;
    padding-bottom: 80px;
}

.sdk-page .hero-card .headline-xl {
    max-width: 94%;
}

.sdk-page .hero-card p {
    max-width: 70%;
}

.sdk-page .hero-card .images-height-80 img {
    width: auto !important;
    max-height: 66px;
}

.sdk-page .layout__info-grid-col-2 {
    width: 100%;
}

.sdk-page :where(.wp-block-group.has-background) {
    padding: 3.25em 3.375em;
}

.sdk-page .layout__info-grid {
    gap: 16px;
    padding: unset;
}

.content-container.sdk-page {
    gap: 60px;
}

.bg-surface-grey-sdk {
    background-color: #EBEBEB;
}

.bg-surface-primary-sdk {
    background-color: #F8F8F8;
}

.sdk-page :where(a) {
    color: #000000;
}

.section__revenue {
    max-width: 974px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.section__revenue .section__earnings {
    background: #250A6C;
    padding: 56px;
}

.section__revenue .earnings-selection__content-item {
    padding-top: 40px;
}

.section__revenue .headline-s {
    font-size: 22px;
    font-weight: 400;
}

.section__revenue .earnings-slider__step {
    color: #8252FF;
    text-align: left;
}

.section__revenue .earnings-slider__step[data-selected] {
    color: var(--color-neutral) !important;
}

.section__revenue .section__earnings {
    grid-template-columns: 55% 38%;
    gap: 60px;
}

.section__revenue .earnings-slider__steps.extended-width {
    grid-template-columns: repeat(auto-fit, 82px);
}

.section__revenue .section__earnings-results {
    padding: 56px;
    background: unset;
    border: 1px solid #8252FF;
    border-radius: 24px;
}

.section__revenue .headline-m {
    font-size: 22px;
    font-weight: 400;
    padding: 0;
}

.section__revenue .filled-inverted-button.accent-variant-300 {
    background: #f5ff00;
    min-width: 267px;
    margin-top: 30px;
}

.section__revenue .earnings-slider--mobile {
    display: none;
}

.related-post-inner-block .headline-s {
    margin: 0;
    margin-bottom: 10px;
}

.sdk-partners {
    width: 100%;
    padding: 24px !important;
}

.sdk-page .wp-block-ub-content-toggle .wp-block-ub-content-toggle-accordion {
    background-color: #F8F8F8;
    border: 1px solid #E1E1E1 !important;
}

.sdk-page .outlined-button {
    border: 1px solid #E1E1E1 !important;
}

.sdk-page .about-us__radial-both-sides {
    background: #250A6C;
}

.sdk-page .about-us__radial-both-sides::before,
.sdk-page .about-us__radial-both-sides::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/radial-sdk-page.svg');
    background-repeat: no-repeat;
    background-position: center left;
    background-size: auto 100%;
    z-index: -1;
}

.sdk-col-bandwitch {
    row-gap: 80px !important;
    column-gap: 100px !important;
}

.how-pawns-work-list {
    list-style: none;
    padding: 0;
}

.how-pawns-work-list li {
    border: 1px solid;
    border-color: #B396FF;
    border-radius: 8px;
    min-height: 40px;
    line-height: 24px;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    color: #000000;
    margin-bottom: 5px;
}

.new-giftcards .layout__info-grid {
    gap: 16px;
    padding: unset;
}

.new-giftcards .layout__info-grid-col-2 {
    width: 100%;
}

.content-container.new-giftcards {
    gap: 60px;
}

.doordash-hero-banner {
    width: 54%;
}

.new-giftcards .giftcard-image {
    padding: 60px;
}

.giftcards-how-work-swiper figure {
    height: 56px !important;
    width: 56px;
}

.giftcards-xbox-swiper figure {
    height: auto !important;
}

.giftcards-help-doordash-swiper figure {
    height: auto !important;
}

.giftcard-doodrach-card {
    min-height: 400px;
    border-radius: 24px;
}

.giftcard-how-does-work-p {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    font-size: 22px
}

.giftcard-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.giftcard-row h2 {
    text-align: left !important;
    width: 50%;
}

.giftcard-row p {
    padding-top: 10px;
    width: 50%;
    font-size: 22px;
}

.giftcard-earn-more-heading {
    max-width: 794px;
    margin: 0 auto;
    text-align: center;
}

.giftcard-doordash-how-heading {
    max-width: 794px;
    margin: 0 auto;
    text-align: center;
}

.giftcard-doordash-how-p {
    max-width: 610px;
    margin: 0 auto;
    text-align: center;
}

.doordash-hero-banner ul {
    margin-top: 20px;
}

.doordash-hero-banner p {
    font-size: 22px;
    margin-top: 20px;
    max-width: 632px;
}

.doordash-hero-banner .pawns-signup-button {
    width: 205px;
}

.app-rating-container {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
}

.app-rating-two {
    display: flex;
    gap: 20px;
}

.app-rating-single .app-rating {
    width: 208px;
    height: 20px;
}

@media only screen and (max-width: 1110px) {
    .sdk-page .hero-card {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .sdk-page .hero-card .headline-xl {
        max-width: 100%;
        text-align: center;
    }

    .sdk-page .hero-card p {
        max-width: 100%;
        text-align: center;
    }

    .sdk-page .hero-card .wp-block-buttons,
    .sdk-page .hero-card .wp-block-button__link {
        width: 100%;
    }

    .sdk-page .hero-card .wp-block-image {
        margin-top: 40px;
    }

    .sdk-page .hero-card .images-height-80 img {
        width: auto !important;
        max-height: 66px;
    }

    .sdk-page h5 {
        font-size: 24px;
    }

    .content-container.sdk-page {
        gap: 40px;
    }

    .sdk-page h3 {
        font-size: 24px;
    }

    .sdk-monetize-swiper>.wp-block-group {
        flex-direction: unset !important;
    }

    .sdk-monetize-swiper .swiper-slide {
        min-height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .sdk-monetizetwo-swiper>.wp-block-group {
        flex-direction: unset !important;
    }

    .sdk-monetizetwo-swiper .swiper-slide {
        min-height: 494px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .giftcards-xbox-swiper>.wp-block-group {
        flex-direction: unset !important;
    }

    .giftcards-xbox-swiper .swiper-slide {
        min-height: 364px;
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
    }

    .giftcards-how-work-swiper>.wp-block-group {
        flex-direction: unset !important;
    }

    .giftcards-how-work-swiper .swiper-slide {
        min-height: 364px;
        display: flex;
        justify-content: flex-start;
        gap: 20px;
        flex-direction: column;
        min-height: 528px;
        padding-top: 50px;
    }

    .giftcards-help-doordash-swiper>.wp-block-group {
        flex-direction: unset !important;
    }

    .giftcards-help-doordash-swiper .swiper-slide {
        min-height: 388px;
        display: flex;
        padding-top: 50px;
        justify-content: flex-start;
        gap: 20px;
        flex-direction: column;
    }

    .new-giftcards .has-text-align-left {
        text-align: center;
    }

    .doordash-hero-banner {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .doordash-hero-banner .pawns-signup-button {
        width: 272px;
    }

    .background-position-right::before{
        background-position: right !important;
        left: -56px;
        bottom: -75%;
        object-fit: cover;
        height: calc(100% + 239px);
        width: calc(100% + 112px);
        transform: rotate(90deg);
        background-size: contain;
        background-position: center !important;
    }

    .radial-background-11::before{
        background-image: url('../image/radial-11.svg');
    }

}

@media only screen and (min-width: 1110px) {
    .sdk-monetize-swiper .swiper-slide {
        width: 49% !important;
        min-height: 258px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .sdk-monetize-swiper .swiper-wrapper {
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: row !important;
    }

    .sdk-monetizetwo-swiper .swiper-slide {
        width: 49% !important;
        min-height: 330px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;

    }

    .sdk-monetizetwo-swiper .swiper-wrapper {
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: row !important;
    }

    .giftcards-xbox-swiper .swiper-slide {
        width: 32% !important;
        min-height: 364px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 56px;
    }

    .giftcards-xbox-swiper .swiper-wrapper {
        display: flex !important;
        flex-direction: row;
    }

    .giftcards-how-work-swiper .swiper-slide {
        width: 32% !important;
        min-height: 543px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px;
        padding: 56px;
    }

    .giftcards-how-work-swiper .swiper-wrapper {
        display: flex !important;
        flex-direction: row;
    }

    .giftcards-help-doordash-swiper .swiper-slide {
        width: 49% !important;
        min-height: 282px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 56px;
    }

    .giftcards-help-doordash-swiper .swiper-wrapper {
        display: flex !important;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 975px) {
    .section__revenue .section__earnings {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section__revenue .section__earnings-results div {
        width: 100%;
    }

    .giftcard-how-does-work-p {
        max-width: unset;
    }

    .new-giftcards .grid-card {
        padding-top: 20px;
    }

    .giftcard-doordash-how-heading {
        max-width: unset;
    }

    .giftcard-doordash-how-p {
        max-width: unset;
    }

    .giftcard-row {
        gap: 0px;
        flex-direction: column;
    }

    .giftcard-row h2 {
        margin-bottom: 0px !important;
        width: 100%;
    }

    .giftcard-row p {
        width: 100%;
        font-size: 16px;
    }
}

@media (max-width: 579px) {
    .section__revenue .filled-inverted-button.accent-variant-300 {
        min-width: 166px;
    }

    .section__revenue .earnings-slider--desktop {
        display: none;
    }

    .section__revenue .earnings-slider--mobile {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .section__revenue .earnings-button {
        padding: 10px 14px;
        background-color: #5324CE;
        font-weight: bold;
        cursor: pointer;
        flex: 1 0 40%;
        text-align: center;
        border: unset;
        color: #B396FF;
        border-radius: 8px;
    }

    .section__revenue .earnings-button.active {
        background-color: #FFFFFF;
        color: #000000;
        border-color: unset;
    }

    .section__revenue .section__earnings {
        gap: 40px;
    }

    .section__revenue .section__earnings {
        padding: 28px;
    }

    .sdk-page .section__earnings>div.wp-block-group {
        padding: 0;
    }

    .sdk-revenue-border {
        padding: 30px;
    }

    .sdk-page .headline-xl {
        font-size: 42px;
    }

    .giftcard-doordash-how-p {
        font-size: 16px;
    }

    .new-giftcards h2 {
        font-size: 32px;
    }

    .content-container.new-giftcards {
        gap: 30px;
    }

    .new-giftcards h3 {
        font-size: 24px;
    }

    .giftcard-doodrach-card {
        min-height: 340px;
    }

    .new-giftcards .giftcard-image {
        padding: 40px;
    }

    .giftcard-how-does-work-p {
        font-size: 16px;
    }

    .giftcards-xbox-swiper .swiper-slide {
        min-height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
        gap: 20px;
    }

    .giftcards-how-work-swiper .swiper-slide {
        max-height: unset;
        min-height: 590px;
        display: flex;
        flex-direction: column;
        padding-top: 50px;
        justify-content: flex-start;
        gap: 20px;
    }

    .giftcards-help-doordash-swiper .swiper-slide {
        min-height: 450px;
        display: flex;
        flex-direction: column;
        padding-top: 50px;
        justify-content: flex-start;
        gap: 20px;
    }

    .doordash-hero-banner p {
        font-size: 16px;
    }

    .new-giftcards .grid-card {
        margin-top: 0px;
        padding-left: 0px;
    }

    .how-pawns-work-list li {
        min-height: 40px;
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 18px;
        height: auto;
    }
}

@media only screen and (max-width: 549px) {
    .sdk-page .hero-card {
        padding-top: 0px;
        padding-bottom: 30px;
    }

    .sdk-page .hero-card .wp-block-image {
        display: none;
    }

    .sdk-page .hero-card .hero-stickers .images-height-80 {
        display: flex !important;
    }

    .sdk-page .hero-card .hero-stickers .wp-block-image {
        display: block !important;
    }

    .sdk-page .hero-card .images-height-80 img {
        width: auto !important;
        max-height: 42px;
    }

    .sdk-page .headline-s {
        font-size: 16px;
    }

    .sdk-page :where(.wp-block-group.has-background) {
        padding: 3.25em 2.375em;
    }

    .approved-by-sdk {
        flex-wrap: wrap;
        flex-direction: row;
    }

    .approved-by-sdk h2 {
        width: 100%;
        text-align: center;
    }

    .sdk-page .about-us__radial-both-sides {
        background: #5324CE;
    }

    .sdk-monetize-swiper .swiper-slide {
        max-height: 260px;
        min-height: 260px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .sdk-monetizetwo-swiper .swiper-slide {
        max-height: 400px;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .app-rating-two {
        flex-direction: column;
        align-items: center;
    }

    .app-rating-container {
        align-items: center;
    }
}

@media only screen and (max-width: 390px) {
    .sdk-monetizetwo-swiper .swiper-slide {
        max-height: 460px;
        min-height: 460px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .features-carousel-container .swiper-slide,
    .benefits-carousel-container .swiper-slide {
        min-height: 572px;
    }

    .giftcards-xbox-swiper .swiper-slide {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 30px;
        gap: 20px;
    }

    .giftcards-how-work-swiper .swiper-slide {
        max-height: unset;
        display: flex;
        flex-direction: column;
        padding-top: 20px;
        justify-content: flex-start;
        gap: 20px;
    }

    .giftcards-help-doordash-swiper .swiper-slide {
        min-height: 432px;
        display: flex;
        flex-direction: column;
        padding-top: 50px;
        justify-content: flex-start;
        gap: 20px;
    }
}

/* 404 Page */
.error404 .content-404 h1 {
  font-size: 42px;
  line-height: 56px;
}
.error404 .content-404 {
  text-align: center;
  gap: 0;
  padding-bottom: 80px;
  padding-top: 16px;
}
.error404 .content-404 .filled-button {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 40px;
}
.error404 .content-404 svg {
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .error404 .content-404 {
    padding-bottom: 56px;
    padding-top: 24px;
  }
}
@media (max-width: 549px) {
  .error404 .content-404 h1 {
    font-size: 32px;
    line-height: 42px;
  }
  .error404 .content-404 .filled-button {
    margin-top: 24px;
    width: 100%;
  }
  .error404 .content-404 {
    padding-top: 8px;
  }
}

/* Make Money Online Page */

.make-money-online .carousel__title p{
    max-width: unset;
}
:is(.fix-accordion, .make-money-online) .wp-block-ub-content-toggle-accordion-content-wrap{
    padding-left: 24px;
}
:is(.fix-accordion, .make-money-online) .wp-block-ub-content-toggle-accordion-content-wrap p:not(:last-child){
    margin-bottom: 24px;
} 
:is(.fix-accordion, .make-money-online) .wp-block-ub-content-toggle-accordion-content-wrap p:first-child{
    margin-top: -7px;
}
:is(.fix-accordion, .make-money-online) .wp-block-ub-content-toggle .wp-block-ub-content-toggle-accordion:last-child{
    margin-bottom: 0;
}
.make-money-online .carousel__container .swiper-pagination-bullet {
    --bullet-size: 64px;
}
.make-money-online .carousel__buttons{
    gap: 20px;
}
.make-money-online .hero-stickers .images-height-80{
    gap:4px;
}
.make-money-online .app-rating-two img{
    height: 20px;
    object-fit: contain;
    width: auto;
}
.make-money-online .hero-stickers .images-height-80 img{
    max-height: 64px;
    padding: 5px;
    width: 64px !important;
    object-fit: contain;
}
@media (min-width: 641px){
    .make-money-online .hero-card{
        padding-top: 56px;
        padding-bottom: 56px;
    }
}
.make-money-online .hero-image{
    padding: 30px 0;
}
.make-money-online .hero-card .left-col{
    display: flex;
    flex-direction: column;
}

.make-money-online .pawns-download-button .text-gift{
    max-width: 100%;
}
.make-money-online .app-rating-single{
    display: flex;
}
.make-money-online .app-rating-container{
    gap: 16px;
}
.make-money-online .post-reviews-button{
    display: none;
    width: 100%;
}
.make-money-online .layout__info-grid{
    padding:0;
    gap:20px;
}
.make-money-online .layout__info-grid .content,
.make-money-online .layout__info-grid figure{
    padding: 56px;
}
.make-money-online .layout__info-grid a{
    font-weight: 400;
    color:var(--color-primary);
    text-underline-offset: auto; 
}
.make-money-online .layout__info-grid figure{
    background-color: var(--color-background-surface-tertiary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}
.make-money-online .layout__with-headline h2{
    font-size: 42px;
    line-height: 56px; 
}
.make-money-online .layout__grid-col-3 .grid-card{
    justify-content: start;
    align-items: start;
}
.make-money-online .show-sign-up-desktop .pawns-signup-button{
   display: flex; 
}
.make-money-online .hide-sign-up-desktop .pawns-signup-button{
   display: none; 
}
.make-money-online .partners-cards figure{
    display: flex;
}
.make-money-online .wp-block-ub-content-toggle .wp-block-ub-content-toggle-accordion:last-child{
    margin: 0 !important;
}

/* helper classes */

.mt-0{
    margin-top: 0;
}

.mb-4{
    margin-bottom: 16px !important;
}

.mt-6{
    margin-top: 24px !important;
}

.mb-6{
    margin-bottom: 24px !important;
}

.max-w-320{
    max-width: 320px;
}

.min-download-width-197 .pawns-download-button a{
    min-width: 197px;
}

.w-full{
    width: 100%;
}

.mb-10{
    margin-bottom: 40px !important;
}

.mb-14{
    margin-bottom: 56px !important;
}

.mb-2{
    margin-bottom: 8px !important;
}

.align-start{
    justify-content: start;
    align-items: start !important;
}

.btn-64 .carousel__container .swiper-pagination-bullet {
    --bullet-size: 64px;
}

.pb-20{
    padding-bottom: 80px;
}
 
@media(min-width: 1110px){
    .left-col-612{
        max-width: 612px;
        width: 100%;
    }

    .lg-py-102{
        padding-top: 102px;
        padding-bottom: 102px;        
    }
}

@media(max-width: 1110px){
    .max-tablet-mb-10{
        margin-bottom: 40px !important;
    }

    .max-tablet-pb-14{
        padding-bottom: 56px !important;
    }
}

@media (max-width: 549px) {

    .gifts-w-full .pawns-download-button .text-gift{
        min-width: unset;
    }

    .max-mob-mb-10{
        margin-bottom: 40px !important;
    }

    .max-mob-pb-12{
        padding-bottom: 48px !important;
    }
    
}
