/*
 * jquery.selectBoxIt.css 3.8.1
 * Author: @gregfranko
 */
/* 
  Common CSS Properties
  ---------------------
  These properties will be applied to any themes that you use
*/
/* SelectBoxIt container */
/* line 13, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-container {
  position: relative;
  display: block;
  vertical-align: top;
  background: #fff; }

/* Styles that apply to all SelectBoxIt elements */
/* line 21, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-container * {
  /* Prevents text selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  outline: none;
  white-space: nowrap; }

/* Button */
/* line 36, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-container .selectboxit {
  width: 100% !important;
  /* Width of the dropdown button */
  cursor: pointer;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  position: relative;
  border-radius: 0; }

/* line 50, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-text, .selectboxit-arrow-container {
  height: 46px;
  /* Height of the drop down */
  line-height: 46px;
  /* Vertically positions the drop down text */
  display: block; }

/* Height and Vertical Alignment of Text */
/* line 56, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-container .selectboxit-options a {
  height: 30px;
  /* Height of the drop down */
  line-height: 30px;
  /* Vertically positions the drop down text */
  display: block;
  -webkit-transition: all ease-out 0s;
  -o-transition: all ease-out 0s;
  transition: all ease-out 0s; }
  /* line 61, ../sass/plugin/_jquery-selectBoxIt.scss */
  .selectboxit-container .selectboxit-options a:hover {
    background-color: #dedede; }

/* Focus pseudo selector */
/* line 66, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-container .selectboxit:focus {
  outline: 0; }

/* Disabled Mouse Interaction */
/* line 71, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit.selectboxit-disabled, .selectboxit-options .selectboxit-disabled {
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  cursor: default; }

/* Button Text */
/* line 81, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-text {
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
  width: 100%;
  padding: 0 25px 0 5px; }

/* line 90, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit .selectboxit-option-icon-container {
  margin-left: 5px;
  float: left;
  width: 100%; }

/* Options List */
/* line 97, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-container .selectboxit-options {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  /* Minimum Width of the dropdown list box options */
  max-height: 240px;
  margin: 0;
  padding: 5px;
  list-style: none;
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
  display: none;
  z-index: 999;
  text-align: left;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  top: 100% !important; }

/* Individual options */
/* line 119, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-option .selectboxit-option-anchor {
  padding: 0 25px 0 2px; }

/* Individual Option Hover Action */
/* line 124, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-option .selectboxit-option-anchor:hover {
  text-decoration: none; }

/* Individual Option Optgroup Header */
/* line 129, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-option, .selectboxit-optgroup-header {
  font-size: 13px !important;
  text-indent: 5px;
  /* Horizontal Positioning of the select box option text */
  margin: 0;
  display: block !important;
  list-style-type: none; }

/* The first Drop Down option */
/* line 142, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-option-first {
  border-top-right-radius: 6px;
  border-top-left-radius: 6px; }

/* The first Drop Down option optgroup */
/* line 148, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-optgroup-header + .selectboxit-option-first {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px; }

/* The last Drop Down option */
/* line 154, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-option-last {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px; }

/* Drop Down optgroup headers */
/* line 160, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-optgroup-header {
  color: #282828;
  border-bottom: 1px solid #d9d9d9;
  font-weight: bold;
  line-height: 30px;
  height: 30px;
  display: block; }

/* Drop Down optgroup header hover psuedo class */
/* line 170, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-optgroup-header:hover {
  cursor: default; }

/* Drop Down down arrow container */
/* line 175, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-arrow-container {
  /* Positions the down arrow */
  width: 30px;
  position: absolute;
  right: 0; }

/* Drop Down down arrow */
/* line 183, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow {
  /* Horizontally centers the down arrow */
  margin: 0 auto;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0; }

/* Drop Down down arrow for jQueryUI and jQuery Mobile */
/* line 193, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow.ui-icon {
  top: 30%; }

/* Drop Down individual option icon positioning */
/* line 198, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-option-icon-container {
  float: left; }

/* line 202, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-container .selectboxit-option-icon {
  margin: 0;
  padding: 0;
  vertical-align: middle; }

/* Drop Down individual option icon positioning */
/* line 209, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-option-icon-url {
  width: 18px;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center;
  float: left; }

/* line 218, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-rendering {
  display: inline-block !important;
  *display: inline !important;
  zoom: 1 !important;
  visibility: visible !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important; }

/* jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
/* line 229, ../sass/plugin/_jquery-selectBoxIt.scss */
.jqueryui .ui-icon {
  background-color: inherit; }

/* Another jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
/* line 234, ../sass/plugin/_jquery-selectBoxIt.scss */
.jqueryui .ui-icon-triangle-1-s {
  background-position: -64px -16px; }

/*
  Default Theme
  -------------
  Note: Feel free to remove all of the CSS underneath this line if you are not using the default theme
*/
/* line 247, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-default-arrow {
  width: 0;
  height: 0;
  border-top: 4px solid #818286;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

/* line 255, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-list {
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -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); }

/* line 264, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-list .selectboxit-option-anchor {
  color: #333333; }

/* line 268, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
  background-image: none;
  font-family: 600; }

/* line 275, ../sass/plugin/_jquery-selectBoxIt.scss */
.selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {
  color: #999999; }

/* line 286, ../sass/plugin/_jquery-selectBoxIt.scss */
.form-group .selectboxit .selectboxit-arrow-container .selectboxit-arrow {
  top: 47%;
  right: 3px;
  left: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 5px solid #818286;
  pointer-events: none; }
/* line 295, ../sass/plugin/_jquery-selectBoxIt.scss */
.form-group .selectboxit-text, .form-group .selectboxit-arrow-container {
  height: 48px;
  line-height: 48px; }
/* line 299, ../sass/plugin/_jquery-selectBoxIt.scss */
.form-group .selectboxit-text {
  padding: 0 25px 0 5px;
  font-size: 14px; }
/* line 303, ../sass/plugin/_jquery-selectBoxIt.scss */
.form-group .selectboxit .selectboxit-arrow-container {
  max-height: 48px; }

/* line 313, ../sass/plugin/_jquery-selectBoxIt.scss */
.form-pst-requirement .form-group > .selectboxit-container .selectboxit {
  border: 0;
  border-radius: 3px;
  box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15);
  height: 48px; }

/* line 5, ../sass/signup.scss */
.rmv-pd {
  padding: 0; }

/* line 9, ../sass/signup.scss */
.login-page {
  background: #f3f3f3; }

/* line 13, ../sass/signup.scss */
.inner-header {
  border-bottom: 1px solid #ededed; }

@media screen and (orientation: portrait) {
  /* line 17, ../sass/signup.scss */
  .log-tab {
    position: absolute;
    width: 100%;
    padding: 0 15px;
    left: 0;
    top: 28px;
    max-height: 100%;
    overflow: auto; } }
@media screen and (max-width: 480px) {
  /* line 17, ../sass/signup.scss */
  .log-tab {
    padding: 0;
    padding-bottom: 50px; } }
/* line 32, ../sass/signup.scss */
.log-tab .login-left i.icon-left-arrow {
  position: absolute;
  left: 15px;
  top: 0;
  font-size: 20px;
  font-weight: 700; }

/* line 42, ../sass/signup.scss */
.login {
  padding-top: 28px; }
  /* line 44, ../sass/signup.scss */
  .login h3 {
    font-size: 24px;
    color: #fff;
    margin: 10px 0 12px 0;
    font-weight: 300; }
  /* line 50, ../sass/signup.scss */
  .login h4 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 45px 0 0; }
  /* line 56, ../sass/signup.scss */
  .login .sign-log-tab {
    font-size: 14px;
    color: #818286;
    font-weight: 400;
    display: block;
    margin: 0; }
    /* line 62, ../sass/signup.scss */
    .login .sign-log-tab a {
      font-size: 14px;
      display: inline-block;
      font-weight: 400;
      text-transform: uppercase;
      color: #282828;
      margin-left: 5px;
      vertical-align: 0;
      padding: 0;
      background-color: transparent;
      border: none; }
  /* line 75, ../sass/signup.scss */
  .login p {
    color: #818286;
    font-size: 13px;
    text-align: center; }

/* line 82, ../sass/signup.scss */
.col-xs-4.rmv-pd {
  padding: 0 4%; }

/* line 86, ../sass/signup.scss */
.sign-tab {
  margin: -28px -15px 0; }

/* line 92, ../sass/signup.scss */
.rmv-pd {
  padding: 0; }

/* line 96, ../sass/signup.scss */
.remeber {
  margin-bottom: 15px; }

/* line 100, ../sass/signup.scss */
.forgot {
  display: block;
  color: #282828;
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 14px; }

/* line 108, ../sass/signup.scss */
.log-bx {
  padding: 20px 15px 0; }

/* line 112, ../sass/signup.scss */
i.icon-back-login:before {
  content: "\e900";
  color: #fff; }

/* line 117, ../sass/signup.scss */
.sign-features {
  margin-bottom: 80px; }
  @media screen and (max-width: 998px) {
    /* line 117, ../sass/signup.scss */
    .sign-features {
      margin-bottom: 12px; } }
  /* line 122, ../sass/signup.scss */
  .sign-features li {
    padding-left: 60px;
    padding-bottom: 18px;
    position: relative; }
    /* line 126, ../sass/signup.scss */
    .sign-features li::before {
      position: absolute;
      left: 0;
      top: 5px; }
    /* line 132, ../sass/signup.scss */
    .sign-features li.save-time::before {
      width: 33px;
      height: 34px; }
    /* line 138, ../sass/signup.scss */
    .sign-features li.access-files::before {
      width: 36px;
      height: 25px; }
    /* line 144, ../sass/signup.scss */
    .sign-features li.track::before {
      width: 37px;
      height: 36px; }
    /* line 150, ../sass/signup.scss */
    .sign-features li.post-property::before {
      width: 32px;
      height: 32px; }
    /* line 155, ../sass/signup.scss */
    .sign-features li .feature-head {
      font: 20px 600;
      color: #606060; }
    /* line 159, ../sass/signup.scss */
    .sign-features li p {
      margin-top: 5px;
      color: #818286; }

/* line 168, ../sass/signup.scss */
.or {
  position: relative;
  height: 16px;
  border-bottom: 1px solid #dadada;
  margin-bottom: 14px;
  margin-top: 20px;
  float: left;
  width: 100%; }
  /* line 176, ../sass/signup.scss */
  .or span {
    display: block;
    height: 30px;
    width: 30px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    color: #a3a3a3;
    background: #f8f8f8;
    border: 1px solid #dadada;
    font-size: 12px;
    line-height: 28px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px; }

/* line 195, ../sass/signup.scss */
.message_validation {
  position: absolute;
  left: 0;
  padding: 3px 10px;
  background: #282828;
  font-size: 11px;
  color: #fff;
  white-space: normal;
  top: inherit;
  bottom: 5px;
  transform: translateY(100%);
  margin: 0 5px; }
  /* line 207, ../sass/signup.scss */
  .message_validation::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #282828;
    top: -5px;
    left: 5px;
    position: absolute; }

/* line 221, ../sass/signup.scss */
#listHeaderTabs {
  padding: 0; }
  /* line 223, ../sass/signup.scss */
  #listHeaderTabs ul {
    margin: 15px -15px -17px -15px; }
    /* line 14, ../sass/bootstrap/mixins/_clearfix.scss */
    #listHeaderTabs ul:before, #listHeaderTabs ul:after {
      content: " ";
      display: table; }
    /* line 19, ../sass/bootstrap/mixins/_clearfix.scss */
    #listHeaderTabs ul:after {
      clear: both; }
    /* line 226, ../sass/signup.scss */
    #listHeaderTabs ul li {
      display: block;
      float: left;
      width: 50%;
      text-align: center; }
      /* line 231, ../sass/signup.scss */
      #listHeaderTabs ul li a {
        padding: 10px 5px 9px;
        display: block;
        text-align: center;
        color: #fff;
        opacity: 0.7;
        border-bottom: 3px solid transparent;
        padding-bottom: 8px; }
      /* line 241, ../sass/signup.scss */
      #listHeaderTabs ul li.active a {
        opacity: 1;
        border-color: #ffc413;
        background: none; }

/* line 252, ../sass/signup.scss */
.to-login h6 {
  margin: 12px 0 0 0; }

/* Base for label styling */
/* line 259, ../sass/signup.scss */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px; }

/* line 265, ../sass/signup.scss */
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  color: #818286;
  font: normal 14px/1 "Source Sans Pro", sans-serif; }

/* checkbox aspect */
/* line 276, ../sass/signup.scss */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 2px; }

/* checked mark aspect */
/* line 291, ../sass/signup.scss */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: "\2714";
  position: absolute;
  top: 8px;
  left: 3px;
  font-size: 11px;
  color: #fff;
  transition: all .2s; }

/* checked mark aspect changes */
/* line 304, ../sass/signup.scss */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0); }

/* line 309, ../sass/signup.scss */
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1); }

/* line 314, ../sass/signup.scss */
[type="checkbox"]:checked + label:before {
  background: #1c3e95;
  border-color: #1c3e95; }

/* line 319, ../sass/signup.scss */
.terms-of-use {
  margin-top: 10px;
  margin-bottom: 5px; }

/* line 324, ../sass/signup.scss */
.submitrow {
  margin: 10px 0 20px 0; }

/* line 328, ../sass/signup.scss */
#submitSignup {
  font-size: 18px; }

/* line 333, ../sass/signup.scss */
.login-btm [type="checkbox"]:not(:checked) + label,
.login-btm [type="checkbox"]:checked + label {
  padding-left: 25px; }
/* line 337, ../sass/signup.scss */
.login-btm [type="checkbox"]:not(:checked) + label:before,
.login-btm [type="checkbox"]:checked + label:before {
  top: -3px; }
/* line 341, ../sass/signup.scss */
.login-btm [type="checkbox"]:not(:checked) + label:after,
.login-btm [type="checkbox"]:checked + label:after {
  top: 0; }
/* line 345, ../sass/signup.scss */
.login-btm .forgot,
.login-btm .back {
  color: #282828;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 15px;
  display: block;
  text-align: center; }

/* line 357, ../sass/signup.scss */
.forgot-section {
  display: none; }

/* line 361, ../sass/signup.scss */
.login-area {
  margin-bottom: 10px; }

/* line 365, ../sass/signup.scss */
.placeholder {
  color: #aaa; }

/* line 370, ../sass/signup.scss */
.log-bx .message_error {
  border-radius: 0px;
  color: #332f2e;
  text-align: left;
  padding: 15px 15px;
  font-family: "Source Sans Pro", sans-serif; }

/* line 380, ../sass/signup.scss */
.login .sign-log-tab {
  font-family: "Source Sans Pro", sans-serif; }

/* line 384, ../sass/signup.scss */
.signup-message {
  padding-bottom: 50px;
  text-align: center; }
  /* line 387, ../sass/signup.scss */
  .signup-message .verify-head {
    font-size: 18px;
    padding-right: 18px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid #e7e7e7;
    display: block;
    color: #282828; }
  /* line 396, ../sass/signup.scss */
  .signup-message .one-time-label {
    font-size: 14px;
    padding-top: 15px;
    display: block;
    color: #555; }
  /* line 402, ../sass/signup.scss */
  .signup-message .otp {
    position: relative;
    margin-top: 0; }
    /* line 405, ../sass/signup.scss */
    .signup-message .otp input {
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0;
      width: 100%; }
  /* line 410, ../sass/signup.scss */
  .signup-message .confrim-btn-nw {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin: 0; }

/* line 418, ../sass/signup.scss */
.form-control,
.captcha {
  border-radius: 3px; }

/* line 423, ../sass/signup.scss */
.login .sign-log-tab {
  margin-right: 0; }

/* line 427, ../sass/signup.scss */
#content-container {
  min-height: auto; }

/* line 431, ../sass/signup.scss */
.log-in-link {
  font-weight: 500;
  vertical-align: -2px; }

/* line 436, ../sass/signup.scss */
.OTP-wrap .otp-block .close {
  color: #282828; }

/* line 442, ../sass/signup.scss */
.sign-features li {
  position: relative; }
  /* line 444, ../sass/signup.scss */
  .sign-features li:after {
    width: 55px;
    height: 57px;
    content: '';
    position: absolute;
    left: 0;
    top: 0; }
/* line 453, ../sass/signup.scss */
.sign-features .home-sell::after {
  /*background-image: url("../icon_01.png");*/
  background: url("../images/login-sprite.png") no-repeat -6px -6px; }
/* line 458, ../sass/signup.scss */
.sign-features .verified::after {
  /*background-image: url("../icon_01.png");*/
  background: url("../images/login-sprite.png") no-repeat -63px -3px;
  top: -6px; }
/* line 464, ../sass/signup.scss */
.sign-features .social-reach::after {
  /*background-image: url("../icon_01.png");*/
  background: url("../images/login-sprite.png") no-repeat -118px -7px; }
/* line 469, ../sass/signup.scss */
.sign-features .find-new::after {
  /*background-image: url("../icon_01.png");*/
  background: url("../images/login-sprite.png") no-repeat -172px -8px;
  top: -9px; }

/* line 476, ../sass/signup.scss */
.captcha-image {
  float: left;
  width: 43%;
  border: 1px solid #ccc;
  height: 41px;
  background: #fff;
  border-radius: 3px; }
  /* line 483, ../sass/signup.scss */
  .captcha-image img {
    padding: 5px;
    max-width: 70%;
    height: 100%; }
  /* line 488, ../sass/signup.scss */
  .captcha-image .reload-captcha {
    float: right;
    height: 25px;
    margin-right: 3px;
    margin-top: 5px;
    width: 25px;
    cursor: pointer; }
    /* line 495, ../sass/signup.scss */
    .captcha-image .reload-captcha::before {
      height: 19px;
      width: 25px; }

/* line 502, ../sass/signup.scss */
.social-section {
  margin-top: 15px; }

/* line 507, ../sass/signup.scss */
.OTP-msg .skip {
  max-width: 106px;
  display: inline-block;
  vertical-align: top;
  border: none;
  margin-top: 5px;
  font-weight: 600;
  color: #282828; }
/* line 516, ../sass/signup.scss */
.OTP-msg .otp-bottom {
  color: #555;
  font-size: 14px;
  margin-bottom: 15px; }
  /* line 520, ../sass/signup.scss */
  .OTP-msg .otp-bottom button {
    background: none;
    border: none;
    color: #1c3e95; }

/* line 528, ../sass/signup.scss */
#emailVrfctnMsgDiv,
#emailVrfctnExprd,
#emlExst,
#vrfyEml,
#vrfyEmlLnk,
#vrfctnLnkExprd {
  font-size: 14px;
  color: #818286; }
  /* line 536, ../sass/signup.scss */
  #emailVrfctnMsgDiv #emailID,
  #emailVrfctnExprd #emailID,
  #emlExst #emailID,
  #vrfyEml #emailID,
  #vrfyEmlLnk #emailID,
  #vrfctnLnkExprd #emailID {
    color: #282828; }
  /* line 539, ../sass/signup.scss */
  #emailVrfctnMsgDiv h1,
  #emailVrfctnExprd h1,
  #emlExst h1,
  #vrfyEml h1,
  #vrfyEmlLnk h1,
  #vrfctnLnkExprd h1 {
    height: 47px;
    border-color: transparent;
    box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    padding: 10px 12px;
    color: #818286;
    background-color: #fff;
    background-image: none;
    font-weight: 400; }
  /* line 550, ../sass/signup.scss */
  #emailVrfctnMsgDiv p,
  #emailVrfctnExprd p,
  #emlExst p,
  #vrfyEml p,
  #vrfyEmlLnk p,
  #vrfctnLnkExprd p {
    font-size: 14px; }
    /* line 552, ../sass/signup.scss */
    #emailVrfctnMsgDiv p span,
    #emailVrfctnExprd p span,
    #emlExst p span,
    #vrfyEml p span,
    #vrfyEmlLnk p span,
    #vrfctnLnkExprd p span {
      color: #282828; }
  /* line 556, ../sass/signup.scss */
  #emailVrfctnMsgDiv a,
  #emailVrfctnExprd a,
  #emlExst a,
  #vrfyEml a,
  #vrfyEmlLnk a,
  #vrfctnLnkExprd a {
    display: inline-block;
    margin-top: 10px; }

@media screen and (max-width: 650px) {
  /* line 562, ../sass/signup.scss */
  .col-xs-6 {
    width: 100%; } }

/* line 568, ../sass/signup.scss */
.subscription {
  margin-bottom: 10px; }

@media screen and (max-width: 400px) {
  /* line 572, ../sass/signup.scss */
  .signup-tab li a {
    font-size: 15px;
    padding: 5px 15px 3px; } }
@media screen and (max-width: 320px) {
  /* line 572, ../sass/signup.scss */
  .signup-tab li a {
    font-size: 14px;
    padding: 5px 10px 3px; } }

@media screen and (max-width: 768px) {
  /* line 583, ../sass/signup.scss */
  .large-col-left {
    padding-left: 15px; } }

@media screen and (max-width: 768px) {
  /* line 589, ../sass/signup.scss */
  .login-btm .col-xs-6 {
    width: 50%; } }

@media screen and (max-width: 350px) {
  /* line 595, ../sass/signup.scss */
  .g_sign,
  .f_sign {
    height: 36px;
    background-size: 100%; } }
@media screen and (max-width: 320px) {
  /* line 595, ../sass/signup.scss */
  .g_sign,
  .f_sign {
    height: 31px; } }

@media screen and (max-width: 350px) {
  /* line 606, ../sass/signup.scss */
  .f_sign img {
    width: 100%;
    height: 35px; } }

/* line 613, ../sass/signup.scss */
.bx-controls-direction {
  display: none; }

/* line 617, ../sass/signup.scss */
#indGooglePlsFac .row .col-xs-6 {
  text-align: center; }

/* line 621, ../sass/signup.scss */
.login-panel .btn {
  width: 100%;
  height: 42px;
  margin-bottom: 15px;
  font: 16px 600; }

/* line 628, ../sass/signup.scss */
.f_log {
  background: url(../images/fb.svg) no-repeat 0 0;
  background-size: 100%;
  padding: 0 0 0 0;
  height: 44px;
  width: 35px;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle; }

/* line 640, ../sass/signup.scss */
.g_log {
  background: url(../images/google.svg) no-repeat -1px 0;
  background-size: 100%;
  padding: 0 0 0 0;
  height: 44px;
  width: 35px;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px; }

/* line 653, ../sass/signup.scss */
.l_log {
  background: url(../images/linkedin.png) no-repeat 0 0;
  background-size: 100%;
  padding: 0 0 0 0;
  height: 44px;
  width: 35px;
  font-size: 15px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle; }

/* line 665, ../sass/signup.scss */
.f_log {
  margin-right: 5px; }
  /* line 667, ../sass/signup.scss */
  .f_log a {
    display: block;
    width: 100%;
    height: 100%; }

/* line 674, ../sass/signup.scss */
.orwith {
  color: #818286;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 8px; }

/* line 682, ../sass/signup.scss */
.login-section .form-control {
  height: 47px;
  border-color: transparent;
  box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15);
  font-size: 14px; }
/* line 688, ../sass/signup.scss */
.login-section [type="checkbox"]:not(:checked) + label,
.login-section [type="checkbox"]:checked + label {
  font-size: 14px;
  font-weight: 400;
  padding-left: 22px;
  border-color: #ababab; }
/* line 695, ../sass/signup.scss */
.login-section [type="checkbox"]:not(:checked) + label:before,
.login-section [type="checkbox"]:checked + label:before {
  top: -2px; }
/* line 699, ../sass/signup.scss */
.login-section [type="checkbox"]:not(:checked) + label:after,
.login-section [type="checkbox"]:checked + label:after {
  top: -1px; }
/* line 703, ../sass/signup.scss */
.login-section .btn {
  font-size: 16px; }
/* line 706, ../sass/signup.scss */
.login-section .remeber {
  margin-top: -8px; }

/* line 712, ../sass/signup.scss */
.tab-content.login-section [type="checkbox"]:not(:checked) + label,
.tab-content.login-section .login-section [type="checkbox"]:checked + label {
  font-size: 14px;
  color: #282828; }
  /* line 716, ../sass/signup.scss */
  .tab-content.login-section [type="checkbox"]:not(:checked) + label span,
  .tab-content.login-section .login-section [type="checkbox"]:checked + label span {
    color: #818286; }

/* line 723, ../sass/signup.scss */
.forgot-section .form-control {
  height: 47px;
  border-color: transparent;
  box-shadow: 0 2px 3px -1px rgba(0, 0, 0, 0.15);
  font-size: 14px; }
/* line 729, ../sass/signup.scss */
.forgot-section .btn {
  font-size: 18px; }

/* line 734, ../sass/signup.scss */
.intl-tel-input .selected-flag .iti-arrow {
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: 4px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #818286; }

/* line 745, ../sass/signup.scss */
.iti-mobile .intl-tel-input.iti-container {
  top: 30px;
  bottom: 30px;
  left: 30px;
  right: 30px;
  position: fixed;
  overflow: auto; }
  /* line 752, ../sass/signup.scss */
  .iti-mobile .intl-tel-input.iti-container .country-list {
    max-height: none; }
