.container-jdf-page-plus-care-coverage {
    width: 100%;
}

.container-jdf-page-plus-care-coverage .row {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.container-jdf-page-plus-care-coverage .row .col {
    /* width: 50%; */
}

.container-jdf-page-plus-care-coverage .row .col-image {
     width: 564px; 
}

.container-jdf-page-plus-care-coverage .row .col-content {
     width: 670px; 
}

.container-jdf-page-plus-care-coverage .col-header {
    width: 100%;
}

.container-jdf-page-plus-care-coverage .col-header .line {
    background-color: #FFDE00;
    height: 4px;
    border-radius: 8px;
    margin-bottom: 6px;
    display: inline-block;
    width: 32px;
}

.container-jdf-page-plus-care-coverage .col-header .title {
    color: #ffffff;
    font-family: "JD Sans Pro";
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 16px;
}

.container-jdf-page-plus-care-coverage .col-header .description {
    color: #ffffff;
    font-family: "JD Sans Pro";
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 32px;
}

.container-jdf-page-plus-care-coverage .posts {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
}

.container-jdf-page-plus-care-coverage .posts .post {
    width: 288px;
    border: 1px solid #ffffff;
    border-radius: 16px;
    overflow: hidden;
}

.container-jdf-page-plus-care-coverage .posts .post .content {
    padding: 24px 16px;
    box-sizing: border-box;
}

.container-jdf-page-plus-care-coverage .posts .number {
    color: #ffffff;
    font-family: "JD Sans Pro";
    font-size: 16px;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border: 2px solid #FFDE00;
    border-radius: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.container-jdf-page-plus-care-coverage .posts .line {
    background-color: #FFDE00;
    height: 4px;
    border-radius: 8px;
    margin-bottom: 6px;
    display: inline-block;
    width: 32px;
}

.container-jdf-page-plus-care-coverage .posts .title {
    color: #ffffff;
    font-family: "JD Sans Pro";
    font-size: 18px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 16px;
    min-height: 42px;
}

.container-jdf-page-plus-care-coverage .posts .description {
    color: var(--e-global-color-text);
    font-family: "JD Sans Pro";
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 24px;
}

.container-jdf-page-plus-care-coverage .posts .button {
    display: flex;
}

.container-jdf-page-plus-care-coverage .posts .button .btn {
    color: #ffffff;
    font-family: "JD Sans Pro";
    font-size: 16px;
    font-weight: 500;
    display: flex;
    line-height: normal;
    gap: 16px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}


.container-jdf-page-plus-care-coverage .popups .line {
    background-color: #FFDE00;
    height: 4px;
    border-radius: 8px;
    margin-bottom: 6px;
    display: inline-block;
    width: 32px;
}

.container-jdf-page-plus-care-coverage .popups .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-page-plus-care-coverage .popups .description {
    color: var(--e-global-color-text);
    font-family: "JD Sans Pro";
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    /* margin-bottom: 24px; */
}

.container-jdf-page-plus-care-coverage .popup {
    left: 0;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    margin-top: 0;
    position: absolute;
    top: 50%;
    height: 600px;
    display: none;
    z-index: 999;
    width: 800px;
    transform: translateY(-50%);
}

.container-jdf-page-plus-care-coverage .popup-row {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;

    padding: 32px 48px;
    background-color: #ffffff;
    border-radius: 16px;
/*    max-width: 800px;
    height: 600px;*/
}

.container-jdf-page-plus-care-coverage .popups .btn-close {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-self: flex-end;
    width: 40px;
    height: 40px;
}

.container-jdf-page-plus-care-coverage .popups .content {
    display: flex;
    flex-direction: column;
    /* align-self: flex-end; */
    width: 100%;
    height: 100%;
}

.container-jdf-page-plus-care-coverage .popups .content .description {
    width: 100%;
    height: 100%;
}

.overlay-jdf-page-plus-care-coverage {
    background-color: black;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    opacity: 0.5;
    display: none;
}

@media(max-width: 1215px) {
    .container-jdf-page-plus-care-coverage .col-header .title {
        font-size: 24px;
    }

    .container-jdf-page-plus-care-coverage .col-header .description {
        font-size: 16px;
    }

    .container-jdf-page-plus-care-coverage .posts {
        flex-direction: column;
        align-items: flex-start;
        background-image: linear-gradient(90deg, #FFDE00 6px, transparent 6px);
        background-position: top left 30px;
    }

    .container-jdf-page-plus-care-coverage .posts .post {
        width: 100%;
        background-color: var(--e-global-color-primary);
    }

    .container-jdf-page-plus-care-coverage .row .col-image {
        width: 100%;
    }

    .container-jdf-page-plus-care-coverage .row .col-content {
        width: 100%;
    }

    .container-jdf-page-plus-care-coverage .row {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .container-jdf-page-plus-care-coverage .popup-row {
        padding: 12px 16px;
    }

    .container-jdf-page-plus-care-coverage .popups .title {
        font-size: 24px;
    }
}

@media(max-width: 767px) {
    .container-jdf-page-plus-care-coverage .popup {
        left: 0;
        height: 250px;
        margin: 0 auto;
        width: 98%;
        top: 20%;
        width: 96%;
    }
}