/* ==========================================================================
   Fulltext
========================================================================== */
.fulltext-wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
    background: linear-gradient(0deg, #FFFFFF 40.07%, #f6fdff 100%);
}

.fulltext-wrapper-line {
    max-width: var(--1400);
    width: 100%;
    margin: 70px auto 60px auto;
    padding: 38px 59px 0px 59px;
    border-radius: 16px;
    position: relative;
    /* border: 1px solid rgba(0, 156, 222, 0.15); */
    background: 
        radial-gradient(circle at 100% 100%, #FFFFFF 0, #FFFFFF 15px, transparent 15px) 0% 0%/16px 16px no-repeat,
        radial-gradient(circle at 0 100%, #FFFFFF 0, #FFFFFF 15px, transparent 15px) 100% 0%/16px 16px no-repeat,
        radial-gradient(circle at 100% 0, #FFFFFF 0, #FFFFFF 15px, transparent 15px) 0% 100%/16px 16px no-repeat,
        radial-gradient(circle at 0 0, #FFFFFF 0, #FFFFFF 15px, transparent 15px) 100% 100%/16px 16px no-repeat,
        linear-gradient(#FFFFFF, #FFFFFF) 50% 50%/calc(100% - 2px) calc(100% - 32px) no-repeat,
        linear-gradient(#FFFFFF, #FFFFFF) 50% 50%/calc(100% - 32px) calc(100% - 2px) no-repeat,
        linear-gradient(0deg, transparent 30%, rgba(0,156,222,0.15) 100%);
}

.fulltext {
    max-width: var(--1280);
    margin: 0px auto;
    position: absolute;
    top: -35px;
    left: 38px;
    background: linear-gradient(180deg,rgba(247, 254, 255, 1) 30%, rgba(255, 255, 255, 1) 100%);
    padding: 20px;
    display: inline-block;
}

.fulltext h1 {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 34px;
    line-height: 74%;
    color: var(--gb-dark-blue-text);
    margin: 0px;
    display: inline-block;
}

.fulltext h1 span {
    color: var(--gb-blue-text);
    position: relative;
    padding: 0px 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.fulltext h1 span::after {
    content: url(../img/fulltext-hooray.svg);
    position: absolute;
    margin: 0px auto;
    width: 26px;
    top: -32px;
    right: 0px;
    left: 0px;
}

h2 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 22px;
    line-height: 104%;
    color: var(--gb-dark-grey-text);
    /* border-bottom: 2px solid #606e75; */
    width: 100%;
    padding: 16px 0px 8px 0px;
    margin-bottom: 0px;
    margin-top: 0px;
}

.fulltext-wrapper-line ul,
.fulltext-wrapper-line ol {
    margin: 0px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

/* .fulltext-wrapper-line ul li {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: var(--gb-dark-grey-text);
    border-bottom: 1px dotted #DFE1E3;
    box-sizing: border-box;
    margin-bottom: 0px;
    padding: 14px 0px 14px 24px;
    background-image: url(../img/blue-bullet.png);
    background-repeat: no-repeat;
    background-position: 0 24px;
} */

.fulltext-wrapper-line ul li,
.fulltext-wrapper-line ol li {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--gb-dark-grey-text);
    box-sizing: border-box;
    margin-bottom: 6px;
}

.fulltext-wrapper-line ul li:last-child {
    border-bottom: 0px;
}

.fulltext-wrapper-line p {
    /* font-size: 18px;
    line-height: 1.6; */
    font-size: 16px;
    line-height: 24px;
    color: var(--gb-dark-grey-text);
}

.fulltext-logo-print {
    display: none;
}

@media only screen and (max-width: 1350px) {
    .fulltext-wrapper-line {
        max-width: unset;
        width: 100%;
        margin: 80px auto 60px auto;
        padding: 0px 60px;
        position: relative;
        background: none;
    }
    .fulltext {
        position: unset;
        background: transparent;
        padding: 0px;
        display: inline-block;
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 900px) {
    .fulltext-wrapper-line {
        margin-top: 45px;
    }
    .fulltext {
        margin-bottom: 34px;
    }
    .fulltext h2 {
        font-size: 26px;
        line-height: 115%;
    }
    .fulltext h2 span::after {
        top: -24px;
        left: -1px;
    }
    .fulltext-wrapper .ai-footnote {
        margin-bottom: 26px;
    }
}

@media only screen and (max-width: 834px) {
    .fulltext-wrapper-line {
        margin-top: 45px;
        padding: 0px var(--mobile-viewport-spacing);
    }
    .fulltext-wrapper-line {
        margin-bottom: 25px;
    }
    .fulltext h2 {
        font-size: 24px;
    }
    .fulltext h2 span::after {
        left: -3px;
    }
}



@media print {
    body {
        padding-top: 60px;
    }
    header,
    footer,
    nav {
      display: none !important;
    }
    .fulltext-wrapper-line {
        margin: 0px;
        padding-top: 0px;
    }
    .fulltext h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 18px;
        line-height: 24px;
        color: #000;
        border-bottom: 0px;
        width: 100%;
        padding: 10px 0px 6px 0px;
        margin-bottom: 0px;
        margin-top: 0px;
    }
    .fulltext {
        position: relative;
        display: block;
        top: 0px;
        left: 0px;
        padding: 0px;
        border-top: 1px solid #DFE1E3;
        padding-top: 25px;
        width: 100%;
    }
    .fulltext-wrapper-line ul {
        list-style: initial;
    }
    .fulltext-wrapper-line ul li,
    .fulltext-wrapper-line ol li {
        border-bottom: 0px;
        box-sizing: border-box;
        margin-bottom: 0px;
        padding: 7px 0px 7px 0px;
    }
    .fulltext-wrapper-line p,
    .fulltext-wrapper-line ul li,
    .fulltext-wrapper-line ol li {
        font-size: 15px;
        line-height: 21px;
        color: #000;
    }
    .fulltext-logo-print {
        display: block;
        width: 20%;
        margin-bottom: 25px;
    }
}