nav::-webkit-scrollbar {
  width: 6px;
}

nav::-webkit-scrollbar-track {
  display: none;
}

nav::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 100px;
}

nav {
  scrollbar-color: #fff;
}

nav::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 100px;
}

nav {
  display: none;
  z-index: 12;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #000;
}

/*
nav {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

nav::-webkit-scrollbar {
  display: none;
}
*/

nav .logo img {
  position: absolute;
  top: calc(22px + 1vw);
  left: 86%;
  width: calc(26px + 1vw);
  opacity: 0;
}

nav .wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  color: #fff;
  background-color: #000;
  text-align: left;
  padding-bottom: 4vh;
}

nav .wrap a {
  color: #fff;
}

nav .close-button {
  z-index: 100;
  position: fixed;
  display: none;
  top: calc(20px + 0.6vw);
  right: calc(20px + 0.6vw);
  width: calc(30px + 1vw);
  min-width: calc(30px + 1vw);
  height: calc(30px + 1vw);
  background: url("/assets/images/common/gnb_close_btn.png") no-repeat center;
  background-size: 60%;
}

nav .depth1 {
  /*margin-top: calc(40px + 2vw);*/
  margin-top: 7.2vh;
  margin-left: calc(40px + 2.4vw);
}

nav .depth1>li {
  position: relative;
  overflow: hidden;
  /*
	font-size: calc(2.4rem + 3vw + 2vh);
	line-height: calc((2.4rem + 3vw + 2vh) * 1.1);
	*/
  margin-bottom: 0.4vh;
  /*
	transition-timing-function: ease-out;
	transition-duration: 0.4s;
	*/
}

nav li.new-win {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  border: 1px solid #999;
}

nav li img {
  vertical-align: top;
  position: relative;
  top: 3.4vh;
  display: inline;
  margin-left: calc(4px + 1vh);
  width: calc(10px + 1.4vh);
  opacity: 1;
}

nav .depth1>li h1 span {
  font-family: "Poppins";
  font-weight: 700;
  font-size: 12.6vh;
  line-height: 13.0vh;
  cursor: pointer;
  opacity: 0.3;
  transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
}

nav .depth2 {
  display: none;
  padding-left: 0.6vh;
  margin-bottom: 4vh;
}

nav .depth2>ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  margin-bottom: 0.6vh;
}

nav .depth2>li {
  margin-top: 1.2vh;
  display: flex;
  flex-direction: row;
}

nav .depth2>li h2 {
  font-weight: 500;
  font-size: calc(1.1rem + 0.3vh);
  line-height: calc((1.1rem + 0.3vh) * 2);
  letter-spacing: 0;
}

nav .depth2>li a {
  opacity: 1;
}

nav .depth2>li a:hover {
  opacity: 0.8;
}

nav .depth2>li span {
  margin-left: 0.2vw;
  font-size: calc(0.6rem + 0.2vh);
}

nav .arrow-right {
  margin-left: 1.2vh;
  font-weight: 600;
  font-size: 1.4vh;
  align-self: center;
  color: var(--color-orange);
}

nav .depth3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: center;
  margin: 0;
  margin-left: 1.2vh;
  padding-left: 0;
}

nav .depth3>li {
  margin-right: calc(8px + 0.2vh);
}

nav .depth3>li h3 {
  font-weight: 400;
  font-size: calc(0.9rem + 0.2vh);
  line-height: calc((0.9rem + 0.2vh) * 2);
  letter-spacing: 0;
}

nav .depth3>li a {
  opacity: 0.72;
}

nav .depth3>li a:hover {
  opacity: 1;
}

nav .depth3>li.split {
  /*
  font-size: 1rem;
  color: #666;
  */
  position: relative;
  top: 1px;
  width: 1px;
  height: 2.0vh;
  background-color: #333;
  cursor: default;
}

.mobile-close-button {
  display: none;
}