﻿.dropmenu-content {
  display: none;
}

.dropmenu-content.show {
  display: block;
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

.button-profile {
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    font-size: 14px;
    line-height: 18px;
	border-radius: 4px;
    position: relative;	
	border: 1px solid transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: initial;
    font-weight: 600;
    padding: 5px 12px;
    text-align: center;
    text-transform: inherit;
    text-overflow: ellipsis;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	margin-left: 20px;
}
.button-follow {
	min-width: 90px;
    background-color: #0095f6;
    background-color: rgba(var(--d69,0,149,246),1);
    color: #fff;
}
.button-profile:hover {
	background-color: #1a73e8;
    text-decoration: none;
}

.button-edit {
	width: 150px;
    background-color: #efefef;
    color: #000;
}





/* Dropdown Button */
.dropbtn {
  background-color: #fff;
  color: white;
  padding: 8px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  background-image: url("/images/icons/settings_admin.png");
  background-size: contain;
  width: 24px;
  height: 24px;
}
.dropbtn.forum {
  background-color: transparent;
  padding: 2px;
  border: none;
  cursor: pointer;
  background-image: url("/images/icons/settings_admin_sm.png");
  background-size: contain;
  width: 14px;
  height: 14px;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #fff;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
  float: right;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  right: 0;
  font-size: 12px;
  padding: 5px 0 10px 0;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 8px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}



.circular_image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  /* commented for demo
  float: left;
  margin-left: 125px;
  margin-top: 20px;
  */
  
  /*for demo*/
  display:inline-block;
  vertical-align:middle;
}
.circular_image img{
  width:100%;
}



.user-header {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.user-header-col1 {
  display: flex;
  flex-direction: column;
  flex-basis: 160px;
  flex-shrink: 0;
  flex-grow: 0;
  padding:10px 10px 10px 0;
}

.user-header-col2 {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  padding: 20px 0 0 10px;
}
.profile-help {
 font-size:20px;
 margin-left:5px;
 color: #777;
 display: inline-block;
 vertical-align: sub;
}

@media screen and (max-width:750px) {
  /* For mobile phones: */
.circular_image {
  width: 125px;
  height: 125px;
  margin-left: 5px;
  }
.user-header-col1 {
  flex-basis: 140px;
}
.button-profile {
  display: inherit;
  margin: 10px 0 0 0;
}
.profile-help {
 display: none;
}
.dropbtn.forum {
  width: 18px;
  height: 18px;
}


}