/* CSS Document */

.field_wrapper{
    padding-bottom:15px;}
	
.field_wrapper label{
	float:left;
	width:100%; padding:0 0 5px 0 ;
}
	
.field_wrapper2{
    padding:20px 0;}
input[type="text"]{
    background-color:#ffffff;
    border:1px solid #ccc;
    font-family:Open Sans!important;
    font-size:13px;
    padding:11px 7px;
    color:#454545;

}
.field_wrapper h2, .field_wrapper h3{
	font:normal 13px Arial, Helvetica, sans-serif!important; padding:0 0 0; color:#333;
}
.dateandtimes h2{
	font:normal 12px Open Sans!important;
	color:#333;
}
input[type="password"]{
    background-color:#ffffff;
    border:1px solid #C8C8C8;
    font-family:Open Sans!important;
    font-size:13px;
    padding:11px 7px;
    color:#454545;

}
/*input[type="file"]{
	background-color:#ffffff;
	font-family:Arial, Helvetica, sans-serif;
	font-size:15px;
	padding:0;
	color:#999999;
	border-radius:3px;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	margin:0;

	}*/
textarea{
    background-color:#ffffff;
    border:1px solid #C8C8C8;
    font-family:Open Sans!important;
    font-size:13px;
    padding:3px 7px;
    color:#333;

}
label{
    color:#333333;
    font-size:12px;}
input[type="checkbox"]{
    margin:0 3px 0 0;}

form.cmxform label.error { display: none; }

.edit_profile_leftcol label.error{
	clear:both;
	width:100%; padding:0px 0 15px 0; background-position:0 0; margin:7px 0 0 0 ;
}
#jQStaffSlotsDiv{
	width:100%; padding:0; display:block;
}
#jQOfflineBookingDataStaffDiv .dateandtimes{
	float:left;
	width:100%;
}
.selectbox{
    background-color:#ffffff;
    border: solid 1px #b7b7b7;
    font-family: Open Sans!important;
    font-size: 12px;
    padding:8px 7px;
    color:#454545;
    border-radius: 2px!important;
    -moz-border-radius: 2px!important;
    -webkit-border-radius: 2px!important;
}

.width1{
    width: 100%;
}

.width2{
    width: 122px;
}
.social_icons label{
	float:left;
	width:100%;
	padding:7px 0 3px;
    font-family: Open Sans!important;
    font-size: 12px!important;
    font-weight: 600!important;
    text-transform: uppercase;
	color:#737373;
}

.edit_profile_rightcol .field_wrapper{
	float:left; width:auto; padding:0 6px 25px 0;
}
#jQOfflineBookingDataStaffDiv .dateandtimes{
	float:left;
	width:100%;
}
#register_remembercheck{
	
	width:229px!important; height:18px;
	padding:2px 0 1px 22px;
}
#register_remembercheck2{
    
    width:229px!important; height:18px;
    padding:2px 0 1px 22px;
}
.plan_title_div{
    border: solid 1px #cfcfcf;
    background-color: #f0f0f0;
    float: left; padding: 10px 5px; margin-right: 10px; margin-top: 10px; width: 100%;
}

.plan_title_div_h2{
   font-size: 16px!important; font-weight: bold!important; 
   background-color: #f98253 !important; 
   text-align: center; padding: 15px !important; color: #fff !important;
}
/*--------------------Breadcrumbs-------------------------*/

/*custom font*/
@import url(http://fonts.googleapis.com/css?family=Merriweather+Sans);


.breadcrumb {
    /*centering*/
    display: inline-block;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    border-radius: 5px;
    /*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
    counter-reset: flag; 
    width: 100%;
}

.breadcrumb a {
    text-decoration: none;
    outline: none;
    display: block;
    float: left;
    font-size: 12px;
    line-height: 36px;
    color: white;
    /*need more margin on the left of links to accomodate the numbers*/
    padding: 0 10px 0 60px;
    background: #666;
    background: linear-gradient(#666, #333);
    position: relative;
}
/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumb a:first-child {
    padding-left: 46px;
    border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.breadcrumb a:first-child:before {
    left: 14px;
}
.breadcrumb a:last-child {
    border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
    padding-right: 20px;
}

/*hover/active styles*/
.breadcrumb a.active, .breadcrumb a:hover{
    background: #333;
    background: linear-gradient(#333, #000);
}
.breadcrumb a.active:after, .breadcrumb a:hover:after {
    background: #333;
    background: linear-gradient(135deg, #333, #000);
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb a:after {
    content: '';
    position: absolute;
    top: 0; 
    right: -18px; /*half of square's length*/
    /*same dimension as the line-height of .breadcrumb a */
    width: 36px; 
    height: 36px;
    /*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's: 
    length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
    if diagonal required = 1; length = 1/1.414 = 0.707*/
    transform: scale(0.707) rotate(45deg);
    /*we need to prevent the arrows from getting buried under the next link*/
    z-index: 1;
    /*background same as links but the gradient will be rotated to compensate with the transform applied*/
    background: #666;
    background: linear-gradient(135deg, #666, #333);
    /*stylish arrow design using box shadow*/
    box-shadow: 
        2px -2px 0 2px rgba(0, 0, 0, 0.4), 
        3px -3px 0 2px rgba(255, 255, 255, 0.1);
    /*
        5px - for rounded arrows and 
        50px - to prevent hover glitches on the border created using shadows*/
    border-radius: 0 5px 0 50px;
}
/*we dont need an arrow after the last link*/
.breadcrumb a:last-child:after {
    content: none;
}
/*we will use the :before element to show numbers*/
.breadcrumb a:before {
    content: counter(flag);
    counter-increment: flag;
    /*some styles now*/
    border-radius: 100%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    margin: 8px 0;
    position: absolute;
    top: 0;
    left: 30px;
    background: #444;
    background: linear-gradient(#444, #222);
    font-weight: bold;
    text-align: center;
}


.flat a, .flat a:after {
    background: white;
    color: black;
    transition: all 0.5s;
}
.flat a:before {
    background: white;
    box-shadow: 0 0 0 1px #ccc;
}
.flat a:hover, .flat a.active, 
.flat a:hover:after, .flat a.active:after{
    background: #f98253;
    color: #fff;
}




