@charset "UTF-8";

/* * 리전별 로고 */
.exit_to_license {
  cursor: pointer;
  width: 17px;
  margin-left: 15px;
}

.Exosphere.lang-ko a.logo_ok {
  display: block;
  width: 165px;
  height: 30px;
  background-image: url(/assets/images/logo/logo.svg);
  background-size: 165px;
  background-repeat: no-repeat;
  background-position: 0;
}

.Exosphere.lang-en a.logo_ok,
.Exosphere.lang-ja a.logo_ok {
  display: block;
  width: 165px;
  height: 30px;
  background-image: url(/assets/images/logo/h1_logo_exsp_en.svg);
  background-size: 165px;
  background-repeat: no-repeat;
  background-position: 0;
}

.Exosphere.custom--exosecurity a.logo_ok {
  display: block;
  width: 220px;
  height: 30px;
  background-image: url(/assets/images/logo/h1_logo_custom--exosecurity.svg);
  background-size: 220px;
  background-repeat: no-repeat;
  background-position: 0;
}

a.logo_ok:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.header_logo {
  display: flex;
  gap: 20px;
  align-items: center;
}

.reseller_banner {
  color: rgb(86, 177, 58);
  display: flex;
  align-items: center;
}

.reseller_banner > div {
  font-size: 20px;
  display: inline-block;
  margin-top: -2px;
  vertical-align: top;
}

/* * 리전별 로고 */

.header_wrap {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  border-bottom: var(--common-border);
  background-color: #fff;
}

header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1600px;
  padding: 12px 31px;
  box-sizing: border-box;
  margin: 0 auto;
  align-items: center;
  min-height: 66px;

  @media (max-width : 767px) {
    display: block;
    padding: 15px 16px;
  }
}

header.wide {
  max-width: 100%;
}

/* * 모바일 햄버거 */
.hamburger {
  @media (max-width : 767px) {
    position: absolute;
    top: -32px;
    right: 0;
  }
}

header .navbar-nav {
  display: flex;
  align-items: center;

  @media (max-width : 767px) {
    display: block;
  }
}

/* * 부트스트랩 토글 드롭다운 기본 스타일 수정 */
header .dropdown-menu {
  padding: 0;
  border: none;
}

/* * 알림 */
header .alarm {
  position: relative;
  margin-right: 32px;

  @media (max-width : 767px) {
    margin-right: none;
    width: 100%;
  }
}

header .alarm button svg {
  font-size: 23px;
}

header .alarm .alarm_num {
  position: absolute;
  left: 10px;
  top: 3px;
  padding: 0 6px;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 15px;
  background-color: var(--text-red-color);
  color: #fff;
  font-size: 11px;
}

/* * 부트스트랩 아이콘 제거 */
header .alarm .dropdown-toggle::after {
  display: none;
}

/* * 알림 팝업 */
header .alarm .alarm_detail {
  top: 42px;
  left: -8px;
  max-width: none !important;
  padding: 9px 8px;
  font-size: 11pt;

  @media (max-width : 767px) {
    width: 100%;
  }
}

header .alarm .alarm_detail li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px 6px 8px;
  border-radius: 5px;
  transition: .3s;
  color: #808080;
}

header .alarm .alarm_detail li a span {
  white-space: nowrap;

  @media (max-width : 767px) {
    white-space: inherit;
  }
}

header .alarm .alarm_detail li a:hover {
  background-color: var(--popup-hover);
}

header .alarm .alarm_detail li a:active {
  background-color: var(--popup-pressed);
}

/* 알림 상세 개수 컬러 */
.alarm_detail_num {
  width: 20px;
  height: 18px;
  margin-left: 37px;
  border-radius: 3px;
  text-align: center;
  font-size: 11px;
  min-width: 20px;
}

.alarm_detail_num.red {
  background-color: rgba(239, 83, 80, 0.1);
  color: var(--text-red-color);
}

.alarm_detail_num.gray {
  background-color: rgba(34, 34, 34, 0.1);
}

/* * 구독 관리 */
header .sub_management {
  width: max-content;

  @media (max-width : 767px) {
    margin-right: none !important;
    width: 100%;
  }
}

/* 구독 상태에 따른 border color */
header .sub_management.red {
  border: 1px solid #E34A61;
}

header .sub_management.orange {
  border: 1px solid #F9A602;
}

header .sub_management.black {
  border: 1px solid #222;
}


header .sub_management:hover {
  background-color: rgba(227, 74, 97, 0.1);
}

header .sub_management a {
  display: flex;
  padding: 3px 18px 4px;
  color: #8b8b8b;
  font-family: 'Pretendard-Regular';
  word-break: keep-all;
}

header .sub_management a svg {
  color: #aaa;
  margin-top: 4px;
  margin-left: 6px;
}

@media (max-width : 767px) {
  header .sub_management a {
    position: relative;
  }

  header .sub_management a img {
    position: absolute;
    right: 18px;
    top: 7px;
  }
}

/* * 현재 플랜 */
header .sub_management a .now_plan {
  margin-right: 3px;
  font-family: 'Pretendard-SemiBold';
}

/* * 올인원 : red */
.now_plan_red {
  color: #E34A61;
}

/* 스탠다드 : orange */
.now_plan_orange {
  color: #F9A602;
}

/* 스탠다드 : black */
.now_plan_black {
  color: #222;
}

header .sub_management a img {
  margin-left: 6px;
  vertical-align: -20px;
  transform: rotate(270deg);

  @media (max-width : 767px) {
    margin-top: 3px;
  }
}

/* * 내 계정 */
header .account_btn {
  display: flex;
  align-items: center;
  font-size: 16px;
}

header .account_btn img {
  margin-right: 7px;
}

header .account_btn .account_company {
  position: relative;
  margin-right: 20px;
}

header .account_btn .account_company::after {
  content: '';
  width: 1px;
  height: 17px;
  background-color: #222;
  position: absolute;
  right: -10px;
  top: 3px;
}

header .account_btn .account_name {
  color: var(--text-gray-color);
}

/* * 내 계정 하위메뉴 */

.account_detail.dropdown-menu[data-bs-popper],
header .account_detail {
  position: absolute;
  min-width: 184px;
  width: max-content;
  top: 40px;
  left: auto;
  right: 0;
  padding: 5px;

  @media (max-width : 767px) {
    width: 100%;
  }
}

header .account_detail li a {
  display: block;
  border-radius: 5px;
  color: #808080;
  font-size: 11pt;
  transition: .3s;
  padding: 7px 10px;
  box-sizing: border-box;
}

header .account_detail li a:hover {
  background-color: var(--popup-hover);
  color: #808080;
}

header .account_detail li a:active {
  background-color: var(--popup-pressed);
  color: #222;
}

header .account_detail li a .icon_wrap {
  display: inline-block;
  min-width: 20px;
  margin-right: 10px;
  color: #B7B7B7;
}

/* * 모바일일 경우 메뉴 펼침 */
@media (max-width : 767px) {
  header .nav-content {
    display: block;
  }

  header .dropdown {
    margin: 20px 0;
  }

  header .dropdown-menu {
    display: block;
    margin-top: 20px;
  }

  /* bootstrap 속성 변경 */
  header .dropdown-menu.show {
    margin-top: 20px !important;
  }

  header .account .dropdown-toggle::after {
    display: none;
  }
}

header .account .icon_box {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #222;
  border-radius: 5px;
  margin-right: 8px;
  text-align: center;
}

header .account .icon_box svg {
  font-size: 13px;
  color: #fff;
  margin-top: 6px;
  width: 12px;
}

/* 넓게 보기 */
header .wide_btn_wrap {
  display: flex;
}

header .wide_btn_area {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

header .wide_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  /* margin-right: 10px; */
}

@media (max-width : 1600px) {

  /* 1600px 이하 시 숨김 */
  .is_web {
    display: none;
  }
}

/* 곽지훈 */

.imgShow-icnNotification {
  /* background-image: url("/res/images/common_topBar/icn-alert-ring_v3.svg"); */
  background-image: url(/assets/images/svg/icn-alert-ring.svg);
  background-size: 20px;
  width: 20px;
  height: 23px;
  position: relative;
  left: 8px;
  top: 3px;
}

.header_sub_info {
  display: flex;
  align-items: center;
  width: max-content;
  font-weight: 500;
  position: relative;
  padding: 4px 14px;
  border-radius: 100px;
  margin-right: 25px;
  font-size: 14px;
  @media (max-width : 767px) {
    width: 100%;
    margin-right: 0;
  }
}

.header_sub_info > span.plan_name {
  font-weight: 600;
  background: linear-gradient(to right, #08CA3C, #12C3B7);
  -webkit-background-clip: text;
  color: transparent;
}

.header_sub_info::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px; 
  padding: 1px; 
  background:linear-gradient(45deg,#08CA3C,#12C3B7); 
  mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  mask-composite: exclude; 
}

.header_sub_info:hover {
  background: #F2F2F2 !important;
}

.header_sub_info:active {
  background: #EDECEC !important;
}

.btn_sub_inner {
  padding: 7px 18px;
  font-size: 12px;
  height: 34px;
}

.top_border_none {
  border-top: none !important;
}

.icn_notification {
  width: 35px;
  height: 35px;
  border: 0;
  display: block;
  margin-right: -8px;
  margin-top: 3px;
  position: relative;
}

/*------------------------------------------------------------------
메뉴리스트
------------------------------------------------------------------*/
/*------------------------------------------------------------
메뉴리스트 (기본)
------------------------------------------------------------*/
header .menu_list {
  position: relative;
  @media (max-width : 767px) {
    &.hide {
      display: block !important;
    }
  }
}

header .menu_list ul {
  position: fixed;
  margin-top: 10px;
  box-shadow: 3px 3px 10px 5px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
  background: #fff;
  z-index: 111;
  padding: 9px 8px;
  @media (max-width : 767px) {
    position: static;

  }
}

header .menu_list[name='alarm'] ul li a {
  display: block;
  overflow: hidden;
  font-size: 11pt;
  font-weight: 500;
  color: #808080;
}

header .menu_list ul div.adminMenuHead {
  margin: 0 12px 2px;
  border-bottom: 1px solid #2196f3;
  color: #2196f3;
  padding: 13px 0 10px;
  font-size: 12px;
}

.menu_list.menu_list_withBadge>ul>li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 6px 10px 6px 8px;
  border-radius: 5px;
  transition: .3s;
  cursor: pointer;
}

.menu_list.menu_list_withBadge>ul>li:hover {
  background-color: #f4f4f4;
}

/*------------------------------------------------------------------
노티피케이션
------------------------------------------------------------------*/

/* 알람 아이콘 우측 알림 수 */
.icn_notification .badge_notification {
  position: absolute;
  /* right: -8px; */
  left: 18px;
  margin-top: 6px;
  z-index: 1;
  border: 1px solid #fff;
  width: auto;
  height: auto;
  background-color: #ef5350;
  color: #fff;
  display: inline-block;
  text-align: center;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 15px;
}

/* 헤더 알림 상세 리스트 */
.icn_notification+.menu_list>ul>li .badge_notification {
  font-size: 11px;
  position: static;
  padding: 0;
  min-width: 20px;
  height: 18px;
  padding: 0 5px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  background-color: rgba(239, 83, 80, 0.1);
  color: var(--text-red-color);
}

.icn_notification+.menu_list>ul>li .badge_notification.off {
  background-color: rgba(34, 34, 34, 0.1);
  color: #808080;
}

.badge_notification {
  width: auto;
  height: auto;
  background-color: #ef5350;
  color: #fff;
  display: inline-block;
  text-align: center;
  padding: 1px 8px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 8px;
  position: absolute;
}

.badge_notification.none {
  display: none;
}

.navbar {
  padding-top: 2px;
  padding-bottom: 2px;
}