/* Reset i style podstawowe */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: #ffffff;
    color: #111C32;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    /* Antyaliasing - często największa różnica */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    /* Dokładne renderowanie */
    text-rendering: optimizeLegibility;
    font-smooth: always;
    
    /* Letter spacing (tracking w Figmie) */
    letter-spacing: 0em; /* sprawdź wartość w Figmie */
    
    /* Variant fontu */
    font-feature-settings: normal;
    font-variant-ligatures: normal;
    
    /* Jeśli używasz variable font */
    font-variation-settings: normal;
}

.u-sr-only {
    display: none;
    opacity: 0;
    visibility: hidden;
}

a {
    text-decoration: none;
}

.u-wrapper {
    max-width: 1336px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 1024px) {
    .u-wrapper {
        padding: 0 16px;
    }
}

.u-section {
    position: relative;
    z-index: 0;
}

@media (max-width: 768px) {
    
}

.u-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.u-heading--center {
    align-items: center;
    text-align: center;
}

.u-subtitle {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #111C32;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    background-color: #F7F7F8;
    padding: 10px 16px;
    border-radius: 54px;
}

@media (max-width: 768px) {
    .u-subtitle {
        font-size: 10px;
        line-height: 10px;
    }
}

.u-subtitle img {
    width: 16px;
    height: 16px;
}

.u-subtitle--white {
    background-color: #ffffff;
}

.u-title {
    font-family: 'Manrope', sans-serif;
    font-size: 52px;
    font-style: normal;
    font-weight: 400;
    line-height: 64px;
    letter-spacing: -1.04px;
    margin: 16px 0;
}

.u-title strong {
    color: #FB733B;
    font-weight: 400;
}

@media (max-width: 768px) {
    .u-title {
        font-size: 36px;
        line-height: 48px;
        letter-spacing: -0.72px;
    }
}

.u-title--big {
    font-size: 62px;
    line-height: 72px;
    letter-spacing: -1.24px;
    margin: 24px 0;
}

@media (max-width: 768px) {
    .u-title--big {
        font-size: 40px;
        line-height: 50px;
        letter-spacing: -0.96px;
    }
}

.u-title + .u-content {
    margin-bottom: 16px;
}

.u-intro {
    color: #111C32;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    margin-top: 32px;
}

.u-intro + .u-content {
    margin-top: 16px;
}

.u-content {
    color: #111C32;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

@media (max-width: 768px) {
    .u-content {
        font-size: 14px;
        line-height: 20px;
    }
}

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

.u-content strong {
    font-weight: 700;
}

.u-content ul {
    list-style-type: none;
    padding-left: 0;
}

.u-content ul li:before {
    content: '•';
    color: #FB733B;
    display: inline-block;
    width: 12px;
    margin-right: 6px;
}

.u-content a {
    color: #FB733B;
}

.u-icons {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 40px;
}

@media (max-width: 1024px) {
    .u-icons {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-item span {
    color: #111C32;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.u-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.u-cta--center {
    justify-content: center;
}

@media (max-width: 768px) {
    .u-cta {
        flex-direction: column;
    }
}

.u-content + .u-cta {
    margin-top: 28px;
}

.u-btn {
    display: inline-block;
    padding: 9px 24px;
    border-radius: 54px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}



.u-btn .text {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.u-btn .text svg * {
    transition: all 0.3s ease;
}

.u-btn--big {
    padding: 16px 28px;
}

.u-btn--secondary {
    background-color: transparent;
    border: 1px solid #B3B8C7;
}

.u-btn--secondary .text {
    color: #111C32;
}

.u-btn--secondary:hover {
    background-color: #FB733B;
    border-color: #FB733B;
}

.u-btn--secondary:hover .text {
    color: #ffffff;
}

.u-btn--secondary:hover .text svg * {
    fill: #ffffff;
}

.is-blue .u-btn--secondary {
    border-color: #485A7D;
}

.is-blue .u-btn--secondary .text {
    color: #ffffff;
}

.u-btn--primary {
    background-color: #203560;
    border: 1px solid #203560;
}

.u-btn--primary:disabled,
.u-btn--primary:disabled:hover {
    background-color: #A6AEBF;
    border-color: #A6AEBF;
    cursor: not-allowed;
}


.u-btn--primary .text {
    color: #ffffff;
}

.u-btn--primary:hover {
    background-color: #111C32;
    border-color: #111C32;
}

.u-btn--primary:hover .text {
    color: #ffffff;
}

.u-btn--disabled,
.u-btn--disabled:hover {
    background-color: #A6AEBF;
    border-color: #A6AEBF;
    cursor: not-allowed;
}


/* 
.is-blue .u-btn--primary {
    background-color: #FB733B;
    border-color: #FB733B;
}

.is-blue .u-btn--primary .text {
    color: #ffffff;
}

.is-blue .u-btn--primary:hover {
    background-color: #ffffff;
    border-color: #ffffff;
}

.is-blue .u-btn--primary:hover .text {
    color: #111C32;
}

.u-btn--learn-more:hover .text svg * {
    fill: none;
    stroke: #fff;
} */



/**********************************************************
 *********************   HEADER   *************************
 **********************************************************/

.site-top {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 84px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    border-bottom: 1px solid #E3E4E5;
    /* box-shadow: 0 152px 61px rgba(76, 78, 100, 0.01), 0 85px 51px rgba(76, 78, 100, 0.05), 0 9px 21px rgba(76, 78, 100, 0.1); */
}



.site-top.is-scrolled-down {
    transform: translate3d(0, -150%, 0);
    opacity: 0;
}

.site-top .u-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1378px; /* add 64px margin left and right */
    
}

@media (max-width: 1024px) {
    .site-top {
        display: none;
    }
}

.site-top__inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-top__menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}

.site-top__nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    list-style: none;
}

.site-top__nav ul li a {
    color: #111C32;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    transition: all 0.3s ease;
}

.site-top__nav ul li a:hover {
    color: #FB733B;
}

.site-top__nav ul .is-active a {
    color: #FB733B;
}

.site-top__cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.site-top__logo {
    width: 100%;
    max-width: 183px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.site-top__logo img {
    width: 100%;
    height: auto;
    /* height: 100%; */
}
/**********************************************************
 *********************   MOBILE HEADER   ******************
 **********************************************************/

.site-top-mobile {
    display: none;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
    height: 84px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    box-shadow: 0 152px 61px rgba(76, 78, 100, 0.01), 0 85px 51px rgba(76, 78, 100, 0.05), 0 9px 21px rgba(76, 78, 100, 0.1);
}

.site-top-mobile.is-scrolled-down {
    transform: translate3d(0, -150%, 0);
    opacity: 0;
}

.site-top-mobile .u-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

@media (max-width: 1024px) {
    .site-top-mobile {
        display: flex;
    }
}

.site-top-mobile__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.site-top-mobile__logo {
    width: 100%;
    max-width: 180px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.site-top-mobile__logo img {
    width: 100%;
}

.site-top-mobile__toggle-mobile {
    position: relative;
    cursor: pointer;
    width: 40px;
    height: 40px;
    margin-right: -10px;
    border: 0;
    outline: 0;
    background-color: transparent;
}

.site-top-mobile__toggle-mobile span:not(.u-sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #111C32;
    transition: transform 0.3s ease, margin 0.3s ease;
}

.site-top-mobile__toggle-mobile span:not(.u-sr-only):not(:first-child) {
    margin-top: 7px;
}

/* Style dla stanu otwartego */
body.is-mobile-open .site-top-mobile__toggle-mobile span:not(.u-sr-only) {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    transform-origin: center;
}

body.is-mobile-open .site-top-mobile__toggle-mobile span:not(.u-sr-only):first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

body.is-mobile-open .site-top-mobile__toggle-mobile span:not(.u-sr-only):nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-hld {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 499;
    height: auto;
}

.mobile-nav-hld.is-active .mobile-nav-background {
    pointer-events: auto;
    opacity: 1;
}

.mobile-nav-hld.is-active .mobile-nav-body {
    transform: translate3d(-100%, 0, 0);
}

.mobile-nav-background {
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
    width: 100vw;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    transition: opacity 0.2s;
    opacity: 0;
}

.mobile-nav-body {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 100%;
    width: 100vw;
    max-width: 480px;
    height: 100%;
    padding: 140px 50px 40px;
    background-color: #fff;
    transition: transform 0.5s;
    overflow-y: auto;
}

@media (max-width: 576px) {
    .mobile-nav-body {
        padding-right: 20px;
        padding-left: 20px;
    }
}

.mobile-nav {
    margin-bottom: auto;
}

.mobile-nav > .mobile-nav__item {
    position: relative;
    list-style: none;
}

.mobile-nav > .mobile-nav__item > a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 16px 0;
    color: #111C32;
}

.mobile-nav > .mobile-nav__item > a .text {
    font-size: 24px;
}

.mobile-nav > .mobile-nav__item.menu-item-has-children > a::after {
    content: '';
    position: relative;
    top: -3px;
    width: 9px;
    height: 9px;
    margin-left: 15px;
    border-bottom: 1px solid var(--c-black);
    border-left: 1px solid var(--c-black);
    transform: rotate(-45deg);
}

.mobile-nav > .mobile-nav__item.menu-item-has-children.is-active > a::after {
    top: 2px;
    transform: rotate(-225deg);
}

.mobile-nav > .mobile-nav__item.menu-item-has-children.is-active .sub-menu-wrap {
    display: block;
}

.mobile-nav .sub-menu-wrap {
    display: none;
    padding-bottom: 15px;
}

.mobile-nav .sub-menu > .mobile-nav__item > a {
    display: block;
    padding: 12px 0;
}

.mobile-nav .sub-menu > .mobile-nav__item > a .text {
    font-size: 16px;
}

.mobile-nav .sub-menu > .mobile-nav__item .no-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: default;
    padding: 12px 0;
    color: #A6ABBA;
}

.mobile-nav .sub-menu > .mobile-nav__item .no-link .text {
    font-size: 16px;
}

.mobile-nav .sub-menu > .mobile-nav__item .no-link .coming-soon-text {
    margin-left: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    background-color: #F4F4F6;
    color: var(--c-coming-soon);
    font-size: 14px;
}

.mobile-nav .sub-menu li.current-menu-item > a .text {
    color: var(--c-accent) !important;
}

/* .mobile-nav__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
} */


/**********************************************************
 **************   AUDIENCELIFT DASHBOARD MAIN INNER   ********
 **********************************************************/

 .dashboard-main__inner.dashboard-main__inner {
    margin-top: 64px;
    display: flex;
    padding: 44px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #E3E4E5;
    background: #FFF;
}

.dashboard-main__items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

.dashboard-main__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #E3E4E5;
    background: #F9F9FA;
    padding: 16px;

    color: #4D5D80;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}

@media (max-width: 767px) {
    .dashboard-main__item {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 6px;
    }
    
}

.dashboard-main__item-description {
    color: #13203A;
    font-weight: 600;
}

.dashboard-main__info.dashboard-main__info {
    border-radius: 12px;
    border: 1px solid #5182E3;    
    background: linear-gradient(0deg, rgba(81, 130, 227, 0.10) 0%, rgba(81, 130, 227, 0.10) 100%), #FFF;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px;
    width: 100%;
    margin-top: 12px;
}

@media (max-width: 767px) {
    .dashboard-main__info.dashboard-main__info {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 6px;
    }
}

.dashboard-main__info.dashboard-main__info p {
    color: #13203A;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}


.dashboard-main__platforms.dashboard-main__platforms {
    margin-top: 44px;
}

.dashboard-main__platforms-item-content {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 64px;
}

.dashboard-main__platforms-item-content h2 {
    color: #13203A;
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.4px;
}

.dashboard-main__platforms-item-content-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
    margin-top: 16px;
}

@media (max-width: 767px) {
    .dashboard-main__platforms-item-content-items {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 6px;
    }
}

.dashboard-main__platforms-item-content-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 36px;
    border-radius: 12px;
    border: 1px solid #E3E4E5;
    background: #FFF;
    padding: 32px;
    width: calc((100% / 3) - 11px);
}

@media (max-width: 767px) {
    .dashboard-main__platforms-item-content-item {
        width: 100%;
    }
}

.dashboard-main__platforms-item-content-item-title {
    display: block;
    color: #7986A0;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.36px;
    position: relative;
    z-index: 1;
}

.dashboard-main__platforms-item-content-item-value {
    color: #13203A;
    font-size: 32px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.64px;
}

.audiencelift-dashboard__form-item-tooltip.is-absolute-position {
    position: absolute;
    top: 3px;
    right: 0;
    z-index: 1;
}

.dashboard-main__platforms-item-content-graphs {
    margin-top: 44px;
}

/**********************************************************
 **************   AUDIENCELIFT DASHBOARD STEP BAR   ********
 **********************************************************/


.audiencelift-dashboard__step-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 64px;
    width: 100%;
}

.audiencelift-dashboard__step-bar-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    list-style: none;
    width: 100%;
}
.audiencelift-dashboard__step-bar-list li {
    color: #7986A0;
    font-feature-settings: 'calt' off;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px; 
    padding: 0 12px 12px;
    position: relative;
    width: calc(100% / 7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.audiencelift-dashboard__step-bar-list li:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 2px;
    background-color: #E3E4E5;
}

.audiencelift-dashboard__step-bar-list li.done,
.audiencelift-dashboard__step-bar-list li.active {
    color: #13203A;
    font-weight: 700;
}

.audiencelift-dashboard__step-bar-list li.done:before,
.audiencelift-dashboard__step-bar-list li.active:before {
    background-color: #FB733B;
}

.audiencelift-dashboard__step-bar-list li.done a,
.audiencelift-dashboard__step-bar-list li.active a {
    color: #13203A;
    transition: all 0.3s ease;
}

.audiencelift-dashboard__step-bar-list li.done a:hover,
.audiencelift-dashboard__step-bar-list li.active a:hover {
    color: #FB733B;
}

@media (max-width: 767px) {
    .audiencelift-dashboard__step-bar-list li {
        text-indent: -9999px;
    }

    .audiencelift-dashboard__step-bar-list li.active {
        text-indent: 0;
    }
}


/**********************************************************
 ******************  STEP 2-6 SUMMARY COLUMN   ********************
 **********************************************************/

 .audiencelift-dashboard__step-summary {
    width: 100%;

}

@media (min-width: 1024px) {
    .audiencelift-dashboard__step-summary {
        max-width: 428px;
        margin-left: 64px;
    }
}

.audiencelift-dashboard__step-summary-title {
    color: #13203A;
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.48px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.audiencelift-dashboard__step-summary-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid #E3E4E5;
    background: #FFF;
    margin-bottom: 64px;
}


.audiencelift-dashboard__step-summary-inner-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    border-radius: 8px;
    
    padding: 10px 16px;
    width: 100%;
}

.audiencelift-dashboard__step-summary-inner-item:nth-child(even) {
    background: #F9F9FA;
}

.audiencelift-dashboard__step-summary-inner-item-title {
    color: #4D5D80;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

.audiencelift-dashboard__step-summary-inner-item-description {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

/**********************************************************
 **************   AUDIENCELIFT DASHBOARD  ********
 **********************************************************/

.u-section--audiencelift-dashboard {
    padding-top: 120px;
    background-color: #F7F7F8;
    position: relative;
    min-height: 100dvh;
    height: auto; 
}

@media (min-width: 1024px) {
    .u-section--audiencelift-dashboard:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: calc(50% + 164px);
        right: 0;
        background-color: #fff;
        border-left: 1px solid #E3E4E5;
        z-index: -1;
        
    }
}
.u-section--audiencelift-dashboard-main:before,
.u-section--audiencelift-dashboard-step-1:before,
.u-section--audiencelift-dashboard-step-success:before {
    display: none;
}

@media (min-width: 1024px) {
    .u-section--audiencelift-dashboard {
        /* height: 100dvh; */
        padding-top: 84px;
    }
}

.audiencelift-dashboard__bg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    max-width: 1272px;
    height: auto;
}

.audiencelift-dashboard__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audiencelift-dashboard__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: calc(100% - 48px);
    margin: 0 24px;
}


@media (min-width: 1024px) {
    .u-section--audiencelift-dashboard-step-1 .audiencelift-dashboard__inner {
        max-width: 800px;
        margin: 0 auto;
        align-items: flex-start;
        height: calc(100vh - 84px);
    }

    .audiencelift-dashboard__inner {
        max-width: 1320px;
        margin: 0 auto;
        align-items: flex-start;
    }

}

.audiencelift-dashboard__inner-column {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 64px;
}

@media (min-width: 1024px) {
    .audiencelift-dashboard__inner-column {
        flex-direction: row;
    }
}



.audiencelift-dashboard__inner-left {
    width: 100%;
    margin-bottom: 84px;
    
}

@media (min-width: 1024px) {
    .audiencelift-dashboard__inner-left {
        max-width: 756px;
        margin-right: 64px;
    }
}

/**********************************************************
 ******************  STEP 1 - CAMPAIGN   ********************
 **********************************************************/

.audiencelift-dashboard__step-1-details {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 1024px) {
    .audiencelift-dashboard__step-1-details {
        flex-direction: row;
    }
}

.audiencelift-dashboard__header {
    margin-bottom: 32px;
}

.audiencelift-dashboard__header h1 {
    color: #13203A;
    font-size: 32px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.64px;
}

.audiencelift-dashboard__header p {
    margin-top: 12px;
    color: #13203A;
    font-feature-settings: 'salt' on;
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.audiencelift-dashboard__content-item {
    width: 100%;
    max-width: 395px;
    border-radius: 24px;
    border: 1px solid #E3E4E5;
    background: #FFF;
    backdrop-filter: blur(19.25px);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    /* gap: 16px; */
    transition: all 0.3s ease;
    cursor: pointer;
    color: #13203A;
    position: relative;
    z-index: 1;
}

.audiencelift-dashboard__content-selector {
    display: flex;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid #E3E4E5;
    position: absolute;
    top: 32px;
    right: 32px;
    z-index: -1;
}

.audiencelift-dashboard__content-text {
    margin-top: 100px;
}

.audiencelift-dashboard__content-title {
    
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.48px;    
}

.audiencelift-dashboard__content-description {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.audiencelift-dashboard__content-item:hover {
    border-color: #FB733B;

}

.audiencelift-dashboard__content-item.is-active {
    border-color: #FB733B;
}

.audiencelift-dashboard__content-item.is-active .audiencelift-dashboard__content-selector {
    border-color: #FB733B;
    background-color: #FB733B;
}

.audiencelift-dashboard__content-item.is-active .audiencelift-dashboard__content-title {
    color: #FB733B;
}


/**********************************************************
 ******************  STEP 2 - PLATFORM   ********************
 **********************************************************/

.audiencelift-dashboard__platform-items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px;
}

@media (max-width: 767px) {
    .audiencelift-dashboard__platform-items {
        flex-direction: column;
    }
}



.audiencelift-dashboard__platform-item {
    width: 100%;
    max-width: 375px;
    border-radius: 24px;
    border: 1px solid #E3E4E5;
    background: #FFF;
    backdrop-filter: blur(19.25px);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    /* gap: 16px; */
    transition: all 0.3s ease;
    cursor: pointer;
    color: #13203A;
    position: relative;
    z-index: 1;
}

.audiencelift-dashboard__platform-item.is-small {
    justify-content: flex-start;
}

.audiencelift-dashboard__platform-icon {
    width: 44px;
    height: 44px;
}


.is-small .audiencelift-dashboard__platform-icon {
    width: 32px;
    height: 32px;
}


.audiencelift-dashboard__platform-icon svg {
    width: 100%;
    height: 100%;
}

.audiencelift-dashboard__platform-selector {
    display: flex;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid #E3E4E5;
    position: absolute;
    top: 32px;
    right: 32px;
    z-index: -1;
}

.is-small .audiencelift-dashboard__platform-selector {
    width: 28px;
    height: 28px;
}

.audiencelift-dashboard__platform-text {
    margin-top: 24px;
}

.audiencelift-dashboard__platform-price {
    color: #13203A;
    font-feature-settings: 'salt' on;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%; 
}
.audiencelift-dashboard__platform-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.4px;    
}

.is-small .audiencelift-dashboard__platform-title {
    font-size: 18px;
}

.audiencelift-dashboard__platform-description {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.is-small .audiencelift-dashboard__platform-description {
    font-size: 14px;
}

.audiencelift-dashboard__platform-item:hover {
    border-color: #FB733B;

}

.audiencelift-dashboard__platform-item.is-active {
    border-color: #FB733B;
}

.audiencelift-dashboard__platform-item.is-active .audiencelift-dashboard__platform-selector {
    border-color: #FB733B;
    background-color: #FB733B;
}

.audiencelift-dashboard__platform-item.is-active .audiencelift-dashboard__platform-title {
    color: #FB733B;
}

.audiencelift-dashboard__platform-unique {
    margin-top: 24px;
}

.audiencelift-dashboard__platform-unique-title {
    color: #13203A;
    text-align: center;
    font-feature-settings: 'calt' off;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    position: relative;
    z-index: 1;
    
}

.audiencelift-dashboard__platform-unique-title span {
    display: inline-block;
    background-color: #F7F7F8;
    padding: 0 24px;
}

.audiencelift-dashboard__platform-unique-title span a {
    color: #13203A;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.audiencelift-dashboard__platform-unique-title span a:hover {
    color: #FB733B;
}

.audiencelift-dashboard__platform-unique-title.is-border:before {
    content: '';
    position: absolute;
    bottom: 50%;
    left: 0;
    right: 0;
    z-index: -1;
    height: 1px;
    background-color: #A6AEBF;
}

.audiencelift-dashboard__platform-features {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #E3E4E5;
}
.audiencelift-dashboard__platform-features ul {

}

.audiencelift-dashboard__platform-features ul li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 8px 0;
   list-style: none;
}
.audiencelift-dashboard__platform-special-campaigns {
    margin-top: 24px;
    width: 100%;
    border-radius: 24px;
    border: 1px solid #E3E4E5;
    background: #FFF;
    backdrop-filter: blur(19.25px);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #13203A;
    position: relative;
    z-index: 1;
}

.audiencelift-dashboard__platform-special-campaigns-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.audiencelift-dashboard__platform-special-campaigns-header-title {
    color: #13203A;
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.4px;
}

.audiencelift-dashboard__platform-special-campaigns-desc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    width: 100%;
}

@media (max-width: 767px) {
    .audiencelift-dashboard__platform-special-campaigns-desc {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
}
.audiencelift-dashboard__platform-special-campaigns-desc-text {
    color: #13203A;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.audiencelift-dashboard__platform-special-campaigns-desc-text {
    width: 100%;
    max-width: 430px;
}

.audiencelift-dashboard__faq {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -100;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    transition: all 0.3s ease;
}

.audiencelift-dashboard__faq.is-active {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}


.audiencelift-dashboard__faq-inner {
    display: flex;
    width: 720px;
    padding: 44px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 32px;
    border-radius: 24px;
    background: #FFF;
    position: relative;
    z-index: 10;
}

.audiencelift-dashboard__faq-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.audiencelift-dashboard__faq-close svg {
    transition: all 0.3s ease;
    cursor: pointer;
}

.audiencelift-dashboard__faq-close:hover svg * {
    stroke: #FB733B;
}

.audiencelift-dashboard__faq-title {
    color: #13203A;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.48px;
}

.audiencelift-dashboard__faq-title span {
    color: #FB733B;
}

.faq__items {
    width: 100%;
    max-width: 732px;
}

.u-content.faq__content {
    width: 100%;
    max-width: 322px;
    margin-top: 16px;
    margin-bottom: 24px !important;
}

.faq__button-wrapper {
    display: flex;
    align-items: center;
}
.faq__items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
    z-index: 10;
}


.faq__item {
    border-radius: 14px;
    border: 1px solid #E3E4E5;
    background: #F9F9FA;
    padding: 20px;
}

.faq__item.is-active,
.faq__item:hover {
    border: 1px solid #A6AEBF;
}

.faq__item-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.faq__item-question {
    color: #000;
    font-feature-settings: 'calt' off;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    padding-right: 30px;
    cursor: pointer;
}

.faq__item-question-icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
    height: 24px;
    display: flex;
    transform: rotate(180deg);
    transition: all 0.3s ease;
}

.faq__item-answer {
    color: #000;
    font-feature-settings: 'salt' on;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
    padding-right: 44px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0
}
    
.faq__item.is-active .faq__item-question-icon  {
    transform: rotate(0);
}
    
.faq__item.is-active .faq__item-answer {
    max-height: 500px; 
    opacity: 1;
    margin-top: 24px;
}


/**********************************************************
 ******************  DESIGN STEP   ********************
 **********************************************************/

.audiencelift-dashboard__step-5-details {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}


/**********************************************************
 ******************  BUDGET STEP   ********************
 **********************************************************/

.audiencelift-dashboard__campaign-budget {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.audiencelift-dashboard__campaign-budget-items {
    width: 100%;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.audiencelift-dashboard__campaign-budget-item {
    display: flex;
    padding: 14px 14px 14px 20px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #E3E4E5;
    background: #FFF;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #13203A;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    text-align: left;
    text-wrap: nowrap;
}

.audiencelift-dashboard__campaign-budget-item.is-active {
    border-color: #FB733B;
    background-color: #FB733B;
    color: #FFF;
}

.audiencelift-dashboard__campaign-budget-item.is-active svg * {
    stroke: #FFF;
}

.audiencelift-dashboard__campaign-budget-item:hover {
    border-color: #FB733B;
    background-color: #FB733B;
    color: #FFF;
}

.audiencelift-dashboard__campaign-budget-item:hover svg * {
    stroke: #FFF;
}

.audiencelift-dashboard__campaign-budget-item--contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-wrap: wrap;
    gap: 16px;

}

.audiencelift-dashboard__campaign-budget-item--contact p {
    color: #13203A;
    font-feature-settings: 'calt' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    transition: all 0.3s ease;
}

.audiencelift-dashboard__campaign-budget-item--contact:hover p,
.audiencelift-dashboard__campaign-budget-item--contact:hover p a {
    color: #FFF;
}
.audiencelift-dashboard__campaign-budget-item--contact p a {
    text-decoration: underline;
    color: #13203A;
    transition: all 0.3s ease;
}

.audiencelift-dashboard__campaign-budget-description {
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 12px;
    border: 1px solid #E3E4E5;
    background: #FFF;
    width: calc(100% - 190px);
    text-align: left;
}

.audiencelift-dashboard__campaign-budget-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E3E4E5;
    width: 100%;
}

.audiencelift-dashboard__campaign-budget-description-item.is-border-top {
    border-top: 1px solid #E3E4E5;
    padding-top: 24px;
}

.audiencelift-dashboard__campaign-budget-description-item-title {
    color: #7986A0;
    font-feature-settings: 'calt' off;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.audiencelift-dashboard__campaign-budget-description-item-title svg {
    width: 20px;
    height: 20px;
}

.audiencelift-dashboard__campaign-budget-header-icon {
    display: flex;
    margin-top: 8px;
    padding: 8px 14px;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid #E3E4E5;
    background: #F9F9FA;
}

.audiencelift-dashboard__campaign-budget-description-item {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.audiencelift-dashboard__campaign-budget-description-item-value {
    margin-top: 8px;
    color: #000;
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.48px;
}

.audiencelift-dashboard__campaign-budget-description-item-description {
    color: #13203A;
    font-feature-settings: 'salt' on;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    margin-top: 10px;
}

.audiencelift-dashboard__campaign-budget-description-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-radius: 8px;
    border: 1px solid #E3E4E5;
    background: #F9F9FA;
    padding: 16px;
    width: 100%;
    color: #13203A;
    font-feature-settings: 'salt' on;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}

/**********************************************************
 *****************   VIDEO CHANNEL   *********************
 **********************************************************/


.audiencelift-dashboard__video-channel-hld {
    border-radius: 12px;
    border: 1px solid #E3E4E5;
    background: #FFF;
    padding: 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
}

.audiencelift-dashboard__video-channel-checkbox {
    border-radius: 12px;
    border: 1px solid #E3E4E5;
    background: #FFF;
    padding: 16px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.audiencelift-dashboard__video-channel-info {
    border-radius: 8px;
    border: 1px solid #E3E4E5;
    background: #F9F9FA;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 16px;
    width: 100%;
}

.audiencelift-dashboard__video-channel-info span {
    color: #13203A;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.audiencelift-dashboard__video-channel-video {
    width: 100%;
    height: 385px;
    border-radius: 6px;
    overflow: hidden;
}

.audiencelift-dashboard__video-channel-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audiencelift-dashboard__video-channel-steps {
    margin-left: 16px;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    color: #13203A;
    font-feature-settings: 'salt' on;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}


/**********************************************************
 *********************   FORM   *************************
 **********************************************************/


.audiencelift-dashboard__form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    width: 100%;
}

.audiencelift-dashboard__form-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}



.audiencelift-dashboard__form-item label {
    color: #13203A;
    font-feature-settings: 'calt' off;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
}

.audiencelift-dashboard__form-item-optional {
    color: #7986A0;
}

.audiencelift-dashboard__form-item-tooltip {
    position: relative;
    z-index: 90;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.audiencelift-dashboard__form-item-tooltip-text {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 140%;
    left: 1px;
    z-index: 200; 
    width: 240px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background-color: #203560;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 150%;
    text-align: center;
    transition: all 0.3s ease;
}


.audiencelift-dashboard__form-item-tooltip-text:before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 3px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: #203560 transparent transparent transparent;
    transform: rotate(0deg);
}

@media (max-width: 767px) {
    .audiencelift-dashboard__form-item-tooltip-text {
        left: 0;
        transform: translateX(-50%);
    }

    .audiencelift-dashboard__form-item-tooltip-text:before {
        left: auto;
        right: 3px;
    }
}

.audiencelift-dashboard__form-item-tooltip:hover .audiencelift-dashboard__form-item-tooltip-text {
    opacity: 1;
    visibility: visible;
}

.audiencelift-dashboard__form-item--input,
.audiencelift-dashboard__form-item--date,
.audiencelift-dashboard__form-item--textarea,
.audiencelift-dashboard__form-item--select {
    width: 100%;
    position: relative;
    z-index: 1;
}

.audiencelift-dashboard__form-item--input .input-description,
.audiencelift-dashboard__form-item--date .input-description,
.audiencelift-dashboard__form-item--textarea .input-description,
.audiencelift-dashboard__form-item--select .input-description {
    position: absolute;
    top: -30px;
    right: 0;
    z-index: 10;
    color: #7986A0;
    font-feature-settings: 'calt' off;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
}

@media (max-width: 767px) {
    .audiencelift-dashboard__form-item--input .input-description,
    .audiencelift-dashboard__form-item--date .input-description,
    .audiencelift-dashboard__form-item--textarea .input-description,
    .audiencelift-dashboard__form-item--select .input-description {
        position: static;
    }
}


.audiencelift-dashboard__form-item--input .input-description span,
.audiencelift-dashboard__form-item--date .input-description span,
.audiencelift-dashboard__form-item--textarea .input-description span,
.audiencelift-dashboard__form-item--select .input-description span {
    color: #13203A;
}

.audiencelift-dashboard__form-item input,
.audiencelift-dashboard__form-item--textarea textarea {
    font-family: 'Manrope', sans-serif;
    width: 100%;
    /* color: #7986A0; */
    color: #13203A;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    width: 100%;
    display: flex;
    padding: 14px 20px;
    border-radius: 8px;
    border: 1px solid #E3E4E5;
    background: #FFF;
}

.audiencelift-dashboard__form-item input::placeholder,
.audiencelift-dashboard__form-item--textarea textarea::placeholder {
    color: #7986A0;
}

.audiencelift-dashboard__form-item--checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.audiencelift-dashboard__form-item--checkbox input {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #E3E4E5;
    background: #FFF;
}

.audiencelift-dashboard__form-item-files {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .audiencelift-dashboard__form-item-files {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

.audiencelift-dashboard__form-item--file {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    height: 223px;
    border: 1px dashed #E3E4E5;
    border-radius: 8px;
    background: #ffffff;
    text-align: center;
}

.audiencelift-dashboard__form-item--file-text {
    color: #7986A0;
    text-align: center;
    font-feature-settings: 'calt' off;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.audiencelift-dashboard__form-item--file-text span {
    display: block;
    color: #7986A0;
    text-align: center;
    font-feature-settings: 'calt' off;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px; /* 150% */
}

.audiencelift-dashboard__form-item--file input {
    background: transparent;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.audiencelift-dashboard__form-item--select:before {
    content: '\2335';
    position: absolute;
    top: 11px;
    right: 20px;
    font-size: 24px;
}

.audiencelift-dashboard__form-item input:disabled,
.audiencelift-dashboard__form-item--textarea textarea:disabled {
    background-color: #F9F9FA;
    color: #A6AEBF;
}

.audiencelift-dashboard__form-item--disabled::before {
    color: #A6AEBF;
}

.audiencelift-dashboard__form-item--textarea textarea {
    height: 120px;
}

.audiencelift-dashboard__form-item--date {
    position: relative;
    z-index: 1;
}

.audiencelift-dashboard__form-item--date-icon {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 0;
}

.audiencelift-dashboard__form-item-backgrounds {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .audiencelift-dashboard__form-item-backgrounds {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
}

.player-colors, .player-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.player-color__items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.player-color__item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    position: relative;
    z-index: 1;
    border-radius: 8px;
    border: 1px solid #E3E4E5;
    background: #FFF;
    padding: 16px;
}

.player-color__item-color {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

.player-color__item-color-hld {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    overflow: hidden;
    border: 1px solid #E3E4E5;
    cursor: pointer;
}

.player-color__item-color input {
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.player-color__item-color-text  {
    color: #13203A;
    font-feature-settings: 'calt' off;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
}

/* ========================================
   UNIWERSALNE STYLE DLA DROPDOWNÓW
   ======================================== */

/* Kontener dla dropdowna */
.dropdown-hld {
    position: relative;
    z-index: 50;
}

/* Lista dropdowna */
.dropdown-list {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 100;
    border-radius: 8px;
    border: 1px solid #E3E4E5;
    background: #FFF;
    padding: 10px;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all 0.3s ease;
} 

/* Aktywny stan dropdowna */
.dropdown-list.is-active {
    opacity: 1;
    visibility: visible;
    height: auto;
    min-height: 100px;
    max-height: 260px;
}

/* Style dla pojedynczych opcji w dropdownie */
.dropdown-list .dropdown-option {
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dropdown-list .dropdown-option:hover {
    background-color: #F2F2F3;
}

.select-options ul li {
    list-style: none;
    padding: 3px 0;
}

.select-options ul li div {
    padding: 8px 20px;
    border-radius: 4px;
}

.select-options ul li div:hover {
    background-color: #F2F2F3;
}

/* ========================================
   PODCAST CATEGORIES LIST
   ======================================== */


.podcast-categories-list .podcast-category {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
}

.podcast-categories-list .podcast-category-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 8px 20px 8px 44px;
    border-radius: 4px;
}

.podcast-categories-list .podcast-category-header:hover {
    background-color: #F2F2F3;
}

.podcast-categories-list .podcast-category-header:before {

    content: '\203A';
    position: absolute;

    top: 9px;
    left: 14px;
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s ease;
}

.podcast-categories-list .podcast-category-header.is-active:before {
    transform: rotate(90deg);
}

.podcast-categories-list input[type="checkbox"] {
    border-radius: 4px;
    width: 16px;
    height: 16px;
}

.podcast-categories-list .subcategories {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding-left: 76px;
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all 0.3s ease;
}

.podcast-categories-list .subcategories.show {
    opacity: 1;
    visibility: visible;
    min-height: 100px;
    height: auto;
}

.podcast-categories-list .subcategory {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 8px 0;
    /* padding: 8px 20px 8px 44px;
    border-radius: 4px; */
    width: 100%;
}

.podcast-categories-list-selected {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px;
}

.podcast-categories-list-selected-item {
    display: flex;
    padding: 4px 8px 4px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 30px;
    background: #E3E4E5;

    color: #13203A;
    text-align: center;
    font-feature-settings: 'calt' off;
    font-size: 14px;
    font-weight: 600;
    line-height: 22px;
}

.podcast-categories-list-selected-item-remove {
    display: flex;
    width: 16px;
    height: 16px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.podcast-categories-list-selected-item-remove:before {
    content: '\00D7';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    font-size: 27px;
    line-height: 1;
    color: #13203A;
    transition: all 0.3s ease;
}

.podcast-categories-list-selected-item-remove:hover:before {
    color: #FB733B;
}

.audiencelift-dashboard__form-item-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 8px;
    gap: 8px;
}

/**********************************************************
 ******************  STEP 7 - MAIN CONTENT   ********************
 **********************************************************/

.audiencelift-dashboard__campaign-summary {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #E3E4E5;
    padding: 28px 16px;
}

.audiencelift-dashboard__campaign-summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 14px;
    padding: 0 16px;
    
}

.audiencelift-dashboard__campaign-summary-header-title {
    color: #13203A;
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.4px;
}

.link-edit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #FB733B;
    font-feature-settings: 'calt' off;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.audiencelift-dashboard__campaign-summary-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 16px;
    border-radius: 8px;
    background: transparent;
}

.audiencelift-dashboard__campaign-summary-item:nth-child(odd) {
    background: #F9F9FA;
}

.audiencelift-dashboard__campaign-summary-item-title {
    color: #4D5D80;
    font-feature-settings: 'calt' off;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    width: 260px;
}

.audiencelift-dashboard__campaign-summary-item-description {
    color: #000;
    font-feature-settings: 'calt' off;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.32px;
}



/**********************************************************
 **************   STEP7 -SUMMARY COLUMN   ****************
 **********************************************************/

.audiencelift-dashboard__step-summary-audio-player {
    border-radius: 8px;
    overflow: hidden;
    background: #C9DBDB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 200px;
    margin-bottom: 32px;
}

.audiencelift-dashboard__step-summary-audio-player-col-left {
    width: 100%;
    max-width: 240px;
    padding: 0 18px;
    display: flex;
    flex-direction: column;
}

.audiencelift-dashboard__step-summary-audio-player-console {
    background: #fff;
    border-radius: 4px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    
}
.audiencelift-dashboard__step-summary-audio-player-console .play {
    
    width: 29px;
    height: 29px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.audiencelift-dashboard__step-summary-audio-player-console-panel {
    width: 100%;
    max-width: 130px;
    display: flex;
    flex-direction: column;
}

.audiencelift-dashboard__step-summary-audio-player-console-panel-title {
    color: #13203A;
    font-feature-settings: 'salt' on;
    font-size: 11px;
    font-weight: 700;
    line-height: 160%;
}

.audiencelift-dashboard__step-summary-audio-player-console-panel-time {
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

.audiencelift-dashboard__step-summary-audio-player-console-panel-time:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: #E3E4E5;
    z-index: -1;
}

.audiencelift-dashboard__step-summary-audio-player-console-panel-time span {
    color: #7986A0;
    font-size: 9px;
    font-weight: 500;
    line-height: 160%;
    background: #fff;
}

.audiencelift-dashboard__step-summary-audio-player-console-panel-time span.start {
    padding-right: 6px;
}

.audiencelift-dashboard__step-summary-audio-player-console-panel-time span.end {
    padding-left: 6px;
}

.audiencelift-dashboard__step-summary-audio-player-description {
    color: #13203A;
    font-size: 10px;
    font-weight: 500;
    line-height: 160%;
    margin: 16px 0;
}

.u-btn--player {
    display: flex;
    padding: 6px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #F8055F;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: normal;
    transition: all 0.3s ease;
    width: 128px;
}

.audiencelift-dashboard__step-summary-audio-player-col-right {
    width: 100%;
    max-width: 200px;
}
.audiencelift-dashboard__step-summary-audio-player-placeholder {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.audiencelift-dashboard__step-summary-audio-player-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.audiencelift-dashboard__step-summary-last-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    padding: 10px 0;
    width: 100%;
}


.audiencelift-dashboard__step-summary-last-step-title {
    color: #4D5D80;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.audiencelift-dashboard__step-summary-last-step-description {
    color: #000;
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.48px;
}

.audiencelift-dashboard__examples-of-other-ads-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 21px;
    margin-top: 200px;
    
}

.audiencelift-dashboard__examples-of-other-ads-title {
    color: #13203A;
    font-size: 20px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.4px;
}

.examples-of-other-ads__slider-arrows {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.examples-of-other-ads__slider-arrows .slider-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #E3E4E5;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.examples-of-other-ads__slider-arrows .slider-btn:hover {
    border-color: #FB733B;
}


.audiencelift-dashboard__examples-of-other-ads-swiper {
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.audiencelift-dashboard__examples-of-other-ads-swiper:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 92.11%);
    z-index: 10;
}

.audiencelift-dashboard__examples-of-other-ads-swiper-slide {
    width: 190px;
}


/**********************************************************
 *********************   SUCCESS PAGE  *************************
 **********************************************************/

 .u-section--audiencelift-dashboard-step-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
 }

.audiencelift-dashboard__inner-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.audiencelift-dashboard-success__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.audiencelift-dashboard-success__title {
    color: #13203A;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.48px;
    margin: 12px 0;
}

.audiencelift-dashboard-success__description {
    text-align: center;
}
.audiencelift-dashboard-success__description p {
    margin: 0;
    padding: 0;
    color: #13203A;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    text-align: center;
}

.audiencelift-dashboard-success__cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
    width: 100%;
    max-width: 834px;
    margin: 44px 0;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid #E3E4E5;
    background: #FFF;
    backdrop-filter: blur(19.25px);
}

.audiencelift-dashboard-success__cta-img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.audiencelift-dashboard-success__cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audiencelift-dashboard-success__cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.audiencelift-dashboard-success__cta-text-title {
    color: #13203A;
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.48px;
}

.audiencelift-dashboard-success__cta-text-description {
    margin-top: 16px;
    margin-bottom: 32px;
}

.audiencelift-dashboard-success__cta-text-description p {
    color: #13203A;
    font-feature-settings: 'salt' on;
    font-size: 14px;
    font-weight: 400;
    line-height: 160%; /* 22.4px */
}

.audiencelift-dashboard-success__cta-text-button .text {
    font-size: 14px;
}
.audiencelift-dashboard-success__footer {
    
}

.audiencelift-dashboard-success__footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #13203A;
    font-feature-settings: 'calt' off;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    transition: all 0.3s ease;
}
.audiencelift-dashboard-success__footer a:hover {
    color: #FB733B;
}

/**********************************************************
 *********************   FOOTER   *************************
 **********************************************************/

.audiencelift-dashboard__footer {
    margin-top: 64px;
    margin-bottom: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 767px) {
    .audiencelift-dashboard__footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .audiencelift-dashboard__footer {
        margin-bottom: 0;
    }
}

.audiencelift-dashboard__footer-left {
    color: #7986A0;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.audiencelift-dashboard__footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}