
/* woori_popup */


.only_mob{
        display:  none !important;
}


/*  */
.woori_popup_wrap{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 검은색 배경 */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.woori_popup{
    width: 90%;
    max-width: 600px;
    padding: 40px;

    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: #fff;
    border-radius: 20px;
    position: relative;
}

.woori_popup_inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.woori_popup_header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}
.woori_popup_header h1{
    font-size: 28px;
    color: #000;
    font-weight: 700;
}

.woori_popup_content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}
.woori_popup_content_inner{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.woori_popup_content h2{
    font-size: 20px;
    color: #000;
    font-weight: 600;
}
.woori_popup_content h3{
    font-size: 18px;
    color: #000;
    font-weight: 400;
}


.woori_popup_content input[type=text]{
    width: 100%;
    height: 56px;
    border: 1px solid #78839150;
    border-radius: 12px;
    padding-left: 20px;
}

.woori_popup_content .woori_txt{
    width: 100%;
    font-size: 28px;
    color: #000;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.woori_popup_content .woori_txt img{
    width: 80px;
}
.woori_popup_content .woori_txt div{
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.woori_event_num_wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.woori_event_num{
    width: 110px;
    height: 30px;
    background-color: #E3F2FF;
    color: #008FFB;
    border-radius: 6px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 20px;
    font-weight: 600;
}


.woori_popup_footer .btn_wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    gap: 10px;
}

.woori_popup_footer .btn_wrap button{
    height: 54px;
    width: 100%;
    font-size: 20px;
}


.searchinput:focus {
    outline: none;
}




/* button */


.btn_full_blue{
    width: 100%;
    height: 55px;
    border-radius: 4px;

    background-color: #006AFF;

    font-size: 14px;
    color: #fff;
    box-sizing: border-box;
}
.btn_full_blue:hover{
    background-color: #1053FF;
}


.btn_full_white{
    width: 100%;
    height: 55px;
    border-radius: 4px;

    border: 1px solid #006AFF;
    background-color: #fff;

    font-size: 14px;
    color: #006AFF;
    box-sizing: border-box;
}
.btn_full_white:hover{
    background-color: #f2f2f2;
}


.btn_full_black{
    width: 100%;
    height: 55px;
    border-radius: 4px;

    background-color: #0F2030;

    font-size: 14px;
    color: #fff;
    box-sizing: border-box;
}
.btn_full_black:hover{
    background-color: #14283b;
}




/* input */

.input_checkbox_wrap{
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.input_checkbox_wrap_inner{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}
.input_checkbox{
    width: 18px;
    height: 18px;
}

.custom_radio {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #939393;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    transition: background 0.2s, border 0.2s;
  }
 /* 체크된 상태 배경 및 테두리 */
  .custom_radio:checked {
    background-color: #007bff;
    border-color: #007bff;
  }

  /* 체크 아이콘 (✔) */
  .custom_radio:checked::after {
    content: '✔';
    color: white;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    transition: transform 0.2s ease;
  }

  /* 라벨 스타일 */
 .input_checkbox_wrap_inner label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 400;
    color: #555;
    margin-right: 16px;
    cursor: pointer;
  }

.icon_search_wrap input[type=search] {
    
    width: 100%;
    min-width: 480px;
    border: none;
    padding-left: 6px;
}
  .icon_search_wrap {
    width: 100%;
    height: 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding-left: 12px;
    border: 1px solid #E4E4ED;
    background-color: #fff;
    border-radius: 4px;

    position: relative;
}


.search_history_list {
  border: 1px solid #E4E4ED;
  border-radius: 4px;
  background-color: #fff;
  max-height: 150px;
  overflow-y: auto;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: none;
}

.history_item {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.history_item:last-child {
  border-bottom: none;
}

.history_item:hover {
  background-color: #f0f0f0;
}



.woori_img_popup{
    background: transparent;
}

.woori_img_popup .woori_popup_content{
    flex-direction: row;
    gap: 10px;
    position: relative;
}

.woori_close{
    position: absolute;
    right: 20px;
    top: 20px;
}



@media screen and (max-width: 640px) {
    .only_pc{
        display: none !important;
    }
    .only_mob{
        display: block !important;
    }

.woori_popup {
    min-width: 300px;
    padding: 20px;
}
    
.woori_popup_inner {
    gap: 20px;
}
    .woori_event_num_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    }
    .woori_event_num{
        font-size: 14px;
    }
    .woori_popup_header .popupClose img{
        width: 20px;
    }
    .woori_popup_header h1 {
    font-size: 18px;
}
    .woori_popup_content h2{
        font-size: 16px;
    }
    .woori_popup_content h3 {
    font-size: 12px;
}
.input_checkbox_wrap_inner label {
    font-size: 12px;
}
.woori_popup_content{
    gap: 20px;
}
.woori_popup_footer .btn_wrap button {
    height: 40px;
    font-size: 16px;
    border-radius: 5px;
}
.icon_search_wrap input[type=search] {
    width: 100%;
    min-width: 250px;
}




.woori_popup_content .woori_txt{
    font-size: 16px;
    gap: 20px;
}
.woori_popup_content .woori_txt img{
    width: 40px;
}
.woori_popup_content .woori_txt div{
    gap: 10px;
}


.woori_img_popup{
    padding: 0;
    width: auto;
}
.woori_img_popup .woori_popup_content a{
    text-align: center;
}
.woori_img_popup .woori_popup_content a img{
    width: 94%;
}



.woori_close{
    right: 5%;
    top: 15px;
}



}