/* 사이드 배너 스타일 */
.care_bnr {
    position: relative;
}

/* 닫기 버튼 */
.care_bnr .close_icon {
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
    z-index: 2;
}

.care_bnr .close_icon img {
    width: 24px;
    height: 24px;
    display: block;
}

/* 배너 전체 */
.care_bnr .bnr_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.care_bnr .bnr_wrap .img_bnr {
    width: 100%;
    height: auto;
    display: block;
}

/* 태블릿 이하에서 숨김 */
@media screen and (max-width: 1450px) {
    .care_bnr {
        display: none;
    }
}
