.float-box{
	background:white;
	min-height:200px;
	width:600px;
	max-width:100%;
	margin:0 auto 20px;
	border-radius:3px;
	padding:10px;
	position:relative;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.15);
    overflow:hidden;
    opacity:1;
    top:0;

    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}
.float-box.wider{
	width:800px;
}

.float-box.hidden{
	opacity:0;
	top:20px;
}


.float-box .float-box-title{
	font-size:20px;
	line-height:1em;
	font-weight:bold;
	text-align:center;
	color:#34495e;
	padding:10px 10px 20px;
	border-bottom:1px solid rgba(0,0,0,0.05);
}

.float-box .float-box-title .subtitle{
	display:block;
	color:#7f8c8d;
	font-size:14px;
	margin-top:5px;
	line-height:1em;
	font-weight:600;
}

.float-box.error .float-box-title{
	color:#c0392b;
}

.float-box .float-box-body{
	padding:10px;
	font-size:16px;
}

.float-box .float-box-body table{
	margin:auto;
}
.float-box .float-box-body table td{
	padding:5px;
}

.float-box .float-box-body table td.checkmark i{
	font-size:40px;
}

.float-box .float-box-body table td .link-button{
	background:#27ae60;
	color:white;
	padding:10px 20px;
	border-radius:3px;
	font-size:12px;
	margin-left:20px;
}



.float-box .social-buttons{
	margin:10px 0;
	overflow:hidden;
}
.float-box .social-button{
	width:33%;
	padding:10px;
	text-align:center;
	cursor:pointer;
	font-size:12px;
	margin:0 0.5% 0 0;
	float:left;
	background:#34495e;
	color:white;
	border-radius:2px;
}
.float-box .social-button i{
	margin:0 10px;
}
.float-box a:last-child .social-button{
	margin-right:0;
}

.float-box button.action-button{
	width:50%;
	float:right;
	padding:10px;
	text-align:center;
	cursor:pointer;
	font-size:12px;
	margin-bottom:5px;
	background:#34495e;
	color:white;
	border-radius:2px;
	border:none;
	line-height:12px;
}


.float-box form{
	width:300px;
	max-width:100%;
	margin:0 auto;
}
.float-box form.wider{
	width:100%;
}
.float-box form fieldset{
	border:none;
	margin-bottom:10px;
}
.float-box form legend{
	margin:5px 0 10px;
	font-size:12px;
	padding:0 1% 5px;
	width:100%;
	color:rgba(0,0,0,0.25);
	border-bottom:1px solid rgba(0,0,0,0.1);
}
.float-box form .field-row{
	overflow:hidden;
}
.float-box form .field{
	margin-bottom:10px;
}
.float-box form .field.has-error{

}
.float-box form .field.has-error input, .float-box form .field.has-error select{
	background:rgba(155,0,0,0.1);
}
.float-box form .field.half{
	width:48%;
	margin:0 1% 10px;
	float:left;
}
.float-box form .field label,
.float-box .section-label{
	display:block;
	font-weight:bold;
	font-size:12px;
	margin-bottom:5px;
}
.float-box .form-error{
	background:#e74c3c;
	color:white;
	font-weight:600;
	text-align:center;
	padding:10px;
	margin-bottom:10px;
	font-size:13px;
	line-height:1.1em;
	border-radius:2px;
}
.float-box .form-success{
	background:#27ae60;
	color:white;
	font-weight:600;
	text-align:center;
	padding:10px;
	margin-bottom:10px;
	font-size:13px;
	line-height:1.1em;
	border-radius:2px;
}
.float-box form p.text-danger{
	color:#e74c3c;
	font-weight:bold;
	font-size:12px;
}
.float-box form input[type="text"],
.float-box form input[type="password"],
.float-box form input[type="email"],
.float-box form select{
	width:100%;
	padding:5px 10px;
	background:none;
	border:1px solid rgba(0,0,0,0.25);
	border-radius:2px;
	height:35px;
    font-size:12px;
}
.float-box form button{
	padding:10px;
	text-align:center;
	cursor:pointer;
	width:100%;
	border-color:transparent;
	font-size:14px;
	background:#34495e;
	color:white;
	border-radius:2px;
}
.float-box form button[disabled="disabled"]{
	opacity:0.75;
	pointer-events:none;
}




/* dropdown style from bootstrap */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, .15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
          box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
/* dropdown style from bootstrap */


.action-buttons{
	margin-top:10px;
	overflow:hidden;
}
.action-buttons .action-button{
	padding:15px;
	float:left;
	width:49%;
	margin:0 0.5% 5px;
	border-radius:2px;
	color:white;
	cursor:pointer;
	text-align:center;
	font-size:12px;
	font-weight:bold;
	background:#27ae60;
	line-height:1em;
}

.float-box-hat{
	font-size:24px;
	font-weight:bold;
	color:white;
	margin:5% 0 15px 0;
	text-align:center;
}
.float-box-shoes{
	font-size:12px;
	color:white;
	text-align:center;
}
.float-box-shoes a{
	color:white;
}

.float-box.has-sidebar{
	float:left;
	width: 600px;
}
.float-box-sidebar{
	float:left;
	width:calc(50% - 310px);
	margin-right:10px;
}
.float-box-sidebar-content{
	width:100%;
	float:right;
	max-width:200px;
}	



/* media queries */
@media(max-width:900px){
	.float-box-sidebar{
		display:none;
	}
	.float-box.has-sidebar{
		float:none;
	}
}
@media(max-width:600px){
	.float-box form .field.half{
		width:98%;
	}
	.action-buttons .action-button{
		width:99%;
	}
	.float-box .social-button i{
		display:none;
	}
}



/* media queries */
