.sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 280px;
  height: 100vh;
  overflow: hidden;
  overflow-y: hidden;
  background: var(--bg-1);
  -webkit-transition: width .25s;
  -o-transition: width .25s;
  transition: width .25s;
  transition: all ease-in-out .5s;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 10px;
  /* overflow-y: scroll; */
}

.sidebar-left {
  left: 0;
  padding-right: 0px;
}

.sidebar-item {
  	overflow-y: scroll;
  	height: 100%;
}

.sidebar-box {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
  background-color: var(--bg-primary);
  border-radius: 15px;
  margin-bottom: 10px;
}

.sidebar__icon {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.sidebar__icon svg {
  height: 18px;
  width: 20px;
  font-size: 20px;
}

.sidebar__icon svg path {
  fill: var(--color-primary)
}

.sidebar-content li:nth-child(5n+1) .sidebar__icon {
  background: linear-gradient(to right, #0575e6, #021b79);
}

.sidebar-content li:nth-child(5n+2) .sidebar__icon {
  background: linear-gradient(to right, #e44d26, #f16529);
}

.sidebar-content li:nth-child(5n+3) .sidebar__icon {
  background: linear-gradient(to right, #f2994a, #f2c94c);
}

.sidebar-content li:nth-child(5n+4) .sidebar__icon {
  background: linear-gradient(to right, #ee0979, #ff6a00);
}

.sidebar-content li:nth-child(5n+5) .sidebar__icon {
  background: linear-gradient(135deg, #05f, #09f)
}

.sidebar-content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 0px 12px 0px;
  white-space: nowrap;
  position: relative;
  font-size: 15px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-5);
  height: 54px;
  display: flex;
  overflow: hidden;
  transition: all .2s ease;
  text-transform: capitalize;
}

.sidebar-content a p {
  margin-bottom: 0px;
  padding-bottom: 0px;
  font-size: var(--font-size-body);
  flex: 1;
  text-align: right;
}

.sidebar-box {
  padding: 15px 15px 10px 15px;
}

.title-sidebar {
  color: var(--color-2);
  font-weight: 600;
  margin-bottom: 5px;
}

.sidebar__icon--bg {
  background: transparent !important;
}

.sidebar__icon--bg svg {
  height: 23px;
  width: 25px;
}

.sidebar__icon--bg svg path {
  fill: #052963 !important;
}

.sidebar__notification {
  background-color: var(--bg-6);
  color: var(--bg-primary);
  padding: 0px 5px;
  font-size: calc(var(--font-size-body) + 1px);
  border-radius: 5px;
}

.sidebar__icon--color2 svg {
  height: 22px;
  width: 22px;
  fill: #2a3089;
}

.sidebar__icon--color2 svg path {
  fill: var(--color-2);
}

.sidebar-right {
  right: 0;
  width: 300px;
}

.sidebar-box-right {
  overflow-y: scroll;
  padding: 15px 15px 10px 20px;
}

.sidebar-content img {
  width: 35px;
  height: 35px;
  border-radius: 100%;
}

.sidebar__name--right {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-7);
  margin-left: 10px;
}

.sidebar-right .sidebar-content {
  margin-bottom: 10px;
}

.box-tt--search {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
  background-color: var(--bg-primary);
}

.bupupsearch {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  display: none;
}

.bupupsearch.active {
  display: block;
}

.bupupsearch__form select,
.bupupsearch__form input {
  height: 30px;
  background: top;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  padding: 0px 10px;
}

.bupupsearch__form input::placeholder {
  color: var(--color-second);
  opacity: 1;
}

.bupupsearch__form li {
  padding-bottom: 15px;
}

.title-search-advanced {
  text-align: center;
  font-size: 18px;
  padding: 10px 0px;
  border-bottom: 1px solid gray;
  background-color: #0e74bc;
  color: white;
  text-transform: uppercase;
}

.bupupsearch__form {
  padding-top: 15px;
}

.bupupsearch__form ul {
  padding: 0px 10px;
}

.bupupsearch__btn button {
  color: white;
  font-size: var(--heading-5);
}

.bupupsearch__btn button:nth-child(2) {
  background-color: #0e74bc;
}

.bupupsearch__btn button:nth-child(1) {
  background-color: #f14044;
}

.search-advanced .close-link-turnRb {
  top: 5px;
  cursor: pointer;
}

.search-advanced .close-link-turnRb svg {
  fill: white;
  height: 12px;
}