/* normalize.css
   A general style base to create responsive web-interfaces
  
   Why we are using the equals sign in the section identifier:
   stopdesign.com/archive/2005/05/03/css-tip-flags.html
  
   Reset-styles: As a kickstarter we reuse eric meyer's brilliant
   reset stylesheet in Version v2.0, License: none (public domain)
   http://meyerweb.com/eric/tools/css/reset/
  
   For the sake of responsive elements that are made up of fixed
   and relative dimensions, we use the css3 border-box model.
  
   @project  mscgn blueprint
   @date     2013
   @author   SapientNitro
   @site     miscellaneous
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%; /* 16px */
	font: inherit;
	vertical-align: baseline;

	/* enable CSS3 border-box model for all elements */
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;

	/* disable tap highlighting overlay */
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

input[type="color"], input[type="date"],
input[type="email"], input[type="number"],
input[type="password"], input[type="search"],
input[type="submit"], input[type="tel"],
input[type="time"], input[type="url"],
input[type="text"], textarea, select {
	font-size: 100%; /* 16px */
	/* enable CSS3 border-box model for forn elements */
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
	/* disable tap highlighting overlay */
	-webkit-tap-highlight-color:rgba(0,0,0,0);

}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/**
 * Prevent iOS text size adjust after orientation change, without disabling
 * user zoom.
 */
html {
				   font-size:62.5%;
	    -ms-text-size-adjust:100%;
	-webkit-text-size-adjust:100%;
}

body {
    height: 100%;
    font-family: Helvetica, Arial, sans-serif;
    height: 100%;
    width: 100%;
  	font-size:16px;/*Older brower - and IE8*/	
  	font-size:1.6rem; /* 16px - Relative to root html element font size 62.5% = 10px */	
    line-height: 18px;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
    color: #333;
    margin: 0;
    padding: 0;
}

a {
	color: #ef4d9b;
	text-decoration: none;
}

/**
 * viewport settings
 *
 * [1] viewport bug fix
 *         due to current W8 viewport bug, the width has to be set with either:
 *         width: device-width;            # conform version
 *         width: auto !important;     # W8 viewport bug fix
 *
 * [2] zoom ignored by IE
 *         zoom settings are currently ignored by IE, but should be kept
 *         for future support
 *
 * [3] Temporary Fix for zooming issues for actual WP8 Devices
 */
@-webkit-viewport {
        width: device-width;
        zoom: 1.0;
}
@-moz-viewport{
        width: device-width;
        zoom: 1.0;
}
@-ms-viewport {
        width: device-width; /* [1] */
        width: auto !important;
        zoom: 1.0; /* [2] */
}
@-o-viewport {
        width: device-width;
        zoom: 1.0;
}
@viewport {
        width: device-width;
        zoom: 1.0;
}

/* ==========================================================================
=HELPERS 
========================================================================== */
.away {
	display: none !important;
	visibility: hidden;
}
.hidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.collapse {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
     -moz-transition: height 0.35s ease;
       -o-transition: height 0.35s ease;
          transition: height 0.35s ease;
}

.collapse.in {
  height: auto;
}

.img-rounded {
	border-radius: 6px;
}

/*Used for Tab unhilighted text */
html, body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

/* Header Starts Here */
#header {
  position: fixed;
  z-index: 11;
  width: 100%;
  top: 0px;
  overflow: hidden;
  background: #fff;
}

#header-main, #header-sub {
  width: 100%;
}

#header-main {
  height: 40px;
}

#header #header-main .inner, #header #header-sub .inner {
  position: relative;
  max-width: 1440px;
}

#header-sub {
  height: 40px;
}

#page-wrapper {
  background: url("clientlibs_main/assets/styles/images/bg_container.jpg") no-repeat -190px 0px transparent;
  background-size: cover;
  height: 100%;
  white-space: nowrap;
  padding-top: 80px;
  position: relative;
  left: 0;
  -webkit-transition: left 0.3s ease-out;
  transition: left 0.3s ease-out;
  max-width: 1440px;
}

.section {
  height: 100%;
  display: inline-block;
  /*float: left;*/
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
  z-index: 1;
  top: 0px;
}

#page-wrapper .section-search, #page-wrapper .section-results {
  white-space: normal;
}
#page-wrapper .section-details {
  white-space: normal;
}

/* small viewport < 640px */
.section-search, .section-results, .section-details {
  width: 100%;
}

.state2 #page-wrapper {
  left: -100%;
}

.state3 #page-wrapper {
  left: -200%;
}

.state2 #page-wrapper .btn_results, .state3 #page-wrapper .btn_results {
  display: block;
}

#header-sub {
  background: #333;
}

span.ui-helper-hidden-accessible {
  display: none;
}

@media (orientation: landscape) {
  html.ipad.ios7 > body {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 672px !important;
  }
}
html.ipad.ios7 {
  position: fixed;
  width: 100%;
  height: 100%;
}

#header #header-main .inner {
  padding: 0 15px;
}

.navbar-brand {
  float: left;
  color: #333;
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 35px;
  max-width: 285px;
  padding: 1px;
}
.navbar-brand a {
  padding-right: 15px;
  position: relative;
}
.navbar-brand a:after {
  border-left: 1px solid #ccc;
  content: "";
  height: 51px;
  position: absolute;
  right: 2px;
  top: -20px;
  width: 1px;
}
.navbar-brand img.logo {
  width: 50px;
}
.navbar-brand span.logo-desc {
  color: #343434;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: bold;
  padding-left: 15px;
  position: relative;
  top: 1px;
}

#header #header-sub .utility-nav {
  background: url("clientlibs_main/assets/styles/images/line-vertical.png") repeat-y 0 0 #333;
  height: 40px;
  top: 0px;
  line-height: 40px;
  padding: 10px 20px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  display: none;
}
#header .utility-nav a {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -138px -312px transparent;
  color: #ef4d9b;
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 20px;
  padding: 0 0 0 20px;
  outline: none;
}

.state3 #header #header-sub .utility-nav {
  display: block;
}

/* breadcrumb */
.breadcrumb {
  clear: both;
  list-style: none outside none;
  margin: 0;
  padding: 8px 15px;
}
.breadcrumb > li {
  display: inline-block;
  line-height: 20px;
}
.breadcrumb > li:after {
  color: #ccc;
  content: " /";
  display: inline-block;
  padding: 0 5px;
}
.breadcrumb > li:last-child:after {
  display: none;
}
.breadcrumb > .active {
  color: #ef4d9b;
}
.breadcrumb a {
  color: #ef4d9b;
}
.breadcrumb a:hover, .breadcrumb a:active {
  color: #ef4d9b;
}
.breadcrumb > li.btn_back {
  display: none;
}

/* Common Theme */
.teaser {
  margin-bottom: 15px;
  position: relative;
}

.teaser-transparent .teaser-inner {
  background-color: transparent;
  border-radius: 4px;
  padding: 30px;
}
.teaser-transparent .top-left, .teaser-transparent .top-right, .teaser-transparent .bottom-left, .teaser-transparent .bottom-right {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat 0 0 transparent;
  display: block;
  height: 34px;
  position: absolute;
  width: 34px;
}
.teaser-transparent .top-left {
  background-position: -23px -281px;
  left: 0;
  top: 0;
}
.teaser-transparent .top-right {
  background-position: -23px -352px;
  right: 0;
  top: 0;
}
.teaser-transparent .bottom-left {
  background-position: -23px -491px;
  bottom: 0;
  left: 0;
}
.teaser-transparent .bottom-right {
  background-position: -23px -424px;
  bottom: 0;
  right: 0;
}

/*Modal Styles*/
.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: none;
  overflow: auto;
}
.modal.fade {
  top: -25%;
  -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, top 0.3s ease-out;
  -o-transition: opacity 0.3s linear, top 0.3s ease-out;
  transition: opacity 0.3s linear, top 0.3s ease-out;
}
.modal.fade.in {
  top: 0;
}

.modal-dialog {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 21;
  width: auto;
  padding: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: none;
  -webkit-box-shadow: 0 3px 9px #000;
  box-shadow: 0 3px 9px #000;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 19;
  background-color: #000;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.fade.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  min-height: 16.428571429px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -35px -1266px transparent;
  color: #ef4d9b;
  font-weight: bold;
  font-size: 26px;
  margin-top: -8px;
  width: 20px;
  text-indent: -9999px;
  height: 20px;
  position: absolute;
  cursor: pointer;
  right: 5px;
  top: 15px;
}
.modal-header h4 {
  color: #333 !important;
  margin: 0 !important;
}

.modal-title,
h4.modal-title,
h3.modal-title {
  font-size: 24px;
  font-size: 2.4rem;
  margin: 0;
  line-height: 1.428571429;
  white-space: normal;
}

.modal-body {
  position: relative;
  padding: 20px;
}
.modal-body h4, .modal-body h5 {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
}
.modal-body .modal-header h4, .modal-body .modal-header h5 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 24px;
  font-weight: bold;
}
.modal-body p {
  font-size: 13px;
  font-size: 1.3rem;
  padding-bottom: 13px;
  white-space: normal;
}

.modal-footer {
  padding: 19px 20px 20px;
  margin-top: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before {
  display: table;
  content: " ";
}
.modal-footer:after {
  display: table;
  content: " ";
  clear: both;
}
.modal-footer:before {
  display: table;
  content: " ";
}
.modal-footer:after {
  display: table;
  content: " ";
  clear: both;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.commentpopup .modal-content .modal-body {
  word-wrap: break-word;
  max-height: 500px;
  overflow-y: auto;
  padding-bottom: 0;
  margin-bottom: 15px;
}
.commentpopup .modal-content .modal-body ul {
  margin-left: 13px;
  white-space: normal;
}
.commentpopup .modal-content .modal-body ul li {
  list-style: disc outside none;
  padding: 0px;
}
.commentpopup .modal-content .modal-body ul li:before {
  background: none;
}

@media screen and (min-width: 768px) {
  .modal-dialog {
    right: auto;
    left: 50%;
    width: 560px;
    padding-top: 80px;
    padding-bottom: 30px;
    margin-left: -280px;
  }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px #000;
    box-shadow: 0 5px 15px #000;
    display: inline-block;
    width: 100%;
    padding-bottom: 25px;
  }
}
.modal-content {
  display: inline-block;
  width: 100%;
  padding-bottom: 10px;
}
.modal-content.commentPopup {
  right: auto;
  left: 50%;
  top: 30px;
  width: 560px;
  padding-bottom: 30px;
  margin-left: -280px;
}

/*css for comment remote popup*/
.commentPopup .modal-body {
  color: #333;
}

.modal-content-wrap p {
  font-size: 12px;
}

.wrongpass {
  color: red;
  display: inline-block;
  margin-left: 15px;
}

body.modal-open, body.modal-open .section-results, body.modal-open .section-details {
  overflow: hidden;
}

.modal-thanks .modal-content-wrap {
  max-width: 565px;
}

div#requestForm .modal-body {
  padding-bottom: 0px;
}

div#myModal .modal-body:first-child {
  padding-top: 0px;
}

/* Generic buttons */
.btn {
  display: inline-block;
  padding: 7px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.428571429;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
}
.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover, .btn:focus {
  color: #fff;
  text-decoration: underline;
}
.btn:active, .btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled, .btn[disabled] {
  pointer-events: none;
  cursor: default;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn.btn-primary, .btn .btn-default {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: Helvetica, Arial, sans-serif;
  -webkit-appearance: none;
}
.btn a {
  color: #fff;
}

fieldset[disabled] .btn {
  pointer-events: none;
  cursor: default;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-default {
  color: #fff;
  background-color: #cac9ca;
  border-color: #cac9ca;
}
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active {
  background-color: #9a9c9d;
  border-color: #8d9091;
}
.btn-default.disabled:hover, .btn-default[disabled]:hover {
  background-color: #cac9ca;
  border-color: #cac9ca;
}

fieldset[disabled] .btn-default:hover {
  background-color: #cac9ca;
  border-color: #cac9ca;
}

.btn-default.disabled:focus, .btn-default[disabled]:focus {
  background-color: #cac9ca;
  border-color: #cac9ca;
}

fieldset[disabled] .btn-default:focus {
  background-color: #cac9ca;
  border-color: #cac9ca;
}

.btn-default.disabled:active, .btn-default[disabled]:active {
  background-color: #cac9ca;
  border-color: #cac9ca;
}

fieldset[disabled] .btn-default:active {
  background-color: #cac9ca;
  border-color: #cac9ca;
}

.btn-default.disabled.active, .btn-default[disabled].active {
  background-color: #cac9ca;
  border-color: #cac9ca;
}

fieldset[disabled] .btn-default.active {
  background-color: #cac9ca;
  border-color: #cac9ca;
}

.btn-primary {
  color: #fff;
  background-color: #ef4d9b;
  border-color: #ef4d9b;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
  background-color: #DD4C92;
  border-color: #DB4E8B;
}
.btn-primary.disabled:hover, .btn-primary[disabled]:hover {
  background-color: #ef4d9b;
  border-color: #ef4d9b;
}

fieldset[disabled] .btn-primary:hover {
  background-color: #ef4d9b;
  border-color: #ef4d9b;
}

.btn-primary.disabled:focus, .btn-primary[disabled]:focus {
  background-color: #ef4d9b;
  border-color: #ef4d9b;
}

fieldset[disabled] .btn-primary:focus {
  background-color: #ef4d9b;
  border-color: #ef4d9b;
}

.btn-primary.disabled:active, .btn-primary[disabled]:active {
  background-color: #ef4d9b;
  border-color: #ef4d9b;
}

fieldset[disabled] .btn-primary:active {
  background-color: #ef4d9b;
  border-color: #ef4d9b;
}

.btn-primary.disabled.active, .btn-primary[disabled].active {
  background-color: #ef4d9b;
  border-color: #ef4d9b;
}

fieldset[disabled] .btn-primary.active {
  background-color: #ef4d9b;
  border-color: #ef4d9b;
}

a.btn {
  text-decoration: none !important;
}

a.download-link {
  margin-bottom: 30px;
  text-align: left;
  padding: 10px;
  clear: both;
  float: left;
  color: #fff;
  background-color: #ef4d9b;
  border-radius: 4px;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 0px;
  text-decoration: none !important;
  position: relative;
  padding-left: 40px;
}
a.download-link:hover {
  background: #DD4C92;
}
a.download-link:before {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -25px -1063px transparent;
  content: "";
  height: 34px;
  left: 0;
  position: absolute;
  top: 0;
  width: 40px;
}

.more-information .tab-content .rte a:after {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") repeat-y -137px -495px transparent;
  content: "";
  height: 20px;
  right: 0;
  top: 0;
  width: 20px;
  padding-left: 15px;
}

input.form_button_submit.btn.btn-primary[disabled] {
  background-color: #ef4d9b;
}

/* Generic Tabs */
.nav {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: 0;
  list-style: none;
}
.nav:before {
  display: table;
  content: " ";
}
.nav:after {
  display: table;
  content: " ";
  clear: both;
}
.nav:before {
  display: table;
  content: " ";
}
.nav:after {
  display: table;
  content: " ";
  clear: both;
}
.nav > li {
  position: relative;
  display: block;
}
.nav > li > a {
  font-size: 13px;
  font-size: 1.3rem;
  position: relative;
  display: block;
  padding: 6px 10px;
}
.nav > li > a:hover, .nav > li > a:focus {
  text-decoration: none;
  background-color: #e6e3e4;
}
.nav > li.disabled > a {
  color: #999999;
}

.nav-tabs {
  border-bottom: 1px solid transparent;
}
.nav-tabs > li {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  float: left;
  margin-bottom: -1px;
}
.nav-tabs > li > a {
  background-color: #e6e3e4;
  color: #9c9c9c;
  margin-right: 2px;
  line-height: 1.428571429;
  border-radius: 6px 6px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: none;
}

li.active a {
  /*font-weight: bold;*/
  margin-bottom: -9px;
  padding-top: 11px !important;
  top: -5px;
}

.nav-tabs > li.active > a {
  color: #000;
  cursor: default;
  background-color: #f3f0f1;
  border-bottom-color: transparent;
}
.nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
  color: #000;
  cursor: default;
  background-color: #f3f0f1;
  border-bottom-color: transparent;
}

.tab-content {
  background: #f3f0f1;
  padding: 20px 20px;
  border-radius: 0 6px 6px 6px;
  min-height: 50px;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.tab-content .arrow a {
  position: relative;
  padding-right: 20px;
}
.tab-content .arrow a:after {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") repeat-y -138px -494px transparent;
  content: "";
  height: 20px;
  right: 0;
  position: absolute;
  top: 0;
  width: 20px;
}
.tab-content .active {
  line-height: 1.8;
}

.more-information .tab-content p {
  line-height: 18px;
}

section.more-information .panel-body:first-child .rte p a {
  position: relative;
  padding-right: 20px;
}
section.more-information .panel-body:first-child .rte p a:after {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") repeat-y -138px -495px transparent;
  content: "";
  height: 20px;
  right: 0;
  position: absolute;
  top: 0;
  width: 20px;
}

/*Bootstrap form elements */
form {
  margin: 0;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
  font-family: Helvetica, Arial, sans-serif;
}

select, textarea {
  display: block;
  min-height: 36px;
  padding: 8px 12px;
  font-size: 14px;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.428571429;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -moz-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
  display: block;
  min-height: 36px;
  padding: 8px 12px;
  font-size: 14px;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.428571429;
  color: #333333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -moz-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  box-shadow: none;
}

select:focus, textarea:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

input {
  width: 100%;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.085);
  box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.12);
}
input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

select, textarea {
  width: 100%;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.085);
  box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.12);
}

input[type="file"], input[type="image"], input[type="submit"], input[type="reset"], input[type="button"], input[type="radio"], input[type="checkbox"] {
  width: auto;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

textarea {
  height: auto;
}

input[type="radio"], input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  /* IE8-9 */
  line-height: normal;
}

select, input[type="file"] {
  height: 36px;
  /* In IE7, the height of the select element cannot be changed by height, only font-size. TODO: Check if this is still needed when dropping IE7 support */
  line-height: 36px;
}

select[multiple], select[size] {
  height: auto;
}

input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
input:-moz-placeholder {
  color: #999999;
}

textarea:-moz-placeholder, input::-moz-placeholder, textarea::-moz-placeholder, input:-ms-input-placeholder, textarea:-ms-input-placeholder, input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999999;
}

.radio, .checkbox {
  display: block;
  min-height: 20px;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  vertical-align: middle;
}

.radio label, .checkbox label {
  display: inline;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}

.radio + .radio, .checkbox + .checkbox {
  margin-top: -5px;
}

.controls > .radio:first-child,
.controls > .checkbox:first-child {
  padding-top: 5px;
}

.radio-inline, .checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}

.radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

select.input-large, textarea.input-large {
  padding: 14px 16px;
  font-size: 18px;
  border-radius: 6px;
}

input[type="text"].input-large, input[type="password"].input-large, input[type="datetime"].input-large, input[type="datetime-local"].input-large, input[type="date"].input-large, input[type="month"].input-large, input[type="time"].input-large, input[type="week"].input-large, input[type="number"].input-large, input[type="email"].input-large, input[type="url"].input-large, input[type="search"].input-large, input[type="tel"].input-large, input[type="color"].input-large {
  padding: 14px 16px;
  font-size: 18px;
  border-radius: 6px;
}

select.input-small, textarea.input-small {
  min-height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}

input[type="text"].input-small, input[type="password"].input-small, input[type="datetime"].input-small, input[type="datetime-local"].input-small, input[type="date"].input-small, input[type="month"].input-small, input[type="time"].input-small, input[type="week"].input-small, input[type="number"].input-small, input[type="email"].input-small, input[type="url"].input-small, input[type="search"].input-small, input[type="tel"].input-small, input[type="color"].input-small {
  min-height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
input[disabled] {
  cursor: not-allowed;
  background-color: #eeeeee;
}

select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] {
  cursor: not-allowed;
  background-color: #eeeeee;
}

fieldset[disabled] input, fieldset[disabled] select, fieldset[disabled] textarea {
  cursor: not-allowed;
  background-color: #eeeeee;
}

input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"][readonly], input[type="checkbox"][readonly] {
  background-color: transparent;
}

fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] {
  background-color: transparent;
}

.has-warning .control-label {
  color: #c09853;
}
.has-warning .input-with-feedback {
  padding-right: 32px;
  border-color: #c09853;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .input-with-feedback:focus {
  border-color: #a47e3c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
}

.has-error .control-label {
  color: #b94a48;
}
.has-error .input-with-feedback {
  padding-right: 32px;
  border-color: #b94a48;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .input-with-feedback:focus {
  border-color: #953b39;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
}

.has-success .control-label {
  color: #468847;
}
.has-success .input-with-feedback {
  padding-right: 32px;
  border-color: #468847;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .input-with-feedback:focus {
  border-color: #356635;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
}

input:focus:invalid, textarea:focus:invalid, select:focus:invalid {
  color: #b94a48;
  border-color: #ee5f5b;
}

input:focus:invalid:focus, textarea:focus:invalid:focus, select:focus:invalid:focus {
  border-color: #e9322d;
  -webkit-box-shadow: 0 0 6px #f8b9b7;
  box-shadow: 0 0 6px #f8b9b7;
}

.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}

.input-group {
  display: table;
}
.input-group.col {
  float: none;
  padding-right: 0;
  padding-left: 0;
}
.input-group input, .input-group select {
  width: 100%;
  margin-bottom: 0;
}

.input-group-addon, .input-group-btn, .input-group input {
  display: table-cell;
}

.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group input:not(:first-child):not(:last-child) {
  border-radius: 0;
}

.input-group-addon, .input-group-btn {
  width: 1%;
  vertical-align: middle;
}

.input-group-addon {
  padding: 6px 8px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.428571429;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.input-group-addon.input-small {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-large {
  padding: 14px 16px;
  font-size: 18px;
  border-radius: 6px;
}

.input-group input:first-child, .input-group-addon:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-btn:first-child > .btn, .input-group-btn:first-child > .dropdown-toggle {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-addon:first-child {
  border-right: 0;
}

.input-group input:last-child, .input-group-addon:last-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .dropdown-toggle {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-btn:first-child > .btn:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.input-group-addon:last-child {
  border-left: 0;
}

.input-group-btn {
  position: relative;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
  float: left;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover, .input-group-btn > .btn:active {
  z-index: 2;
}

.form-inline input, .form-inline select, .form-inline textarea, .form-inline .radio, .form-inline .checkbox {
  display: inline-block;
}
.form-inline .radio, .form-inline .checkbox {
  margin-top: 0;
  margin-bottom: 0;
}

.form-horizontal .row + .row {
  margin-top: 15px;
}
.form-horizontal .control-label {
  padding-top: 6px;
}

.sr-only {
  border: 0 none;
  clip: rect(0px, 0px, 0px, 0px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    vertical-align: middle;
    width: auto;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio, .form-inline .checkbox {
    display: inline-block;
    margin-bottom: 0;
    margin-top: 0;
    vertical-align: middle;
  }
  .form-inline .radio label, .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] {
    margin-left: 0;
    position: relative;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
}
.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 7px;
}
.form-horizontal .radio, .form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-left: -15px;
  margin-right: -15px;
}

/**/
form .formRow .leftHalf, form .formRow .rightHalf {
  margin-bottom: 5px;
}
form .formRow label {
  font-family: Georgia, "Times New Roman", Times, serif !important;
  font-size: 13px;
  font-size: 1.3rem;
}
form .formRow label.inline {
  display: inline-block;
}

div#login-modal .modal-body {
  padding-top: 0;
}
div#login-modal .modal-body form#loginForm .form-group {
  position: relative;
}
div#login-modal .modal-body form#loginForm label.error {
  color: #ff3d00;
  font-size: 12px;
  position: absolute;
}
div#login-modal .modal-body form#loginForm label.col-sm-2.control-label {
  margin-top: 15px;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
  background: #fff !important;
}

textarea#btadvisorform_message {
  color: #333;
}

/*Auto complete style*/
/*Dropdown menu - jquery UI */
.ui-autocomplete {
  position: absolute;
  cursor: default;
  z-index: 9999;
}

* html .ui-autocomplete {
  width: 1px;
}

/* without this, the menu expands to 100% in IE6 */
.ui-menu {
  background: #fff;
  border: solid 1px #e5e2e3;
  border-top: none;
  /*box-shadow: 0 1px 8px rgba(0, 0, 0, 0.18) inset;
  border-radius: 0 0 6px 6px;*/
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  float: left;
}
.ui-menu .ui-menu {
  margin-top: -3px;
}
.ui-menu .ui-menu-item {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0;
  padding: 10px 10px 8px 10px;
  zoom: 1;
  float: left;
  clear: left;
  width: 100%;
}
.ui-menu .ui-menu-item a {
  text-decoration: none;
  display: block;
  /*padding:.2em .4em;*/
  line-height: 1.5;
  zoom: 1;
}
.ui-menu .ui-menu-item a.ui-state-hover, .ui-menu .ui-menu-item a.ui-state-active {
  background: #0db8d2;
  color: #fff;
  font-weight: normal;
  margin: -1px;
}
.ui-menu .ui-state-focus {
  background: #0db8d2;
  color: #fff;
}

.placeholder {
  color: #aaa !important;
}

ul.dropdown-menu.inner.selectpicker span {
  font-style: normal;
  font-size: 14px;
}

/*Panel Styles -  Accordion*/
.panel {
  background-color: #fff;
  border: 1px solid d4d1d2;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
  line-height: 1.8;
}

.panel-heading {
  border-bottom: 1px solid #d4d1d2;
  	/* border-top-left-radius: 3px;
      border-top-right-radius: 3px;    */
  border-radius: 3px;
  background-color: #efefef;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  color: inherit;
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 0;
}
.panel-title > a {
  color: inherit;
}

.panel-footer {
  background-color: #f5f5f5;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-top: 1px solid #ddd;
  padding: 10px 15px;
}

.panel > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item {
  border-radius: 0;
  border-width: 1px 0;
}
.panel > .list-group:first-child .list-group-item:first-child {
  border-top: 0 none;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0 none;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}

/* Theme of panels */
/*Bootstrap select */
/*!
 * bootstrap-select v1.4.3
 * http://silviomoreto.github.io/bootstrap-select/
 *
 * Copyright 2013 bootstrap-select
 * Licensed under the MIT license
 */
.bootstrap-select.btn-group {
  float: none;
  display: inline-block;
  margin: 0px 0 10px 0;
}
.bootstrap-select.btn-group[class*="span"] {
  float: none;
  display: inline-block;
  margin: 4px 0 10px 0;
}

.form-search .bootstrap-select.btn-group, .form-inline .bootstrap-select.btn-group, .form-horizontal .bootstrap-select.btn-group {
  margin-bottom: 0;
}

.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}
.bootstrap-select.btn-group.pull-right, .bootstrap-select.btn-group[class*="span"].pull-right {
  float: right;
}

.row-fluid .bootstrap-select.btn-group[class*="span"].pull-right {
  float: right;
}

.input-append .bootstrap-select.btn-group {
  margin-left: -1px;
}

.input-prepend .bootstrap-select.btn-group {
  margin-right: -1px;
}

/*
.bootstrap-select:not([class*="span"]):not([class*="col-"]):not([class*="form-control"]) {
    width: 220px;
}
*/
.bootstrap-select {
  /*width: 220px\9; IE8 and below*/
  /*width: 220px\0;*/
  /*IE9 and below*/
}
.bootstrap-select.form-control:not([class*="span"]), .bootstrap-select > .btn {
  width: 100%;
}

.error .bootstrap-select .btn {
  border: 1px solid #b94a48;
}

.dropdown-menu {
  z-index: 2000;
}

.bootstrap-select.show-menu-arrow.open > .btn {
  z-index: 2051;
}
.bootstrap-select.btn-group .btn .filter-option {
  overflow: hidden;
  position: absolute;
  left: 12px;
  right: 25px;
  text-align: left;
  color: #333;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 196px;
  display: block;
  overflow: hidden;
  font-weight: normal;
}
.bootstrap-select.btn-group .btn .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
}
.bootstrap-select.btn-group > .disabled, .bootstrap-select.btn-group .dropdown-menu li.disabled > a {
  cursor: not-allowed;
}
.bootstrap-select.btn-group > .disabled:focus {
  outline: none !important;
}
.bootstrap-select.btn-group[class*="span"] .btn {
  width: 100%;
}
.bootstrap-select.btn-group .dropdown-menu {
  min-width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
  position: static;
  border: 0;
  padding: 0;
  margin: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.bootstrap-select.btn-group .dropdown-menu dt {
  display: block;
  padding: 3px 20px;
  cursor: default;
}
.bootstrap-select.btn-group .div-contain {
  overflow: hidden;
}
.bootstrap-select.btn-group .dropdown-menu li {
  position: relative;
}
.bootstrap-select.btn-group .dropdown-menu li > a {
  cursor: pointer;
}
.bootstrap-select.btn-group .dropdown-menu li > a.opt {
  position: relative;
  padding-left: 35px;
}
.bootstrap-select.btn-group .dropdown-menu li > dt small {
  font-weight: normal;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a i.check-mark {
  display: inline-block;
  position: absolute;
  right: 15px;
  margin-top: 2.5px;
}
.bootstrap-select.btn-group .dropdown-menu li a i.check-mark {
  display: none;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}
.bootstrap-select.btn-group .dropdown-menu li small {
  padding-left: 0.5em;
}
.bootstrap-select.btn-group .dropdown-menu li:not(.disabled) > a:hover small, .bootstrap-select.btn-group .dropdown-menu li:not(.disabled) > a:focus small {
  color: #64b1d8;
  color: rgba(255, 255, 255, 0.4);
}
.bootstrap-select.btn-group .dropdown-menu li.active:not(.disabled) > a small {
  color: #64b1d8;
  color: rgba(255, 255, 255, 0.4);
}
.bootstrap-select.btn-group .dropdown-menu li > dt small {
  font-weight: normal;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid #ccc;
  border-bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.2);
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid #fff;
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before, .bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
  display: block;
}
.bootstrap-select.btn-group .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
}

.mobile-device {
  position: absolute;
  top: 0;
  left: 0;
  display: block !important;
  width: 100%;
  height: 100% !important;
  opacity: 0;
}

.bootstrap-select.fit-width {
  width: auto !important;
}
.bootstrap-select.btn-group.fit-width .btn .filter-option {
  position: static;
}
.bootstrap-select.btn-group.fit-width .btn .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}

.control-group.error .bootstrap-select .dropdown-toggle {
  border-color: #b94a48;
}

.bootstrap-select-searchbox {
  padding: 4px 8px;
}
.bootstrap-select-searchbox input {
  margin-bottom: 0;
}

/*missed style from bootstrap combined css*/
.btn .caret {
  margin-top: 8px;
  margin-left: 0;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border-top: 4px solid #000;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}

.btn-group > .btn:first-child {
  margin-left: 0;
  border-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.open > .dropdown-menu {
  display: block;
  width: 100%;
}

.bootstrap-select:not([class*="span"]):not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
}

.btn-group.open .btn.dropdown-toggle {
  background-color: #e6e6e6;
}
.btn-group.open .dropdown-toggle {
  background-image: none;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
  outline: 0;
}

.dropdown-toggle:active, .open .dropdown-toggle {
  outline: 0;
}

.btn-group {
  position: relative;
  display: inline-block;
  font-size: 0;
  vertical-align: middle;
  white-space: nowrap;
}
.btn-group > .btn:last-child, .btn-group > .dropdown-toggle {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
.btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover {
  font-size: 14px;
}
.btn-group > .btn {
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #fff;
  background-color: #0db8d2;
}

.dropdown-submenu:hover > a, .dropdown-submenu:focus > a {
  text-decoration: none;
  color: #fff;
  background-color: #0db8d2;
}

.dropdown-menu > li > a {
  display: block;
  padding: 8px;
  clear: both;
  font-weight: normal;
  line-height: 20px;
  color: #333;
  white-space: nowrap;
}

.bootstrap-select.btn-group .dropdown-menu.inner {
  max-height: 200px !important;
}

/*missed style from bootstrap combined css Ends*/
/* Heading styles */
h1, h2, h3, h4, h5, h6 {
  color: #333;
  font-family: Georgia, "Times New Roman", Times, serif;
}

h1 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}

h2 {
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: bold;
}

h3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

h4 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

strong {
  font-weight: bold;
}

b {
  font-weight: bold;
}

.section-search a, .section-search a:link,
.section-details a,
.section-details a:link {
  text-decoration: none;
}
.section-search a:hover, .section-search a:link:hover,
.section-details a:hover,
.section-details a:link:hover {
  text-decoration: underline;
}
.section-search a:active, .section-search a:link:active,
.section-details a:active,
.section-details a:link:active {
  text-decoration: none;
}

.section-search .nav-tabs a, .section-search .nav-tabs a:link,
.section-details .nav-tabs a,
.section-details .nav-tabs a:link {
  text-decoration: none;
}
.section-search .nav-tabs a:hover, .section-search .nav-tabs a:link:hover,
.section-details .nav-tabs a:hover,
.section-details .nav-tabs a:link:hover {
  text-decoration: none;
}
.section-search .nav-tabs a:active, .section-search .nav-tabs a:link:active,
.section-details .nav-tabs a:active,
.section-details .nav-tabs a:link:active {
  text-decoration: none;
}

/*Utility classes*/
.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.btn-link-visit {
  font-size: 14px;
  font-size: 1.4rem;
  display: inline-block;
  margin: 20px 0 40px 0;
  padding-right: 20px;
  position: relative;
}
.btn-link-visit:after {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -135px -496px transparent;
  content: "";
  height: 20px;
  right: 0;
  position: absolute;
  top: 0;
  width: 20px;
}

button#loadMore {
  width: 90%;
  margin-bottom: 5px;
  padding: 7px 33px 7px 0px;
  margin-left: 5%;
  position: absolute;
  bottom: 21px;
}

/*style for Loading Gif untill results loads*/
.loading-gif {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -16px;
  margin-top: -16px;
}

/*style for Loading Gif untill results loads*/
.default-hide {
  display: none;
}

.sap-hideHard {
  display: none !important;
}

.rfloat {
  float: right;
}

/*ajax hit direct url */
.directHiturlAjax .section.section-search {
  display: block;
}

.form_row.widthHack {
  margin-bottom: 10px !important;
}

.custom-check-box p label {
  font-weight: normal;
}

.form_row.nolabelButton .form_leftcol {
  display: none;
}

.clearfix {
  clear: both;
  display: inline-block;
  width: 100%;
}

.width50percent {
  width: 50%;
}

.two-columnList ul li {
  width: 100% !important;
}

.no-js .intro {
  display: none;
}

.no-js .search-tab {
  display: none;
}

.no-js .other-info {
  display: none;
}

.no-js .section-search footer {
  display: none;
}

.no-js .nojs-message {
  display: block;
  text-align: center;
  margin-top: 50%;
}

.js .nojs-message {
  display: none;
}

/*RTE styles*/
.rte {
  zoom: 1;
}
.rte:before, .rte:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.rte:after {
  clear: both;
}
.rte h2, .rte h3, .rte h4, .rte h5 {
  line-height: normal;
  margin: 18px 0 10px;
}
.rte p {
  margin-bottom: 8px;
}
.rte p, .rte li {
  font-size: 13px;
  font-size: 1.3rem;
}
.rte p b, .rte li b {
  font-weight: bold;
}
.rte i {
  font-style: italic;
}
.rte b {
  font-weight: bold;
}
.rte ul li, .rte ol li {
  padding: 0 5px 0 20px;
  margin-bottom: 5px;
  position: relative;
  vertical-align: top;
  width: 100%;
}
.rte ul li:before,
.rte ul.arrow li:before {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -138px -281px transparent;
  content: "";
  left: 0;
  top: 0;
  height: 20px;
  position: absolute;
  width: 20px;
}

.dropdown-toggle.selectpicker:hover {
  text-decoration: none;
}
.dropdown-toggle.selectpicker:focus {
  text-decoration: none;
}

.btn-login {
  position: relative;
  width: 80px;
  padding-right: 20px;
}

.btn-email,
.btn-facebook {
  text-align: left;
  padding: 8px 12px 8px 40px;
  margin-bottom: 5px;
  position: relative;
  text-align: left;
  width: 134px;
}
.btn-email:hover,
.btn-facebook:hover {
  background: #DD4C92;
}

.btn-login:after {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat scroll -82px -1213px transparent;
  content: "";
  height: 34px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20px;
}

.btn-login:before,
.btn-email:before,
.btn-facebook:before {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -25px -33px transparent;
  content: "";
  height: 36px;
  left: 0;
  position: absolute;
  top: 0px;
  width: 40px;
}
.btn-login:before:hover,
.btn-email:before:hover,
.btn-facebook:before:hover {
  background: #DD4C92;
}

.btn-login:before {
  background-position: -82px -1213px;
  height: 34px;
  width: 75px;
}

.btn-email:before {
  background-position: -122px -118px;
}

.btn-facebook:before {
  background-position: -122px -199px;
}

.form_button_submit {
  background: url("clientlibs_main/assets/styles/images/arrow-submitbuton.png") no-repeat 95% 50% #ef4d9b;
  padding: 8px 30px 8px 10px;
}

.section.section-results {
  padding-bottom: 80px;
}

p.marginb20 {
  margin-bottom: 20px;
}

.margint30 {
  margin-top: 30px;
}

.touch a:hover {
  text-decoration: none !important;
}

/*Section Search */
.section-search {
  background: url("clientlibs_main/assets/styles/images/bg_section.png") repeat-x 0 0 white;
  padding: 30px 20px;
}
.section-search section.intro {
  margin-bottom: 30px;
}
.section-search section.search-tab {
  margin-bottom: 20px;
  box-sizing: unset;
}
.section-search .other-info {
  margin-bottom: 30px;
}
.section-search .other-info p {
  margin-bottom: 10px;
  font-size: 13px;
}
.section-search h1, .section-search h2, .section-search h3, .section-search h4 {
  color: #343434;
}
.section-search .teaser-inner h1, .section-search .teaser-inner h2 {
  color: #0db8d2;
  line-height: 30px;
  white-space: normal;
}
.section-search .teaser-inner h1 {
  font-size: 25px;
  font-size: 2.5rem;
}
.section-search input.typeahead {
  background: #fff;
  border: solid 1px #e5e2e3;
  border-radius: 6px;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.085);
  box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.12);
  padding: 15px;
  width: 100%;
  color: #333333;
  padding-right: 57px;
}

.search-tab .nav-tabs > li {
  margin-bottom: -1px;
}
.search-tab .nav-tabs > li.by-location, .search-tab .nav-tabs > li.by-name, .search-tab .nav-tabs > li.by-speciality {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  position: relative;
}

/*
.search-tab .nav-tabs > li.by-location:before,
.search-tab .nav-tabs > li.by-name:before {
    background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat transparent;
    content: "";
    height: 20px;
	left: 5px;
    position: absolute;
    width: 20px;
	z-index: 999;
}

.search-tab .nav-tabs > li.by-location:before {
	background-position: -133px -536px;
}
.search-tab .nav-tabs > li.by-name:before {
	background-position: -135px -575px;
}
*/
.section-search #search-location, .section-search #search-name {
  position: relative;
}
.section-search #search-location .btn-search, .section-search #search-name .btn-search {
  /*background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -22px -625px transparent !important;*/
  padding: 0;
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 49px;
  width: 47px;
  outline: none;
  z-index: 10;
}
.section-search #search-location a.find-location {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  display: inline-block;
  margin: 10px 0 0 0;
  padding-left: 20px;
  position: relative;
}
.section-search #search-location a.find-location:before {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -135px -621px transparent;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20px;
}
.section-search #search-location a.find-location.disabled {
  color: #cac9ca;
  cursor: none;
}
.section-search #search-location a.find-location.disabled:before {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -135px -581px transparent;
}
.section-search #search-location a.find-location.disabled:hover {
  text-decoration: none;
}
.section-search .btn-call {
  padding: 7px 12px 7px 40px;
  margin-bottom: 30px;
  position: relative;
  text-align: left;
  width: 155px;
}
.section-search .btn-call:hover {
  background: #DD4C92;
}
.section-search .btn-call:before {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -25px -33px transparent;
  content: "";
  height: 34px;
  left: 0;
  position: absolute;
  top: 0;
  width: 40px;
}
.section-search .btn-call:before:hover {
  background: #DD4C92;
}
.section-search .tab-content {
  min-height: 117px;
  padding: 20px 10px 5px 10px;
}

img.loader {
  height: 14px;
  margin-left: 4px;
}

/*custom style for carret selectbox*/
.speciality .btn-group.open .dropdown-toggle {
  background-image: none;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.speciality .btn.selectpicker.btn-default {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 0;
  height: 52px;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  color: #333;
  font-weight: normal;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  background-color: #fff;
  /*background-image: -moz-linear-gradient(top, white, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, white, #e6e6e6);
  background-image: -o-linear-gradient(top, white, #e6e6e6);
  background-image: linear-gradient(to bottom, white, #e6e6e6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$whiteff', endColorstr='#ffe6e6e6', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);*/
  border: 1px solid #e5e2e3;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.speciality.btn-group .btn.selectpicker.btn-default .filter-option {
  color: #000;
}

span.caret:before {
  padding: 19px;
  background: #ef4d9b;
  content: "";
  position: absolute;
  border-radius: 0px 4px 4px 0px;
  bottom: -17px;
  left: -21px;
  z-index: 3;
}
span.caret:after {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border-top: 5px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: "";
  position: absolute;
  left: -8px;
  bottom: -2px;
  z-index: 3;
}

/*speciality selectbox style*/
.speciality span.caret:after {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border-top: 8px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: "";
  position: absolute;
  left: -15px;
  bottom: -4px;
}
.speciality span.caret:before {
  padding: 25px;
  background: #ef4d9b;
  content: "";
  position: absolute;
  border-radius: 0px 4px 4px 0px;
  bottom: -23px;
  left: -34px;
}

.name-speality button {
  height: 50px;
}

/*speciality selectbox style*/
/*select tab style*/
.search-tab li.active a {
  margin-bottom: -9px;
  padding-top: 11px !important;
  top: -5px;
}

/*portfolio select boxstyle*/
.selectpicker.btn-default {
  background: #fff;
  height: 38px;
}

.text {
  white-space: normal;
  display: block;
  line-height: 17px;
}

span.text:focus, a:focus, button.btn.dropdown-toggle.selectpicker.btn-default:focus {
  outline: -webkit-focus-ring-color auto 0px !important;
  outline: 0 !important;
}

select#searchspeciality {
  width: 100%;
}

select#searchspeciality {
  -webkit-appearance: none;
  line-height: 17px;
  height: 53px;
  margin: 9px 0 10px 0;
  position: relative;
  background: transparent;
}

form.name-speality {
  position: relative;
  background: #fff;
  height: 52px;
  border-radius: 4px;
}

form.name-speality:after {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border-top: 8px solid #fff;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: "";
  bottom: -4px;
  right: 20px;
  position: absolute;
  top: 22px;
  z-index: 1;
}

form.name-speality:before {
  background: #DD4C92;
  position: absolute;
  height: 52px;
  width: 50px;
  right: 1px;
  content: "";
  top: 0px;
  border-radius: 0px 4px 4px 0px;
}

select#searchspeciality:focus {
  box-shadow: none;
  border-color: #ccc;
  background: transparent;
}

.page-not-found h2 {
  margin: 50px 0 20px 0;
}
.page-not-found h2, .page-not-found h3 {
  text-align: center;
  line-height: normal;
}
.page-not-found p {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 18px;
  text-align: center;
}
.page-not-found footer {
  position: fixed;
  bottom: 0;
  width: 292px;
}
.page-not-found footer p {
  text-align: left;
}

footer {
  background: #fff;
  bottom: 0;
  font-size: 1.2rem;
}
footer p.copy {
  color: #777;
  padding: 10px 0;
}
footer ul {
  padding: 10px 0;
  border-top: 1px solid #3d3c3c;
}
footer ul li {
  display: inline-block;
  margin: 0 10px 0 0;
  border-right: 1px solid #333;
  line-height: 10px;
  padding-right: 10px;
}
footer ul li.noborder {
  border-left: none;
  padding-left: 0;
}
footer ul li.lastChild {
  border-right: 1px solid #333;
  padding-right: 10px;
}
footer ul li:first-child {
  border-left: none;
  padding-left: 0;
}
footer ul li.last {
  border: 0;
}

.adviserFooter {
  color: #9c9c9c;
  font-size: 12px;
  border-top: 1px solid #000;
  margin: 20px;
  padding-top: 16px;
}
.adviserFooter p {
  font-size: 12px;
  font-size: 1.2rem;
}
.adviserFooter ul.footer-logos li {
  width: 83px;
  float: left;
  margin-right: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.adviserFooter ul.footer-logos li img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.footerText {
  margin-top: 10px;
}

/*Section Result */
.section-results {
  background: #434343;
}
.section-results * {
  color: #fff;
}
.section-results h1, .section-results h2 {
  padding: 10px 20px;
}
.section-results h3 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 15px;
  padding: 0 0 5px 0;
}
.section-results h1 small, .section-results h2 small, .section-results h3 small {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  padding-left: 6px;
}

.section-results h4 small {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  padding-left: 6px;
}

ul#profile-list {
  position: relative;
  padding-bottom: 72px;
}
ul#profile-list li.no-result {
  padding: 12px 20px;
  cursor: default;
}

/*Search result list */
.section-results .profile-pic {
  display: inline-block;
  float: left;
  padding-left: 18px;
  width: 23%;
}
.section-results .profile-pic img {
  border-radius: 6px;
  max-width: 100%;
}
.section-results .profile-overview {
  display: inline-block;
  float: left;
  padding: 0 20px;
  width: 75%;
}
.section-results .profile-overview p {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 0;
}
.section-results .profile-overview p.speciality, .section-results .profile-overview p.address {
  padding: 5px 0 0 0;
}
.section-results .profile-overview .highlight {
  font-weight: bold;
}
.section-results .profile-overview .address {
  position: relative;
}
.section-results .profile-overview .address .radius {
  float: right;
  padding-left: 2px;
}
.section-results ul {
  margin: 0;
}
.section-results ul li:before, .section-results ul li:after {
  clear: both;
  content: " ";
  display: table;
}
.section-results h1, .section-results h2 {
  background: url("clientlibs_main/assets/styles/images/line-horizontial.png") repeat-x 0 bottom;
}
.section-results ul li {
  background: url("clientlibs_main/assets/styles/images/line-horizontial.png") repeat-x 0 bottom #434343;
  color: #fff;
  clear: both;
  font-size: 14px;
  font-size: 1.4rem;
  list-style: none outside none;
  padding: 18px 0;
}
.section-results ul li.active {
  background-color: #0db8d2;
}
.section-results ul li:hover h3, .section-results ul li:hover p {
  color: #fff;
}
.section-results ul li.active h3, .section-results ul li.active p {
  color: #fff;
}

.phoneBased {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -135px -1004px;
  padding-left: 19px;
}

.search-again {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -131px -1055px;
  padding-left: 28px;
  font-size: 14px;
  font-size: 1.4rem;
}

button#loadMore:after {
  font-size: 38px;
  position: absolute;
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -121px -910px transparent;
  content: "";
  height: 20px;
  width: 30px;
}

ul#profile-list li.no-result:hover {
  background-color: transparent;
}

.list-results {
  position: absolute;
  width: 100%;
  height: 100%;
}

.section .section-search {
  position: relative;
  z-index: 2;
}

.section.section-search {
  float: left;
}

/*Section Detail */
.section-details {
  background: url("clientlibs_main/assets/styles/images/bg_section.png") repeat-x 0 0 white;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8rem;
  transition: width 0.3s ease-out 0s;
}

.advisor-profile,
.profile-detail,
.customer-stat,
.view-comments {
  zoom: 1;
  clear: both;
}
.advisor-profile:before, .advisor-profile:after,
.profile-detail:before,
.profile-detail:after,
.customer-stat:before,
.customer-stat:after,
.view-comments:before,
.view-comments:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.advisor-profile:after,
.profile-detail:after,
.customer-stat:after,
.view-comments:after {
  clear: both;
}

.more-information,
.iparys_inherited {
  zoom: 1;
  clear: both;
}
.more-information:before, .more-information:after,
.iparys_inherited:before,
.iparys_inherited:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.more-information:after,
.iparys_inherited:after {
  clear: both;
}

.advisor-profile {
  background: url("clientlibs_main/assets/styles/images/bg_section.png") repeat-x 0 0 transparent;
  padding: 30px 20px 0 20px;
}

.section-details h1, .section-details h2, .section-details h3 {
  margin-top: 0px;
  margin-bottom: 10px;
}
.section-details section.advisor-profile .btn-connect, .section-details section.advisor-profile .btn-refer, .section-details section.advisor-profile .btn-linkedin, .section-details section.advisor-profile .btn-website {
  text-align: left;
  padding: 8px 12px 8px 40px;
  position: relative;
  text-align: left;
  width: 134px;
}
.section-details section.advisor-profile .btn-connect:hover, .section-details section.advisor-profile .btn-refer:hover, .section-details section.advisor-profile .btn-linkedin:hover, .section-details section.advisor-profile .btn-website:hover {
  background: #DD4C92;
}
.section-details section.advisor-profile .btn-connect:before, .section-details section.advisor-profile .btn-refer:before, .section-details section.advisor-profile .btn-linkedin:before, .section-details section.advisor-profile .btn-website:before {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -25px -33px transparent;
  content: "";
  height: 36px;
  left: 0;
  position: absolute;
  top: 0px;
  width: 40px;
}
.section-details section.advisor-profile .btn-connect:before:hover, .section-details section.advisor-profile .btn-refer:before:hover, .section-details section.advisor-profile .btn-linkedin:before:hover, .section-details section.advisor-profile .btn-website:before:hover {
  background: #DD4C92;
}
.section-details section.advisor-profile .btn-connect:before {
  background-position: -25px -33px;
}
.section-details section.advisor-profile .btn-refer:before {
  background-position: -25px -119px;
}
.section-details section.advisor-profile .btn-linkedin:before {
  background-position: -25px -200px;
}
.section-details section.advisor-profile .btn-website:before {
  background-position: -122px -1105px;
}

#section-detail {
  position: relative;
}
#section-detail .loading-gif {
  position: absolute;
  top: 30%;
  left: 50%;
  margin-left: -16px;
  margin-top: -16px;
}

li.identity-logo .section {
  display: inline;
}

section.advisor-profile {
  clear: both;
  position: relative;
}

.advisor-profile .profile-vcard {
  clear: both;
  padding-bottom: 20px;
  min-height: 193px;
}
.advisor-profile .profile-vcard .profile-overview {
  clear: both;
  float: none;
  padding: 20px 8px 0 0;
  width: 100%;
}
.advisor-profile .profile-vcard .profile-pic {
  background: url("clientlibs_main/assets/styles/images/loading-white.gif") no-repeat top 60px transparent;
  display: inline-block;
  float: left;
  width: 49%;
  min-height: 160px;
  overflow: hidden;
  margin-bottom: 10px;
  max-width: 150px;
}
.advisor-profile .profile-vcard .profile-pic > div {
  /*display: inline-block;
  border-radius: 6px;
  width: auto;  */
  margin-bottom: 10px;
}
.advisor-profile .profile-vcard .profile-pic img {
  border-radius: 6px;
  max-width: 100%;
}
.advisor-profile .profile-vcard .profile-action {
  float: right;
  width: 50%;
  text-align: right;
}

.section-details .profile-overview h2 {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 22px;
  margin-bottom: 0px;
}
.section-details .profile-overview .title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  font-style: italic;
  line-height: 25px;
  margin-bottom: 20px;
}

.profile-vcard .profile-overview dd {
  margin-left: 0px;
  padding-bottom: 5px;
}
.profile-vcard .profile-overview dd.language {
  display: inline-block;
  float: left;
}
.profile-vcard .profile-overview dd.address {
  clear: both;
  padding-top: 5px;
}
.profile-vcard .profile-overview dd.address strong {
  font-weight: bold;
}
.profile-vcard .profile-overview dd.phoneNumber {
  margin-top: 10px;
  padding-bottom: 2px;
}
.profile-vcard .profile-overview dd.phoneNumber a, .profile-vcard .profile-overview dd.emailAddress a {
  font-weight: bold;
}

dd.address span.direction a {
  font-weight: bold;
  display: inline-block;
  position: relative;
  padding-right: 20px;
}
dd.address span.direction a:after {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat scroll -138px -494px transparent;
  content: "";
  height: 20px;
  right: 0;
  position: absolute;
  width: 20px;
}

.profile-vcard .profile-overview {
  zoom: 1;
}
.profile-vcard .profile-overview:before, .profile-vcard .profile-overview:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.profile-vcard .profile-overview:after {
  clear: both;
}
.profile-vcard .profile-overview dd.address span {
  display: block;
}
.profile-vcard .profile-overview dd span.highlight {
  font-weight: bold;
}
.profile-vcard .profile-overview dt {
  display: none;
}
.profile-vcard .profile-overview dt.language {
  display: block;
  font-weight: bold;
  display: inline-block;
  float: left;
  padding-top: 10px;
}
.profile-vcard .profile-overview #viewCommentsScroll {
  display: block;
  padding-top: 15px;
}

.profile-action ul, .profile-action ol {
  list-style: none;
  float: right;
}
.profile-action ul li, .profile-action ol li {
  display: block;
  margin: 0 5px 5px;
  width: 130px;
}
.profile-action ul li img.identity-logo,
.profile-action ul li img,
.profile-action ol li img.identity-logo {
  margin-bottom: 10px;
}

.profile-detail {
  padding: 0 20px;
}
.profile-detail .row {
  border-top: solid 1px #ccc;
  padding: 0px 0;
}
.profile-detail .row .section-col:first-child {
  padding-left: 0;
}
.profile-detail .row .section-col .info-section {
  padding-bottom: 20px;
}
.profile-detail .section-col ul li, .profile-detail .section-col ol li {
  padding: 0 5px 0 20px;
  margin-bottom: 5px;
  position: relative;
  vertical-align: top;
  width: 100%;
}
.profile-detail .section-col ul li:before, .profile-detail .section-col ol li:before {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -138px -282px transparent;
  content: "";
  left: 0;
  top: 0;
  height: 20px;
  position: absolute;
  width: 20px;
}

section.profile-detail.listDetail {
  padding: 0;
}

.profile-detail .info-section a.info-icon,
.glossary {
  font-family: Helvetica,Arial,sans-serif;
  position: relative;
  display: inline-block;
  float: right;
  font-weight: bold;
  padding-left: 20px;
  margin: -27px 0 5px;
}
.profile-detail .info-section a.info-icon:after,
.glossary:after {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -138px -400px transparent;
  content: "";
  height: 20px;
  position: absolute;
  left: 0;
  width: 20px;
}

/*Mobile first styles*/
.profile-detail .row {
  padding-top: 30px;
  border-top: 1px solid #ccc;
}
.profile-detail .section-col {
  width: 100%;
  float: none;
}
.profile-detail .info-section .rte {
  position: relative;
  overflow: hidden;
}
.profile-detail .info-section ul, .profile-detail .info-section p.no-record {
  margin-bottom: 20px;
}
.profile-detail .info-section.open ul, .profile-detail .info-section.open p.no-record {
  height: auto;
  margin-bottom: 20px;
}
.profile-detail .info-section.open h3:before {
  background-position: -138px -250px;
}
.profile-detail .info-section ul li, .profile-detail .info-section ol li {
  display: inline-block;
  padding: 0 5px 0 20px;
  margin-bottom: 5px;
  position: relative;
  vertical-align: top;
  width: 100%;
}
.profile-detail .info-section ul li:before, .profile-detail .info-section ol li:before {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -138px -282px transparent;
  content: "";
  left: 0;
  top: 0;
  height: 20px;
  position: absolute;
  width: 20px;
}
.profile-detail .info-section h3 {
  background-color: #efefef;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 5px;
  padding: 10px 20px 10px 10px;
  position: relative;
}
.profile-detail .info-section h3:before {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat scroll -138px -282px transparent;
  content: "";
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
}
.profile-detail .info-section h3.open:before {
  background-position: -138px -250px;
}
.profile-detail .info-section .glossary {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  margin: -27px 0 5px 0;
}

.guidelinesInfo {
  width: 100% !important;
}

.guidelinesInfo ul li {
  width: 100% !important;
  margin-top: 5px;
}

div#qualificationData {
  clear: both;
}

.noSufficientRating {
  display: inline-block;
}

div#qualificationData .rte {
  margin-bottom: 20px;
}

div#qualificationData ul {
  margin-bottom: 0;
}

section.profile-detail .emptyList {
  margin-bottom: 20px;
}

#viewCommentsScroll a {
  position: relative;
  padding-right: 20px;
}

#viewCommentsScroll a:after {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat scroll -138px -494px transparent;
  content: "";
  height: 20px;
  right: 0;
  position: absolute;
  width: 20px;
}

section.customer-stat {
  background: #333;
  /*url("clientlibs_main/assets/styles/images/bg_carbon.png") repeat 0 0 */
  padding: 20px;
  color: #fff;
  clear: both;
  min-height: 550px;
  padding-bottom: 10px;
}
section.customer-stat h1, section.customer-stat h2, section.customer-stat h3 {
  color: #fff;
}
section.customer-stat h2 {
  display: inline-block;
  margin-bottom: 15px;
  float: left;
}
section.customer-stat .provide-rating {
  display: block;
  clear: both;
}
section.customer-stat .review {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  padding-left: 6px;
}
section.customer-stat p.subheader-cs {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
  font-size: 1.5rem;
}
section.customer-stat p.subheader-cs span.highlight {
  font-weight: bold;
}
section.customer-stat .rating-info {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 5px;
  position: relative;
}
section.customer-stat .rating-info a {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  padding-left: 20px;
}
section.customer-stat .rating-info:before {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -138px -314px transparent;
  content: "";
  height: 20px;
  position: absolute;
  width: 20px;
}
section.customer-stat ul.rating-cs {
  zoom: 1;
  list-style: none;
  margin: 30px 0 10px 0;
  text-align: center;
}
section.customer-stat ul.rating-cs:before, section.customer-stat ul.rating-cs:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
section.customer-stat ul.rating-cs:after {
  clear: both;
}
section.customer-stat ul.rating-cs li {
  width: 47%;
  list-style: none;
  vertical-align: top;
  padding: 5px;
  position: relative;
  float: left;
  min-height: 247px;
  padding-bottom: 10px;
}
section.customer-stat ul.rating-cs li span.rating-meter {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat 10px -920px transparent;
  display: block;
  height: 120px;
  line-height: 120px;
  margin: 0 auto;
  position: relative;
  width: 120px;
}
section.customer-stat ul.rating-cs li span.rating-label {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 10px;
  width: 100%;
}

ul.rating-cs li span.rating-meter > div {
  display: block;
  position: relative;
}

/*Css Knob*/
.dial {
  font-family: Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  position: absolute;
  top: -40px;
  left: 40px;
  margin: -29px 0 0 -13px !important;
  width: 40px;
  height: 40px;
  z-index: 10;
  color: white !important;
}

/*rating Thanku css 29 aug*/
section.customer-stat p.subheader-cs {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  background: url("clientlibs_main/assets/styles/images/line-horizontial.png") repeat-x 0 bottom #333;
  padding-bottom: 10px;
}

.modal-thanks {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  left: 0px;
  z-index: 15;
  left: 0px;
  text-align: center;
  vertical-align: middle;
  background-color: #000;
  opacity: 0.9;
  filter: alpha(opacity=90);
  -webkit-backface-visibility: hidden;
  /* Chrome, Safari, Opera */
  backface-visibility: hidden;
}

.customer-stat {
  position: relative;
}

.modal-content-wrap {
  position: absolute;
  display: inline-block;
  top: 50%;
  margin-top: -32px;
  left: 50%;
  margin-left: -236px;
}

.closeButton {
  background: transparent;
  color: #DB4E8B;
  font-size: 28px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.modal-content-wrap p {
  font-size: 12px;
}

.form-group.marigint35 {
  margin-top: 35px;
}
.form-group.form-col-47.nameField {
  position: relative;
}
.form-group.form-col-47.nameField p {
  position: absolute;
  color: red;
  bottom: -22px;
}

.charLeft {
  font-size: 11px;
  font-weight: normal;
  padding-left: 5px;
  float: right;
}

span.rating-meter input[type="text"]:focus {
  box-shadow: none !important;
}

a.dodont-link {
  padding-top: 0px;
}

.form-group.formComment .loader {
  margin-top: 29px;
  margin-left: 20px;
}

.noSufficientRating > p {
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
}

.more-information .tab-content ul li {
  line-height: 18px;
}

.form-group.form-col-47.nameField {
  position: relative;
}
.form-group.form-col-47.nameField a {
  position: absolute;
  top: 27px;
  font-style: italic;
  font-size: 11px;
}
.form-group.form-col-47.nameField .dropdown-menu > li > a {
  position: relative;
  top: 0;
}

.info-text {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-size: 1.1rem;
  font-style: italic;
}

.mandatory {
  font-size: 11px;
  font-size: 1.1rem;
  font-style: italic;
}

.footerText .privacyLink {
  font-size: 12px;
  font-size: 1.2rem;
}

#contactform-messageinfotext .rte {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-size: 1.1rem;
  font-style: italic;
}

span.commentNote a:focus {
  border: 1px dotted;
}

div#ratingMeters {
  display: block;
}

.ieHackStar {
  background-position: -132px -803px !important;
}

.ieHackStarbefore {
  background-position: -132px -754px !important;
}

html.android #getRatingData > * {
  -webkit-transform: translateZ(0px);
}

html.android #getRatingData > * {
  -webkit-transform: translate3d(0, 0, 0);
}

html.android .more-information > * {
  -webkit-transform: translateZ(0px);
}

html.android .more-information > * {
  -webkit-transform: translate3d(0, 0, 0);
}

.profile-detail:before, .profile-detail:after {
  content: " ";
  display: table;
}

section.customer-view-comments {
  background: url("clientlibs_main/assets/styles/images/line-horizontial.png") repeat-x 0 top #333;
  padding: 6px 20px;
  color: #fff;
  margin-bottom: 20px;
  clear: both;
}

.displaycomments {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  padding-top: 40px;
}
.displaycomments:before {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -138px -494px transparent;
  content: "";
  height: 20px;
  position: absolute;
  width: 20px;
  left: 0;
}

.mark-rating {
  position: relative;
  display: inline-block;
  margin: 10px 0;
  padding-left: 20px;
}
.mark-rating:before {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -138px -494px transparent;
  content: "";
  height: 20px;
  position: absolute;
  width: 20px;
  left: 0;
}
.mark-rating a {
  font-weight: bold;
}

.view-comments {
  margin-bottom: 10px;
}

.commentor-name, .commentor-comment, .replier-name, .replier-comment {
  width: 100%;
  margin-bottom: 10px;
}

.fontbold {
  font-weight: bold;
}

.grayline {
  color: #d3d3d3;
  background-color: #d3d3d3;
}

.replier {
  padding: 20px 20px 10px 20px;
  margin-left: 20px;
}

.div-rating {
  display: none;
  padding: 0px;
  margin-left: 0px;
}

.div-client-rating {
  margin-top: 20px;
}

.div-client-satisfaction {
  margin-top: 0px;
  display: inline-block;
  width: 100%;
}

.div-client-rating .star-rating p {
  color: #fff;
}

.customer-view-comments h4 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  margin: 10px 0;
}
.customer-view-comments h4 .dodont-link {
  font-size: 14px;
  font-size: 1.4rem;
  float: none;
  font-weight: bold;
}

.txt-name {
  display: inline;
  width: 100%;
}

.div-client-satisfaction input[type="text"] {
  display: inline-block;
}

.customer-view-comments a.info-icon,
.dodont-link {
  position: absolute;
  display: inline-block;
  margin: 0px;
  padding-top: 7px;
  padding-bottom: 10px;
  width: 100%;
  padding-left: 46px;
  left: 0px;
}
.customer-view-comments a.info-icon:before,
.dodont-link:before {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat scroll -138px -360px transparent;
  content: "";
  height: 20px;
  left: 0px;
  position: absolute;
  width: 20px;
  margin-left: 22px;
}

.panel-group {
  margin-bottom: 20px;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

.collapse {
  display: none;
}
.collapse.in {
  display: block;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  -o-transition: height 0.3s ease;
  transition: height 0.3s ease;
}

.active-acc {
  border-bottom: 0px;
}
.active-acc .panel-heading {
  border-bottom: 0px;
  background-color: #DFDFDF;
}

.form-group {
  margin-top: 10px;
}

.panel-title a:after {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat scroll -138px -282px transparent;
  content: "";
  height: 20px;
  position: absolute;
  width: 20px;
  right: 0px;
}

.active-acc .panel-title a:after {
  background-position: -138px -250px;
}

.panel-title a {
  position: relative;
  display: block;
  padding: 20px 12px 20px 16px;
}

.btn-fin-serv .btn-fin-serv {
  margin-top: 20px;
  padding: 7px 12px 7px 40px;
  position: relative;
  text-align: left;
  width: 232px;
}
.btn-fin-serv .btn-fin-serv:before {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -25px -1063px transparent;
  content: "";
  height: 34px;
  left: 0;
  position: absolute;
  top: 0;
  width: 40px;
}

a#submitRating {
  position: relative;
}

.customer-stat .btn-save {
  margin-top: 30px;
  padding: 7px 32px 7px 22px;
}
.customer-stat .btn-save:before {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat scroll -130px -1213px transparent;
  content: "";
  height: 30px;
  position: absolute;
  right: 10px;
  top: 0;
  width: 25px;
}

/*rating*/
.rating, .comment {
  overflow: hidden;
  display: inline-block;
  font-size: 0;
  position: relative;
  float: left;
}

.rating-input, .rating-comment {
  float: right;
  width: 16px;
  height: 16px;
  padding: 0;
  margin: 0 0 0 -16px;
  opacity: 0;
  filter: alpha(opacity=0);
  outline: none;
}

.rating-input {
  outline: none;
}

.rating:hover .rating-star:hover {
  background-position: -132px -754px;
}
.rating:hover .rating-star:hover ~ .rating-star {
  background-position: -132px -754px;
}

.rating-input:checked ~ .rating-star {
  background-position: -132px -754px;
}

.rating-star, .rating:hover .rating-star {
  position: relative;
  float: right;
  display: block;
  width: 24px;
  height: 24px;
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -132px -803px transparent;
  margin-bottom: 2px;
  margin-left: 6px;
}

.rating-input-checked {
  background-position: -132px -754px;
}

.div-rating-cs {
  margin-top: 20px;
  margin-bottom: 20px;
}
.div-rating-cs .label-cs {
  line-height: normal;
  margin-bottom: 0px;
  font-weight: normal;
  width: 100%;
}

.div-rating .label-cs {
  margin-bottom: 0px;
  width: 100%;
}

.div-rating-cs input[type="radio"], .div-rating input[type="radio"] {
  background-position: 0 0;
  position: absolute;
}

.div-rating input[type="radio"] {
  display: none;
}

.portfolio-drop {
  float: none;
}

.div-client-satisfaction .form-group {
  margin-left: 10px;
}

.form-col-47 {
  display: block;
  width: auto;
}

.down-arrow:before {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -138px -666px transparent;
}

.rating-row {
  zoom: 1;
  clear: both;
  width: auto;
  margin-top: 5px;
  margin-bottom: 5px;
}
.rating-row:before, .rating-row:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.rating-row:after {
  clear: both;
}
.rating-row span {
  margin: 0 50px 10px 0;
}

/* View Comment section */
.customer-view-comments .pagination {
  zoom: 1;
  padding: 10px 0;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: normal;
}
.customer-view-comments .pagination:before, .customer-view-comments .pagination:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
.customer-view-comments .pagination:after {
  clear: both;
}
.customer-view-comments .pagination a.disable {
  color: grey;
  text-decoration: none;
  cursor: default;
}
.customer-view-comments .comment-section {
  padding: 20px 20px 10px 20px;
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  margin-top: 20px;
}
.customer-view-comments .comment-section:first-child, .customer-view-comments .comment-section.first-child {
  margin-top: 0;
}
.customer-view-comments .comment-section h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.customer-view-comments .comment-section h5 span {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: normal;
  padding-left: 5px;
}
.customer-view-comments .comment-section h5 i {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 11px;
  float: none;
  display: block;
  font-style: italic;
  font-weight: normal;
}
.customer-view-comments .comment-section h5 .div-rating .label-cs {
  line-height: normal;
}

.div-client-satisfaction .bootstrap-select.btn-group {
  margin: 0px;
}
.div-client-satisfaction .bootstrap-select.btn-group[class*="span"] {
  margin: 0px;
}

.comment-section-parent {
  display: block;
  clear: both;
}

span.rating-info.pull-right {
  display: block;
  float: none;
  clear: both;
  margin-top: -6px;
  margin-bottom: 10px;
}

.nameField label, .portfolio-drop label {
  float: left;
  width: 190px;
  line-height: 33px;
}

.formComment label {
  float: left;
  width: 190px;
  padding-right: 10px;
}

.nameInput, .portfolio-drop select, .portfolioInput, .formComment .col-sm-10, form.clientsatisfaction .bootstrap-select {
  float: left;
  width: 57%;
}

.form-group.form-col-47.portfolio-drop .bootstrap-select {
  width: 57% !important;
}

.formComment .col-sm-10 textarea {
  height: 150px;
}

.profile-action a:hover {
  text-decoration: none;
}

.panel.panel-default {
  margin-bottom: 5px;
}

/* More Information Content Style */
section.more-information {
  padding: 0 20px;
  margin-bottom: 30px;
}
section.more-information h2 {
  margin-bottom: 30px;
}

.more-information .nav-tabs > li > a {
  padding: 5px 10px;
  border-radius: 8px 8px 0 0;
}
.more-information .nav-tabs > li.active > a {
  padding: 5px 10px;
  color: #333;
}
.more-information .nav-tabs > li.active > a:hover, .more-information .nav-tabs > li.active > a:focus {
  padding: 5px 10px;
  color: #333;
}
.more-information .nav-tabs > li .download-link {
  background: url("clientlibs_main/assets/styles/css/clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat scroll -25px -1063px transparent;
  content: "";
  height: 34px;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 40px;
}

/*custom checbox style*/
.custom-check-box input[type="radio"], .custom-check-box input[type="checkbox"] {
  margin-top: 0px;
}
.custom-check-box p {
  display: block;
  position: relative;
  overflow: hidden;
}
.custom-check-box p > input[type=checkbox]:hover:checked + label, .custom-check-box p > input[type=checkbox]:focus:checked + label, .custom-check-box p > input[type=checkbox]:checked + label:hover, .custom-check-box p > input[type=checkbox]:focus:checked + label {
  background-position: 0 -101px;
}
.custom-check-box p > input[type=checkbox]:hover + label, .custom-check-box p > input[type=checkbox]:focus + label, .custom-check-box p > input[type=checkbox] + label:hover {
  background-position: 0 -21px;
}
.custom-check-box p > input + label {
  background: url("clientlibs_main/assets/styles/images/checkBox.png") 0 -1px no-repeat;
  height: 16px;
  padding-left: 20px;
  margin-right: 15px;
}
.custom-check-box p > label {
  line-height: 16px;
  padding: 0 0 0 18px;
  -moz-transition: color 1s ease;
  -o-transition: color 1s ease;
  -webkit-transition: color 1s ease;
  transition: color 1s ease;
}
.custom-check-box p > input {
  padding: 0;
  margin: 0;
  height: 16px;
  width: 16px;
  float: left;
  position: absolute;
  left: 0;
  opacity: 0;
}
.custom-check-box p > input[type=checkbox]:checked + label {
  background-position: 0 -81px;
}

input.error {
  border-color: #ff3d00;
  color: #ff3d00;
  font-size: 12px;
}

label.error {
  color: #ff3d00;
  font-size: 12px;
}

.lfloat {
  float: left;
}

.tmargin15 {
  margin-top: 15px;
}

/*contact form new style*/
#btadvisorform .form_leftcolmark {
  display: none;
}
#btadvisorform .form_row:nth-child(odd) {
  float: left;
  width: 50%;
  margin-bottom: 10px;
}

.form_field.form_field_text {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.428571429;
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -moz-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  width: 91%;
}
.form_field.form_field_text:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

#btadvisorform .form_row.widthHack {
  width: 99% !important;
}
#btadvisorform .form_row.checkBoxHack {
  float: left;
  margin-right: 15px;
}
#btadvisorform label {
  font-size: 14px;
  font-size: 1.4rem;
}
#btadvisorform textarea {
  height: 60px;
  line-height: 20px;
}

label[for=btadvisorform_uname]:after, label[for=btadvisorform_email]:after, label[for=btadvisorform_phone]:after, label[for=btadvisorform_postcode]:after {
  content: "*";
  margin-left: 2px;
}

#btadvisorform .form_row:nth-child(odd) {
  float: none;
  width: 100%;
}

.form_field.form_field_text {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  font-family: Helvetica, Arial, sans-serif;
  line-height: 1.428571429;
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -moz-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  width: 91%;
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.085);
  box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.12);
}
.form_field.form_field_text:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

#btadvisorform .form_row.widthHack {
  width: 99% !important;
}
#btadvisorform .form_row.checkBoxHack {
  float: left;
  margin-right: 15px;
  width: 60px;
}
#btadvisorform label {
  font-size: 14px;
}

label[for=btadvisorform_uname]:after, label[for=btadvisorform_email]:after, label[for=btadvisorform_phone]:after, label[for=btadvisorform_postcode]:after {
  content: "*";
  margin-left: 2px;
}

#btadvisorform .form_leftcolmark {
  display: none;
}
#btadvisorform .form_row {
  position: relative;
}
#btadvisorform label.error {
  position: absolute;
  bottom: -23px;
  font-size: 12px;
  font-size: 1.2rem;
}

/*jqueryvalidate css*/
input.error {
  border: 1px solid #ff3d00 !important;
}

.form-group.marigint35 {
  margin-top: 35px;
}
.form-group.form-col-47.nameField {
  position: relative;
  width: 100%;
}
.form-group.form-col-47.nameField p {
  position: absolute;
  color: red;
  bottom: -4px;
  font-size: 12px;
}

.charLeft {
  font-size: 11px;
  font-weight: normal;
  margin-top: 5px;
}

.commentNote {
  font-size: 11px;
  font-style: italic;
  font-weight: normal;
  display: inline-block;
  margin-top: 10px;
  line-height: 15px;
}

/*thank you popup style for contact us */
.modal-body.submitSuccess {
  height: 531px;
  position: relative;
}

#contactThanku,
.contactThanku {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  margin-left: -170px;
  margin-top: -39px;
  display: none;
}

/*contact form checkbox hack*/
.form_row.checkBoxHack.custom-check-box {
  height: 18px;
  overflow: hidden;
  width: 60px !important;
}

label.error:after {
  content: " ";
}

.wrongpass br {
  display: none;
}

.form_row.nolabelButton .form_rightcol {
  float: left;
}

.form_row.nolabelButton {
  float: left !important;
  display: inline-block;
  width: auto !important;
  clear: both;
}

#btadvisorform {
  zoom: 1;
}
#btadvisorform:before, #btadvisorform:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden;
}
#btadvisorform:after {
  clear: both;
}

.parsys_column .cq-colctrl-lt0-c0 #btadvisorform-mandatory {
  width: auto;
  float: left;
  display: inline-block;
  font-size: 11px;
  font-size: 1.1rem;
  font-style: italic;
  text-align: left;
  padding-top: 8px;
}
.parsys_column .cq-colctrl-lt0-c1 #btadvisorform-privacy {
  font-size: 12px;
  font-size: 1.2rem;
  text-align: right;
  display: inline-block;
  width: auto;
  float: right;
  padding-top: 8px;
}

@media (max-width: 320px) {
  .contactThanku {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    margin-left: -170px;
    margin-top: -39px;
    display: none;
    text-align: center;
    padding: 29px;
  }

  .modal-thanks .modal-content-wrap {
    max-width: 300px;
  }
}
@media (min-width: 320px) and (max-width: 768px) {
  #btadvisorform .form_field.form_field_text {
    width: 94% !important;
  }

  #btadvisorform .form_row:nth-child(odd) {
    margin-bottom: 20px;
  }

  #btadvisorform label.error {
    bottom: -26px;
  }

  .request_call _submit:before {
    background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat scroll -82px -1213px transparent;
    content: "";
    height: 34px;
    left: 0;
    position: absolute;
    top: 0;
    width: 75px;
  }

  .nameField, .portfolio-drop, .formComment {
    display: block !important;
    margin-bottom: 10px;
    width: 100% !important;
  }

  .nameField label, .portfolio-drop label, .formComment label, .nameInput, .portfolio-drop select, .portfolioInput, .formComment .col-sm-10 {
    float: none;
    width: 100%;
  }
}
@media (min-width: 420px) and (max-width: 640px) {
  .section-results .profile-pic {
    width: 14%;
  }
  .section-results .profile-overview {
    width: 84%;
  }
}
@media (min-width: 640px) {
  .section-results, .section-details {
    width: 50%;
    margin-left: -0.28em;
  }

  .state2 #page-wrapper {
    left: 0%;
  }
  .state2 #page-wrapper .section-search {
    width: 50%;
  }

  .state3 #page-wrapper {
    left: -50%;
  }
  .state3 #page-wrapper .section-search {
    width: 50%;
  }

  .customer-view-comments .comment-section h5 i {
    float: right;
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .desktopView {
    display: none;
  }

  .mobileView {
    display: block;
  }
}
/*This will work for 768 -959 */
@media (min-width: 768px) {
  .section-search, .section-results, .section-details {
    width: 50%;
  }

  .state2 #page-wrapper {
    left: 0%;
  }
  .state2 #page-wrapper .section-search {
    width: 50%;
  }

  .state3 #page-wrapper {
    left: -50%;
  }
  .state3 #page-wrapper .section-search {
    width: 50%;
  }
  .state3 #page-wrapper .section-results {
    width: 320px;
  }
  .state3 #page-wrapper .section-details {
    width: calc(100% - 22.5em);
    width: -webkit-calc(100% - 22.5em);
  }

  .section-search {
    float: left;
  }

  .section-results {
    float: left;
    margin-left: 0px;
  }

  .section-details {
    margin-left: 0px;
  }
}
@media (min-width: 769px) {
  .desktopView {
    display: block;
  }

  .mobileView {
    display: none;
  }

  /*Detail page view*/
  .profile-detail .info-section ul li, .profile-detail .info-section ol li {
    display: inline-block;
    padding: 0 5px 0 20px;
    margin-bottom: 5px;
    position: relative;
    vertical-align: top;
    width: 49%;
  }
  .profile-detail .info-section ul li:before, .profile-detail .info-section ol li:before {
    background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat -138px -282px transparent;
    content: "";
    left: 0;
    top: 0;
    height: 20px;
    position: absolute;
    width: 20px;
  }
  .profile-detail .info-section ul, .profile-detail .info-section p.no-record {
    display: block;
    margin-bottom: 20px;
  }
  .profile-detail .section-col {
    float: left;
    width: 50%;
  }

  .customer-view-comments h4 {
    color: #fff;
    margin: 10px 0;
  }
  .customer-view-comments h4 .dodont-link {
    float: right;
  }

  /*added for cs and vc*/
  .portfolio-drop {
    /*  float: right;*/
  }

  .form-col-47 {
    display: inline-block;
    width: 47%;
  }

  .div-rating-cs .label-cs {
    margin-left: 0px;
    margin-top: 0px;
    width: 57%;
  }

  .div-rating {
    display: none;
    padding: 10px 20px 10px;
  }
  .div-rating .label-cs {
    line-height: normal;
    margin-left: 0px;
    margin-top: 0px;
    width: 60%;
  }

  #requestForm .modal-dialog, .commentpopup .modal-dialog {
    width: 814px;
    margin-left: -407px;
  }

  #btadvisorform .form_row:nth-child(odd) {
    float: left;
    width: 50%;
    margin-bottom: 19px;
  }

  .profile-detail .info-section h3 {
    background: none;
    border-radius: 6px;
    cursor: default;
    margin-bottom: 10px;
    padding: 0;
  }
  .profile-detail .info-section h3:before {
    background: none;
  }
  .profile-detail .info-section .glossary {
    float: right;
    text-indent: 0px;
    padding-left: 20px;
    width: auto;
  }
  .profile-detail .info-section ul, .profile-detail .info-section p.no-record {
    display: block;
    margin-bottom: 20px;
  }

  .customer-view-comments a.info-icon,
  .dodont-link {
    position: relative;
    border-bottom: 0px;
    width: auto;
    padding-left: 26px;
    padding-top: 10px;
    border-bottom: 0px;
    float: right;
  }
  .customer-view-comments a.info-icon:before,
  .dodont-link:before {
    margin-left: 5px;
  }

  .displaycomments {
    padding-top: 0px;
  }

  .customer-view-comments .comment-section h5 i {
    float: right;
    display: inline-block;
  }
}
@media (min-width: 900px) {
  /*Added for the profile page*/
  .advisor-profile .profile-vcard .profile-pic, .advisor-profile .profile-vcard .profile-action, .advisor-profile .profile-vcard .profile-overview {
    display: inline-block;
  }
  .advisor-profile .profile-vcard .profile-pic {
    margin-right: 20px;
    vertical-align: top;
    width: 23%;
  }
  .advisor-profile .profile-vcard .profile-action {
    float: right;
    width: 22%;
  }
  .advisor-profile .profile-vcard .profile-overview {
    padding: 0 8px 0 0;
    width: 51%;
  }

  /* Profile Teaser Component */
  section.customer-stat {
    min-height: 300px;
  }
  section.customer-stat ul.rating-cs {
    list-style: none;
    text-align: center;
    clear: both;
    width: 100%;
    float: left;
  }
  section.customer-stat ul.rating-cs li {
    display: inline-block;
    list-style: none;
    vertical-align: top;
    padding: 2px;
    position: relative;
    width: 24%;
    min-height: 200px;
  }
  section.customer-stat ul.rating-cs li:first {
    padding-left: 20px;
  }
  section.customer-stat ul.rating-cs li span {
    display: block;
    text-align: center;
    width: 100px;
  }
  section.customer-stat ul.rating-cs li span.rating-meter {
    background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat 9px -922px transparent;
    display: block;
    height: 120px;
    line-height: 120px;
    margin: 0 auto;
    position: relative;
    width: 120px;
  }
}
/*
@media (min-width: 800px) {
	.section-results,
	.section-details {
		width: 60%;
	}

	.state2 #page-wrapper {
		left: 0%;
	}

	.state2 #page-wrapper .section-search,
	.state3 #page-wrapper .section-search {
		width: 40%;
	}

	.state3 #page-wrapper {
		left: -40%;
	}
	.state3 #page-wrapper .section-results {
		width: 40%;
	}
	.resultlist {
		width: 20em;
	}
	.state3 #page-wrapper .resultlist {
		width: 100%;
	}
	.advisor-profile .profile-vcard .profile-action {
		width: 30%;
	}
		
	
}
*/
/*This will work for 960 -1024 - 1119 */
@media (min-width: 960px) {
  .section-search, .section-results {
    width: 34%;
  }

  .state2 #page-wrapper {
    left: 0%;
  }
  .state2 #page-wrapper .section-search {
    width: 34%;
  }

  .state3 #page-wrapper {
    left: -50%;
  }
  .state3 #page-wrapper .section-results {
    width: 34%;
    width: 34%;
  }
  .state3 #page-wrapper .section-details {
    width: 66%;
  }

  /*Added for vc cs*/
  .div-rating-cs .label-cs, .div-rating .label-cs {
    height: 26px;
    padding-top: 5px;
    font-weight: bold;
  }

  #page-wrapper {
    background-position: 0px 0px;
  }
}
@media (min-width: 1121px) {
  .section-search, .section-results {
    width: 29%;
  }

  .section-details {
    width: 42%;
    max-width: 800px;
  }

  .state2 #page-wrapper, .state3 #page-wrapper {
    left: 0%;
  }

  .state2 #page-wrapper .section-search {
    width: 29%;
    left: 0px;
  }

  .state3 #page-wrapper {
    background-image: none;
  }
  .state3 #page-wrapper .section-search {
    width: 29%;
    left: 0px;
  }
  .state3 #page-wrapper .section-results {
    width: 29%;
  }
  .state3 #page-wrapper .section-details {
    width: 42%;
  }

  section.customer-stat {
    min-height: 500px;
  }
  section.customer-stat ul.rating-cs li {
    width: 48%;
  }
  section.customer-stat .rating-info {
    float: none;
  }

  .advisor-profile .profile-vcard {
    clear: both;
    padding-bottom: 20px;
    min-height: 208px;
  }
  .advisor-profile .profile-vcard .profile-overview {
    clear: both;
    float: none;
    padding-top: 20px;
    width: 100%;
  }
  .advisor-profile .profile-vcard .profile-pic {
    display: inline-block;
    float: left;
    width: 50%;
  }
  .advisor-profile .profile-vcard .profile-action {
    position: relative;
    width: 40%;
  }

  .profile-vcard .profile-overview dd {
    margin-left: 0px;
    padding-bottom: 5px;
  }
  .profile-vcard .profile-overview dd.language {
    display: inline-block;
    float: left;
  }
  .profile-vcard .profile-overview dd.address {
    clear: both;
    padding-top: 5px;
  }
  .profile-vcard .profile-overview dd.address strong {
    font-weight: bold;
  }
  .profile-vcard .profile-overview dd.phoneNumber {
    margin-top: 10px;
    padding-bottom: 2px;
  }
  .profile-vcard .profile-overview dd.phoneNumber a, .profile-vcard .profile-overview dd.emailAddress a {
    font-weight: bold;
  }

  .profile-vcard .profile-overview {
    zoom: 1;
  }
  .profile-vcard .profile-overview:before, .profile-vcard .profile-overview:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
  }
  .profile-vcard .profile-overview:after {
    clear: both;
  }
  .profile-vcard .profile-overview dd.address span {
    display: block;
  }
  .profile-vcard .profile-overview dd span.highlight {
    font-weight: bold;
  }
  .profile-vcard .profile-overview dt {
    display: none;
  }
  .profile-vcard .profile-overview dt.language {
    display: block;
    font-weight: bold;
    display: inline-block;
    float: left;
    padding-top: 10px;
  }

  .section-results ul li:hover {
    background-color: #0db8d2;
    cursor: pointer;
  }

  .customer-view-comments a.info-icon,
  .dodont-link {
    position: absolute;
    padding-top: 7px;
    padding-bottom: 10px;
    width: 100%;
    border-bottom: 1px solid #000;
    padding-left: 46px;
    background-image: none;
  }
  .customer-view-comments a.info-icon:before,
  .dodont-link:before {
    margin-left: 22px;
  }

  .displaycomments {
    padding-top: 40px;
  }
}
@media (min-width: 1280px) {
  .section-search, .section-results {
    width: 20em;
  }

  .section-details {
    width: 50%;
    max-width: 800px;
  }

  .state2 #page-wrapper, .state3 #page-wrapper {
    left: 0%;
  }

  .state2 #page-wrapper .section-search {
    width: 20em;
  }

  .state3 #page-wrapper {
    background-image: none;
  }
  .state3 #page-wrapper .section-search, .state3 #page-wrapper .section-results {
    width: 20em;
  }
  .state3 #page-wrapper .section-details {
    width: 50%;
  }

  section.customer-stat {
    min-height: 307px;
  }
  section.customer-stat ul.rating-cs li {
    width: 24%;
  }
  section.customer-stat .rating-info {
    clear: none;
    float: right;
    margin-top: 3px;
  }

  .advisor-profile .profile-vcard .profile-pic, .advisor-profile .profile-vcard .profile-action, .advisor-profile .profile-vcard .profile-overview {
    display: inline-block;
  }
  .advisor-profile .profile-vcard .profile-pic {
    margin-right: 20px;
    vertical-align: top;
    width: 23%;
  }
  .advisor-profile .profile-vcard .profile-pic > div {
    /*display: inline-block;
    border-radius: 6px;
    max-height: 160px;
    overflow: hidden;
    width: auto; */
    margin-bottom: 10px;
  }
  .advisor-profile .profile-vcard .profile-action {
    float: right;
    width: 22%;
  }
  .advisor-profile .profile-vcard .profile-overview {
    padding: 0 8px 0 0;
    width: 51%;
  }

  .customer-view-comments a.info-icon,
  .customer-view-comments a.info-icon,
  .dodont-link {
    position: relative;
    border-bottom: 0px;
    width: auto;
    padding-left: 26px;
    padding-top: 10px;
    float: right;
  }
  .customer-view-comments a.info-icon:before,
  .customer-view-comments a.info-icon:before,
  .dodont-link:before {
    margin-left: 5px;
  }

  .displaycomments {
    padding-top: 0px;
  }
}
@media (min-width: 1281px) {
  .section-search, .section-results {
    width: 25%;
  }

  .section-details {
    width: 50%;
    max-width: 800px;
  }

  .state2 #page-wrapper, .state3 #page-wrapper {
    left: 0%;
  }

  .state2 #page-wrapper .section-search {
    width: 25%;
  }

  .state3 #page-wrapper {
    background-image: none;
  }
  .state3 #page-wrapper .section-search {
    width: 25%;
  }
  .state3 #page-wrapper .section-details {
    width: 50%;
  }
  .state3 #page-wrapper .section-results {
    width: 25%;
  }
}
@media (min-width: 1440px) {
  .section-search, .section-results {
    width: 22em;
    float: left;
  }

  .section-details {
    width: 56%;
    max-width: 800px;
  }

  .state2 #page-wrapper, .state3 #page-wrapper {
    left: 0%;
  }

  .state2 #page-wrapper .section-search {
    width: 22em;
  }

  .state3 #page-wrapper {
    background-image: none;
  }
  .state3 #page-wrapper .section-search, .state3 #page-wrapper .section-results {
    width: 22em;
  }
}
@media (min-width: 1441px) {
  #header #header-main .inner, #header #header-sub .inner {
    margin: 0 auto;
  }

  .section-details {
    width: 55%;
    max-width: 800px;
  }

  #page-wrapper {
    margin: 0 auto;
  }

  .state3 #page-wrapper {
    background-image: none;
  }
}
.btn_search {
  display: block;
  padding: 0.5em 2em;
  background-color: #7b0040;
  color: #fff;
  width: 100%;
  max-width: 20em;
}

.btn_results {
  display: none;
  width: 100%;
  padding: 0.25em 2em;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  background-color: rgba(0, 0, 0, 0.1);
  line-height: 3em;
}

.state2 .breadcrumb > li.btn_back, .state3 .breadcrumb > li.btn_back {
  background: url("clientlibs_main/assets/styles/images/sprite-icons.png") no-repeat scroll -138px -443px transparent;
  padding-left: 20px;
  display: block;
}

@media (min-width: 640px) {
  .state2 .breadcrumb > li.btn_back {
    display: none;
  }
}
@media (min-width: 1121px) {
  .state2 .breadcrumb > li.btn_back, .state3 .breadcrumb > li.btn_back {
    display: none;
  }
}
.nameField, .portfolio-drop, .formComment {
  width: 100%;
  margin-bottom: 10px;
  display: block !important;
}

.overlayFix {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.overlayFix p {
  color: white;
  position: absolute;
  top: 40%;
  left: 50%;
  margin-left: -183px;
  font-size: 18px;
  font-weight: bold;
}

