.adh-sidebar {
  margin: 0;
  padding: 15px;
  width: 270px;
  position: fixed;
  height: 100%;
  overflow: auto;
  background-color: var(--container-background);
  box-shadow: 1px 1px 5px var(--shadow-color);
  border: solid 1px var(--border);
  transition: background-color 1s;
}

.adh-sidebar-content-header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 10000;
}

.adh-sidebar-alert-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 830px) {
  .adh-sidebar-alert-container {
    width: 70%;
  }
}

@media (max-width: 380px) {
  .adh-sidebar-alert-container {
    width: 60%;
  }
}

.adh-sidebar-spacer {
  height: 35px;
}

.adh-sidebar-company-logo {
    max-width: 90%;
    max-height: 200px;
    margin:auto;
    display:flex;
    content: url("../img/awossa_logo.png");
    transition: content 1s;
  }

.adh-sidebar-company-text {
    max-width: 90%;
    max-height: 200px;
    margin:auto;
    display:flex;
    content: var(--company-logo-text);
    transition: content 1s;
}

.adh-sidebar-user-icon {
  font-size: 48px;
}
.adh-sidebar-item {
  font-size: 16px;
  opacity: 0.9;
  text-decoration: none;
  color: var(--primary-text-color) !important;
  display: flex;
  transition: color 1s;
}
.adh-sidebar-user-logo {
    max-width: 90%;
    max-height: 100%;
    margin: 0px;
    margin-bottom:15px;
}

.adh-sidebar-link {
  display: block;
  color: gray;
  padding: 10px;
  text-decoration: none;
}

.adh-sidebar-link.active {
  color: var(--primary-text-color);
  transition: color 1s;
}

.adh-sidebar-link:hover {
  color: var(--elements-accent) !important;
  transition: color 1s;
}

.adh-sidebar-content {
  margin-left: 270px;
}

.adh-sidebar-link-container-bottom {
    /*position: absolute;*/
    /*bottom: 0;*/
    margin-bottom: 100px;
    padding-top: 20px;
    border-top: 1px solid var(--elements-accent);
}

@media (max-width: 400px) {
  .adh-sidebar-link-container {
    float: none;
  }
}

.adh-sidebar-user {
  width: 100%;
  margin: auto;
  height: 60px;
  margin-left: 5px;
}

.adh-sidebar-item-user-profile {
  font-size: 16px;
  opacity: 0.9;
  text-decoration: none;
  color: var(--primary-text-color) !important;
  transition: color 1s;
  cursor: pointer;
}

.adh-sidebar-item-user-profile:hover {
  color: var(--elements-accent) !important;
  transition: color 1s;
}
.adh-sidebar-link-collector{
    display: inline-block;
}


@media screen and (max-height: 1060px) {
    .adh-sidebar-link-container-bottom{
        position: relative;
    }
}

@media screen and (max-width: 1080px) {

    .adh-sidebar-spacer {
      display: none;
    }
    .adh-sidebar-seperator_label {
      display: none;
    }
    .adh-sidebar-company-logo {
      max-width: 100px;
    }
    .adh-sidebar-company-text{
        display: none;
    }
    .adh-sidebar-user-logo {
        display: none;
        max-width: 300px;
    }
    .adh-sidebar-user-icon {
      margin-right: 15px;
    }
    .adh-sidebar-item-user-profile{
        width: 85%;
    }
    .adh-sidebar-content {
        margin-left: 0;
    }
    .adh-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    .adh-sidebar-link-container {
        float: left;
    }
    .adh-sidebar-link-container-bottom{
        position: relative;
        width: 100%;
        margin-bottom: 0px;
        display: flex;
    }
}
