.pop_cart_area{
    display:none;
    width: 448px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 14px;
    background: #FFF;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
    position: fixed;
    top:100px;
    left:50%;
    margin-left:-224px;
    padding:24px;
    z-index:9;
}

.pop_cart_duplication_icon{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width:100%;
    

}

.pop_cart_duplication_icon > img{
    margin:0 auto;
    

}

.pop_cart_txt1{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align:center;
    width:100%;
}

 .pop_cart_txt1 > span{
    color: #101828;
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
 }

 .pop_cart_txt2{
     display: flex;
    justify-content: center;
    align-items: center;
    text-align:center;
    width:100%;
}

 .pop_cart_txt2 > span{
    color: #4A5565;
    text-align: center;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
 }

 .pop_cart_btn_area{
    display: flex;
    width: 100%;
    
    align-items: flex-start;
    gap: 12px;
    padding-top:24px;
 }

 .pop_cart_btn_cancel{
    display: flex;
    padding: 8px 0 10px 0;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    border-radius: 10px;
    border: 1px solid #D1D5DC;
    cursor:pointer;
 }

 .pop_cart_btn_cancel > span {
    color: #364153;
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
 }

 .pop_cart_btn_comfirm{
    display: flex;
    padding: 8px 0 10px 0;
    justify-content: center;
    align-items: center;
    flex: 1 0 0;
    border-radius: 10px;
    background: #004030;
    border: 1px solid #004030;
    cursor:pointer;
 }

 .pop_cart_btn_comfirm > span {
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
 }

 @media (max-width: 620px) {
      .pop_cart_area{
         display:none;
         max-width: 320px;
         width: 100%;
         flex-direction: column;
         align-items: flex-start;
         flex-shrink: 0;
         border-radius: 14px;
         background: #FFF;
         box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
         position: fixed;
         top: 5%;
         left:50%;
         margin-left:0;
         padding:24px;
         z-index:9;
         transform: translate(-50%);
      }

       .pop_cart_btn_area{
 
         width: unset;
 
      }
 }


