/* TO FIX OR ADD IN NEXT RELEASE */
.layout--sm {
    max-width: 648px;
    margin: auto;
}
.hero-pop {
    margin-bottom: 30px;
}
.section-full {
    padding: 60px 0;
}
/* @media (min-width: 1440px) {
    .branding-wrapper,
    .hero,
    .layout {
        max-width: 1440px;
    }
    .hero-pop-content {
        padding: 90px;
    }
    .hero-pop h1 {
        font-size: 80px;
        line-height: 1;
    }
} */
.main-footer,
.page-container {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}
.btn-blob_container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.flex-center-v {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.flex-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (min-width: 992px) {
    .grid .item-quarter {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .grid .item-third {
        flex: 0 0 33%;
        max-width: 33%;
    }
    .grid .item-full {
        flex: 1;
        max-width: 100%;
    }
    .grid .item-half {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* TO MODIFY IN NEXT RELEASE */
.btn-blob {
    min-width: 140px;
}
.footnotes-container {
    margin-top: 90px;
}
/* ================================= */
/* Typography */
h2 {
    font-family: INGDisplay, Arial;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.166;
    letter-spacing: -0.48px;
    margin-bottom: 30px;
}
ul.list-check,
ul.list-og-dot {
    margin-bottom: 30px;
}
ul.list-check,
ul.list-check li {
    list-style: none;
}
ul.list-check li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}
ul.list-check li:before {
    content: "";
    display: block;
    width: 14px;
    height: 7px;
    border-bottom: 3px solid;
    border-left: 3px solid;
    transform: rotate(-45deg);
    position: absolute;
    left: 5px;
    top: 10px;
}
ul.list-og-dot,
ul.orange-dot li {
    list-style: none; 
}
ul.list-og-dot li {
    padding-left: 20px;
    position: relative;
}
ul.list-og-dot li:before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: var(--bgcolor-orange);
    position: absolute;
    left: 2px;
    top: 8px; 
}
@media(min-width: 768px) {
    h2 {
        font-size: 48px;
    }
}

/* Colors */
:root,
:root.light {
  /* 2025 ING secondary colors: */
  --color-violet500: #7724FF;
  --color-sky501: #89D6FD;
  --color-maroon500: #4D0020;
  --color-raspberry500: #D40199;
  --color-blush500: #F689FD;
  --color-sun500: #FFE100;

  /* 2025 Accent color palette */
  --color-violet100: #F1E9FF;
  --color-violet200: #B487FF;
  --color-violet800: #3C1280;
  --color-sky100: #E4F5FF;
  --color-sky200: #BEE8FE;
  --color-sky800: #185A7B;
  --color-maroon100: #FBE6F5;
  --color-maroon200: #FF9FC7;
  --color-maroon800: #340016;
  --color-raspberry200: #FF68D5;
  --color-raspberry800: #8F096A;
  --color-blush200: #FABEFE;
  --color-blush800: #BE08C9;
  --color-sun100: #FFFCE5;
  --color-sun200: #FFEE73;
  --color-sun800: #AA9600;
  --color-grey05: #0D0804;

  --bgcolor-sky500: #89D6FD;
  --bgcolor-maroon100: #FBE6F5;
  --bgcolor-maroon500: #4D0020;
  --bgcolor-grey01: #F7F4F1;
  
}
:root.dark {
    --color-grey05: #fff;
    --color-maroon500: #fff;
    
    --bgcolor-sky500: #185A7B;
    --bgcolor-maroon500: #4D0020;
    --bgcolor-maroon100: #340016;
    --bgcolor-grey01: #111010;
}

.bg-gray {
    background-color: var(--bgcolor-grey01);
}
.color-violet500 { color: var(--color-violet500) !important; }
.color-sky500 { color: var(--color-sky501) !important; }
.color-maroon500 { color: var(--color-maroon500) !important; }
.color-raspberry500 { color: var(--color-raspberry500) !important; }
.color-blush500 { color: var(--color-blush500) !important; }
.color-sun500 { color: var(--color-sun500) !important; }
.color-violet100 { color: var(--color-violet100) !important; }
.color-violet200 { color: var(--color-violet200) !important; }
.color-violet800 { color: var(--color-violet800) !important; }
.color-sky100 { color: var(--color-sky100) !important; }
.color-sky200 { color: var(--color-sky200) !important; }
.color-sky800 { color: var(--color-sky800) !important; }
.color-maroon100 { color: var(--color-maroon100) !important; }
.color-maroon200 { color: var(--color-maroon200) !important; }
.color-maroon800 { color: var(--color-maroon800) !important; }
.color-raspberry200 { color: var(--color-raspberry200) !important; }
.color-raspberry800 { color: var(--color-raspberry800) !important; }
.color-blush200 { color: var(--color-blush200) !important; }
.color-blush800 { color: var(--color-blush800) !important; }
.color-sun100 { color: var(--color-sun100) !important; }
.color-sun200 { color: var(--color-sun200) !important; }
.color-sun800 { color: var(--color-sun800) !important; }

.bg-violet500 { background-color: var(--color-violet500) !important; }
.bg-sky500 { background-color: var(--bgcolor-sky500) !important; }
.bg-maroon500 { background-color: var(--bgcolor-maroon500) !important; }
.bg-raspberry500 { background-color: var(--color-raspberry500) !important; }
.bg-blush500 { background-color: var(--color-blush500) !important; }
.bg-sun500 { background-color: var(--color-sun500) !important; }
.bg-violet100 { background-color: var(--color-violet100) !important; }
.bg-violet200 { background-color: var(--color-violet200) !important; }
.bg-violet800 { background-color: var(--color-violet800) !important; }
.bg-sky100 { background-color: var(--color-sky100) !important; }
.bg-sky200 { background-color: var(--color-sky200) !important; }
.bg-sky800 { background-color: var(--color-sky800) !important; }
.bg-maroon100 { background-color: var(--color-maroon100) !important; }
.bg-maroon200 { background-color: var(--color-maroon200) !important; }
.bg-maroon800 { background-color: var(--color-maroon800) !important; }
.bg-raspberry200 { background-color: var(--color-raspberry200) !important; }
.bg-raspberry800 { background-color: var(--color-raspberry800) !important; }
.bg-blush200 { background-color: var(--color-blush200) !important; }
.bg-blush800 { background-color: var(--color-blush800) !important; }
.bg-sun100 { background-color: var(--color-sun100) !important; }
.bg-sun200 { background-color: var(--color-sun200) !important; }
.bg-sun800 { background-color: var(--color-sun800) !important; }

.color-black {color: var(--color-black)}
.color-white {color: var(--color-white)}
.bg-gray01 { background-color: var(--bgcolor-grey01) !important; }


/* Typography */
h1, h2, h3, h4 {
    font-family: INGDisplay, Arial;
}
.pachete-ing__h2 {
    font-size: 48px;
    font-family: INGDisplay, Arial;
    margin: 0.4em 0 1em;
    text-align: center
}
@media(min-width: 768px) {
    .pachete-ing__h2 {
        text-align: left;
        margin: 0.5em 0 1em;
    }
}

.pachete-ing__h2--mt0 {
    margin-top: 0;
}

/* "Pachete" section */
.pachete-ing .embla__controls {
    justify-content: center;
}
.pachete-ing .embla__buttons {
    display: none;
}
.pachete-ing .embla__dots {
    grid-column-start: 2;
}
.pachete-ing .embla__dot {
    font-family: ing_me_bold;
    display: inline-block;
    padding: 12px 15px;
    width: auto !important;
    border-radius: 20px;
    line-height: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
    font-size: 16px !important;
    color: inherit;
}
.pachete-ing .embla__dot--selected {
    background: var(--bgcolor-orange);
    color: var(--color-white);
}
.pachete-ing .embla__dot:first-child:before {
    content: "Go"
}
.pachete-ing .embla__dot:nth-child(2):before {
    content: "More"
}
.pachete-ing .embla__dot:nth-child(3):before {
    content: "Extra"
}
.pachet-ing {
    margin-bottom: 60px;
}
.pachet-ing .item-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.pachet-ing__img {
    z-index: 1;
    position: relative;
    padding-bottom: 90%;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}
.pachet-ing__img img {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translate(0, -50%);
}
.pachet-ing__content {
    border: 1px solid #A69F98;
    margin-top: -1px;
    padding: 30px 15px 96px;
    border-radius: 0 0 16px 16px;
    flex-grow: 1;
    position: relative;
}
.pachet-ing__title {
    position: relative;
}
.pachet-ing__title h2 {
    padding-right: 75px;
}
.pachet-ing__title h3 {
    font-size: 42px;
    margin: 0;
    font-family: INGDisplay, Arial;
    color: var(--color-orange)
}
.pachet-ing__title h3 small {
    font-size: 19px;
    display: block;
    color: var(--color-grey05);
}
.pachete-ing__info-buble {
    position: absolute;
    right: 0;
    top:0;
    text-align: center;
    width: 70px;
    height: 70px;
}
.pachete-ing__info-buble p {
    color: var(--color-white);
    font-family: "ing_narrow_regular";
    
}
.pachete-ing__info-buble p span {
    display: block;
    font-size: 24px;
    font-family: INGDisplay, Arial;
}
.pachete-ing__info-buble svg {
    position: absolute;
    top:0;
    right: 0;
    width: 100%;
    z-index: -1;
}
.pachet-ing__btn-container {
    text-align: center;
    position: absolute;
    bottom: 30px;
    left: 0;
    right:0;
}
.embla-outer-container {
    margin: 0 -15px;
}
@media(min-width: 992px) {
    .pachet-ing__content {
        padding: 30px 30px 96px;
    }
}
@media(min-width: 768px) {
    .pachete-ing .embla__controls {
        display: none;
    }
    .pachet-ing__img {
        padding: 0;
    }
    .pachet-ing__img img {
        position: static;
        transform: none;
    }
    .pachet-ing--go .pachet-ing__img {
        padding-top: 80px;
    }
    .pachet-ing--more .pachet-ing__img {
        padding-top: 40px;
    }
    .embla-outer-container {
        margin: 0;
    }
}

.pachet-ing__btn,
.pill-btn {
    background-color: #0D0804;
    color: #fff;
    padding: 11px 25px;
    font-family: 'ing_me_bold';
    border-radius: 30px;
    line-height: 1;
    display: inline-block;
    border: 3px solid #0D0804;
}
.pachet-ing__btn:hover,
.pill-btn:hover,
.pill-btn--inverse {
    color: var(--color-grey05);
    border-color:  var(--color-grey05);
    background-color: transparent;
}
.pill-btn--dark:hover,
.pill-btn--inverse:hover {
    background-color: #0D0804;
    color: #fff;
    border-color: #fff;
}
.pill-btn-orange {
    background-color: #ff6200;
    border-color: #ff6200;
}
.pill-btn-orange:hover {
    border-color: #ff6200;
    color: #ff6200;
}
.pill-btn-maroon {
    background-color: #4D0020;
    border-color: #4D0020;
}
.pill-btn-maroon:hover {
    border-color: var(--color-maroon500);
    color: var(--color-maroon500);
}
.pill-btn--prev,
.pill-btn--next {
    position: relative;
}
.pill-btn--prev {
    padding-left: 32px;
}
.pill-btn--prev:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    border-left: 2px solid;
    border-bottom: 2px solid;
    left: 14px;
    transform: rotate(45deg);
    top: 14px
}
.pill-btn--next {
    padding-right: 32px;
}
.pill-btn--next:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    border-right: 2px solid;
    border-top: 2px solid;
    right: 14px;
    transform: rotate(45deg);
    top: 14px;
}


/* Promo section */
.section-promo {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    background-color: var(--bgcolor-grey01);
    padding: 30px 0;
    flex-wrap: wrap;
}
.section-promo:before,
.section-promo:after {
    content: "";
    background-color: var(--bgcolor-grey01);
    display: block;
    position: absolute;
    top:0;
    bottom:0;
    width: 1000px;
}
.section-promo:before {
    left: -1000px;
}
.section-promo:after {
    right: -1000px;
}
.section-promo__image {
    display: flex;
}
.section-promo__image img {
    max-width: 100px;
}
.section-promo__content {
    display: flex;
    align-items: center;
    flex-basis: calc(100% - 100px);
    padding-left: 10px;
}
.section-promo__btn-container {
    text-align: center;
    padding-top: 20px;
    flex-basis: 100%;
}
.section-promo__btn {
    color: var(--color-grey05);
    font-family: ing_me_bold;
    line-height: 1;
    display: inline-block;
    padding: 10px 25px;
    border: 3px solid var(--color-grey05);
    border-radius: 20px;
}
@media(min-width: 992px) {
    .section-promo {
        flex-wrap: nowrap;
    }
    .section-promo__image img {
        max-width: 100%;
    }
    .section-promo__content {
        flex-basis: auto;
    }
    .section-promo__btn-container {
        padding-left: 30px;
        flex-basis: auto;
    }
}

/* Steps section */
.section-steps {
    margin-bottom: 60px;
}
.section-steps ul {
    counter-reset: listStyle;
    list-style: none;
}

.section-steps ul li {
    margin-left: 1em;
    counter-increment: listStyle;
    list-style: none;
    margin: 0;
    text-align: center;
    margin-bottom: 30px;
}

.section-steps ul li::before {
    content: counter(listStyle, numeric);
    font-family: ing_me_bold;
    background-color: #ff6200;
    display: inline-block;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    line-height: 48px;
    text-align: center;
    color: var(--color-white);
    font-size: 28px;
    margin-bottom: 15px;
}

/* Banner section */
.section-banner {
    min-height: 680px;
    background-position: center;
    background-size: cover;
    position: relative;
    margin: 30px -15px 60px;
}
.section-banner__content {
    position: absolute;
    background-color: var(--bgcolor-maroon100);
    border-radius: 16px;
    width: calc(100% - 30px);
    left: 15px;
    padding: 30px;
    font-size: 19px;
    line-height: 1.6;
    bottom: 15px;
}
@media(min-width: 768px) {
    .section-banner {
        min-height: 400px;
        margin: 120px 0 60px;
    }
    .section-banner__content {
        width: 445px;
        left: 30px;
        top: -60px;
        bottom: auto;
    }
}
.section-banner__content h2 {
    margin-top: 0;
    font-size: 42px;
}
.section-banner__link-container {
    margin-top: 30px;
}
.section-banner__link {
    font-family: ing_me_bold;
    display: inline-block;
    padding: 8px 28px;
    line-height: 1;
    color: var(--color-white);
    background: var(--bgcolor-orange);
    border-radius: 20px;
    border: 2px solid var(--bgcolor-orange);
}
.section-banner__link:hover {
    color: var(--bgcolor-maroon800);
    background-color: var(--bgcolor-white);
    border-color: var(--color-white);
}


/* perks table Section */
.perks-table {
    display: none;
}
@media(min-width: 768px) {
    .perks-table {
        display: block;
        margin-bottom: 90px;
    }
}
table.pricing-table,
table.pricing-table>tbody td,
table.pricing-table>tbody th {
    border: none;
}
table.pricing-table >thead th {
    background-color: transparent;
    color: inherit;
    vertical-align: top;
    /* padding: 10px 0; */
}
table.pricing-table h3 {
    color: var(--color-orange);
    margin-top: 0;
}
.pricing-table .section td {
    font-size: 32px;
    text-transform: uppercase;
    display: block;
    text-align: left;
    background-color: transparent !important;
    padding: 45px 10px 30px;
    line-height: 1.1;
    height: auto;
}
table.pricing-table tbody tr:nth-child(odd) >td {
    background-color: var(--bgcolor-grey01)
}
.pricing-table th,
.pricing-table td {
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    height: 68px;
}
.pricing-table td:first-child {
    text-align: left;
}
.pricing-table tbody .section:first-child td{
    padding-top: 135px !important;
    position: relative;
}
.pricing-table  .pachete-ing__salary-select {
    padding-bottom: 0;
}
.pricing-table thead{
    position:absolute;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.92);
}
html.dark .pricing-table thead {
    background-color: rgba(33, 33, 33, 0.88);
}
.pricing-table.fixed-thead thead {
    position: fixed;
    top:0;
}
.icon-state {
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: top;
}
.icon-state--success{
    background-image: url("/dam/ingro/persoane-fizice/carduri-si-conturi/pachete-conturi-curente/images/success-true.svg");
}
.icon-state--false {
    background-image: url("/dam/ingro/persoane-fizice/carduri-si-conturi/pachete-conturi-curente/images/success-false.svg");
}
tr.pricing-table__cta-container td {
    padding-top: 30px;
    background: transparent !important;

    .pachet-ing__btn {
        margin-top: 15px;
    }
}

/* Custom Modal */
.modal-content {
    border-radius: 16px;
}
.modal-title {
    margin-top: 45px;
}
input[type=text], input[type=email], input[type=number], input[type=password], input[type=tel], input[type=search], textarea, select {
    border-radius: 12px;
}
.submit-btn {
    border-radius: 18px;
    font-family: 'ing_me_bold';
}
#client-type {
    display: none;
}
#client-type + label {
    font-family: ing_me_bold;
    /* border: 1px solid rgba(0, 0, 0, .2); */
    /* background: #FBE6F5; */
    background-color: var(--bgcolor-grey01);
    padding: 8px 0;
    line-height: 1;
    border-radius: 22px;
    display: flex;
    max-width: 320px;
    margin:auto;
    position: relative;
    cursor: pointer;
}
#client-type + label span {
    display: inline-block;
    width: 50%;
    position: relative;
    transition: color 0.3s ease;
}
#client-type + label span:first-child {
    color: var(--color-white)
}
#client-type:checked + label span:first-child {
    color: var(--color-black)
}
#client-type:checked + label span:last-child {
    color: var(--color-white)
}
#client-type + label:before {
    content: "";
    display: inline-block;
    background: #4D0020;
    width: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    border-radius: 22px;
    left: 0;
    transition: all 0.3s ease;
}
#client-type:checked + label:before {
    /* left: calc(50% - 3px) */
    left: 50%;
}
.client-type {
    overflow: hidden;
    transition: all 0.3s ease;
}
.client-type .pachet-ing__btn {
    background: #FF6200;
    border-color: #FF6200;
    margin: 30px 0;
}
.client-type__client,
#client-type:checked  ~ .client-type__non-client{
    opacity: 0;
    visibility: hidden;
    height: 0;
}
#client-type:checked  ~ .client-type__client {
    opacity: 1;
    visibility: visible;
    height: auto;
}


/* Window into the future */
.window-into-the-future {
    margin-bottom: 0;
}
.witf-text {
    padding: 60px 30px;
    order:2
}
.witf-text h2 {
    font-family: INGDisplay, Arial;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.166;
    letter-spacing: -0.48px;
    margin-bottom: 30px;
}
.witf-text li {
    list-style: none;
    margin-bottom: 15px;
}
.witf-capture {
    width: 100%;
}

@media(min-width: 992px) {
    .witf-text {
        order: 1;
    }
    .witf-capture {
        order: 2;
    }
    .witf-capture img {
        width: 100%;
        margin-bottom: 12%;
    }
}
@media(min-width: 1230px) {
    .witf-text {
        padding: 60px 30px 60px 60px;
    }
}


/* Single Highlight */
.section-single-highlight {
    padding: 90px 0 70px;
    margin-bottom: 60px;
}
.section-single-highlight_btn-container {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.section-single-highlight_btn-container a {
    margin-bottom: 20px;
}
.section-single-highlight_btn-container a:last-child {
    background-color: transparent;
    color: inherit;
    border-color: var(--color-white);
}
.section-single-highlight_btn-container a:last-child:hover {
    background-color: var(--bgcolor-grey01);
    border-color: var(--bgcolor-grey01);
    color: var(--color-black);
}


/* Footnotes */
.footnotes-container ul,
.footnotes-container li {
    list-style: none;
}



/* Outside the box banner */
.outside-the-box {
    position: relative;
    margin: 0 -15px 60px;
    padding-bottom: 90px;
}
.outside-the-box h1 {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 30px;
    margin-top: 30px;
    color: var(--color-orange);
    padding: 0 15px;
}
.outside-the-box__picture {
    overflow: hidden;
    position: absolute;
    bottom: 0;
    z-index: -1;
    min-height: 380px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.outside-the-box__picture img {
    position: absolute;
    min-width: 100%;
}
.outside-the-box__content {
    background-color: #ff6200;
    color: #fff;
    border-radius: 16px;
    padding: 30px;
    margin: 0 15px;
    min-height: 360px;
}
@media(min-width: 768px) {
    .outside-the-box {
        margin-top: 15px;
        padding: 0 15px;
    }
    .outside-the-box h1 {
        margin-top: 0;
        padding: 0;
    }
    .outside-the-box__content {
        position: absolute;
        right: 60px;
        top: 0;
        z-index: 1;
        width: 100%;
        max-width: 400px;
        margin: 0;
    }
    .outside-the-box__picture {
        overflow: hidden;
        position: relative;
        min-height: 460px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.outside-the-box__content a {
    color: #fff;
}
.outside-the-box__content ul {
    margin-bottom: 30px;
}
.outside-the-box__content li {
    margin-bottom: 15px;
}


/* Details "pachet" */
.pachet-details {
    margin-bottom: 90px;
}
.pachet-details h3 {
    font-family: ing_me_bold, Arial;
    text-transform: uppercase;
}
.pachet-details p + h3 {
    margin-top: 45px;
}
.pachet-details li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.pachet-nav {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}


/* Brief Cards */
.section-brief {
    margin-bottom: 60px;
}
.custom-cards__item {
    background-color: var(--bgcolor-grey01);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.custom-cards__item img {
    max-width: 100%;
    width: 100%;
}
.custom-cards__content {
    padding: 15px;
}
.section-brief__btn-container {
    margin-top: auto;
    padding: 0 15px 20px;
}
.section-brief__btn {
    appearance: none;
    border: none;
    background: transparent;
    font-family: ing_me_bold;
    color: inherit;
    display: block;
}
.section-brief__btn:after {
    content: ">";
    display: inline-block;
    vertical-align: middle;
    background: var(--color-grey05);
    color: var(--color-white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-left: 10px;
    line-height: 1;
    padding: 6px;
    margin-top: -3px;
    text-align: center;
}
.section-brief__btn:hover {
    text-decoration: underline;
}
.embla__controls {
    margin-bottom: 15px;
    padding: 0 15px;
    margin-top: 0 !important;
}
.embla__buttons {
    grid-column-start: 3;
}
.embla__button {
    border: 2px solid !important;
    line-height: 1;
    width: 36px !important;
    height: 36px !important;
    margin-left: auto !important;
}
.embla__button:disabled {
    opacity: 0.5;
}
@media(max-width: 767px) {
    .section-brief .embla {
        --slide-size: 100%;
    }
}


/* Detalii pachete mobile */
.pachete-ing__detalii {
    margin-bottom: 90px;
}
.pachete-ing__detalii h2,
.pachete-ing__detalii p {
    text-align: center;
}
.pachete-ing__detalii h3 {
    display: none;
}
.pachete-ing__detalii h2 {
    margin-bottom: 15px;
}
.pachete-ing__detalii .embla {
    margin-top: 45px;
}
.pachete-ing__detalii h4 {
    margin: 0;
    text-transform: uppercase;
    font-family: ing_me_regular;
}
.pachete-ing__detalii ul li {
    display: flex;
    min-height: 58px;
    justify-content: space-between;
    padding-bottom: 25px;
    width: 100%;
}
.pachete-ing__detalii ul li > span {
    text-align: right;
}
.pachete-ing__detalii ul li > .icon-state {
    margin-left: 10px;
}
.pachete-ing__detalii .embla__viewport {
    padding: 0 !important;
}
.pachete-ing__salary-select {
    padding-bottom: 30px;
}
.pachete-ing__salary-select label {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.toggle-icon {
    display: inline-block;
    width: 44px;
    height: 24px;
    background-color: var(--bgcolor-gray200);
    border-radius: 15px;
    position: relative;
    margin-left: 20px;
}
.toggle-icon:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--bgcolor-white);
    border-radius: 50%;
    position:absolute;
    top: 2px;
    left: 2px;
    transition: left 0.2s ease;
}
#salary-status,
#salary-status--desktop {
    display: none;
}
#salary-status:checked + .toggle-icon,
#salary-status--desktop:checked + .toggle-icon  {
    background-color: var(--bgcolor-orange);
}
#salary-status:checked + .toggle-icon:after,
#salary-status--desktop:checked + .toggle-icon:after {
    left: 22px;
}
@media(min-width: 768px) {
    .pachete-ing__detalii {
        display: none;
    }
}
.salary-state--false,
.salary-selection-false .salary-state--true{
    display: none;
}
.salary-selection-false .salary-state--false {
    display: inline;
}

.tooltip {
    font-family: ing_me_regular, Arial;
}