body {
	font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}

p {
	margin: 0;
	padding: 0;
}

.spa-wraper {
	float: left;
	width: 100%;
	height: auto;
	padding-top: 60px;
	background: #FFF;
	min-height: 100vh;
}



.spa-list-container {
	width: 100%;
	max-width: 1230px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.spa-list-item {
  float: left;
  width: 100%;
  margin-bottom: 37px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.41);
-moz-box-shadow:    0px 0px 5px 0px rgba(50, 50, 50, 0.41);
box-shadow:         0px 0px 5px 0px rgba(50, 50, 50, 0.41);
}

.spa-profile-image {
	float: left;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.spa-profile-image img {
	width: 100%;
}

.sort-dropdown {
	float: right;
    width: 162px;
    height: 45px;
    margin-top: 8px;
    margin-bottom: 30px;
}

.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  border: 3px solid #333;
  border-radius: 0px;
  background: #F8F8F8;
  position: relative;
  overflow: hidden;
}

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 38px 0 10px;
  font-size: 12px;
  line-height: 32px;
  color: #444;
  height: 38px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric .button {
  display: block;
  position: absolute;
  right: 0;
  top: 2px;
  width: 38px;
  height: 36px;
  line-height: 38px;
  background-color: #F8f8f8;
  color: #BBB;
  text-align: center;
  font: 0/0 a;
  *font: 24px/42px Lucida Sans Unicode, Arial Unicode MS, Arial;
}

.selectric .button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #BBB;
  border-bottom: none;
}

.selectric-focus .selectric {
  border-color: #333;
}

.selectric-hover .selectric {
  border-color: #333;
}

.selectric-hover .selectric .button {
  color: #33;
}

.selectric-hover .selectric .button:after {
  border-top-color: #a2a2a2;
}

.selectric-open {
  z-index: 9999;
}

.selectric-open .selectric {
  border-color: #333;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
}

.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  top: 42px;
  left: 0;
  background: #F8F8F8;
  border-top: 0;
  border-bottom: 3px solid #333;
  border-left: 3px solid #333;
  border-right: 3px solid #333;
  z-index: 1;
  box-shadow: 0 0 10px -6px;
}

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  min-height: 20px;
}

.selectric-items li {
  display: block;
  padding: 10px;
  color: #666;
  cursor: pointer;
  text-transform: uppercase;
}

.selectric-items li.selected {
  background: #FFF;
  color: #444;
}

.selectric-items li.highlighted {
  background: #D0D0D0;
  color: #444;
}

.selectric-items li:hover {
  background: #f1f1f1;
  color: #444;
}

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: none;
  color: #444;
}

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}

.selectric-items .selectric-group li {
  padding-left: 25px;
}

.sort-by-txt {
	float: right;
	width: auto
	font-size16px;
	color: 333;
	margin-top: 30px;
	height: 45px;
	line-height: 44px;
  margin-right: 15px;
}

.spas-title {
	float: left;
	width: 100%;
	height: auto;
	font-size: 32px;
	color: #666;
	text-transform: uppercase;
	height: 45px;
	line-height: 44px;
	margin: 0;
	padding: 0;
	margin-top: 30px;
	font-weight: 400;
}

.spa-profile-details {
	float: left;
	width: 100%;
	height: auto;
	background: #FFF;
	padding: 0 15px;
	padding-bottom: 35px;
	border-bottom: 3px solid #007EE5;
}

.spa-profile-details h1 {
	float: left;
	width: 100%;
	font-size: 22px;
	color: #333;
	font-weight: 500;
	margin-top: 25px;
  min-height: 85px;
  overflow: hidden;
}

.spa-profile-details p {
	float: left;
	width: 100%;
	font-size: 13px;
	color: #333;
	margin-top: 7px;
  min-height: 60px;
}

.pagination-con {
	float: left;
	width: 100%;
  text-align: center;
  padding: 20px 0 15px;
}

.browse-more-spa {
  float: left;
  width: 100%;
  text-align: center;
  padding: 50px 0;
}

.browse-more-spa a {
  display: inline-block;
  width: 260px;
  height: 50px;
  background: #007EE5;
  text-align: center;
  line-height: 50px;
  font-size: 14px;
  color: #FFF;
}

.spa-list-footer {
  float: left;
  width: 100%;
  height: auto;
  background: #FFF;
  padding: 50px 0;
}

.spa-list-footer p {
  float: left;
  width: 100%;
  height: auto;
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.new-spa-filter-fixed {
  float: left;
  height: auto;
  margin: 40px 0 0;
  width: 298px;
  position: relative;
}

.new-spa-list-con {
  float: right;
  width: 900px;
}

.new-spa-connect-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  margin: 25px 0 0 0;
  width: 97px;
  height: 25px;
  line-height: 25px;
  padding:0;
  background: #D44836;
  border-radius: 5px;
  font-size: 12px;
  color: #FFF;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.05);
  -moz-box-shadow:    0px 2px 5px 0px rgba(50, 50, 50, 0.05);
  box-shadow:         0px 2px 5px 0px rgba(50, 50, 50, 0.05);
  text-align: center;
}

.new-spa-invite-btn {
  float: left;
  margin: 20px 0 0 0;
  width: 97px;
  height: 25px;
  line-height: 25px;
  padding:0;
  background:#2C82C9;
  border-radius: 5px;
  font-size: 12px;
  color: #FFF;
  border: 1px solid #2c82c9;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.05);
  -moz-box-shadow:    0px 2px 5px 0px rgba(50, 50, 50, 0.05);
  box-shadow:         0px 2px 5px 0px rgba(50, 50, 50, 0.05);
  text-align: center;
  cursor: pointer;
}

.new-course-prize {
  float: left;
  margin: 20px 0 0 0;
  width: auto;
  line-height: 25px;
  padding:0;
  background:#2C82C9;
  border-radius: 5px;
  font-size: 12px;
  color: #FFF;
  border: 1px solid #2c82c9;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.05);
  -moz-box-shadow:    0px 2px 5px 0px rgba(50, 50, 50, 0.05);
  box-shadow:         0px 2px 5px 0px rgba(50, 50, 50, 0.05);
  text-align: center;
  cursor: pointer;
  padding: 2px 10px;
}

.new-course-time {
  position: absolute;
  right: 10px;
  bottom: 10px;
  margin: 25px 0 0 0;
  line-height: 25px;
  padding:0;
  border-radius: 5px;
  font-size: 14px;
  color: #FFF;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.05);
  -moz-box-shadow:    0px 2px 5px 0px rgba(50, 50, 50, 0.05);
  box-shadow:         0px 2px 5px 0px rgba(50, 50, 50, 0.05);
  text-align: center;
  padding: 2px 5px;
  border-radius: 5px;
  background: #d44836;
}

.new-course-time:before {
  font-family: FontAwesome;
  content: "\f017";
  display: inline-block;
  padding-right: 5px;
  vertical-align: top;
}

/*.updated-home-inr-sec {
    margin: 0 auto;
    width: 1230px;
}*/


.new-course-mentor-fee {
  position: absolute;
  right: 15px;
  bottom: 15px;
  margin: 25px 0 0 0;
  line-height: 25px;
  padding:0;
  border-radius: 0;
  font-size: 14px;
  color: #FFF;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.05);
  -moz-box-shadow:    0px 2px 5px 0px rgba(50, 50, 50, 0.05);
  box-shadow:         0px 2px 5px 0px rgba(50, 50, 50, 0.05);
  text-align: center;
  padding: 2px 5px;
  background: #d44836;
}

.new-course-mentor-fee span {
  display: inline-block;
  border-left: 1px solid #FFF;
  line-height: 14px;
  padding-left: 5px;
}

.mentor-details h1 {
  text-align: center;
  min-height: 54px;
  max-height: 54px;
  overflow: hidden;
}

.mentor-details p {
  text-align: center;
}

.montor-book-now {
  float: left;
  width: 100%;
  height: auto;
  text-align: center;
}

.montor-book-now a {
  display: inline-block;
  padding: 5px 20px;
  font-size: 14px;
  color: #FFF;
  background: #007ee5;
  margin-top: 20px;
}

.adv-banner-con {
  float: left;
  width: 100%;
  margin-bottom: 40px;
  position: relative;
}

.adv-banner-con img {
  width: 100%;
}

.adv-banner-close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.latest-spa-list-container {
  width: 100%;
  max-width: 1111px;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

.latest-spa-list-con {
  float: left;
  width: 813px;
  margin-top: 40px;
  padding-left: 50px;
}

.latest-spa-list-row {
  float: left;
  width: 100%;
  height: auto;
  background: #FFF;
  border: 1px solid #ccc;
  margin-top: 20px;
  min-height: 177px;
}

.latest-spa-list-img {
  float: left;
  width:240px;
  height: auto;
}

.latest-spa-list-img img {
  width: 100%;
}

.latest-spa-list-details {
  float: left;
  width: 460px;
  height: auto;
  padding-left: 20px;
  border-left: 1px solid #ccc;
  padding-bottom: 10px;
  min-height: 177px;
}

.latest-spa-list-details h1 {
  float: left;
  width: 100%;
  border-bottom: 1px solid #ccc;
  font-size: 24px;
  font-weight: 600;
  color: #0070E5;
  margin-top: 5px;
  padding-bottom: 10px;
  margin-bottom: 5px;
}

.latest-spa-list-details h2 {
  float: left;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 24px;
}

.latest-spa-list-details h3 {
  float: left;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin-top: 0;
  line-height: 21px;
}

.latest-spa-list-details h4 {
  float: left;
  width: auto;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-top: 18px;
}

.latest-spa-list-details h4 span {
  font-weight: 400;
  border-left: 2px solid #9c9c9c;
  display: inline-block;
  line-height: 12px;
  padding-left: 5px;
  margin-left: 5px;
}

.latest-spa-list-hire {
  float: right;
  width: auto;
  height: auto;
  background: #92d050;
  padding: 3px 10px;
  font-size: 12px;
  color: #FFF;
  border: 0;
  margin-top: 10px;
  margin-right:15px;
}

.latest-spa-list-like {
  float: right;
  margin-top: 7px;
}

.latest-spa-list-like:before {
  font-family: FontAwesome;
  content: "\f004";
  display: inline-block;
  padding-right: 0;
  vertical-align: top;
  font-size: 20px;
  color: #bebebe;
}

.latest-spa-list-like:focus:before {
  color: #F00;
}

.latest-spa-list-con-inr {
  float: left;
  width: 100%;
  background: #FFF;
  padding: 0 20px 10px;
  margin-bottom: 50px;
}

.new-pagination-row {
  float: left;
  width: 100%;
  text-align: center;
}

.pagination > li {
  display: inline-block;
  margin: 0 10px;
  border-radius: 3px !important;
}

.pagination > li > a, .pagination > li > span {
  border: 0 !important;
  border-radius: 5px;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  background: #0070E5 !important;
  padding: 4px 10px;
}

.pagination > li > a, .pagination > li > span {
  background: none;
  color: #000;
  font-weight: 600;
  padding: 4px 10px;
}

.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
  background: none;
}

.spa-job-con {
  float: left;
  width: 100%;
  overflow: hidden;
  display: none;
  max-height: 530px;
  position: relative;
  padding-bottom: 30px;
}

.spa-job-row {
  float: left;
  width: 100%;
  height: auto;
  position: relative;
  border-bottom: 1px solid #ccc;
  margin-top: 0;
  padding: 20px 0;
}

.spa-job-row:last-child {
  border-bottom: 0;
}

.spa-job-col-larg {
  margin-right: 160px;
}

.spa-job-col-larg h1 {
  float: left;
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  color: #0070E5;
  margin-top: 0;
  padding-bottom: 10px;
  margin-bottom: 0;
}

.spa-job-col-larg p {
  float: left;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin-top: 0;
  line-height: 24px;
}

.spa-job-col-larg p a {
  color: #0070E5;
}

.spa-job-col-larg span {
  float: left;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin-top: 0;
  line-height: 24px;
}

.spa-job-col-larg span a {
  color: #0070E5;
  border-left: 1px solid #ccc;
  line-height: 14px;
  display: inline-block;
  padding-left: 5px;
  margin-left: 5px;
}

.spa-job-col-larg span a:before {
  font-family: FontAwesome;
  content: "\f0e0";
  display: inline-block;
  padding-right: 5px;
  vertical-align: top;
}

.spa-job-col-small {
  width: 150px;
  position: absolute;
  height: auto;
  right: 0;
}

.spa-job-apply {
  float: right;
  width: auto;
  height: auto;
  background: #e46c0a;
  padding: 3px 10px;
  font-size: 12px;
  color: #FFF;
  border: 0;
  margin-top: 0;
  margin-right:15px;
}

.spa-job-like {
  float: right;
  margin-top: -2px;
  margin-right: 10px;
}

.spa-job-like:before {
  font-family: FontAwesome;
  content: "\f004";
  display: inline-block;
  padding-right: 0;
  vertical-align: top;
  font-size: 20px;
  color: #bebebe;
}

.spa-job-like:focus:before {
  color: #F00;
}

.spa-job-see-more {
  position: absolute;
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  background: #0070E5;
  bottom: 0;
  color: #FFF;
  cursor: pointer;
}

.updated-my-talents-header {
  float: left;
  width: 100%;
  position: relative;
}

.talent-header-left {
  float: left;
  width: 580px;
  height: auto;
}

.updatednew-spa-listing-row {
  background: #FFF;
  margin-top: 20px !important;
  border: 1px solid #bfbfbf;
}

.updatednew-spa-listing-row:last-child {
  margin-bottom: 0 !important;
}

.updated-search-header {
  border-bottom: 0;
}

.search-no-result-inr {
    float: left;
    width: 100%;
    background: #e9eef3;
    padding: 0 20px 10px;
    margin-bottom: 50px;
    border-top: 2px solid #ccc;
    margin-top: 10px;
}

.no-result-img {
  float: left;
  width: 100%;
  height: auto;
  text-align: center;
  margin-top: 30px;
}

.search-no-result-inr h1 {
  float: left;
  width: 100%;
  text-align: center;
  font-size: 36px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.search-no-result-inr h2 {
  float: left;
  width: 100%;
  text-align: center;
  font-size: 16px;
  margin-top: 5px;
}

.no-result-reset {
  float: left;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.no-result-reset button {
  display: inline-block;
  background: #0070E5;
  padding: 8px 20px;
  font-size: 16px;
  color: #FFF;
  border: 0;
  border-radius: 3px;
}