.ft-common {
    display: none;
}

.plip-copyright {
    width: 100%;
    margin-top: 3rem;
    display: none !important;
}

.plip-copyright img {
    float: right;
    width: 100px;
    filter: grayscale(1);
    opacity: .5;
}

.plip-wrapper {
    width: 100%;
    margin-top: 5rem;
    overflow: hidden;
}

.plip-container {
    margin: 0 auto;
    user-select: none;
}

.plip-container p {
    color: #333 !important;
    font-size: 16px !important;
    line-height: 1.65 !important;
}

.plip-container ul li {
    list-style: disc;
}

.privacy-title {
    color: var(--main-color);
    font-size: 40px;
    line-height: 1.65;
    font-weight: 800;
    margin-bottom: 3rem;
}

.privacy-title span {
    color: #bbb;
    font-size: 18px;
    font-weight: 500;
    margin-left: 10px;
}

.ant-table {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0,0,0,.85);
    font-variant: tabular-nums;
    line-height: 1.5715;
    list-style: none;
    font-feature-settings: "tnum";
    position: relative;
    font-size: 14px;
    background: #fff;
    border-radius: 2px;
    margin-bottom: 8px;
    margin-top: 8px;
}

.ant-table table {
    width: 100%;
    text-align: left;
    border-radius: 2px 2px 0 0;
    border-collapse: separate;
    border-spacing: 0;
}

.ant-table table>thead>tr>th {
    position: relative;
    color: rgba(0, 0, 0, 0.88);
    font-size: 15px;
    font-weight: 600;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.ant-table-thead>tr>th:not(:last-child):not(.ant-table-selection-column):not(.ant-table-row-expand-icon-cell):not([colspan]):before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 1.6em;
    background-color: rgba(0, 0, 0, .06);
    transform: translateY(-50%);
    transition: background-color .3s;
}

.ant-table table>thead>tr>th,
.ant-table table>tbody>tr>td {
    padding: 12px !important;
}

.ant-table table>thead>tr>th:first-child,
.ant-table table>tbody>tr>td:first-child {
    padding-left: 20px !important;
}

.ant-table table>tbody>tr>td {
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
}


/*==================================================*/
@media (max-width: 550px) {
    .plip-wrapper {
        margin-top: 4rem;
    }
    
    .privacy-title {
        font-size: 30px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 2rem;
    }

    .privacy-title span {
        font-size: 15px;
        margin-left: 0;
    }

    .plip-container p {
        font-size: 13px !important;
    }
    
    .ant-table table>thead>tr>th {
        font-size: 13px;
    }
    
    .ant-table table>tbody>tr>td {
        font-size: 12px;
    }
}