body {
    font-family: "IBM Plex Sans KR", serif;
    font-weight: 500;
    font-style: normal;
    /*margin: 0;
    padding: 0;*/
    /* top: 10px, right: 20px, bottom: 30px, left: 40px */
}

.btn-xs {
    width: 50px;
    font-size: 0.6rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.2rem;
}

.choon-bottom {
    position: absolute;
    bottom: 0 !important;
}


@media (min-width: 992px) {
    .dropdown-menu-root {
        position: absolute; /* 드롭다운 메뉴를 고정 위치로 설정 */
        top: 100%; /* 부모 요소 바로 아래에 위치 */
        box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
        width: 104vw; /* 화면 전체 너비 */
        padding: 20px; /* 메가메뉴 내부 여백 */
        border: 0px;
        display: block;
    }

    .side-menu, .menu-overlay, .close-x {
        visibility: hidden !important;
    }
}


@media (max-width: 991px) {


}


.dropdown-menu-root a {
    display: block;
    margin-bottom: 10px;
    color: #333;
    /*text-decoration: none;*/
    font-weight: bold;
}

.dropdown-menu-root a:hover {
    color: #FF5F57; /* 링크 호버 효과 */
}

.dropdown-menu-root div div a:nth-child(1):hover {
    color: #FF5F57 !important;
}

.border-lightgray{
    border: 1px solid lightgray !important;
}

.hover-underline-danger:hover{
    color: #FF5F57 !important;
    text-decoration: underline !important;
}

.choon-fs-12 {
    font-size: 12px !important;
}

.choon-fs-14 {
    font-size: 14px !important;
}

.choon-fs-16 {
    font-size: 16px !important;
}

.choon-fs-18 {
    font-size: 18px !important;
}

.choon-fs-20 {
    font-size: 20px !important;
}

.choon-fs-22 {
    font-size: 22px !important;
}

.choon-fs-24 {
    font-size: 24px !important;
}

.choon-fs-26 {
    font-size: 26px !important;
}

/* 여기서부터 드롭다운 애니메이션 초기 상태 */
/* 초기 상태 */
@media (min-width: 992px) {
    .dropdown-menu-root {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        visibility: hidden;
    }
}

/* 드롭다운 나타나는 애니메이션 */
.show-animation {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* 드롭다운 사라지는 애니메이션 */
.hide-animation {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: all 0.3s ease;
}

.text-decoration-none:hover {
    text-decoration: underline !important;
}

/* 아이콘 호버시 색 변경  */
.icons-hover:hover {
    cursor: pointer;
    /*color:red;*/
    color: #FF5F57;
}
.cursor-pointer{
    cursor: pointer !important;
}

.background-gray {
    background-color: #F2F2F2 !important;
}

/* 창이 줄어들면 텍스트 ...표시  */
.text-ellipsis {
    white-space: nowrap; /* 텍스트를 한 줄로 표시 */
    overflow: hidden !important; /* 넘치는 텍스트 숨김 */
    text-overflow: ellipsis !important; /* 넘치는 텍스트에 ... 표시 */
}

/* 토글 메뉴에 외곽선 없애기 header.html*/
.navbar-toggler {
    border: none; /* 보더를 완전히 제거 */
    background: transparent; /* 배경도 제거 (필요한 경우) */
}

@media (max-width: 991px) {
    .navbar-collapse.collapse .hidden-on-collapse {
        display: none;
    }

}


/* 화면 크기가 크면 다시 보이게 */
@media (min-width: 992px) {
    .hidden-on-collapse {
        display: block;
    }

}


/* 네이게이션바 하단 그림자  */
.nav-bottom-shadow {
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.2);
}

/* 네비게이션바 스크롤하면 show and hide */
/* 보여지는 상태 */
.navbar-hidden {
    transform: translateY(-100%); /* 네비게이션 바를 위로 이동 */
    transition: transform 0.3s ease-in-out; /* 부드러운 애니메이션 효과 */
}

.navbar {
    position: fixed;
    height: 90px;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050 !important;
    transition: transform 0.3s ease-in-out; /* 기본 애니메이션 효과 */
}

/* 네비게이션바 스크롤하면 show and hide END */
/* ////////////////////// */
.navbar-toggler {
    background: none;
    border: none;
    cursor: pointer;
}

.side-menu {
    position: fixed;
    top: 90px;
    left: 0;
    width: 200px;
    /*height: 100%;*/
    height: calc(100vh - 90px);
    padding-top: 15px;
    background-color: #fff;
    overflow-y: auto !important;
    scrollbar-width: thin;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    z-index: 1050;
    transform: translateX(-100%); /* 초기 상태에서 숨김 */
    transition: transform 0.3s ease;
    will-change: transform !important;
}

.close-x {
    position: fixed;
    left: 0;
    top: 0;
!important;
    height: 90px;
    background-color: #343538;
    width: 200px;
    overflow-y: auto;
    z-index: 1050;
    transform: translateX(-100%); /* 초기 상태에서 숨김 */
    transition: transform 0.3s ease;
    will-change: transform !important;

}


/* 사이드 메뉴 열기 상태 */
.side-menu.open, .close-x.open {
    transform: translateX(0);
}


/* 닫기 버튼 스타일 */
.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin: 10px;
}

/* 메뉴 항목 스타일 */
.menu-item {
    padding-left: 15px;
    /*border-bottom: 1px solid #f0f0f0;*/
    margin-bottom: 10px;
}

/* 메뉴 항목 링크 스타일 */
.menu-item a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

/* 하위 메뉴 스타일 */
.submenu {
    padding-left: 10px;
    visibility: hidden; /* 처음에 숨김 */
    max-height: 0; /* 최대 높이를 0으로 설정 */
    overflow: hidden; /* 넘치는 내용 숨김 */
    transition: max-height 0.3s ease, visibility 0s 0.3s; /* max-height 애니메이션 */
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}


@media (max-width: 991px) {

    .sideMenu-hidden {
        visibility: hidden; /* 숨기기 */
        max-height: 0; /* 높이를 0으로 설정하여 보이지 않게 */
        transition: max-height 0.3s ease, visibility 0s 0.3s; /* max-height 애니메이션 */
    }

    .sideMenu-visible {
        visibility: visible; /* 보이도록 설정 */
        max-height: 500px; /* 원하는 최대 높이로 설정 */
        transition: max-height 0.3s ease, visibility 0s 0s; /* max-height 애니메이션 */
    }
}

/* 하위 메뉴 항목 스타일 */
.submenu-item {
    padding: 10px 0;
}

.submenu-item a {
    padding-left: 20px;
}

.submenu-item p {
    font-weight: bold;
    font-size: 16px;
}

.submenu-item a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.submenu-item a:hover {
    /*color:red;*/
    color: #FF5F57;
}


.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 반투명 검은색 */
    z-index: 1049; /* 슬라이드 메뉴 바로 뒤 */
    opacity: 0; /* 투명 */
    visibility: hidden; /* 화면에서 숨김 */
    transition: opacity 0.3s ease; /* 부드러운 페이드 효과 */
}

/* 오버레이 활성화 */
.menu-overlay.open {
    opacity: 1; /* 보이게 설정 */
    visibility: visible; /* 화면에 표시 */
}


.btn-choon {
    font-size: 14px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-choon-small {
    padding: 20px 20px !important;
    border: 1px solid black;
    font-size: 14px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.round-span {
    display: inline-block; /* span을 블록처럼 사용 */
    padding: 5px; /* 패딩으로 크기 조절 */
    border-radius: 20px; /* 둥근 모서리 */
    background-color: #3498db; /* 배경색 */
    color: white; /* 텍스트 색상 */
    text-align: center; /* 텍스트 가운데 정렬 */
    margin: 1px;
}

/* input type number 영역 안에 조그만 증가 감소 버튼 없애기 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* ul li style none */
ul.list-style-none li {
    list-style: none;
    display: flex;
    justify-content: flex-start !important;
}


/*#hamburgerMenu{
    display: block !important;
    opacity: 1 !important;
    z-index: 1055 !important;
    visibility: visible !important;
}*/

/*
.hamburger-bar {
    position: relative;
    width: 30px;
    height: 3px;
    background-color: black;
    transition-duration: 0.3s;
    transition-delay: 0.5s;
}
.hamburger > .hamburger-bar:nth-child(1), .hamburger > .hamburger-bar:nth-child(2){
    margin-bottom: 2px;
}
.hamburger-menu > .hamburger-bar:nth-child(1), .hamburger-menu > .hamburger-bar:nth-child(2){
    margin-bottom: 2px;
}

.bars {
    transform: rotate(45deg) translateY(7px);
}
.bars2{
    opacity: 0;
}
.bars3 {
    transform: rotate(-45deg) translateY(-7px);
}*/
.hamburger {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* 오른쪽 정렬 */
    gap: 6px;
    padding-right: 10px;
}

/* 기본 햄버거 바 스타일 */
.hamburger-bar {
    position: absolute;
    background-color: black;
    height: 5px;
    transition: transform 0.4s ease-in-out;
}

/* 각 막대의 길이 다르게 설정 */
.hamburger .hamburger-bar:nth-child(1) {
    width: 30px;
    transform: translateX(-30px);
}

.hamburger .hamburger-bar:nth-child(2) {
    width: 27px;
    transform: translateX(-27px);
}

.hamburger .hamburger-bar:nth-child(3) {
    width: 24px;
    transform: translateX(-24px);
}

/* 클릭 시 애니메이션 효과 */
.hamburger.active .hamburger-bar:nth-child(1) {
    transform: translateX(70px);
}

.hamburger.active .hamburger-bar:nth-child(2) {
    transform: translateX(73px);
}

.hamburger.active .hamburger-bar:nth-child(3) {
    transform: translateX(76px);
}


.close-x .fa-solid:hover {
    transition-duration: 0.5s;
    transform: rotate(180deg);
}

div[class^='category'] a {
    font-weight: bold !important;
}


.hover-underline:hover {
    text-decoration: underline;
    cursor: pointer;
}

.item-img:hover{
    cursor: pointer;
}

.menu-section span:hover, .menu-section a:hover {
    cursor: pointer !important;
    color: #FF5F57;
}

.font-red {
    color: #FF5F57;
}

.child-bold span:nth-child(1) {
    font-weight: bold;
}

.payment-methods button.active {
    background-color: #d3d4d5 !important;
}

.input-text-tag {
    border: 1px solid gray;
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    line-height: 20px;
    border-radius: 3px;
    padding: 12px 14px;
    width: 100%;
    font-weight: 400;
}

.input-text-tag-phone {
    border: 1px solid gray;
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    line-height: 20px;
    border-radius: 3px;
    padding: 12px 14px;
    font-weight: 400;
}

.block-body {
    background-color: black;
    opacity: 0.2;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 2050 !important;
}

.a-none {
    text-decoration: none;
    color: white;
}
.a-none.text-dark{
    color: black !important;
}

.hover-text-danger:hover{
    color: #FF5F57 !important;
}

table.table-py-20 tr td{
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}
/* 큰 화면일 때 */
@media (min-width: 768px) {

    .desktop_view{
        display: block;
    }
    .mobile_view{
        display: none;
    }
}
/* 작은 화면일 때 */
@media (max-width: 767px) {

    .desktop_view{
        display: none;
    }
    .mobile_view{
        display: block;
    }
}

/* md 이상 화면일때 */
@media (min-width: 767px) {
    .position-md-fixed{
        position: fixed !important;
    }
    .position-md-sticky{
        position: sticky !important;
        top: 90px !important;
    }
    .fixed-stop {
        position: absolute !important;
        top: auto !important;
        bottom: 0 !important;
    }
}

#accordion{
    border: 1px solid lightgray !important;
    border-bottom: 0 !important;
}
.card {
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    cursor: pointer;
}
.card .card-header{
    background-color: white !important;
}
.card .card-body{
    background-color: #f8f9fa !important;
    border-bottom: 1px solid lightgray !important;
}

.card.fat .card-body{
    background-color: white !important;
}

.card.coupon_background .card-body{
    background-color: var(--bs-secondary) !important;
}