.elementor-4723 .elementor-element.elementor-element-75013462{--display:flex;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:1366px){.elementor-4723 .elementor-element.elementor-element-75013462{--padding-top:0px;--padding-bottom:0px;--padding-left:20px;--padding-right:20px;}}@media(max-width:776px){.elementor-4723 .elementor-element.elementor-element-75013462{--min-height:400px;}}/* Start custom CSS for html, class: .elementor-element-5584735 */.cate_wrap {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: flex-start;
}

.custom-select-wrapper {
    position: relative;
    /* 고정 너비와 flex 비율을 모두 제거합니다 */
    width: fit-content; /* 글자 길이에 딱 맞게 너비 결정 */
    min-width: 180px;   /* 너무 작아지는 것만 방지 */
    font-weight: 500;
    color: #666;
    font-size: 17px;
    flex-shrink: 0;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border: 1px solid #ddd;
    background-color: #ffffff;
    border-radius: 5px;
    cursor: pointer;
    /* 텍스트가 박스를 뚫지 않게 설정 */
    white-space: nowrap; 
    gap: 15px;
}

/* 텍스트는 길어져도 됨 (ellipsis 제거) */
.custom-select-trigger span {
    /* 텍스트가 화살표를 밀어내지 않도록 설정 */
    display: inline-block;
    white-space: nowrap; 
    flex: 1;
}

.custom-arrow {
  width: 16px;
  height: 16px;
  color: #333; /* SVG 색상 지정 */
  transition: transform 0.2s ease;
  flex-shrink: 0; /* 화살표는 항상 고정 크기 유지 */
}

.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border: 2px solid #ddd;
  border-top: none;
  border-radius: 0 0 5px 5px;
  list-style: none;
  padding: 0;
  margin: 5px 0 0 0;
  z-index: 10;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.custom-select-wrapper:hover .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-select-wrapper:hover .custom-arrow {
  transform: rotate(180deg);
}

.custom-select-options li a {
  display: block;
  padding: 12px 15px;
  color: #666;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.custom-select-options li a:hover {
  background-color: #f5f5f5;
  color: #142867;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-75013462 */#custom-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
}
.logo-white {display: none;}
.ham-white {display: block !important;}/* End custom CSS */