html{
    background: var(--Color-greyscale-000);
}

.desc-blank{
    background: var(--Color-greyscale-000);
    padding: 24px;
    height: 100vh;
}

.desc-blank .desc-blank-wrapper{
    border-radius: 16px;
    border: 1px solid var(--Color-greyscale-300);
    height: 100%;
    overflow: hidden;
}

.desc-blank .desc-blank-wrapper .header{
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--Color-greyscale-300);
    background: var(--Color-greyscale-100);
    .header-wrapper{
        height: 180px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 40px 0;
        max-width: 1440px;
        width: 100%;
        .logo{
            height: 36px;
            display: flex;
            justify-content: flex-end;
        }
        .title{
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            h1{
                color: var(--Color-greyscale-1100);
                font-size: 32px;
                font-weight: 600;
            }
            p{
                color: var(--Color-greyscale-800);
                text-align: right;
                font-size: 14px;
                font-weight: 400;
                line-height: 150%;
            }
        }
    }
}

.desc-blank .desc-blank-wrapper .custom-scroll{
    height: calc(100% - 180px);
}

.desc-blank .desc-blank-wrapper .body{
    display: flex;
    justify-content: center;
    background: var(--Color-greyscale-050);
    .body-wrapper{
        display: flex;
        max-width: 1440px;
        width: 100%;
        .content{
            display: flex;
            flex-direction: column;
            padding-top: 40px;
            padding-bottom: 200px;
            flex: 1;
        }
        .tracker{
            width: fit-content;
            padding: 40px 20px 40px 0;
            height: 600px;
            position: relative;
            .tracker-scroll{
                height: 100%;
            }
            ol{
                padding-left: 45px;
            }
            li{
                list-style: auto;
                color: var(--Color-greyscale-600);
                height: 20px;
                padding: 10px 0;
                font-size: 14px;
                font-weight: 300;
                line-height: 130%;
                position: relative;
                cursor: pointer;
                transition: all .5s;
                padding-left: 4px;
                span{
                    margin-right: 4px;
                    font-weight: 400;
                }
                &::before{
                    content: "";
                    display: block;
                    width: 1px;
                    height: 40px;
                    position: absolute;
                    top: 0;
                    left: -45px;
                    background: var(--Color-greyscale-400);
                }
                &.active{
                    color: var(--Color-greyscale-900);
                    &::before{
                        background: var(--Color-greyscale-900);
                    }
                }
            }

            &.shadow-up{
                .shadow-top{
                    opacity: 1;
                }
            }
            &.shadow-down{
                .shadow-bottom{
                    opacity: 1;
                }
            }
            .shadow-top{
                pointer-events: none;
                opacity: 0;
                position: absolute;
                width: 100%;
                height: 54px;
                top: 40px;
                background: linear-gradient(0deg, rgba(252, 252, 252, 0.00) 0%, #FCFCFC 100%);
                z-index: 1;
                transition: all .2s;
            }
            .shadow-bottom{
                pointer-events: none;
                opacity: 0;
                position: absolute;
                width: 100%;
                height: 54px;
                bottom: 40px;
                background: linear-gradient(180deg, rgba(252, 252, 252, 0.00) 0%, #FCFCFC 100%);
                transition: all .2s;
            }
        }

    }
}

#save-privacy-table{

    tr > *:nth-child(1){
        width: 311px;
    }
    tr > *:nth-child(2){
        width: 156px;
    }

}

.content{
    > article, > div{
        display: flex;
        flex-direction: column;
        max-width: 740px;
    }

    div:not(.ct_custom) ul{
        &[data-step='0']{
            padding: 4px 10px;
        }
        &[data-step='1']{
            padding: 4px 20px;
        }
        margin-bottom: -4px;
        li{
            padding-bottom: 4px;
            display: grid;
            grid-template-columns: 26px 1fr;
            color: var(--Color-greyscale-900);
            font-size: 16px;
            font-weight: 300;
            line-height: 26px;

            &::before{
                content: "·";
                font-weight: 900;
                width: 26px;
                height: 26px;
                position: relative;
                display: block;
                text-align: center;
            }
        }
    }


    .ct_custom.check-desc{
        ul {
            li {
                height: 18px;
                align-items: center;
                p {
                    color: var(--Color-greyscale-900);
                    font-size: 13px;
                    font-weight: 500;
                    line-height: 21px;
                }
            }
        }
    }

}


.content.terms{
    gap: 40px;
    > article, > div{
        gap: 12px;
    }
    h2{
        color: var(--Color-greyscale-1000);
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 29px;
        span{
            font-weight: 300;
        }
    }
    h3{
        color: var(--Color-greyscale-1000);
        font-size: 16px;
        font-weight: 600;
        line-height: 26px; /* 162.5% */
    }
    p{
        color: var(--Color-greyscale-1000);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 26px;
        word-break: break-all;
    }
    p.light{
        color: var(--Color-greyscale-900);
        font-weight: 300;
    }
    ul li p{
        color: var(--Color-greyscale-900);
        font-size: 16px;
        font-weight: 300;
        line-height: 26px;
    }

    ol{
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin:0;
        padding-left: 15px;
       li{
           list-style: auto;
           color: var(--Color-greyscale-900);
           font-size: 16px;
           font-weight: 300;
           line-height: 26px;
           word-break: break-all;
           p{
               color: var(--Color-greyscale-900);
               font-size: 16px;
               font-weight: 300;
               line-height: 26px;
               word-break: break-all;
           }
           > ol {
               list-style: none;
               counter-reset: list-counter;
               padding: 4px 0;
               > li{
                   list-style: none;
                   counter-increment: list-counter;
                   display: grid;
                   grid-template-columns: 22px 1fr;
                   gap: 4px;
               }
               > li::before{
                   content: counter(list-counter) ") ";
                   white-space: nowrap;
               }
           }
       }
    }
    .ul-container{
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .table-container{
        padding: 12px 0;
    }
    div[data-step='1']{
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
}


.content.guide{
    gap: 60px;
    > article, > div {
        gap: 16px;
        .article-title{
            display: inline;
            font-size: 20px;
            *{
                display: inline;
            }
            p{
                color: var(--Color-greyscale-900);
                font-size: 20px;
                font-style: normal;
                font-weight: 500;
                line-height: normal;
            }
            .step{
                color: var(--Color-greyscale-1000);
                font-weight: 700;
            }
            .light{
                color: var(--Color-greyscale-700);
                font-weight: 400;
            }
            .icon.light{
                color: var(--Color-greyscale-600);
                font-size: 20px;
                top: 4px;
                position: relative;
            }
            div.light{
                gap: 2px;
            }
            a{
                color: var(--Color-greyscale-900);
                font-size: 20px;
                font-weight: 600;
                line-height: normal;
                text-decoration: none;
                span.icon{
                    color: var(--Color-greyscale-700);
                    top: 5px;
                    position: relative;
                    font-size: 24px;
                }
                &:hover{
                    color: var(--Color-blue-500);
                    span.icon{color: var(--Color-blue-500);}
                }
            }

        }
        .guide-image{
            border-radius: 8px;
            background: var(--Color-greyscale-200);
            height: 260px;
            width: 740px;
            display: flex;
            justify-content: center;
            img{
                width: auto;
                height: 100%;
            }
        }
        p{
            color: var(--Color-greyscale-1000);
            font-size: 16px;
            font-weight: 400;
            line-height: 25px;
            letter-spacing: 0.08px;
            word-break: break-all;
        }
        ul li{
            p{
                color: var(--Color-greyscale-1000);
                font-size: 16px;
                font-weight: 400;
                line-height: 24px;
            }
            .bold{
                font-weight: 600;
                line-height: 24px;
            }
            .light{
                font-weight: 500;
                line-height: 24px;
            }
            .red{
                color: var(--Color-red-600);
            }
        }
        .warning-desc{
            padding: 8px 10px;
        }
    }
}


table thead tr{
    background: var(--Color-greyscale-200);
    border: 1px solid var(--Color-greyscale-300);
    border-left: 0;
    border-right: 0;
}
table thead tr th{
    border-right: 1px solid var(--Color-greyscale-300);
    padding: 8px 16px;
    font-size: 14px;
    text-align: left;
}
table tbody tr td,
table tbody tr td:first-child,
table tbody tr td:last-child{
    padding: 12px 16px;
    font-size: 14px;
    color: var(--Color-greyscale-1000);
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    vertical-align: top;
}
