
*, ::after, ::before
{
box-sizing: border-box;
}
html, body
{
    margin: 0;
    padding: 0;
	scroll-behavior: smooth;
}
:root
{
    --primary-color:#000;
    --burger-color: #000;
    --basic-background-color: #F5F7F7;
    --nav-background: #fff;
    --black-color-border: #D8E2FF;
    --nav-hover-background: #d2e3fc;
    --logout-background: #EDF0FF;
    --active-color: #005AC1;

}
@font-face {
  font-family: font-regular;
  src: url(fonts/AvenirNextLTPro-Regular.otf);
}
@font-face {
  font-family: font-light;
  src: url(fonts/AvenirNextLTPro-It.otf);
}
@font-face {
  font-family: font-bold;
  src: url(fonts/AvenirNextLTPro-Bold.otf);
}
body
{
    color: var(--primary-color);
    padding: 25px;
    font-family: font-regular;
    background: var(--basic-background-color);
}
/* ------If you see something like this in the browser elements don't use it for further changes. It will lead to unnecessary problems------ */
  .flex
  {
    display: flex;
  }
  .justify-content-center
  {
    justify-content: center;
  }
  .align-items-center
  {
    align-items: center;
  }
  .justify-content-flex-start
  {
    justify-content: flex-start;
  }
  .align-items-flex-start
  {
    align-items: flex-start;
  }
  .justify-content-flex-end
  {
    justify-content: flex-end;
  }
  .justify-content-space-between
  {
    justify-content: space-between;
  }
  .justify-content-space-around
  {
    justify-content: space-around;
  }
  .align-items-flex-end
  {
    align-items: flex-end;
  }
  .flex-wrap
  {
    flex-wrap: wrap;
  }
  .flex-direction-column
  {
    flex-direction: column;
  }
  .justify-content-baseline
  {
    justify-content: baseline;
  }
  .align-items-baseline
  {
    align-items: baseline;
  }
  .vertical-align-baseline
  {
    vertical-align: baseline;
  }
  /* -------------------------------------------------------------------- */
  /* -----------------navbar-------------------------------------------- */
.burger-controller
{
  padding: 50px 20px 20px 25px;
}
  .burger-controller a img
  {
    width: 110px;
    position: absolute;
    right: 0;
    display: none;
    transition: 0.2s linear;
  }
  .totally-controlled
  {
    position: relative;
  }
  nav
  {
    position: fixed;
    top: 20px;
    left: 10px;
    width: 100px;
    height: 95%;
    background-color: var(--nav-background);
    overflow-y: auto;
    border-radius: 35px;
    border: solid 1px var(--black-color-border);
    padding: 25px 5px 25px 5px;
    transition: 0.2s linear;
  }
  nav:hover
  {
    /* width: 350px; */
    width: 250px;
    transition: 0.2s linear;
  }
  nav:hover .burger-controller a img
  {
    display: block;
    transition: 0.2s linear;
    /* right: 35%; */
    right: 25%;
  }
  nav:hover .image-gaps img
  {
    width: 25px;
    transition: 0.2s linear;
  }
  nav:hover .navigations a
  {
    font-size: 17px;
    transition: 0.2s linear;
    text-decoration: none;
  }
  nav:hover + .expand 
  {
    /* margin-left: 325px; */
    margin-left: 250px;
    transition: 0.2s linear;
  }
  nav::-webkit-scrollbar
  {
    display: none;
  }

.burger
{
  width: 25px;
  border: solid 1.5px var(--burger-color);
  margin-right: 25px;
  position: relative;
  border-radius: 1px;
  cursor: pointer;
}
.burger::before
{
    content: '';
    width: 25px;
    border: solid 1.5px var(--burger-color);
    margin-right: 25px;
    position: absolute;
    top: -8px;
    right: 0;
    left: -1.7px;
    border-radius: 1px;

}
.burger::after
{
  content: '';
  width: 25px;
  border: solid 1.5px var(--burger-color);
  margin-right: 25px;
  position: absolute;
  top: 5px;
  right: 0;
  left: -1.5px;
  border-radius: 1px;
}
.navigations a:first-child
{
  margin-top: 50px;
}
.navigations a
{
    /* min-height: 50px; */
    min-height: 60px;
    min-width: 100%;
    width: fit-content;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 0px;
    margin: 0px 0px 25px 0px;
    cursor: pointer;
    transition: linear 0.2s;
    padding-left: 25px;
    transition: 0.2s linear;

}
.navigations a:hover
{
  transition: linear 0.2s;
  background: var(--nav-hover-background);
  border-radius: 15px;
}
.navigations a:last-child
{
  background: var(--logout-background);
  border-radius: 15px;
  border: solid 2px transparent;
  margin-top: 60px;
}
.navigations a:last-child:hover
{
  border: solid 2px var(--black-color-border);
  transition: 0s linear;
}
.image-gaps img
{
  /* width: 35px; */
  width: 30px;
  margin-right: 20px;
  transition: 0.2s linear;
}
.content {
  margin-left: 100px;
  padding: 20px;
  /* padding:0 20px 20px 20px; */
  transition: 0.2s linear;
}
.introduction
{
  min-width: 190px;
}
.introduction p
{
  margin: 0;
  line-height: 1.2;
}
.introduction p:first-child
{
  font-size: 26px;
  font-family: font-bold;
  color: var(--active-color);
}
.introduction p:last-child
{
  font-size: 17px;
}
.search-box
{
  width: 100%;
  position: relative;
}
.search-things
{
  min-height: 60px;
  width: 100%;
  border-radius: 10px;
  padding-left: 50px;
  font-size: 20px;
  position: relative;
  border: solid var(--black-color-border) 2px;
}
.search-image
{
  position: absolute;
  top: 14px;
  right: 0;
  left: 10px;
  bottom: 0;
  padding: 7px;
  background: var(--active-color);
  border-radius: 25px;
}
.head-profile
{
  min-width: 300px;
  background: var(--nav-background);
  margin: 10px;
  min-height: 60px;
  padding:0px 10px 0px 10px;
  border-radius: 10px;
  border: solid 2px var(--black-color-border);
  position: relative;
}
.head-profile img
{
  width: 40px;
  margin-right: 10px;
  border-radius: 15px;
}
.profile-info p
{
  margin:3px 0;
}
.profile-info p:first-child
{
  font-family: font-bold;
  color: var(--active-color);
  /* font-size: 19px; */
  overflow: scroll;
  width: 150px;
  white-space: nowrap;
}
.profile-info p:first-child::-webkit-scrollbar
{
  display: none;
}
.profile-info p:last-child
{
  font-size: 13px;
  /* font-size: 15px; */
}
.thrible-dots
{
  width: 4px;
  height: 4px;
  border-radius: 35px;
  background: var(--burger-color);
  margin-left: auto;
  position: relative;
  cursor: pointer;
  margin-right: 15px;
}
.thrible-dots::before
{
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 35px;
  background: var(--burger-color);
  margin-left: auto;
  top: 7px;
  position: absolute;
}
.thrible-dots::after
{
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 35px;
  background: var(--burger-color);
  margin-left: auto;
  position: absolute;
  bottom: 7px;
}
.enabling-features
{
  background: var(--nav-background);
  padding: 10px;
  margin: 10px;
  border-radius: 10px;
  border: solid 2px var(--black-color-border);
  text-decoration: none;
  color: var(--primary-color);
  min-height: 55px;
  min-width: 55px;
}
.enabling-features:hover
{
  background: var(--nav-hover-background);
}
.enabling-features img
{
  width: 20px;
}
/* ------------------------------------------------------ */
/* -------------button-ripple-effect--------------------- */
.button {
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
}

.button .ripple {
    position: absolute;
    transform: translate(-50%, -50%) scale(0);
    background: #fff;
    border-radius: 50%;
    width: 250px;
    height: 500px;
    opacity: 0.6;
    animation: scale 0.6s ease-out;
}

@keyframes scale {
    to {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}
/* ------------------------------------------------------- */
.active_class{
  border-radius: 20px;
  background: var(--material-theme-sys-light-primary, #005AC1);
  color: white;
}
.words_active{
  color: white;
}
.no-underline {
  text-decoration: none;
}
nav:hover .spantext {
  display: block;
}

.spantext {
  font-size: 10px;
  margin: 0 auto;
  display: none;
}
.my_dropdown-menu {
  position: absolute;
  top: 50px;
  right: 0;
  display: none;
  background-color: #fff;
  padding: 8px;
}

.my_dropdown-item {
  display: block;
  padding: 4px 0;
  text-decoration: none;
  color: #333;
}

.my_dropdown-item:hover {
  background-color: #f2f2f2;
}
#dropdown-toggle{
  cursor: pointer;
}
.overflow-hidden {
  overflow-y: hidden;
}
