/* Dropdown Button */
.droplabel {
  color: #f6f6f6;
  font-size: 12px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 120px;
  background: #ffffff 0 0 no-repeat padding-box;
  box-shadow: 0 2px 4px #00000033;
  z-index: 1;
  text-align: start;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 10px 10px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {color: #0f8a51; background-color: #eaeaea;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .droplabel {color: #eaeaea;}


/* PAGE PROFILE */
.container-profile-avatar {
	align-self: center;
	margin-bottom: 30px;
}

.container-profile-avatar > label {
	cursor: pointer;
}

.container-profile-avatar > label:hover {
	opacity: 0.7;
}

.container-profile-avatar > label > img {
	height: 120px;
	width: 120px;
	border-radius: 50%;
	border: 3px solid rgba(192, 192, 192, 0.1);
}

.container-profile-avatar > label > input {
	display: none;
}

.container-profile {
	min-width: 400px;
	
	position: fixed;
    top: 50%;
    left: 58%;
    transform: translate(-58%, -50%);
}

.container-profile > form {
	display: flex;
	flex-direction: column;
	margin-top: 30px;
}

.container-profile > button {
	width: 100% !important;
}