.container-jdf-product-banner-white {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center left;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.container-jdf-product-banner-white .row {
    display: flex;
    flex-direction: row;
    min-height: 540px;
    position: relative;
    justify-content: flex-end;
}

.container-jdf-product-banner-white .col-image {
    width: 854px;
    height: 540px;
    overflow: hidden;
}

.container-jdf-product-banner-white .col-image img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.container-jdf-product-banner-white .col-content {
    width: 600px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}

.container-jdf-product-banner-white .wrap-content {
    clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 65% 100%);
    background-image: url('../images/bg-ellipse-bottom-left-white.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
    align-items: flex-start;
    padding-left: 64px;
    padding-top: 0;
    justify-content: center;
}

.container-jdf-product-banner-white .content {
    width: 333px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.container-jdf-product-banner-white .line {
    background-color: #FFDE00;
    height: 4px;
    border-radius: 8px;
    margin-bottom: 4px;
    display: inline-block;
    width: 32px;
}

.container-jdf-product-banner-white .title {
    color: var(--e-global-color-primary);
    font-family: "JD Sans Pro";
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 16px;
}

.container-jdf-product-banner-white .title h2 {
    color: var(--e-global-color-primary);
    font-family: "JD Sans Pro";
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 0;
    margin-top: 0;
}

.container-jdf-product-banner-white .description {
    color: var(--e-global-color-text);
    font-family: "JD Sans Pro";
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    margin: 0 0 24px;
}

.container-jdf-product-banner-white .description p:last-child {
    margin-bottom: 0;
}

.container-jdf-product-banner-white .list {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 24px;
}

.container-jdf-product-banner-white .itemlist .wrap-itemlist {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.container-jdf-product-banner-white .itemlist .wrap-itemlist .icon {
    line-height: normal;
    flex-shrink: 0;
}

.container-jdf-product-banner-white .itemlist .wrap-itemlist .icon svg {
    display: block;
}

.container-jdf-product-banner-white .itemlist .wrap-itemlist .icon rect,
.container-jdf-product-banner-white .itemlist .wrap-itemlist .icon path {
    stroke: var(--e-global-color-text);
}

.container-jdf-product-banner-white .itemlist .text {
    color: var(--e-global-color-text);
    font-family: "JD Sans Pro";
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
}

.container-jdf-product-banner-white .button {
    display: flex;
}

.container-jdf-product-banner-white .button .btn {
    color: #ffffff;
    font-family: "JD Sans Pro";
    font-size: 16px;
    font-weight: 700;
    display: flex;
    line-height: normal;
    gap: 16px;
    padding: 16px 32px;
    border-radius: 4px;
    background-color: var(--e-global-color-primary);
    border: 1px solid var(--e-global-color-primary);
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    transition: all 500ms linear 0s;
    opacity: 1;
}

.container-jdf-product-banner-white .button .btn:hover {
    opacity: 0.7;
}

.popup-container-jdf-product-banner-white {
    z-index: 999;
    position: fixed;
    bottom: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%); 
    right: 0;
    display: none;
    margin: 0 auto;
    max-width: 360px;
}

.popup-container-jdf-product-banner-white .content-form  {
    background-color: #ffffff;
    padding: 48px 24px;
    border-radius: 16px;
    position: relative;
}

.popup-container-jdf-product-banner-white .icon {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    cursor: pointer;
}

.popup-container-jdf-product-banner-white .popup-title .text {
    color: var(--e-global-color-primary);
    font-family: "JD Sans Pro", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 16px;
    padding-right: 22px;
}

.popup-container-jdf-product-banner-white .popup-title .line {
    background-color: #FFDE00;
    width: 80px;
    height: 4px;
    border-radius: 4px;
    margin-bottom: 32px;
}

.popup-container-jdf-product-banner-white .btn-close {
    background-color: var(--e-global-color-primary);
    width: 32px;
    height: 32px;
    border-radius: 16px;
    position: absolute;
    top: -12px;
    right: -12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    cursor: pointer;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.popup-container-jdf-product-banner-white .btn-submit {
    display: flex;
    padding: 16px 32px;
    gap: 16px;
    color: #ffffff;
    font-family: "JD Sans Pro", Sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    width: 100%;
    border: 0 solid transparent;
    background-color: var(--e-global-color-primary);
    border-radius: 4px;
    transition: all 500ms linear 0s;
    opacity: 1;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.popup-container-jdf-product-banner-white .btn:hover {
    opacity: 0.7;
}

.popup-container-jdf-product-banner-white .btn .text {
    flex-shrink: 0;
    display: flex;
    height: auto;
}

.popup-container-jdf-product-banner-white .wpcf7-list-item {
    margin: 0;
}

.popup-container-jdf-product-banner-white .wpcf7-list-item-label,
.popup-container-jdf-product-banner-white .wpcf7-list-item-label a {
    color: #54585A;
    font-family: "JD Sans Pro", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
}

.popup-container-jdf-product-banner-white .wpcf7-list-item label {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: flex-start;
    flex-wrap: nowrap;
}

.popup-container-jdf-product-banner-white .wpcf7-list-item label input[type="checkbox"] {
    width: 17px;
    height: 17px;
}

.popup-container-jdf-product-banner-white input[type="text"],
.popup-container-jdf-product-banner-white input[type="tel"],
.popup-container-jdf-product-banner-white input[type="email"] {
    padding: 16px;
    height: 48px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-top: 1px solid transparent;
    border-bottom: 1px solid rgba(84, 88, 90, 0.2);
    color: rgba(84, 88, 90, 1);
    font-family: "JD Sans Pro", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.popup-container-jdf-product-banner-white :focus-visible {
    outline: -webkit-focus-ring-color auto 0;
}

.popup-container-jdf-product-banner-white .input-field {
    margin-bottom: 24px;
}

.popup-container-jdf-product-banner-white .input-field-acceptance {
    margin-bottom: 32px;
}

.popup-container-jdf-product-banner-white .input-field-submit {
    width: 100%;
    margin-bottom: 0;
    position: relative;
}

.popup-container-jdf-product-banner-white .wpcf7-spinner {
    margin: 0;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.overlay-container-jdf-product-banner-white {
    background-color: #000000;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    opacity: .4;
    display: none;
}

@media(max-width: 1215px) {
    .container-jdf-product-banner-white {
        border-radius: 16px;
        background-size: 100%;
        background-position: top center;
    }

    .container-jdf-product-banner-white .row {
        flex-direction: column-reverse;
        min-height: initial;
    }

    .container-jdf-product-banner-white .col-image {
        width: 100%;
        height: auto;
    }

    .container-jdf-product-banner-white .title {
        font-size: 24px;
    }

    .container-jdf-product-banner-white .description p br {
        display: none;
    }

    .container-jdf-product-banner-white .col-content {
        /* background-image: linear-gradient(185deg, rgb(0 0 0 / 0%) 8%, rgb(255 255 255) 8%); */
        width: 100%;
        padding: 48px 16px 16px;
        background-position: top left;
        position: relative;
        margin-top: -56px;
        clip-path: polygon(0% 100%, 0% 0%, 100% 10%, 100% 100%);
        background-repeat: no-repeat;
        background-color: white;
    }

    .container-jdf-product-banner-white .col-content .content {
        width: 100%;
    }

    .container-jdf-product-banner-white .wrap-content {
        background-image: none;
        padding-left: 0;
        padding-top: 0;
        clip-path: none;
    }

    .container-jdf-product-banner-white .button .btn {
        width: 100%;
        font-size: 14px;
    }
}