/* .header {
    width: 100%;
}  */
/* .logo-container {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 50px;
} */

ol , ul {
    padding-left: 0px;
}

.side-bar-icon {
    width: 17px;
    height: 17px;
}

.side-nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%; 
    height: 100%;
    background-color: #FFFFFF;
    padding: 23px 21px;
    border-radius: 15px;
}

.nav-links {
    list-style: none;
    /* padding: 0px 15px; */
}
.nav-links li {
    /* padding: 10px 0px; */
    border-radius: 6px;
    height: 32px;
    width: 184px;
}
.nav-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #272727;
    font-size: 16px;
    line-height: 24px;
    padding-left: 10px;
    height: 100%;
}
.nav-links li.active  {
    background-color:#000000;
}
.nav-links li.active svg path, .nav-links li.active svg circle {
    stroke: #FFFFFF;
}

.nav-links li.active p {
    color: #FFFFFF;
}

.profile-and-logout-container {
    padding-bottom: 30px;
}

.logout-box {
    margin-bottom: 0px;
}

.logout-box li {
    padding: 10px 0px;
}

p {
    font-weight: 500;
    font-size: 13px;
    color: #272727; 
    margin-bottom: 0px;
}

.delete-account {
    color: #E32001;
    font-size: 600;

}

.right-10 {
    right: -10px;
}


.custom-switch {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 9px;
}

.custom-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-switch input:checked + .slider {
    background-color: black;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #777777;
  border-radius: 34px;
  transition: 0.4s;
}

.custom-switch input:checked + .slider {
    background-color: black;
}

.slider::before {
  content: "";
  position: absolute;
  height: 5px;
  width: 5px;
  left: 3px;
  bottom: 2px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
  /* box-shadow: inset 0 0 0 6px deeppink; */
}

input:checked + .slider::before {
  transform: translateX(5px); /* Moves the knob to the right */
  box-shadow: inset 0 0 0 0 deeppink; /* hide inner dot on checked if you want */
}

@media (max-width: 768px){
    .modal-dialog{
        margin: 0px;
        padding: 10px;
    }

    .modal-dialog input{
        width: 100%;;
    }
    #deleteAccountModal .main-modal-dialog-container {
        max-width: 545px;
        width: 100%;
        margin: 0px auto;
    }
}

[lang="ar"] {
    .custom-switch {
        right: unset !important;
        left: 0px !important;
    }
    .nav-links li a {
        padding-right: 10px !important;
    }
}