/***** view prd *****/
.view main {
    margin-top: 60px;
}
section.view_prd {
    overflow: visible;
    margin-bottom: 120px;
}
.view_prd .inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.view-prd-img-box {
    display: flex;
    gap: 200px;
    align-items: center;
    position: sticky;
    top: 206px;
}
.view-prd-thumb-wrap {
    width: 100px;
    height: 600px;
}
.view-prd__thumb {
    border-radius: 8px;
    outline: 1px solid var(--grayScale-05);
    overflow:hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.view-prd__thumb.swiper-slide-thumb-active {
    outline-color: var(--grayScale-15);
}
.view-prd-img-slide {
    width: 600px;
    overflow: hidden;
}
.view-prd-img-box .swiper-btn-wrap {
    width: 600px;
}

.view-prd-img-box .swiper-button-prev:after {
    content: url("../images/ico_btn_prev2_gry.svg");
    font-size: 0;
}
.view-prd-img-box .swiper-button-next:after {
    content: url("../images/ico_btn_next2_gry.svg");
    font-size: 0;
}
.view-prd-img-box .swiper-button-next,
.view-prd-img-box .swiper-button-prev {
    width: 20px!important;
    height: 20px;
}

.view-prd-img-box .swiper-pagination {
    display: flex;
    align-items: center;
}

.view-prd-info-box {
    width: 620px;
    border-radius: 20px;
    background: var(--grayScale-03);
    padding: 40px;
    position: relative;
}

.view-prd-info__model-number {
    color: var(--grayScale-08);
    font-size: 16px;
    text-transform: uppercase;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.view-prd-info__item-tit {
    color: var(--grayScale-15);
    font-size: 28px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    margin-top: 4px;
}
.view-prd__button--copy-link {
    position: absolute;
    right: 20px;
    top: 20px;
    background: transparent;
    cursor: pointer;
}
.view-prd__button--copy-link:hover svg path {
    stroke: var(--ci-blue);
}
.ico-link-copy {
    transition: all 0.1s linear;
}
.view-prd-summery {
    margin-top: 20px;
}
.view-prd-summery h3 {
    color: var(--grayScale-11);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}
.view-prd-summery__script-box {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 20px 0;
    margin-top: 12px;
    gap: 20px;
    border-top: 1px solid var(--grayScale-05);
    border-bottom: 1px solid var(--grayScale-05);
}
.view-prd-summery__script-box p {
    font-size: 13px;
    color: var(--grayScale-10);
}
.view-prd-summery__script-box span {
    font-size: 13px;
    color: var(--grayScale-15);
    padding-left: 12px;
}

.view-prd-option h3 {
    margin-top: 32px;
    color: var(--grayScale-11);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}
.view-prd-option-wrap {
    margin-top: 12px;
    display: flex;
    gap: 20px;
}
.view-prd-option-box {
    flex: 1 1 auto;
}
.view-prd-option-box input[type="radio"] {
    display: none;
}
.view-prd-option-box input[type="radio"] + label {
    display: block;
    text-align: center;
    padding: 12px 4px;
    background: var(--grayScale-01);
    border-radius: 8px;
    outline: 1px solid var(--grayScale-06);
    color: var(--grayScale-08);
    cursor: pointer;
    word-break: keep-all;
}
.view-prd-option-box input[type="radio"]:checked + label {
    outline: 2px solid var(--grayScale-15);
    color: var(--grayScale-15);
    font-weight: 600;
}

.view-prd-price {
    margin-top: 32px;
}
.view-prd-price h3 {
    color: var(--grayScale-11);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}
.view-prd-price--month {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--grayScale-05);
}
.view-prd-price--card {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--grayScale-05);
}
.view-prd-price--month p,
.view-prd-price--card p{
    line-height: 30px;
}
.view-prd-price--month p:first-of-type {
    color: var(--grayScale-15);
    font-size: 16px;
    font-weight: 500;
}

.view-prd-price--month p:last-of-type {
    color: var(--grayScale-15);
    font-size: 25px;
    font-weight: 700;
}

.view-prd-price--card p {
    line-height: 30px;
}
.view-prd-price--card p:first-of-type {
    color: var(--ci-blue);
    font-size: 16px;
    font-weight: 500;
}

.view-prd-price--card p:last-of-type {
    color: var(--ci-blue);
    font-size: 25px;
    font-weight: 700;
}
.view-prd__order-btn {
    margin-top: 32px;
}
.view-prd__order-btn button {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: var(--ci-blue);
    color: var(--grayScale-01);
    font-size: 25px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
}

/***** view prd *****/

/***** detail *****/
.view-prd-detail {
    width: 1000px;
    margin: 0 auto;
}
.view-prd-detail h2 {
    text-align: center;
    padding: 20px 0;
}
.view-prd-detail-header {
    width: 100%;
    position: fixed;
    bottom: 0;
    transform:translateY(100%);
    opacity: 0;
    background: #000000aa;
    transition: var(--ani);
}

.view-prd-detail-header.active {
    transform:translateY(0);
    opacity: 1;
}
.view-prd-detail-header .inner {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    gap: 100px;
    align-items: center;
}
.view-prd-detail-header .view-prd-info__model-number {
    color: var(--grayScale-05);
}
.view-prd-detail-header .view-prd-info__item-tit {
    color: var(--grayScale-01);
}
.view-prd-detail__btn a{
    font-size: 20px;
    color: var(--grayScale-15);
    background: var(--grayScale-01);
    border-radius: 12px;
    padding: 12px 40px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ani);
}
.view-prd-detail__btn a:hover {
    color: var(--grayScale-01);
    background: var(--ci-blue);
}
/***** detail *****/


/***** order popup *****/
dialog.order-popup {
    width: 600px;
    height: 80dvh;
    padding: 0;
    margin: 10dvh auto 0;
}
.order-box-header {
    padding: 0 40px;
    height: 73px;
    line-height: 73px;
    border-bottom: 1px solid var(--grayScale-05);
    display: flex;
    justify-content: space-between;
}
.order-popup__close-btn {
    background: transparent;
}
.order-box {
    height: calc(100% - 193px);
    overflow-y: scroll;
    padding: 40px 40px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.order__model-number {
    color: var(--grayScale-08);
    font-size: 16px;
    text-transform: uppercase;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.order__item-tit {
    color: var(--grayScale-15);
    font-size: 24px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    margin-top: 4px;
}
.order-option-tag-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0 12px;
}
.order__option-tag {
    width: fit-content;
    padding: 4px 12px;
    border-radius: 4px;
    background: var(--ci-blue);
    color: var(--grayScale-01);
    margin-top: 12px;
    font-size: 15px;
}
.order-group label {
    color: var(--grayScale-11);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    position: relative;
}
.order-group input {
    width: 100%;
    border: 1px solid var(--grayScale-07);
    padding: 12px 20px;
    font-size: 15px;
    color: var(--grayScale-15);
    margin-top: 8px;
    border-radius: 4px;
}
.order-group input::placeholder {
    font-weight: 400;
}
.order__private-box {
    width: 100%;
    font-size: 13px;
    line-height: 20px;
    height: 96px;
    border: 1px solid var(--grayScale-07);
    border-radius: 4px;
    padding: 0 20px;
    overflow-y: scroll;
    white-space: pre-line;
    margin-top: 8px;
    background: #FFF;
}
.order-box::-webkit-scrollbar,
.order__private-box::-webkit-scrollbar {
    width: 12px;
    border: 4px solid var(--grayScale-03);
    background: var(--grayScale-03);
    border-radius: 0 4px 4px 0;
}
.order-box::-webkit-scrollbar-thumb,
.order__private-box::-webkit-scrollbar-thumb {
    background: var(--grayScale-06);
    border: 4px solid var(--grayScale-03);
    border-radius: 100px;
    cursor: pointer;
}
#checkAgree {
    display: none;
}
#checkAgree + label {
    font-size: 16px;
    line-height: 20px;
    font-weight: normal;
    padding-left: 32px;
    position: relative;
    margin-top: 20px;
    cursor: pointer;
    display: inline-block;
    text-indent: 0;
}
#checkAgree + label span {
    width: 20px;
    height: 20px;
    border: 1px solid var(--grayScale-07);
    background: #FFF;
    border-radius: 2px;
    position: absolute;
    left: 0;
}
#checkAgree + label span svg path {
    stroke-dashoffset: 20;
    stroke-dasharray: 20;
    transition: var(--ani);
    stroke: #0094ff55;
}
#checkAgree + label:hover span svg path {
    stroke-dashoffset: 0;
}
#checkAgree:checked + label span svg path,
#checkAgree:checked + label:hover span svg path {
    stroke: var(--ci-blue);
    animation: checkClick 0.3s linear forwards;
}
.order__submit-button {
    position: absolute;
    width: calc(100% - 80px);
    bottom: 40px;
}
.order__submit-button button {
    width: 100%;
    height: 48px;
    line-height: 48px;
    background: var(--ci-blue);
    color: var(--grayScale-01);
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
}

/***** order popup *****/
