/* 라디오 버튼 숨기기 */
#main .custom-radio input[type="radio"] {
    display: none;
}

/* 라벨 스타일 */
#main .custom-radio label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    margin: 0;
    border: 1px solid #fff;
    border-radius: 20px; /* 둥근 모서리 */
    background-color: white;
    color: #aaa;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

/* 활성화된 라벨 스타일 */
#main .custom-radio input[type="radio"]:checked + label {
    border-color: #191919;
    font-weight: bold;
    color: #191919;
}

/* 호버 효과 */
#main .custom-radio label:hover {
    border-color: #ededed;
}


/* 이미지 스타일 */
#main .custom-radio img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

#main .slick-slide {
    margin-right: 10px; /* 각 슬라이더 항목 간의 간격 */
}

/* 마지막 항목의 여백 제거 */
#main .slick-slide:last-child {
    margin-right: 0;
}

#main .custom-card {
    /* margin-bottom: 40px; */
}

#main .custom-card.cursor-pointer-2 {
    margin-bottom: 40px;
}

#main .custom-card img.card-img {
    width: 100%;
}

#main .custom-card .custom-card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: normal;
}

/* 만 19세 이상 가능 운세에 아이콘 추가 -- 2025/04/17, kkoo2324 */
#main .custom-card .custom-card-title .title{
    display:flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    /* font-weight: bold; */
}

#main .custom-card .custom-card-title .menu {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
}

#main .custom-card .custom-card-title .menu span {
    display: flex;
    gap: 5px;
    align-items: center;
    line-height: 1;
}

#main .custom-card .custom-card-title .menu img {
    height: 20px;
    width: 20px;
}

#main .custom-card .custom-card-content {
    font-size: 14px;
    color: #aaa;
    border-bottom: 1px solid #d3d3d3;
}
#main .custom-card .custom-card-content > p{color:#444;}
#main #allMenu {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    width: 95%;
}

#main #allMenu .custom-radio {
    margin-right: 5px;
}

/* 모바일에서 날짜 선택 안내 문구 추가 -- 2025/05/26, kkoo2324 */
.mo_view_txt{
    display: none !important;
    font-size:0.8rem;
    line-height: 1.2;
    margin:0.5rem 0 0 !important;
}
.mo_br_560{display: none;}
@media (max-width:768px) {
    .mo_view_txt{
        display: block !important;
    }
}
@media (max-width:768px) {
    /* 정보입력페이지에 있는 birth_box css 추가 -- 2025/04/16, kkoo2324 */
    .birth_box{
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .birth_box > select[name=solunar]{
        width:25%;
    }
    .birth_box > select[name=youn]{
        width:25%;
    }
    .birth_box > input{
        width:45%; height:48px;
    }
    .birth_box > select[name=request_hour]{
        width:100%; margin:1rem 0 0 0 !important;
    }
    .birth_box > select[name=your_solunar]{
        width:25%;
    }
    .birth_box > select[name=your_youn]{
        width:25%;
    }
    .birth_box > select[name=your_hour]{
        width:100%; margin:1rem 0 0 0 !important;
    }
}
@media (max-width:560px) {
    .mo_br_560{display: block;}
    #main .custom-card .custom-card-title .title{font-size:0.9375rem;}
    #main .custom-card .custom-card-title .menu > span{font-size:0.9375rem;}
}
@media (max-width:345px) {
    .birth_box > input{
        width:44%;
    }
}