* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 14px;
    font-family: var(--font-regular);
}

.hide {
    display: none !important;
}

main {
    background: #f2f4f5;
    color: var(--color-prime);
    padding: 16px;
    width: 100vw;
    max-width: 600px;
    min-width: 350px;
    margin: auto;
}

main>form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

main.plans {
    max-width: unset;
    gap: 24px;
    align-items: center;


    form {
        width: 100%;
    }

    .container {
        background: transparent;
    }

    .toogle-container {
        background: var(--greyOP-50, rgba(0, 35, 64, 0.05));
        width: fit-content;
        align-self: center;
        gap: 0;
        padding: 4px 0 4px 4px;


        .title {
            padding: 4px 32px;
            background: transparent;
        }

        .toogle-btn {
            padding: 0;
        }

        .toogle-btn :checked~.title {
            background: #fff;
        }
    }

    .page-title {
        font-family: var(--font-bold);
        font-size: 48px;
        line-height: 56px;
        text-align: center;
    }

    .page-text {
        font-size: 24px;
        line-height: 32px;
    }

    .prepaid-esim-plan-block {
        gap: 24px;
        border-radius: 16px;
        padding: 16px;
    }

    .prepaid-esim-plans {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;

        .container {
            background: #fff;
        }

        .esim-plan {
            display: flex;
            flex-direction: column;
            gap: 16px;

            .title {
                font-family: var(--font-bold);
                font-size: 20px;
                line-height: 28px;
            }

            .validity {
                font-size: 12px;
                letter-spacing: 0%;
                color: #4d657a;
            }
        }

        .plan-price {
            align-items: flex-end;
            gap: 16px;
            border: 1px solid rgba(0, 35, 64, 0.1);
            border-width: 1px 0;
            padding: 24px 0;

            .price-header {
                white-space: pre;
            }
        }

        button {
            width: 100%;
            background: var(--color-prime);
            color: #fff;
            padding: 12px 0;
            border-radius: 24px;
            font-size: 16px;
        }
    }

    .usp {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .usp::before {
        content: " ";
        border: 4px solid var(--color-prime);
        border-width: 0px 3px 3px 0;
        width: 4px;
        height: 12px;
        display: inline-block;
        rotate: 45deg;
    }
}

.plan-price {
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

.price-dual {
    display: flex;
    white-space: nowrap;

    .price-tag-1 {
        display: flex;
    }

    .price-tag-1::after {
        content: "|";
        display: block;
        padding: 0 2px;
    }
}

.title {
    font-weight: 600;
}

.sub-title {
    line-height: 20px;
    font-family: var(--font-light);
    font-weight: 100;
}

.title.option {
    font-size: 16px;
    font-family: var(--font-light);
    font-weight: 100;
}

.ctrl {
    display: flex;
}

.required .title::after {
    content: "*";
}

.title.page {
    font-size: 24px;
}

.container {
    background: #fff;
    border-radius: 16px;
    padding: 24px 16px;
}

.concent-block .text {
    padding: 0 0 0 28px;
}

.no-check-box .text {
    padding: 0;
}

.privacy-block .text,
.concent-block .text,
a {
    border-radius: 16px;
    font-size: 12px;
    font-weight: 100;
    font-family: var(--font-light);
    color: #00234099;
}

/* toogle button */
.toogle-container {
    --toogle-radius: 16px;
    --toogle-bgcolor: #f2f4f5;
    display: inline-flex;
    gap: 4px;
    border-radius: var(--toogle-radius);
    background: var(--toogle-bgcolor);
    width: 100%;
}

.toogle-btn input {
    width: 0;
    height: 0;
}

.toogle-btn {
    padding: 4px;
    width: 50%;
}

.toogle-btn .title {
    display: inline-block;
    border-radius: var(--toogle-radius);
    padding: 8px 12px;
    background: var(--toogle-bgcolor);
    width: 100%;
    text-align: center;
}

.toogle-btn :checked~.title {
    background: #fff;
}

/* submit button */
.container.last {
    flex-grow: 1;
    background: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.container.last button {
    width: 100%;
    background: var(--color-prime);
    color: #fff;
    padding: 16px 24px;
    border-radius: 24px;
    font-size: 16px;
}

/* input */
.input-field {
    margin: 16px 0 0;
}

.input-field>.title {
    font-weight: 300;
    margin-bottom: 8px;
}

.input-field input {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    border: 1px solid #7f909f;
    padding: 12px 16px;
}

/* input check boxes */
.concent-block input,
.accordion>input {
    display: none;
    width: 0;
    height: 0;
}

.concent-block .title,
.accordion .accordion-ctrl {
    display: flex;
    gap: 8px;
    align-items: center;
}

.concent-block label .title::before,
.accordion .accordion-ctrl::before {
    display: block;
    content: " ";
    border: 1px solid #7f909f;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    text-align: center;
}

.concent-block label .title.error::before {
    border: 1px solid red;
}

.concent-block label :checked~.title::before,
.accordion :checked~.accordion-ctrl::before {
    content: "\2713";
    color: #fff;
    background: var(--color-prime);
}

/* input fix 'element' visivility */
.required input[required] {
    display: inline-block;
}

/* accordion */
.accordion :checked~.accordion-content {
    display: block;
}

.accordion-ctrl .title {
    display: inline-block;
    font-weight: 100;
}

.accordion-content {
    display: none;
}

/* Final page */

main.final {
    gap: 20px;

    .container {
        padding: 0;
    }

    .message-box {
        align-items: center;
        gap: 22px;

        .container {
            padding: 16px;
        }

        .title {
            font-size: 44px;
            font-family: var(--font-bold);
        }
    }

    .container.row {
        display: flex;
        justify-content: space-between;

        .title {
            font-weight: 100;
        }
    }

    .container.info-box {
        display: flex;
        gap: 8px;
    }

    .container.info-box::before {
        content: url("../../images/bell-green.svg");
        width: 32px;
        display: block;
    }

    .container.info-box .notification-info {
        padding: 0;
        gap: 8px;
    }

    .container.order-info-box {
        gap: 8px;
    }

    .container-title {
        font-size: 16px;
    }

    .title.bottom-border {
        border-bottom: 1px solid #CCD3D9;
        padding: 0 0 8px;
        margin: 0 0 8px;
    }

    .value.paid {
        background-color: #DCFAD9;
        padding: 4px;
    }
}

main.final>.container {
    padding: 16px;
}

.header {
    display: flex;
    padding-top: 28px;
}

.yettel-logo {
    content: url("../images/yettel-logo.svg");
    /* margin-right: auto; */
}

.question {
    margin: 16px 0px;
    border-bottom: 1px solid #00234040;
}

.question .header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.question .header .text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    text-align: start;
    color: #002340;
    font-family: "font-regular";
    margin: 0px;
}

.answear {
    font-size: 14px;
    line-height: 20px;
    font-weight: 100;
    text-align: start;
    font-family: "font-light";
    margin: 8px 0px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.65, -0.01, 0.37, 1.11);
}

.question .answear.open {
    max-height: 150px;
    overflow: scroll;
    scrollbar-width: none;
    padding: 10px 0px;
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.breadcrumbs a {
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
    color: #002340;
}

.breadcrumbs a:last-child {
    color: #4D657A;
}

.breadcrumbs .chevron {
    content: url("../../yettel/images/ico_arrow_right.svg");
}

.question .header .chevron {
    content: url("../../yettel/images/ico_arrow_right.svg");
    rotate: 90deg;
}

.question .header .chevron.open {
    rotate: 270deg;
}

.faq .title {
    font-size: 20px;
}

.faq .see-all {
    padding: 8px 12px;
    border-radius: 100px;
    background-color: #00234005;
    display: flex;
    font-size: 16px;
    justify-content: center;
    justify-self: end;
    line-height: 20px;
    border: none;
    color: #002340;
}

.faq.faq-page .header form {
    display: flex;
    justify-self: end;
    justify-content: end;
    width: fit-content;
    margin-left: auto;
}

html,
body,
main {
    background-color: #f2f4f5;
}

.terms {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.terms a {
    display: flex;
    align-self: center;
    color: #0070E0;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
}

form .header {
    gap: 28px;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (max-width: 460px) {
    form .header {
        justify-content: center;
    }
}

@media (max-width: 800px) {
    .faq .vignette-banner-bg {
        content: url("../images/vignette-mobile-banner-bg.svg");
        width: 100dvw;
        margin: 60px 0px 80px 0px;
    }

    .faq .vignette-banner-en {
        content: url("../images/vignette-mobile-banner-en.svg");
        width: 100dvw;
        margin: 60px 0px 80px 0px;
    }

    .faq.faq-page .header,
    .faq.faq-page .question {
        margin: 0px 20px;
    }

    .faq.faq-page .question .header {
        margin: 0px;
    }
}

.vignette-banner-bg {
    content: url("../images/vignette-banner-bg.svg");
    width: 100dvw;
    margin: 60px 0px 80px 0px;
}

.vignette-banner-en {
    content: url("../images/vignette-banner-en.svg");
    width: 100dvw;
    margin: 60px 0px 80px 0px;
}

.faq-page .header,
.faq-page .question {
    max-width: 800px;
    margin: auto;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}