* {
  /* margin: 0; */
  /* padding: 0; */
  font-family: "Poppins", sans-serif;
}
/* 
.common-nav {
  display: flex;
  align-items: center;
} */
.navsbar {
  display: flex;
  justify-content: center;
  align-items: center;
}

img.logo {
  width: 100px;
}

img.arrow {
  width: 40px;
  height: 35px;
  cursor: pointer;
}
.profile-img span {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  padding-left: 22px;
}

/* toggle */
/* toggle-switch */
.switch {
  position: relative;
  top: 0px;
  width: 60px;
  height: 34px;
  right: 0px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 34px;
  width: 34px;
  left: 4px;
  bottom: 0px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: 0px 0px 10px #9996;
}

input:checked + .slider {
  background-image: url(https://picsum.photos/50/50);
  background-size: cover;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.profile-icon {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
.navsbar i.fa-solid.fa-bell {
  font-size: 30px;
  margin: 0 30px;
  color: #3c3648;
}

.navsbar i.fa-solid.fa-user {
  font-size: 25px;
  background-color: #ebe3ff;
  padding: 12px 14px;
  border-radius: 35px;
  color: #999;
}
.tabbars nav {
  padding-bottom: 10px;
}
.profile-user span {
  margin: 0 10px;
}
.profile-icon i.fa-solid.fa-angle-down {
  font-size: 25px;
  color: #3c3648;
}
.profile-head {
  text-align: center;
}
.user-sec {
  background-color: #ebe3ff;
  background-size: cover;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto;
  font-size: 40px;
  margin-bottom: 20px;
}

.file-attach {
  display: flex;
  justify-content: center;
  align-items: center;
}
.file-attach.file-attachs {
  margin-top: 50px;
}
.file-attach.file-attachs span {
  font-size: 15px;
}

.file-upload {
  text-align: center;
  margin-top: 12px;
  padding: 0px;
  line-height: inherit;
  font-size: 18px;
}

.file-upload label {
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
  margin-right: 5px;
  border: 2px solid #999;
  border-radius: 6px;
}
.file-upload img {
  margin-right: 10px;
}
.file-upload input {
  position: absolute;
  opacity: 0;
}

.tabbars .tabs {
  width: max-content;
  margin: 20px auto;
  border: 1px solid #999;
  text-align: center;
  display: flex;
  justify-content: center;
  border-radius: 6px;
}
.tabs button {
  border: 0px solid #999 !important;
  padding: 14px 28px;
  color: #999 !important;
  font-weight: 500;
  font-size: 15px;
}
.tabs button:first-child {
  border-radius: 5px 0 0 4px !important;
}
.tabs button:last-child {
  border-radius: 0 5px 5px 0px !important;
}
.tabs button img {
  font-size: 15px;
  margin-right: 10px;
}
.tabs button.nav-link.active {
  background-color: #3c3648 !important;
  color: #fff !important;
}

.common-input input,
.common-input select,
.date-sec {
  /* border: 2px solid #999; */
  width: 100%;
  border-radius: 5px;
  padding: 15px 15px;
  font-size: 16px;
  /* font-weight: 600; */
  color: #999;
}
.choose-dob {
  display: flex;
  justify-content: space-between;
  border-right: 2px solid #999;
  padding-right: 6px;
  align-items: center;
}
.choose-dob p {
  margin-bottom: 0;
}
.profile-btn button {
  background-color: #7a48ff;
  border: 0;
  color: #fff;
  padding: 15px 16px;
  font-size: 16px;
  /* font-weight: 600; */
  border-radius: 6px;
  margin: 10px 0 10px 0;
}

.profile-btn p {
  font-size: 18px;
  font-weight: 600;
  color: #999;
  cursor: pointer;
}
label.switch.switch-one {
  display: none;
}

/* hover profile */
.profile-user {
  position: relative;
  transition: 0.1s;
}

.profile {
  box-shadow: 0 16px 34px 0 rgba(122, 72, 255, 0.3);
  border: #d7d0e8;
  width: 270px;
  position: absolute;
  right: 0;
  transition: 0.1s;
  display: none;
  background-color: white;
  z-index: 9;
  border-radius: 5px;
}
.profile-user:hover .profile {
  display: block;
}
.user-profile-head {
  margin-top: -11px;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 20px 15px;
  background-color: #2b2639;
  background: url("/assets/images/header_dropdown.svg");
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 5px 5px 0 0;
  height: 120px;
}
.user-profile-head img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-top: 8px;
}
.head-content {
  margin-left: 10px;
  color: #fff;
  text-align: left;
  overflow: hidden;
}
.head-content h4 {
  margin-bottom: 3px;
  font-size: 21px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.head-content p {
  margin-bottom: 0;
  color: #a49bbe;
  font-size: 15px;
}
.profile ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}
.profile ul li {
  padding: 13px 20px;
  font-weight: 500;
}
.profile ul li:hover {
  background-color: #ebe3ff;
}
.profile ul li span {
  cursor: pointer;
  color: #2b2639;
  text-decoration: none;
  font-size: 15px;
}
.profile ul:last-child li span {
  color: #ff4f47;
}
/* .profile ul li:last-child a {
color: #ff4f47;
} */

@media screen and (max-width: 992px) {
  .navsbar {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  label.switch.switch-two {
    display: none;
  }
  label.switch.switch-one {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .profile {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  img.logo {
    width: 90px;
  }
  .profile-img span {
    font-size: 20px;
  }
  .choose-dob {
    margin-bottom: 20px;
    border-right: 0;
    padding-right: 0;
  }
  label.switch.d-md-none {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}

@media screen and (max-width: 576px) {
  .tabs button {
    padding: 10px 18px;
  }
  .common-input input,
  .common-input select {
    font-size: 16px;
  }
  img.logo {
    width: 60px;
  }
  .profile-img span {
    font-size: 18px;
    /* display: none; */
  }
  .profile-img {
    margin-top: 30px;
  }
  button.navbar-toggler {
    margin-top: 30px;
  }
  label.switch.d-sm-none.d-md-block {
    display: none;
  }
}

@media screen and (max-width: 340px) {
  .tabs button {
    width: 140px;
  }
}
