@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap');



/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
} */

/* .userProfileContainer {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #784a4a;
} */

.userProfileNavigation {
  position: fixed;
  top: 2px;
  right: 5px;
  width: 35px;
  height: 50px;
  display: flex;
  justify-content: space-between;
  border-radius: 5px;
  /* background: #fff; */
  /* box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1); */
  overflow: hidden;
  transition: height 0.5s, width 0.5s;
  transition-delay: 0s, 0.75s;
  z-index: 1000;
  position: absolute;
}


.userProfileNavigation .user-box {
  position: relative;
  width: 60px;
  height: 35px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: 0.5s;
  transition-delay: 0.5s;
}

.userProfileNavigation .user-box .username {
  font-size: 14px;
  white-space: nowrap;
  color: #555;
}

.userProfileNavigation .user-box .image-box {
  /* padding: 16px 14px 14px 14px; */
  position: relative;
  min-width: 40px;
  height: 60px;
  /* background: #fff; */
  /* border-radius: 50%; */
  overflow: hidden;
  margin-left: 3px;
  margin-top: 29px;
}

.userProfileNavigation.activa .user-box .image-box {
  /* padding: 16px 14px 14px 14px; */
  position: relative;
  min-width: 40px;
  height: 60px;
  /* background: #fff; */
  /* border-radius: 50%; */
  overflow: hidden;
  margin-left: 13px;
  margin-top: 29px;
}

.userProfileNavigation .user-box .image-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.userProfileNavigation .menu-toggle {
  position: relative;
  width: 60px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.userProfileNavigation .menu-toggle::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #555;
  transform: translateY(5px);
  box-shadow: 0 10px #555;
  transition: 0.5s;
}

.userProfileNavigation .menu-toggle::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #555;
  transform: translateY(10px);
  transition: 0.5s;
}

.menu {
  position: absolute;
  width: 100%;
  height: calc(100% - 40px);
  margin-top: 38px;
  padding: 0 20px;
}

.menu li {
  list-style: none;
  border-bottom: 1px solid #e1dcdc;
}

.menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  font-size: 13px;
  text-decoration: none;
  color: #555;
}

.menu li a ion-icon {
  font-size: 1.5rem;
}

.menu li a:hover {
  color: black
}

.menu li a i:hover {
  color: black;
}

.menu li a i {
  color: #d8d8d8;
}


.fa-user-circle:hover {

  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
  right: 15px;
  position: absolute;
}

.fa-user-circle {
  font-size: 20px;
  color: #c12933;
}

.jconfirm .jconfirm-box.jconfirm-type-red {
  border-top: solid 7px #c12933;
  -webkit-animation-name: type-red;
  animation-name: type-red
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red:hover {
  background-color: #c12933;
  color: #FFF
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red {
  background-color: #c12933;
  color: #FFF;
  text-shadow: none;
  -webkit-transition: background .2s;
  transition: background .2s
}

.userProfileNavigation.activa .menu-toggle::before {
  transform: translateY(0px) rotate(45deg);
  box-shadow: none;
}

.userProfileNavigation.activa .menu-toggle::after {
  transform: translateY(0px) rotate(-45deg);
}

.userProfileNavigation.activa {
  width: 230px;
  height: 175px;
  transition: width 0.5s, height 0.5s;
  transition-delay: 0s, 0.75s;
}

.userProfileNavigation.activa .user-box {
  width: calc(100% - 40px);
  transition-delay: 0s;
}

.userProfileDropdown {
  top: 0px;
  /* border-style: solid; */
  background: #fff;
  border: 1px solid #e9e9e9;
  /* box-shadow: 0 25px 35px rgba(0, 0, 0, 0.1); */
}

.userProfileNavigation.activa .user-box .image-box .fa-user-circle {
  color: #40B06F;
}

.userProfileNavigation .user-box .image-box .fa-user-circle {
  color: #c12933;
}


.customBorderUserProfile {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}