@charset "UTF-8";
/*다국어*/
#language {
  z-index: 6;
  line-height: 1;
  text-align: left;
  color: #606060;
  font-size: 12px;
  position: relative;
  width: 45px;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
}
#language:before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  width: 100%;
  height: calc(100% + 15px);
  background: rgba(255, 255, 255, 0);
  z-index: 0;
}
#language ul li, #language .select {
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  height: 100%;
  float: left;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  position: relative;
}
#language .select {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 45px;
}
#language .select i {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  font-size: 14px;
}
#language .select b {
  margin-top: -3px;
}
#language ul {
  position: absolute;
  top: 60px;
  z-index: 0;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  overflow: hidden;
  width: 100%;
  height: 0;
}
#language ul li {
  width: 100%;
  height: 60px;
  list-style: none;
  padding: 10px;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#language ul li.hide {
  z-index: -1;
  opacity: 0;
  display: none;
}
#language ul li:hover {
  color: black;
}
#language:hover:before {
  height: 315px !important;
  background: white;
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.0823529412);
          box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.0823529412);
}
#language:hover .select .icon-angle-down {
  -webkit-transform: translate(0, 10%) rotate3d(100, 0, 0, 180deg) scale(1.3);
          transform: translate(0, 10%) rotate3d(100, 0, 0, 180deg) scale(1.3);
}
#language:hover ul {
  height: 240px !important;
}
#language b {
  border: 1px solid #b3b3b3;
  border-radius: 50px;
  width: 30px;
}
#language b img {
  width: 100%;
}
#language span {
  padding-top: 7px;
}

#header.headerFixed #language:before {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.24);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12), 0 3px 6px rgba(0, 0, 0, 0.24);
}
#header.headerFixed #language .select {
  color: #424242;
}