.sidebar {
  width: 13%;
  height: 100vh;
  background: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    z-index: 6;
  }
}
@media screen and (max-width: 1024px) {
  .sidebar .head {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 85%;
    margin: 0 auto;
    padding: 10px 0;
  }
}
.sidebar .sitelogo img {
  width: 130px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .sidebar .sitelogo img {
    width: 70px;
    padding: 0;
    padding-left: 3px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sidebar .sitelogo img {
    width: 130px;
    padding: 0;
    padding-left: 3px;
  }
}
.sidebar #toggle {
  padding: 10px 0;
  color: #fff;
  background: #587ea7;
  font-size: 13px;
  padding: 5px 15px;
  height: 15px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  position: relative;
  top: 6px;
  -moz-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  -o-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
  -ms-box-shadow: 0px 3px 3px rgba(0,0,0,0.2);
}
@media screen and (min-width: 1025px) {
  .sidebar #toggle {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sidebar #toggle {
    font-size: 15px;
    position: relative;
    top: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .sidebar .nav_content_pc {
    display: none;
  }
}
.sidebar .nav_content {
  height: 75vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 998;
  display: none;
}
@media screen and (min-width: 1025px) {
    .sidebar .nav_content {
        display: none !important;
    }
}
.sidebar nav {
  background: #fff;
  z-index: 997;
  position: relative;
}
.sidebar nav ul li a {
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 20%;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  color: #a4bbd3;
}
@media screen and (max-width: 1165px) and (min-width: 1025px) {
    .sidebar nav ul li a {
        font-size: 14.5px;
    }
}
.sidebar nav ul li a:hover {
  background: #eef4f7;
  color: #004f99;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.sidebar nav ul li.current {
  background: #eef4f7;
}
.sidebar nav ul li.current a {
  color: #004f99;
}
.sidebar .account {
  position: absolute;
  bottom: 30px;
  left: 10%;
  width: 80%;
  text-align: left;
}
.sidebar .account div.name {
  font-size: 15px;
  color: #004f99;
  padding: 0 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 1165px) and (min-width: 1025px) {
    .sidebar .account div.name {
        font-size: 13px;
    }
}
.sidebar .account div.manual a img {
  padding-right: 4px;
}
.sidebar .account div.contact a img {
  padding-right: 2px;
  padding-top: 2px;
  width: 15px;
  height: auto;
}
.sidebar .account a {
  font-size: 13px;
  color: #004f99;
  border-bottom: solid 1px #d4e5ee;
  width: 100%;
  display: block;
  padding: 10px 10px 5px 10px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 1165px) and (min-width: 1025px) {
    .sidebar .account a {
        font-size: 12px;
    }
}
.sidebar .account a:hover {
  background: #eef4f7;
  color: #004f99;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.sidebar .account a img {
  height: 14px;
  float: right;
}

.sidebar .head .vendor-info {
    font-weight: bold;
    font-size: clamp(14px, 1vw, 19px);
    margin: auto 8px;
}
@media screen and (min-width: 1025px) {
    .sidebar .head .vendor-info {
        margin: 0 8px 8px 8px;
    }
}
