form
{
	width: 100%;
  border: solid 0px;
  display: table;
  box-sizing: border-box;
  /* padding: 10px; */
}
.form_row{ width: 100%; float: left; min-height: 30px; height: auto; margin: 0px 0px 10px 0px }
.form_row_left{ width: 150px; float: left; text-align: right }

.form_row_right{ width: calc(100% - 170px); float: left; height: auto; color: #0a7752; font-weight: bold; }
.form_row_right button{ vertical-align: text-top }
.form_row_right span{ color: #3b4158;  }

a{
  text-decoration: none;
}

input{  
  height: 30px ;
  padding: 0 0 0 8px;
  border-color: #2f83b7;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
  background-color: #fff;
  background-clip: padding-box;
  box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
  color: #444;
  font-weight: bold;
}

/* Set a style for all buttons */
button {
   background-color: #075207;
   color: white;
   padding: 10px 15px;
   font-size: 16px;
   border: none;
   cursor: pointer;
   border-radius: 6px;
 }

 .dropdown {
  position: relative;
  display: inline-block;
}
.save{
  font-size: 18px;;
  padding: 10px 24px;
  float:right;
}
.dropdown_content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown_content_follow{
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown_content_follow a,
.dropdown_content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}

.dropdown_show {display: block;}

.dropdown:hover .dropdown_content_follow{
  display: block;
}
.dropdown:hover .dropdown_content{
  display: block;
}

/* Center the image and position the close button */
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
  position: relative;
}
.msg {
  text-align: center;
  margin: 0 0 12px 0;
  position: relative;
  font-weight: bold;
  color: red;
}

img.avatar {
  width: 40%;
  border-radius: 50%;
}

.container {
  padding: 16px;
}

span.psw {
  float: right;
  padding-top: 16px;
}

.hide
{
	display: none;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 10px auto 10px auto; /* 5% from the top, 15% from the bottom and centered */
}

/* The Close Button (x) */
.close {
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}
#form_upload_1{
  padding: 0;
}
#form_upload_2{
  padding: 0;
}
@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}
  
@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 720px) {

	.form_row{ margin: 0px 0px 10px 0px; }
	
	.form_row_left{ width: 100%; float: left; text-align: left; }
	.form_row_right{ width: 100%; float: left; }

  span.psw {
     display: block;
     float: none;
  }
  .cancelbtn {
     width: 100%;
  }
  .form_row_right input{
    height: 40px;
    width: 100%;
  }
  
}
@media screen and (max-width: 540px){
  .save{
    width: 100%;
  }
  .form_row_right input{
    width: 100%;  
    height: 40px;
  }
}