.payment-title {
    margin: 20px 0 60px;
}
.payment-title > p {
    font-style: normal;
    font-size: 32px;
    font-weight: 500;
    line-height: 46px;
    color: #000b33;
}
/* 구독권 선택 head */
.payment-list .subs-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.payment-list .subs-head .subs-title {
    display: flex;
    font-style: normal;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #000b33;
}
.payment-list .subs-head .subs-title::before {
    content: '';
    display: inline-block;
    width: 35px;
    height: 26px;
    margin-right: 12px;
    background-image: url(/img/card_icon.svg);
    background-repeat: no-repeat;
}
.payment-list .subs-head .warning {
    font-style: normal;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: #ff7272;
}
/* 구독권 선택 */
.payment-list .subs-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}
.payment-list .subs-list .subs-item {
    display: inline-block;
    margin-left: 24px;
    cursor: pointer;
    
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.payment-list .subs-list .subs-item:first-child {
    margin-left: 0;
}
.payment-list .subs-list .subs-item .item-wrap {
    width: 151px;
    height: 189px;
    padding: 32px 10px;
    border: 2px solid #f5f5f5;
    border-radius: 10px;
    background-color: #f5f5f5;
    box-sizing: border-box;
}
.payment-list .subs-list .subs-item .item-wrap::before {
    content: '';
    display: inline-block;
    width: 61px;
    height: 35px;
    margin-bottom: 20px;
    background-image: url(/img/ticket_disable_icon.svg);
    background-repeat: no-repeat;
}
.payment-list .subs-list .subs-item .item-wrap .item-title,
.payment-list .subs-list .subs-item .item-wrap .item-content {
    font-style: normal;
    font-size: 24px;
    font-weight: 700;
    line-height: 35px;
    color: #d8d8d8;
}
.payment-list .subs-list .subs-item .item-wrap .item-title {
    margin-bottom: 12px;
}
.payment-list .subs-list .subs-item .item-wrap .item-content {
    font-size: 16px;
    font-weight: 500;
    line-height: 23px;
}
.payment-list .subs-list .subs-item.active .item-wrap {
    border-color: #0070d8;
    background-color: #fff;
}
.payment-list .subs-list .subs-item.active .item-wrap::before {
    background-image: url(/img/ticket_icon.svg);
}
.payment-list .subs-list .subs-item.active .item-wrap .item-title,
.payment-list .subs-list .subs-item.active .item-wrap .item-content {
    color: #000b33;
}
/* 문의 문구 */
.payment-list .subs-info {
    margin-top: 36px;
}
.payment-list .subs-info > p {
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    white-space: pre-line;
    color: #000b33;
}