/* Wp User flow Lost password, Login, Signup , Resset password*/
.admin_portal_wpUserFlow {
  width: 450px;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 2%;
  transition: opacity 1s;
  -webkit-transition: opacity 1s;
  max-width:100%;
}
.admin_portal_wpUserFlow#register-form {
	margin-top:30px;
}
.admin_portal_wpUserFlow#register-form form{
	position:relative;
}
.admin_portal_wpUserFlow h2{
	margin-bottom:0px;
	padding-bottom:14px;
	margin-top: 20px;
}
.admin_portal_wpUserFlow p,
.admin_portal_wpUserFlow p:not(.has-background):last-of-type{
	padding-bottom: 14px;
	margin:0px;
}

.admin_portal_wpUserFlow h1 {
  background: #3399cc;
  padding: 20px 0;
  font-size: 140%;
  font-weight: 300;
  text-align: center;
  color: #fff;
}
div.admin_portal_wpUserFlow input[type="email"],
div.admin_portal_wpUserFlow input[type="text"],
div.admin_portal_wpUserFlow input[type="password"] {
  box-sizing:border-box;
  width: 100%;
  background: #fff;
  border: none;
  padding: 4%;
  font-family: 'Open Sans', sans-serif;
  font-size: 95%;
  color: #555;
}

div.admin_portal_wpUserFlow input[type="submit"],div.admin_portal_wpUserFlow input[type="button"],
div.admin_portal_wpUserFlow button[type="submit"],div.admin_portal_wpUserFlow button[type="button"] {
  width: 100%;
  background: #3399cc;
  border: 0;
  padding: 4%;
  font-family: 'Open Sans', sans-serif;
  font-size: 100%;
  color: #fff;
  cursor: pointer;
  transition: background .3s;
  -webkit-transition: background .3s;
}
button:hover:disabled{
	cursor:not-allowed !important;
}
div.admin_portal_wpUserFlow input[type="submit"]:hover,div.admin_portal_wpUserFlow input[type="button"]:hover {
  background: #2288bb;
}

.admin_portal_wpUserFlow input.error {
    border-bottom: 2px solid red !important;
}

.profilepress-reset-status {
  width: 400px;
  text-align: center;
  background-color: #e74c3c;
  color: #ffffff;
  border: medium none;
  border-radius: 4px;
  font-size: 17px;
  font-weight: normal;
  line-height: 1.4;
  padding: 8px 5px;
  margin: auto;
}

.memo-reset-success {
   width: 400px;
  text-align: center;
  background-color: #2ecc71;
  color: #ffffff;
  border: medium none;
  border-radius: 4px;
  font-size: 17px;
  font-weight: normal;
  line-height: 1.4;
  padding: 8px 5px;
  margin: auto;
}



div.admin_portal_wpUserFlow .sc-container {
  background: #f0f0f0;
  padding: 6% 4%;
}

p.message-success-info {
    background: #77bf69;
    color: #fff;
    padding: 8px 12px !important;
    margin-bottom: 10px !important;
	line-height:20px;
}
p.message-error-info {
    background: #c32222;
    color: #fff;
    padding: 8px 12px !important;
    margin-bottom: 10px !important;
	line-height:20px;
}

.wait-s45{
	background: #ffffffb0;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	padding-top: 46%;
	display:none;
}
.wait-s45 img{
	vertical-align: middle;
	text-align:center;
}

/* The CSS Radio button */
.container_radiobtn {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  float:left;
  margin-right:10px;
  font-weight:normal;
}

/* Hide the browser's default radio button */
.container_radiobtn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.container_radiobtn .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container_radiobtn:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container_radiobtn input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.container_radiobtn .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container_radiobtn input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container_radiobtn .checkmark:after {
 	top: 7px;
	left: 7px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

/* The CSS checkbox ***********************************************************************************/
.container_checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight:normal;
}

/* Hide the browser's default checkbox */
.container_checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.container_checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
background-color: #fff;
    border: 1px solid #c5c5c5;
}

/* On mouse-over, add a grey background color */
.container_checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container_checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
	border: 1px solid #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.container_checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container_checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container_checkbox .checkmark:after {
	left: 7px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* portal Login menu */
.admin-portal-fw-menu-warp{
	float: right;
	margin-left: 30px;
}
.menu-fr-apfs{
	padding-bottom:33px;
}


.default-hidden{display:none;}
label.error {
    color: red;
    font-weight: 600;
}

/*******************************/

/*form styles*/
/*#kamySignupForm {
    width: 400px;
    margin: 50px auto;
    text-align: center;
    position: relative;
}*/
#kamySignupForm #progressbar{text-align:center;}
#kamySignupForm fieldset {
    /*background: white;
    border: 0 none;
    border-radius: 3px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;*/
    
    /*stacking fieldsets above each other*/
    position: relative !important;
}
/*Hide all except first fieldset*/
#kamySignupForm fieldset:not(:first-of-type) ,#kamyLoginForm fieldset:not(:first-of-type) {
    display: none;
}


/*buttons*/
#kamySignupForm .action-button,#kamyLoginForm .action-button {
    width: 100px;
    background: #27AE60;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 15px 15px 0 0px;
}


/*headings*/
.fs-title {
    font-size: 15px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
}
.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
	display:none;
}
/*progressbar*/
#progressbar {
    margin-bottom: 10px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
	padding:10px 0px 0 0px !important;
}

#progressbar li {
    list-style-type: none;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: left;
    position: relative;
}
#kamySignupForm[data-vsmscode="no"] #progressbar li {
  width:50%;
}
#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #333;
    background: white;
    border-radius: 3px;
    margin: 0 auto 5px auto;
	position:relative;
	z-index:1;
}
/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: 0; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
    background: #27AE60;
    color: white;
}
