.desc {
    padding: 0 20px;
    box-sizing: border-box;
}

.tem_shop .grid_box {
    gap: 20px;
    margin-bottom: 90px;
}
.tem_shop .grid_box > div {
    width: calc(25% - 15px);
}
.tem_shop .grid_box > div .img {
    border-radius: 20px;
    background: var(--white);
    margin-bottom: 20px;
    overflow: hidden;
}
.tem_shop .grid_box > div .img img {
    width: 100%;
    transform: scale(1);
    transition: all .5s;
}
.tem_shop .grid_box > div .img:hover img {
    transform: scale(1.1);
}
.tem_shop .grid_box > div .txt {
    gap: 10px;
    text-transform: capitalize;
}
.tem_shop .grid_box > div .txt > div {
    gap: 10px;
    font-size: 20px;
}
.tem_shop .grid_box > div .txt > div strong {
    flex: 1;
    width: 100%;
}
.tem_shop .grid_box.empty {
    padding: 50px 0;
    border-radius: 20px;
    background: rgba(24, 38, 148, 0.30);
    text-align: center;
    box-sizing: border-box;
}
.tem_shop .grid_box.empty h2 {
    font-size: 60px;
}
.tem_shop .grid_box.empty h2:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 150px;
    height: 175px;
    background: url("../images/empty_bg.png")no-repeat 50% 50% / 100%;
    margin-right: 30px;
}

.tem_shop .list_table .img {
    position: relative;
    width: 60px;
    height: 40px;
    overflow: hidden;
    border-radius: 5px;
    margin-right: 10px;
}
.tem_shop .list_table .img img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tem_shop .list_table .img + p {
    flex: 1;
    width: 100%;
}


#resend_pop .modal_cont {
    max-width: 800px;
    font-family: 'Pretendard', sans-serif;
}
#resend_pop .form {
    gap: 20px;
}
#resend_pop .form .item strong {
    width: 150px;
    font-size: 20px;
    padding-top: 18px;
    box-sizing: border-box;
}
#resend_pop .form .item > div {
    flex: 1;
    width: 100%;
}
#resend_pop .form .item .grid2 {
    border-radius: 10px;
    border: 1px solid #727272;
    background: var(--white);
    padding: 0 20px;
    box-sizing: border-box;
}
#resend_pop .form .item .grid2 input {
    flex: 1;
    width: 100%;
    height: 60px;
    font-size: 16px;
    font-weight: 500;
}
#resend_pop .form .item .grid2 button {
    color: #777;
    min-width: 115px;
    height: 39px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #D8D8D8;
    background: #F4F4F4;
    box-sizing: border-box;
}
#resend_pop .form .item .desc {
    padding: 20px 0 0;
    font-weight: 300;
}
#resend_pop .agree {
    position: relative;
}
#resend_pop .agree input {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
}
#resend_pop .agree input + label {
    position: relative;
    padding-left: 25px;
    color: #E1E1E1;
    box-sizing: border-box;
}
#resend_pop .agree input + label:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid #aaa;
    border-radius: 3px;
    box-sizing: border-box;
}
#resend_pop .agree input:checked + label:before {
    border: 1px solid var(--orange);
    background: var(--orange) url("../images/ic_check.svg")no-repeat 50% 50% / 100%;
}


.detail {
    gap: 20px;
}
.detail .detail_prd {
    width: 390px;
}
.detail .detail_prd > div {
    width: 100%;
}
.detail .info_area {
    flex: 1;
    width: calc(100% - 410px);
}
.detail .info_area .step_box {
    position: relative;
    width: max-content;
    max-width: 100%;
    padding: 20px;
    border-radius: 20px;
    background: rgba(52, 59, 97, 0.70);
    margin: 0 20px;
    box-sizing: border-box;
    z-index: 1;
}
.detail .info_area .step_box button {
    position: relative;
    min-width: 129px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid #AAA;
    color: #AAA;
    z-index: 1;
    margin-right: 50px;
    box-sizing: border-box;
}
.detail .info_area .step_box button:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    display: block;
    width: 50px;
    height: 1px;
    border-bottom: 1px dashed #CDCDCD;
}
.detail .info_area .step_box button:last-child {
    margin-right: 0;
}
.detail .info_area .step_box button:last-child:after {
    display: none;
}
.detail .info_area .step_box button.active {
    border-radius: 10px;
    background: #DFE3FF;
    border: 1px solid #DFE3FF;
    font-weight: 700;
    color: var(--black);
}
.detail .info_box {
    position: relative;
    border-radius: 20px;
    background: rgba(24, 38, 148, 0.30);
    padding: 50px 30px;
    margin-top: -20px;
    box-sizing: border-box;
}
.detail .info_box > div {
    display: none;
    gap: 20px;
}
.detail .info_box > div.open {
    display: flex;
}
.detail .info_box > div > h4 {
    font-size: 20px;
    font-weight: 400;
}
.detail .info_box > div .box {
    gap: 20px;
}
.detail .info_box > div .radio > div {
    position: relative;
}
.detail .info_box > div .radio > div input {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
}
.detail .info_box > div .radio > div input + label {
    position: relative;
    justify-content: center;
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    border-radius: 20px;
    border: 1px solid transparent;
    padding: 0 20px;
    box-sizing: border-box;
}
.detail .info_box > div .radio > div input:checked + label {
    border: 1px solid #FF5D00;
    background: #FFAA79!important;
}
.detail .info_box > div .radio > div input + label .img img {
    max-width: 100%;
}
.detail .info_box > div .radio > div input + label .img {
    position: relative;
    width: 100%;
}
.detail .info_box > div.step1 .box > div {
    width: calc(33.333% - 14px);
}
.detail .info_box > div.step1 .box > div input + label {
    width: 100%;
    height: 190px;
    gap: 30px;
    background: var(--white);
}
.detail .info_box > div.step2 .box > div input + label {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.80);
    gap: 10px;
}
.detail .info_box > div.step2 .box > div input + label .img {
    height: 75px;
}
.detail .info_box > div.step2 .box > div input + label .img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-width: 100%;
}
.detail .info_box > div.step3 .item {
    gap: 20px;
}
.detail .info_box > div.step3 .item strong {
    min-width: 130px;
    font-size: 20px;
    margin-top: 15px;
}
.detail .info_box > div.step3 .item > div {
    flex: 1;
    width: 100%;
    gap: 20px;
}
.detail .info_box > div.step3 .item > div > div {
    position: relative;
    border-radius: 10px;
    border: 1px solid #727272;
    background: var(--white);
    padding: 0 20px;
    box-sizing: border-box;
}
.detail .info_box > div.step3 .item > div > div input {
    flex: 1;
    width: 100%;
    height: 60px;
    font-size: 16px;
    font-weight: 500;
}
.detail .info_box > div.step3 .item > div > div button {
    min-width: 115px;
    min-height: 39px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #D8D8D8;
    background: #F4F4F4;
    font-size: inherit;
    color: #777;
    box-sizing: border-box;
}
.detail .info_box > div.step3 .item > div > p {
    font-weight: 500;
}
.detail .info_box > div.step3 .agree {
    position: relative;
    margin-top: 20px;
}
.detail .info_box > div.step3 .agree input {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
}
.detail .info_box > div.step3 .agree input + label {
    position: relative;
    display: inline-block;
    color: #e1e1e1;
    padding-left: 30px;
    box-sizing: border-box;
}
.detail .info_box > div.step3 .agree input + label:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 18px;
    height: 18px;
    border: 1px solid #aaa;
    border-radius: 5px;
}
.detail .info_box > div.step3 .agree input:checked + label:before {
    border: 1px solid var(--orange);
    background: url("../images/ic_check.svg")no-repeat 50% 50% / 100%;
}
.detail .info_box > div.step4 .box {
    max-width: 800px;
    border-radius: 20px;
    background: #313872;
    padding: 30px;
    gap: 0;
    box-sizing: border-box;
}
.detail .info_box > div.step4 .box .item {
    font-size: 20px;
    padding: 20px;
    gap: 10px;
    box-sizing: border-box;
}
.detail .info_box > div.step4 .box .item:first-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.50);
}
.detail .info_box > div.step4 button {
    width: 100%;
    min-height: 60px;
    padding: 10px 0;
    border-radius: 10px;
    font-size: 20px;
    box-sizing: border-box;
}

.detail .btn_area {
    margin-top: 20px;
    gap: 20px;
}
.detail .btn_area button {
    min-width: 100px;
    min-height: 48px;
    border-radius: 10px;
}






@media screen and (max-width: 1440px) {
    .detail .detail_prd {
        width: 340px;
    }
    .detail .info_area {
        width: calc(100% - 360px);
    }
    .detail .info_area .step_box button {
        min-width: 100px;
    }

    .tem_shop .grid_box.empty h2 {
        font-size: 48px;
    }
}
@media screen and (max-width: 1024px) {
    .tem_shop .grid_box {
        margin-bottom: 0;
    }
    .tem_shop .grid_box > div .img {
        margin-bottom: 10px;
    }
    .tem_shop .grid_box > div .txt {
        font-size: 14px;
    }
    .tem_shop .grid_box > div .txt > div {
        font-size: 16px;
        gap: 5px;
    }
    .tem_shop .grid_box > div .txt > div img {
        transform: scale(0.8);
    }
    .tem_shop .list_table .img {
        width: 50px;
        height: 30px;
    }

    .detail .detail_prd {
        width: 100%;
        margin-bottom: 0!important;
    }
    .detail .detail_prd > div {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
        gap: 20px;
    }
    .tem_shop .grid_box > div .txt {
        flex: 1;
        width: 100%;
    }
    .tem_shop .grid_box.empty h2 {
        font-size: 28px;
    }
    .tem_shop .grid_box.empty h2:before {
        width: 100px;
        height: 105px;
        margin-right: 15px;
    }

    #resend_pop .form .item strong {
        width: 100%;
        font-size: 16px;
        padding: 0 0 10px;
    }
    #resend_pop .form .item .grid2 {
        padding: 0 15px;
    }
    #resend_pop .form .item .grid2 input {
        height: 48px;
        font-size: 14px;
    }
    #resend_pop .form .item .grid2 button {
        min-width: 65px;
        height: 32px;
        font-size: 14px;
    }
    #resend_pop .form .item .desc {
        padding: 10px 0 0;
        font-size: 14px;
    }
    #resend_pop .agree input + label {
        font-size: 14px;
    }
    #resend_pop .agree input + label:before {
        top: 0;
    }


    .detail .info_area .step_box {
        padding: 10px;
        border-radius: 10px;
    }
    .detail .info_area .step_box button {
        font-size: 14px;
        margin-right: 30px;
    }
    .detail .info_area .step_box button:after {
        width: 30px;
        right: -30px;
    }
    .detail .info_box > div > h4 {
        font-size: 18px;
    }
    .detail .info_box > div .radio > div input + label {
        font-size: 14px;
        padding: 0 10px;
    }
    .detail .info_box > div.step1 .box > div input + label {
        height: 155px;
        gap: 10px;
    }
    .detail .info_box > div.step4 .box {
        padding: 20px;
    }
    .detail .info_box > div.step4 .box .item {
        font-size: 16px;
        padding: 15px 10px;
    }
    .detail .info_box > div.step4 button {
        height: 52px;
        font-size: 16px;
    }
}
@media screen and (max-width: 768px) {
    .tem_shop .grid_box {
        margin-bottom: 50px;
    }
    .tem_shop .grid_box > div {
        width: calc(50% - 10px);
    }

    .detail .info_area .step_box {
        width: calc(100% - 40px);
    }
    .detail .info_area .step_box button {
        min-width: calc(25% - 23px);
    }
    .detail .info_box > div.step1 .box > div input + label {
        height: 110px;
    }
    .detail .info_box > div.step3 .item strong {
        width: 100%;
        margin-top: 0;
    }
    .detail .info_box > div.step3 .item > div > div input {
        height: 50px;
        font-size: 14px;
    }
    .detail .info_box > div.step3 .item > div > div button {
        min-width: 90px;
        font-size: 14px;
    }
    .detail .info_box > div.step3 .item > div > p {
        font-size: 14px;
    }
    .detail .info_box > div.step3 .agree input + label {
        font-size: 14px;
    }
    .detail .info_box > div.step4 p {
        font-size: 14px;
    }
}
@media screen and (max-width: 480px) {
    .tem_shop .grid_box.empty h2 {
        font-size: 22px;
    }
    .tem_shop .grid_box.empty h2:before {
        display: block;
        margin: 0 auto 15px;
    }

    .detail .info_area .step_box {
        width: calc(100% - 20px);
        margin: 0 10px;
    }
    .detail .info_area .step_box button {
        min-width: auto;
        width: calc(50% - 15px);
    }
    .detail .info_area .step_box button:nth-child(2) {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .detail .info_area .step_box button:nth-child(2):after {
        top: auto;
        right: auto;
        left: 50%;
        bottom: -12px;
        transform: translateX(-50%) rotate(90deg);
        width: 20px;
    }
    .detail .info_area .step_box button:nth-child(3) {
        order: 3;
        margin-right: 0;
    }
    .detail .info_area .step_box button:nth-child(3):after {
        right: 0;
        left: -30px;
    }
    .detail .info_area .step_box button:nth-child(4) {
        order: 2;
        margin-right: 30px;
    }

    .detail .info_box {
        border-radius: 10px;
        padding: 40px 20px;
    }
    .detail .info_box > div .box {
        gap: 10px;
    }
    .detail .info_box > div.step1 .box > div {
        width: 100%;
    }
    .detail .info_box > div .radio > div input + label .img img {
        max-width: 130px;
    }
    .detail .info_box > div.step2 .box > div {
        width: calc(50% - 5px);
    }
    .detail .info_box > div.step2 .box > div input + label {
        width: 100%;
        height: 110px;
    }
    .detail .info_box > div.step2 .box > div input + label .img {
        height: 57px;
    }
    .detail .info_box > div.step3 .item strong {
        font-size: 18px;
    }
    .detail .info_box > div.step4 button {
        min-width: 90px;
        min-height: 40px;
        font-size: 14px;
        margin-top: 10px;
    }
}
@media screen and (max-width: 380px) {
    .tem_shop .grid_box > div {
        width: 100%;
    }

    #resend_pop .form .item .grid2 {
        padding: 0 15px 15px;
    }
    #resend_pop .form .item .grid2 input {
        flex: none;
    }
    #resend_pop .form .item .grid2 button {
        width: 100%;
    }

    .detail .info_box > div.step3 .item > div > div {
        padding: 15px 20px;
        gap: 5px;
    }
    .detail .info_box > div.step3 .item > div > div input {
        flex: none;
        height: 38px;
    }
    .detail .info_box > div.step3 .item > div > div button {
        min-width: auto;
        width: 100%;
    }
}