/* Google Font CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
.sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 78px;
  background: #282828;
  z-index: 11;
  transition: all 0.5s ease;
}
.sidebar.active{
  width: 240px
}
.sidebar .logo {
  height: 80px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #494949;
  cursor: pointer;
}
.sidebar .logo .fa-list {
  font-size: 25px;
}
.sidebar.active .logo .fa-list {
  display: none;
}
.sidebar .logo .fa-long-arrow-alt-right {
  display: none;
}
.sidebar.active .logo .fa-long-arrow-alt-right {
  display: block;
  font-size: 40px;
}
.sidebar .nav_content {
  display: none;
}
.sidebar.active .nav_content {
  display: block;
}
.nav_content ul li {
  list-style: none;
  line-height: 38px;
  margin: .25rem 0;
}

.login_type_btn {
  width: 50%;
  white-space: nowrap;
  display: inline-block;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  color: #6c757d;
  border: 1px solid #6c757d;
  padding: .375rem .75rem;
  font-size: .9rem;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  overflow: hidden;
}
.login_type_btn:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.login_type_btn:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.login_type_btn.active {
  background-color: #6c757d;
  color: #fff;
}

.btn-login {
  width: 100%;
  font-weight: bold;
  color: #fff;
  border-radius: 0;
  white-space: nowrap;
  background-color: #ed8f1f;
}
.btn-login:hover {
  color: #fff;
  background-color: #b06b16;
}

.sidebar .nav_content .profile{
  display: none;
}
.sidebar.active .nav_content .profile{
  display: block;
  padding: 1rem;
  white-space: nowrap;
  background: #6c6c6c;
}
.profile_text1{
  font-family: NanumSquare;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.005em;
  text-align: center;
  color: #212529;
}
.profile_info {
  line-height: 1.2;
}
.profile_text2{
  font-family: NanumSquare;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: -0.005em;
  color: #D1D1D1FF;
}
.profile_text3{
  display: block;
  font-family: NanumSquare;
  font-weight: bold;
  font-size: 0.875rem;
  letter-spacing: -0.005em;
  color: #D1D1D1FF;
}

.sidebar .nav_footer {
  display: none;
}
.sidebar.active .nav_footer {
  display: block;
  margin-top: 20px;
}

.sidebar .nav_active {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.sidebar.active .nav_active {
  display: none;
}



