.loader {
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #a4acb1;
  width: 30px;
  height: 30px;
  -webkit-animation: spin 0.85s linear infinite; /* Safari */
  animation: spin 0.85s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.icon-button-notification {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: none;
    outline: none;
    border-radius: 50%;
   
  }
  
  .icon-button-notification:hover {
    cursor: pointer;
  }
  
  .icon-button-notification:active {
    background: #cccccc;
  }
  
  .icon-button__badge_notification {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: red;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }
  #bg-spinner{
    top:0;
    z-index: 100;
    height: 100%;
    width: 100%;
    position: fixed;
    display: none;
    background-color: rgba(1,1,1,0.7);
  }
  #position-spinner{
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  #spinner{
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 6px solid #d3d3d3;
    border-top: 6px solid #007bff; 
    animation: loading 1s infinite linear;
  }
@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}

.sidenav-scroll-area {
  padding-bottom: 5.75rem;
}

.sidenav-kunt-ortak {
  bottom: 1rem;
  left: 1rem;
  position: absolute;
  right: 1rem;
}

.sidenav-kunt-ortak__link {
  align-items: center;
  background: #ffffff;
  border: 1px solid #0c6fcb;
  border-radius: 0.5rem;
  color: #0c6fcb;
  display: flex;
  font-size: 0.875rem;
  font-weight: 700;
  gap: 0.65rem;
  line-height: 1.2;
  padding: 0.7rem 0.85rem;
  transition: all 0.15s ease-in-out;
  width: 100%;
}

.sidenav-kunt-ortak__link:hover {
  background: #0c6fcb;
  color: #ffffff;
}

.sidenav-kunt-ortak__icon {
  flex: 0 0 24px;
  height: 24px;
  object-fit: contain;
  width: 24px;
}
