@charset "UTF-8";

.text-wrapper-5-side {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Pretendard-Medium", Helvetica;
  font-weight: 500;
  color: #000000;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}

.text-wrapper-4-side {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Pretendard-Bold", Helvetica;
  font-weight: 700;
  color: var(--primarylightprimary);
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}

.icon-left-side {
  position: relative;
  width: 24px;
  height: 24px;
}

.side-menu-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: #e1e1e1;
}

.side-menu-3.side-menu-dropdown {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

.side-menu-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  order: 1;
}

.side-menu-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
.side-menu {
  display: flex;
  flex-direction: column;
  width: 280px;
  align-items: flex-start;
  gap: 16px;
  position: absolute;
  top: 474px;
  left: calc(50% - 570.5px + 10px);
}

/* 드롭다운 메뉴 스타일 */
.side-menu-dropdown {
  cursor: pointer;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
}

.side-menu-dropdown:hover .text-wrapper-4-side {
  color: #1B70B0;
}

.side-submenu {
  display: none;
  flex-direction: column;
  background-color: #f8f9fa;
  border-left: 3px solid var(--primarylightprimary);
  margin-top: 10px;
  padding: 0;
  position: relative;
  width: 100%;
  border-radius: 4px;
  left: 0;
  clear: both;
  order: 2;
}

.side-menu-dropdown.active .side-submenu {
  display: flex;
}

.side-submenu-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  text-decoration: none;
  border-bottom: 1px solid #e1e1e1;
  transition: background-color 0.2s ease;
}

.side-submenu-item:last-child {
  border-bottom: none;
}

.side-submenu-item:hover {
  background-color: #e9ecef;
}

.side-submenu-item .text-wrapper-5-side {
  color: #666666;
  font-size: 16px;
  font-weight: 500;
}

.side-submenu-item:hover .text-wrapper-5-side {
  color: #1B70B0;
}

/* 드롭다운 화살표 애니메이션 */
.dropdown-arrow {
  transition: transform 0.3s ease;
}

.side-menu-dropdown.active .dropdown-arrow {
  transform: rotate(90deg);
}

/* CGV 스타일 */
.CGV-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #24397a;
  border-radius: 8px;
}




