/** 
 * General styles for whole project privatniksam.rs
 * Only styles that applies to whole project can be found here
 * "_constants.scss" contains all necessary constants and must be included
 */
/**
 * Constants for whole project privatniksam.rs
 * These contants is being used in general.scss and other scss
 */
/** General constants */
/** Color constants */
/** Font constants */
/** Image constants */
/** Grid and responsive constants */
/** Mixins */
/* Mixin for combination of fixed and fluid layout
 * Make sure that HTML elements are placed in order of appearance from left to right
 * Also make sure to put fluid content inside .ps-inner div
 * $type - can be fixed or fluid, depends on design
 * $fluid-position - can be left or right depends on fluid element position
 * $width - width of fixed element
 * $margin - margin between fluid and fixed element
 */
/**
 * Mixin for vertical align image or one line of text
 * $height - height of centainer element
 */
/**
 * Mixin for CSS arrow (triangle)
 * 
 */
/** Functions */
/** Fixes */
header, nav, section, article, aside, footer {
  display: block; }

#outer-wrap {
  position: relative;
  overflow: hidden;
  width: 100%; }

#inner-wrap {
  position: relative;
  width: 100%; }

/** Default elements */
body {
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  background-color: #EFEFF3;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #353538; }

a {
  color: #5782B1;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }

p, .p {
  font-size: 14px;
  line-height: 1.5;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #353538; }
  @media screen and (max-width: 770px) {
    p, .p {
      font-size: 12px; } }

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.clearfix {
  /*display: inline-block;*/ }

html[xmlns] .clearfix {
  display: block; }

* html .clearfix {
  height: 1%; }

.clear {
  clear: both; }

h1 {
  font-weight: 300;
  font-size: 40px;
  line-height: 46px; }

h2 {
  font-size: 40px;
  line-height: 45px;
  font-weight: 200;
  color: #4d4d52; }
  h2 a {
    color: #4d4d52; }
    h2 a:hover {
      text-decoration: none;
      color: #141418; }

h3 {
  font-size: 34px;
  line-height: 42px;
  font-weight: 200;
  margin-top: 0;
  color: #4d4d52; }
  h3 a {
    color: #4d4d52; }
    h3 a:hover {
      text-decoration: none;
      color: #141418; }

h4, .h4 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: #353538;
  margin-top: 0;
  display: block; }

form fieldset {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  margin: 0;
  padding: 0; }
form .form-note {
  font-size: 13px;
  line-height: 18px;
  color: #66666c; }
  form .form-note a {
    font-weight: bold; }
form .form-row {
  margin-bottom: 8px;
  position: relative; }

input, button, textarea {
  -webkit-border-radius: 2px 2px 2px 2px;
  -moz-border-radius: 2px 2px 2px 2px;
  -ms-border-radius: 2px 2px 2px 2px;
  -o-border-radius: 2px 2px 2px 2px;
  border-radius: 2px 2px 2px 2px;
  font-size: 14px;
  line-height: 16px;
  padding: 11px 16px;
  outline: none;
  margin: 0;
  vertical-align: top;
  border: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #4d4d52;
  /*background: url(../img/ps-registration-sprite.png) no-repeat right top #fff;*/ }

input[type=text], input[type=password], input[type=email], textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: solid 1px #DCDCE1;
  width: 100%;
  margin-bottom: 10px; }

input[type=radio] {
  width: 24px;
  height: 24px; }

input[type=email] {
  background-position: right -79px; }

input[type=password] {
  background-position: right -119px; }

input[type=file] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border: solid 1px #DCDCE1;
  padding: 9px 10px;
  margin-bottom: 10px; }

select {
  width: 100%; }

div:not(#foo) > input[type='checkbox'] {
  opacity: 0;
  float: left;
  width: 21px;
  height: 21px;
  cursor: pointer; }

div:not(#foo) > input[type='checkbox'] + label {
  margin: 0 0 10px -21px;
  clear: none;
  padding: 0px 0 0px 27px;
  cursor: pointer;
  background: url(../img/ps-checkbox.png) left top no-repeat;
  display: inline-block;
  line-height: 21px; }

div:not(#foo) > input[type='checkbox']:checked + label {
  background-position: 0 -21px; }

.btn {
  -webkit-border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -ms-border-radius: 3px 3px 3px 3px;
  -o-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: #5782B1;
  display: inline-block;
  color: white;
  text-decoration: none;
  padding: 5px 20px;
  border: none;
  cursor: pointer;
  line-height: 25px;
  font-weight: 500;
  font-size: 14px; }
  .btn:hover {
    background: #42709C;
    text-decoration: none; }
  .btn.btn-right {
    float: right; }

.btn-big {
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  padding: 10px 25px; }

.btn-disabled, .btn[disabled] {
  cursor: default;
  background: #99999d; }
  .btn-disabled:hover, .btn[disabled]:hover {
    background: #99999d; }

.btn-square {
  background: #5782B1;
  border: none;
  color: white; }
  .btn-square:hover {
    background: #42709C; }

.btn-silver {
  background: #fff;
  background: -moz-linear-gradient(top, #fff 0%, #f3f3f6 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #f3f3f6));
  background: -webkit-linear-gradient(top, #fff 0%, #f3f3f6 100%);
  background: -o-linear-gradient(top, #fff 0%, #f3f3f6 100%);
  background: -ms-linear-gradient(top, #fff 0%, #f3f3f6 100%);
  background: linear-gradient(to bottom, #fff 0%, #f3f3f6 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$first-color', endColorstr='$second-color',GradientType=0 );
  border: solid 1px #dcdce1;
  color: #808084;
  cursor: default; }
  .btn-silver:hover {
    background: #f3f3f6;
    text-decoration: none; }

.btn-green {
  background: #7CB342; }
  .btn-green:hover {
    background: #558B2F; }

.btn-row {
  margin-top: 20px; }
  .btn-row .btn {
    float: right; }
  .btn-row .ps-secondary-link {
    font-weight: 500;
    text-transform: uppercase;
    padding: 5px 20px;
    border: none;
    line-height: 25px;
    color: #808084; }
    .btn-row .ps-secondary-link:hover {
      color: #353538;
      text-decoration: none; }

i.icon-sorting {
  background: url(../img/ps-sorting-icon.png) no-repeat center;
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
  margin-left: -8px; }

.ps-secondary-link {
  float: right;
  line-height: 36px; }

.ps-date {
  color: #808084;
  float: left; }

.like-box {
  display: inline-block;
  margin-left: 1px;
  vertical-align: top; }
  .like-box .like-btn {
    display: inline-block;
    width: 34px;
    height: 34px;
    vertical-align: top;
    cursor: pointer;
    border-radius: 3px;
    position: relative;
    background-color: #7CB342; }
    .like-box .like-btn:after {
      content: "\f164";
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      line-height: 34px;
      font-size: 18px;
      color: #fff;
      text-align: center;
      font-family: FontAwesome; }
    .like-box .like-btn:hover {
      background-color: #558B2F; }
  .like-box .like-counter {
    display: inline-block;
    border: solid 1px #DCDCE1;
    background: #fff;
    font-size: 11px;
    line-height: 32px;
    padding: 0 4px;
    color: #4d4d52;
    margin-left: 2px;
    position: relative; }
    .like-box .like-counter:after, .like-box .like-counter:before {
      right: 100%;
      top: 50%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none; }
    .like-box .like-counter:after {
      border-color: rgba(220, 220, 225, 0);
      border-right-color: #fbfbfb;
      border-width: 5px;
      margin-top: -5px; }
    .like-box .like-counter:before {
      border-color: rgba(251, 251, 251, 0);
      border-right-color: #DCDCE1;
      border-width: 6px;
      margin-top: -6px; }

.rating-holder .fa {
  margin: 0;
  color: #66666c;
  font-size: 13px; }
.rating-holder span {
  color: #66666c;
  vertical-align: bottom; }

.rating-box {
  display: inline-block;
  font-size: 24px;
  unicode-bidi: bidi-override;
  padding-right: 7px;
  vertical-align: bottom;
  margin-bottom: 3px; }
  .rating-box:hover, .rating-box:active, .rating-box:focus {
    text-decoration: none !important; }
  .rating-box > span {
    float: left;
    position: relative;
    color: #7CB342;
    font-size: 25px; }
    .rating-box > span:hover, .rating-box > span:active, .rating-box > span:focus {
      text-decoration: none !important; }
  .rating-box > span.active:before {
    text-decoration: none !important;
    content: "\2605";
    position: absolute; }

.rating-box.rating-action {
  float: none;
  margin-top: 0;
  font-size: 30px; }
  .rating-box.rating-action > span.active:before {
    text-decoration: none !important;
    content: "\2605";
    position: absolute; }

.rating-review-counter {
  display: inline-block;
  background: url(../img/rating_user_count.png) no-repeat;
  width: 22px;
  height: 24px;
  margin-left: 11px;
  color: #fff;
  font-size: 11px;
  line-height: 22px;
  text-align: center;
  vertical-align: text-bottom;
  margin-bottom: -2px; }
  .rating-review-counter:hover {
    text-decoration: none; }

.svg .rating-review-counter {
  background-image: url(../img/rating_user_count.svg); }

.enterprise-last-activity {
  font-size: 13px;
  color: #bbb;
  margin: 9px 0 0 0;
  float: right;
  vertical-align: middle;
  line-height: 12px;
  text-align: right; }
  .enterprise-last-activity i {
    margin-left: 0; }
  @media screen and (max-width: 770px) {
    .enterprise-last-activity {
      float: none;
      text-align: left;
      margin: 4px 0 6px 0;
      display: inline-block; } }

.hidden {
  display: none; }

.image-helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.big-screen {
  display: none; }
  @media screen and (min-width: 1050px) {
    .big-screen {
      display: block; } }

.small-screen {
  display: none; }
  @media screen and (max-width: 1050px) {
    .small-screen {
      display: block; } }

/** Helpers **/
.m-b-m {
  margin-bottom: 20px; }

.m-t-m {
  margin-top: 20px; }

/** Grid */
.holder {
  width: 100%;
  padding: 30px 0;
  margin: 0;
  border-bottom: solid 1px #DCDCE1;
  background: white; }

.holder-content {
  padding-bottom: 80px; }
  @media (max-width: 1050px) {
    .holder-content {
      padding-bottom: 40px; } }

.holder-gray {
  background: #EFEFF3; }

.container {
  width: 1380px;
  margin: auto; }
  @media (max-width: 1410px) {
    .container {
      width: 1230px; } }
  @media (max-width: 1260px) {
    .container {
      width: 978px; } }
  @media screen and (max-width: 1050px) {
    .container {
      width: 90%; } }
  .container.container-table {
    display: table; }
    @media screen and (max-width: 1050px) {
      .container.container-table {
        display: block; } }

.left-container {
  width: 1050px;
  margin-right: 30px;
  float: left; }
  @media screen and (max-width: 1410px) {
    .left-container {
      width: 900px; } }
  @media screen and (max-width: 1260px) {
    .left-container {
      width: 100%;
      float: none; } }

.right-container {
  width: 300px;
  float: right; }
  @media screen and (max-width: 1260px) {
    .right-container {
      float: none;
      margin-bottom: 20px;
      width: auto; } }

.ps-inner {
  margin-left: 30px; }
  @media screen and (max-width: 1260px) {
    .ps-inner {
      margin-left: 0; } }

/** BOX (ent, post, ad) */
.box {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: white;
  -moz-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  margin-bottom: 30px; }
  .box:hover {
    border-color: #d3d3dd; }
  .box .box-top .box-image {
    float: left;
    vertical-align: middle;
    text-align: center;
    border: none;
    width: 300px;
    height: 120px;
    overflow: hidden;
    padding: 20px 20px 0 20px;
    margin: 0 0 20px 0;
    white-space: nowrap; }
    .box .box-top .box-image:hover {
      text-decoration: none; }
    @media screen and (max-width: 770px) {
      .box .box-top .box-image {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: none;
        padding-left: 0; } }
    .box .box-top .box-image img {
      border: none;
      /*vertical-align: middle;*/ }
      @media screen and (max-width: 770px) {
        .box .box-top .box-image img {
          max-width: 180px; } }
    .box .box-top .box-image span:hover {
      text-decoration: none; }
  .box .box-top .box-content {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
    overflow: hidden; }
    @media screen and (max-width: 770px) {
      .box .box-top .box-content {
        display: block;
        margin-left: 0; } }
    .box .box-top .box-content .box-header .box-date {
      width: 150px;
      float: left;
      vertical-align: top;
      margin-bottom: 5px; }
      @media screen and (max-width: 770px) {
        .box .box-top .box-content .box-header .box-date {
          line-height: 16px; } }
      @media screen and (max-width: 450px) {
        .box .box-top .box-content .box-header .box-date {
          float: none; } }
    .box .box-top .box-content .box-header .ps-secondary-link {
      margin-bottom: 5px;
      float: none;
      text-align: right;
      display: block;
      vertical-align: top;
      line-height: 24px; }
      @media screen and (max-width: 770px) {
        .box .box-top .box-content .box-header .ps-secondary-link {
          line-height: 16px; } }
      @media screen and (max-width: 450px) {
        .box .box-top .box-content .box-header .ps-secondary-link {
          text-align: left; } }
    .box .box-top .box-content .box-text {
      margin-bottom: 10px;
      overflow: hidden; }
      .box .box-top .box-content .box-text .box-title {
        font-weight: 400;
        color: #4d4d52;
        font-size: 24px;
        line-height: 32px;
        margin: 0 0 10px 0;
        clear: both; }
      .box .box-top .box-content .box-text p {
        margin: 0;
        line-height: 20px; }
  .box .box-bottom {
    background: #efeff3;
    border-top: solid 1px #DCDCE1;
    padding: 12px 24px; }
    @media screen and (max-width: 770px) {
      .box .box-bottom {
        padding: 12px 12px; } }
    .box .box-bottom .my-enterprises-btn i {
      margin-right: -5px; }
  .box .box-bottom-left {
    float: left; }
    @media screen and (max-width: 770px) {
      .box .box-bottom-left {
        float: none; } }
  .box .box-bottom-right {
    float: right; }
    @media screen and (max-width: 770px) {
      .box .box-bottom-right {
        float: none;
        margin-top: 5px; } }
    @media screen and (max-width: 450px) {
      .box .box-bottom-right {
        /*TODO: Razmisliti kako da se ovo prikaze na malim rezolucijama*/
        display: none; } }
    .box .box-bottom-right a {
      display: inline-block;
      margin: 6px 10px 6px 0;
      padding-right: 10px;
      border-right: solid 1px #dcdce1;
      line-height: 23px; }
      @media screen and (max-width: 770px) {
        .box .box-bottom-right a {
          padding-right: 4px;
          margin-right: 4px; } }
      .box .box-bottom-right a:last-child {
        border: none;
        margin-right: 0;
        padding-right: 0; }
    .box .box-bottom-right .box-exp-date {
      float: right;
      font-size: 12px;
      line-height: 18px;
      color: #808084;
      background: url(../img/ps-exp-icon.png) no-repeat right 0;
      padding-right: 50px;
      text-align: right; }
      .box .box-bottom-right .box-exp-date span {
        color: #808084;
        font-size: 14px;
        display: block;
        font-weight: 500; }
      .box .box-bottom-right .box-exp-date.box-exp-orange {
        background-position: right -40px; }
      .box .box-bottom-right .box-exp-date.box-exp-red {
        background-position: right -80px; }
      @media screen and (max-width: 770px) {
        .box .box-bottom-right .box-exp-date {
          margin-top: 15px;
          text-align: left;
          float: none; } }
  .box.box-featured {
    background: #FFEFD5; }
  .box .box-featured-icon {
    padding-left: 40px;
    font-weight: 400;
    background: url(../img/enterprise_featured.png) no-repeat;
    background-size: 29px; }
    .box .box-featured-icon:hover {
      text-decoration: none;
      color: #4d4d52; }
  .box.box-vertical {
    float: left;
    width: 320px;
    margin-right: 30px; }
    @media screen and (max-width: 1410px) {
      .box.box-vertical {
        width: 292px;
        margin-right: 10px; } }
    @media screen and (max-width: 1050px) {
      .box.box-vertical {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        width: 48%;
        margin-right: 2%; }
        .box.box-vertical:nth-child(2n) {
          margin-right: 0; } }
    @media screen and (max-width: 600px) {
      .box.box-vertical {
        width: 100%;
        margin-right: 0; } }
    .box.box-vertical .box-image {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      float: none;
      margin-right: 0;
      text-align: center;
      padding: 20px;
      width: 100%;
      height: 140px;
      display: block; }
      .box.box-vertical .box-image img {
        max-width: 100%;
        border: none; }
    .box.box-vertical .box-content {
      float: none;
      max-width: 100%;
      padding: 4px 14px 0;
      margin-bottom: 14px;
      overflow: hidden;
      display: block; }
      .box.box-vertical .box-content .box-header a {
        float: none; }
      .box.box-vertical .box-content .box-header .box-title {
        font-size: 20px;
        font-weight: 400;
        line-height: 26px;
        height: 52px;
        overflow: hidden;
        margin-bottom: 10px; }
      .box.box-vertical .box-content .box-text {
        overflow: hidden;
        height: 120px;
        margin-bottom: 10px; }
    .box.box-vertical .box-exp-date {
      padding-right: 0;
      padding-left: 50px;
      text-align: left;
      background: url(../img/ps-exp-icon-reverse.png) no-repeat left center;
      float: none; }
    .box.box-vertical .box-bottom {
      background: #EFEFF3;
      padding: 14px;
      border-top: solid 1px #DCDCE1; }
      .box.box-vertical .box-bottom .like-box {
        float: right; }
    .box.box-vertical:nth-child(4) {
      margin-right: 0; }

.svg .box .box-bottom-right .box-exp-date {
  background-image: url("../img/ps-exp-icon.svg");
  background-size: 41px auto; }

@media screen and (max-width: 770px) {
  .box-ad .box-top .box-image {
    padding: 20px;
    display: inline-block;
    text-align: center;
    background-color: #fff;
    height: auto;
    margin-bottom: 0; } }
.box-ad.box-vertical:nth-child(3) {
  margin-right: 0; }

@media screen and (max-width: 770px) {
  .box-ent .box-top .box-image {
    padding: 20px;
    display: inline-block;
    text-align: center;
    background-color: #fff;
    height: auto;
    margin-bottom: 0; } }

.box-post .box-top .box-image {
  width: 390px;
  height: 230px;
  position: relative; }
  @media screen and (max-width: 1050px) {
    .box-post .box-top .box-image {
      width: 280px; } }
  @media screen and (max-width: 770px) {
    .box-post .box-top .box-image {
      width: 100%;
      padding-top: 0;
      display: inline-block;
      padding: 0;
      margin: 0; } }
  @media screen and (max-width: 450px) {
    .box-post .box-top .box-image {
      height: auto;
      max-height: 150px; } }
  @media screen and (max-width: 770px) {
    .box-post .box-top .box-image img {
      max-width: 100%; } }
  @media screen and (max-width: 770px) {
    .box-post .box-top .box-image .image-helper {
      display: none; } }
  .box-post .box-top .box-image .box-post-type-in-image {
    position: absolute;
    top: 20px;
    left: 36px;
    width: 67px;
    height: 78px; }
    @media screen and (max-width: 770px) {
      .box-post .box-top .box-image .box-post-type-in-image {
        top: 0;
        left: 20px; } }
.box-post .box-top .box-content .box-text {
  height: 155px; }
  @media screen and (max-width: 770px) {
    .box-post .box-top .box-content .box-text {
      height: auto; } }
.box-post.box-vertical .box-image {
  width: auto;
  padding: 0; }
.box-post.box-vertical:nth-child(3) {
  margin-right: 0; }
.box-post.box-vertical .box-top .box-image .box-post-type-in-image {
  top: 0;
  left: 20px; }
.box-post.box-post .box-post-header-regular {
  background-image: url(../img/ps-post-type-regular.png); }
.box-post.box-post .box-post-header-action {
  background-image: url(../img/ps-post-type-action.png); }
.box-post.box-post .box-post-header-news {
  background-image: url(../img/ps-post-type-news.png); }

.box-single .box-header {
  margin-bottom: 10px;
  background-position: left top;
  background-color: transparent;
  background-repeat: no-repeat;
  min-height: 86px;
  padding-left: 86px; }
  .box-single .box-header h1 {
    margin-top: 0; }
.box-single .box-image {
  float: left;
  margin: 0 30px 30px 0; }
  @media screen and (max-width: 1050px) {
    .box-single .box-image {
      width: 100%;
      text-align: center; } }
  @media screen and (max-width: 1050px) {
    .box-single .box-image img {
      max-width: 100%; } }
.box-single .box-text {
  margin: 0 0 20px 0; }
.box-single .box-footer .like-box {
  margin-left: 0; }
.box-single .box-footer .box-exp-date {
  float: right;
  font-size: 12px;
  line-height: 18px;
  color: #808084;
  background: url(../img/ps-exp-icon.png) no-repeat right 0;
  padding-right: 50px;
  text-align: right; }
  .box-single .box-footer .box-exp-date span {
    color: #808084;
    font-size: 14px;
    display: block;
    font-weight: 500; }
  .box-single .box-footer .box-exp-date.box-exp-orange {
    background-position: right -36px; }
  .box-single .box-footer .box-exp-date.box-exp-red {
    background-position: right -72px; }
  @media screen and (max-width: 770px) {
    .box-single .box-footer .box-exp-date {
      margin-top: 15px;
      text-align: left;
      float: none; } }
.box-single.box-ad .box-header-ad {
  background-image: url(../img/ps-post-type-ad.png); }

/** Loading animation */
.loading-animation-overlay {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  top: 0;
  left: 0;
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: #000;
  z-index: 999; }

.loading-animation {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 1000; }
  .loading-animation .circle {
    background-color: transparent;
    border: 5px solid rgba(0, 183, 229, 0.9);
    opacity: .9;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-radius: 50px;
    box-shadow: 0 0 35px #2187e7;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    -moz-animation: spinPulse 1s infinite ease-in-out;
    -webkit-animation: spinPulse 1s infinite linear; }
  .loading-animation .circle1 {
    background-color: transparent;
    border: 5px solid rgba(0, 183, 229, 0.9);
    opacity: .9;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-radius: 50px;
    box-shadow: 0 0 15px #2187e7;
    width: 30px;
    height: 30px;
    margin: 0 auto;
    position: relative;
    top: -50px;
    -moz-animation: spinoffPulse 1s infinite linear;
    -webkit-animation: spinoffPulse 1s infinite linear; }
@-moz-keyframes spinPulse {
  0% {
    -moz-transform: rotate(160deg);
    opacity: 0;
    box-shadow: 0 0 1px #2187e7; }
  50% {
    -moz-transform: rotate(145deg);
    opacity: 1; }
  100% {
    -moz-transform: rotate(-320deg);
    opacity: 0; } }
@-moz-keyframes spinoffPulse {
  0% {
    -moz-transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(360deg); } }
@-webkit-keyframes spinPulse {
  0% {
    -webkit-transform: rotate(160deg);
    opacity: 0;
    box-shadow: 0 0 1px #2187e7; }
  50% {
    -webkit-transform: rotate(145deg);
    opacity: 1; }
  100% {
    -webkit-transform: rotate(-320deg);
    opacity: 0; } }
@-webkit-keyframes spinoffPulse {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }
/** Header */
.header {
  background: url(../img/main-header-bgd.jpg) no-repeat;
  padding: 45px 0 0; }
  @media screen and (max-width: 1410px) {
    .header {
      padding-top: 25px; } }
  @media screen and (max-width: 770px) {
    .header {
      padding-top: 15px;
      background-size: auto 100%; } }

@media screen and (max-width: 770px) {
  .header-small {
    background-size: auto; } }
@media screen and (max-width: 450px) {
  .header-small {
    background-size: auto 100%; } }
.header-small .call-to-action-holder {
  padding-top: 15px; }
.header-small .call-to-action {
  display: none;
  overflow: hidden; }

.header-inner {
  background: url(../img/ps-menu-bgd.png) no-repeat right top; }
  @media screen and (max-width: 1050px) {
    .header-inner {
      background: none; } }

.logo-holder {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: url("../img/poplisting-logo.png") no-repeat transparent;
  height: 84px;
  text-indent: -99999px;
  min-width: 336px;
  float: left; }
  .logo-holder h1 {
    margin: 0; }
  @media screen and (max-width: 1050px) {
    .logo-holder {
      width: 242px;
      display: block;
      margin: 13px 0 27px;
      min-width: 0;
      height: 54px; } }

.svg .logo-holder {
  background-image: url("../img/poplisting-logo.png"); }

.search-holder {
  float: right;
  text-align: right;
  position: relative;
  width: 500px; }
  @media screen and (max-width: 1050px) {
    .search-holder {
      margin-left: auto;
      margin-right: auto;
      float: none; } }
  @media screen and (max-width: 550px) {
    .search-holder {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      width: 100%; } }

.search-form {
  display: inline-block;
  width: 100%;
  position: relative; }
  .search-form:before {
    position: absolute;
    right: 10px;
    top: 0;
    width: 20px;
    height: 100%;
    color: #99999d;
    text-align: center;
    font: normal normal normal 20px/38px FontAwesome; }
  .search-form .search-text {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 15px;
    line-height: 20px;
    width: 100%;
    background: white;
    padding: 10px 15px;
    margin-bottom: 0; }
  .search-form .ps-search-btn {
    -webkit-border-radius: 0 0 0 0;
    -moz-border-radius: 0 0 0 0;
    -ms-border-radius: 0 0 0 0;
    -o-border-radius: 0 0 0 0;
    border-radius: 0 0 0 0;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../img/ps-search-icon.png);
    background-repeat: no-repeat;
    background-position: center;
    padding: 21px 36px;
    text-indent: -99999px;
    float: left;
    height: 40px; }

.search-list {
  -moz-box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.5);
  background: #fff;
  max-height: 400px;
  width: 100%;
  overflow: auto;
  position: absolute;
  top: 42px;
  left: 0;
  z-index: 11; }
  .search-list .search-a {
    vertical-align: top;
    line-height: 14px;
    color: #66666c;
    display: inline-block;
    width: 100%;
    border-bottom: solid 1px #DCDCE1;
    height: 70px;
    overflow: hidden; }
    .search-list .search-a:hover {
      text-decoration: none; }
  .search-list .search-cell {
    padding: 10px;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden; }
  .search-list .search-cell-img {
    float: left;
    text-align: left;
    width: 80px;
    margin-right: 10px;
    vertical-align: middle;
    overflow: hidden;
    height: 50px; }
    .search-list .search-cell-img img {
      width: 100%; }
  .search-list .search-cell-text {
    text-align: left; }
  .search-list .search-cell-name {
    color: #353538;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.1;
    margin-bottom: 6px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }
  .search-list .search-cell-desc {
    font-size: 11px;
    line-height: 1.3;
    margin-bottom: 3px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }
    .search-list .search-cell-desc i {
      margin: 0 4px 0 0;
      width: 10px;
      text-align: center;
      color: #99999d; }
  .search-list .search-row-focus, .search-list .search-cell:hover {
    background: #EFEFF3; }

.advanced-search-trigger {
  color: #fff;
  font-size: 15px; }
  .advanced-search-trigger:hover {
    text-decoration: underline; }
  @media screen and (max-width: 770px) {
    .advanced-search-trigger {
      /*display: none;*/ } }

.header-message {
  font-size: 44px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  margin-bottom: 40px; }

.header-button {
  text-align: center; }

.call-to-action {
  padding: 0 0 30px 0; }
  @media screen and (max-width: 1410px) {
    .call-to-action {
      padding: 0 0 15px 0; } }
  .call-to-action h2 {
    text-align: center;
    color: #fff;
    font-size: 30px;
    margin: 20px 0 40px 0;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    font-weight: 300;
    line-height: 1.3; }
    .call-to-action h2 span {
      font-weight: 500; }
    @media screen and (max-width: 1410px) {
      .call-to-action h2 {
        font-size: 26px;
        margin: 15px 0 30px 0; } }
    @media screen and (max-width: 770px) {
      .call-to-action h2 {
        font-size: 20px;
        margin-bottom: 20px; } }
  .call-to-action .home-header-btns {
    text-align: center;
    margin-bottom: 25px; }
  @media screen and (max-width: 770px) {
    .call-to-action .btn-big {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      width: 100%;
      margin-bottom: 0; } }

.home-header-btns span {
  color: #fff;
  font-size: 19px;
  display: inline-block;
  margin: 0 20px; }
  @media screen and (max-width: 770px) {
    .home-header-btns span {
      display: none; } }

.flash-message {
  -moz-box-shadow: 0 1px 12px 0 #222;
  -webkit-box-shadow: 0 1px 12px 0 #222;
  box-shadow: 0 1px 12px 0 #222;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #5782B1;
  z-index: 100; }
  .flash-message .flash-inner {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    font-size: 17px;
    line-height: 31px;
    color: #fff;
    padding: 12px; }
    @media screen and (max-width: 770px) {
      .flash-message .flash-inner {
        font-size: 13px;
        line-height: 1.4; } }
  .flash-message.flash-message-success {
    background: #7CB342; }
    .flash-message.flash-message-success i {
      color: #7CB342; }
  .flash-message.flash-message-error {
    background: #FF5252; }
    .flash-message.flash-message-error i {
      color: #FF5252; }
  .flash-message.flash-message-validation {
    background: #FB8C00; }
    .flash-message.flash-message-validation i {
      color: #FB8C00; }
  .flash-message .flash-close {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background-color: #fff;
    display: inline-block;
    margin-left: 15px;
    cursor: pointer;
    text-align: center; }
    @media screen and (max-width: 770px) {
      .flash-message .flash-close {
        display: block;
        margin: 10px auto 0; } }
    .flash-message .flash-close i {
      margin: 0;
      line-height: 32px; }
  .flash-message a {
    color: #fff;
    text-decoration: underline; }

.flash-message-show {
  display: block; }

/** Advanced search */
.form-row-search {
  float: left;
  width: 300px;
  margin-right: 20px; }
  .form-row-search:nth-child(2n) {
    margin-right: 0; }
  @media screen and (max-width: 770px) {
    .form-row-search {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      width: 100%; } }

/** Main menu */
.header nav {
  float: right;
  background: white;
  border-bottom: solid 3px #5782B1;
  margin-bottom: 30px;
  position: relative; }
  @media screen and (max-width: 1050px) {
    .header nav {
      position: absolute;
      top: 0;
      right: 0;
      transform: translate3d(100%, 0, 0);
      -moz-transform: translate3d(100%, 0, 0);
      -webkit-transform: translate3d(100%, 0, 0);
      -o-transform: translate3d(100%, 0, 0);
      -ms-transform: translate3d(100%, 0, 0);
      width: 70%;
      height: 100%;
      -webkit-box-shadow: inset 1em 0 1em -0.75em rgba(0, 0, 0, 0.25);
      -moz-box-shadow: inset 1em 0 1em -0.75em rgba(0, 0, 0, 0.25);
      box-shadow: inset 1em 0 1em -0.75em rgba(0, 0, 0, 0.25); } }
  .header nav ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .header nav li {
    float: left;
    position: relative; }
    @media screen and (max-width: 1050px) {
      .header nav li {
        float: none;
        width: 100%; } }
  .header nav li > a {
    /*@include transition;*/
    border-right: solid 1px #DCDCE1;
    font-size: 15px;
    line-height: 20px;
    display: inline-block;
    padding: 25px;
    vertical-align: middle;
    color: #66666c; }
    .header nav li > a:hover, .header nav li > a.active {
      text-decoration: none;
      background-color: #5782B1;
      color: white; }
    @media screen and (max-width: 1260px) {
      .header nav li > a {
        padding: 25px 19px; } }
    @media screen and (max-width: 1050px) {
      .header nav li > a {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        border: none !important; } }
  .header nav .main-menu-arrows {
    background-image: url(../img/main-menu-arrows.png);
    background-repeat: no-repeat;
    background-position: 126px 32px; }
    .header nav .main-menu-arrows:hover, .header nav .main-menu-arrows.active {
      background-position: -19px 32px; }
    @media screen and (max-width: 1050px) {
      .header nav .main-menu-arrows {
        display: none; } }
  .header nav .categories-menu-item {
    padding-right: 35px; }
  .header nav .main-menu-clear {
    display: none; }
    @media screen and (max-width: 1050px) {
      .header nav .main-menu-clear {
        display: inline-block; } }

.submenu-holder .submenu-cell {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 20px 5px;
  float: left;
  width: 300px;
  min-height: 643px; }

.submenu-holder .submenu-title {
  font-size: 22px;
  font-weight: 500;
  color: #353538;
  margin: 5px 0 15px; }

.submenu-holder .submenu-text {
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 17px;
  color: #808084; }

.submenu-holder .submenu-list {
  border-top: solid 1px #DCDCE1;
  padding: 10px 0; }

.submenu-holder .submenu-list li {
  float: none; }
  .submenu-holder .submenu-list li a {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    color: #4d4d52;
    font-size: 14px;
    line-height: 14px;
    display: block;
    padding: 10px 20px 10px; }
    .submenu-holder .submenu-list li a:hover, .submenu-holder .submenu-list li a.active {
      background: #5782B1;
      color: #fff;
      text-decoration: none; }

.submenu-holder .main-categories {
  background: #353538; }
  .submenu-holder .main-categories .submenu-title {
    color: #fff; }
  .submenu-holder .main-categories .submenu-list {
    border-top: solid 1px #808084; }
  .submenu-holder .main-categories .submenu-list li a {
    color: #fff; }
    .submenu-holder .main-categories .submenu-list li a:hover, .submenu-holder .main-categories .submenu-list li a.active {
      background: white;
      color: #66666c; }

.submenu-holder .sub-categories {
  background: white; }

.submenu-holder .by-city {
  background: #EFEFF3;
  border-left: solid 1px #DCDCE1; }
  .submenu-holder .by-city select {
    width: 100%; }

.submenu-holder .submenu-sublist {
  display: none; }

.submenu-holder .submenu-sublist-active {
  display: block; }

.big-cities .submenu-text {
  margin-top: 15px; }

.res-menu-btn-holder {
  display: none;
  float: right; }
  .res-menu-btn-holder .res-menu-btn {
    background-color: #5782B1;
    color: #fff;
    font-size: 15px;
    display: inline-block;
    width: 42px;
    height: 42px;
    cursor: pointer;
    border-radius: 3px;
    text-align: center; }
    .res-menu-btn-holder .res-menu-btn:hover {
      background-color: #42709C; }
    .res-menu-btn-holder .res-menu-btn i {
      color: #fff;
      margin: 0;
      font-size: 22px;
      line-height: 42px; }
  @media screen and (max-width: 1050px) {
    .res-menu-btn-holder {
      display: block;
      margin-top: 19px; } }

.submenu-holder.submenu-holder-login {
  width: 680px; }
  .submenu-holder.submenu-holder-login:before, .submenu-holder.submenu-holder-login:after {
    left: 450px; }

.login-holder {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: right;
  width: 58%;
  border-left: solid 1px #DCDCE1;
  vertical-align: top;
  padding: 14px 24px 24px; }
  @media screen and (max-width: 770px) {
    .login-holder {
      width: 100%;
      float: none; } }

.logged-holder {
  width: 270px;
  padding: 0; }
  .logged-holder .logo {
    padding: 35px 20px 20px 20px;
    background: #fff;
    text-align: center; }
  .logged-holder .btn-row {
    padding: 0 20px 20px 20px; }

.connect-holder {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 41.5%;
  border-left: none;
  background: #fff;
  float: left; }
  @media screen and (max-width: 770px) {
    .connect-holder {
      width: 100%;
      float: none; } }

.login-title {
  font-size: 22px;
  margin: 12px 0 20px; }

@media screen and (max-width: 1050px) {
  #loginTitleHide {
    display: none; } }

.login-text {
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 20px;
  color: #66666c; }

.login-form {
  padding: 0; }
  .login-form .validation-tooltip {
    right: 0;
    left: auto; }
  .login-form .btn-row {
    margin-top: 0; }

.submenu-holder.submenu-holder-logged {
  width: 350px;
  right: 0;
  left: inherit; }
  .submenu-holder.submenu-holder-logged:before, .submenu-holder.submenu-holder-logged:after {
    left: 270px; }
  .submenu-holder.submenu-holder-logged .logged-holder {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    width: 100%;
    padding-bottom: 15px; }
  .submenu-holder.submenu-holder-logged .logo {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
    padding: 10px;
    border-bottom: solid 1px #DCDCE1; }

/** Breadcrumb */
.breadcrumb-holder {
  background: #EFEFF3;
  border-bottom: solid 1px #DCDCE1; }
  @media screen and (max-width: 770px) {
    .breadcrumb-holder {
      display: none; } }

.breadcrumb-holder a, .breadcrumb-holder span {
  padding: 8px 30px 8px 18px;
  font-size: 12px;
  line-height: 22px;
  display: inline-block;
  background: url(../img/ps-breadcrumb-bgd.png) no-repeat right; }

.breadcrumb-holder span {
  background: none; }

/** Head and sliders */
.content-header h2 {
  float: left; }

.slider-holder {
  position: relative;
  overflow: visible !important; }
  .slider-holder .slidesjs-navigation {
    width: 36px;
    height: 36px;
    border-radius: 18px;
    display: inline-block;
    cursor: pointer;
    background-color: #ccc;
    position: absolute;
    top: -70px;
    text-align: center; }
    .slider-holder .slidesjs-navigation:hover {
      background-color: #aaa; }
    .slider-holder .slidesjs-navigation i {
      margin: 0;
      line-height: 36px;
      color: #fff;
      font-weight: 100;
      font-size: 18px; }
  .slider-holder .slidesjs-previous {
    right: 46px;
    background-position: 0 0; }
    .slider-holder .slidesjs-previous:hover {
      background-position: 0 -35px; }
  .slider-holder .slidesjs-next {
    right: 0;
    background-position: -35px 0; }
    .slider-holder .slidesjs-next:hover {
      background-position: -35px -35px; }

/** Single post */
.post-left-container {
  display: table-cell;
  vertical-align: top;
  width: 300px; }
  @media screen and (max-width: 1260px) {
    .post-left-container {
      display: none; } }

.post-right-container {
  display: table-cell;
  width: 1075px; }
  @media screen and (max-width: 1410px) {
    .post-right-container {
      width: 930px; } }
  @media screen and (max-width: 1260px) {
    .post-right-container {
      width: 100%;
      display: block; } }

.post-menu {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 300px;
  top: 40px;
  border-bottom: solid 1px #DCDCE1;
  list-style: none;
  margin: 0;
  padding: 0; }
  .post-menu a {
    display: block;
    background: url(../img/ps-post-menu-arrow.png) right center no-repeat #efeff3;
    border: solid 1px #DCDCE1;
    border-bottom: none;
    text-decoration: none;
    color: #353538;
    padding: 10px 20px; }
    .post-menu a.active {
      background: url(../img/ps-post-menu-arrow-active.png) right center no-repeat #5782B1;
      color: #fff; }

.post-menu-fixed {
  position: fixed; }

.post-menu-absolute {
  position: absolute;
  top: initial;
  bottom: 560px; }

.post-box-single .ps-date {
  font-size: 16px; }
.post-box-single h1.post-box-title {
  font-size: 40px;
  padding-top: 10px; }
.post-box-single .post-box-content {
  padding-right: 0;
  padding-top: 0;
  width: 564px; }
  @media screen and (max-width: 1410px) {
    .post-box-single .post-box-content {
      width: 496px; } }
.post-box-single .post-box-img {
  background: transparent; }

.ps-inner-post {
  max-width: 670px; }

/** Comments */
.comment-holder .btn {
  float: right;
  margin-bottom: 30px; }
.comment-holder .all-comments-link {
  float: right; }
.comment-holder form {
  margin-top: 25px; }

.comment-single {
  margin-bottom: 12px; }

.comment-img {
  float: left; }
  .comment-img img {
    height: 100%; }

.comment-text {
  background: #f8f8f8;
  border: solid 1px #DCDCE1;
  font-size: 15px;
  line-height: 20px;
  color: #4d4d52;
  padding: 15px 17px;
  position: relative;
  margin-left: 100px; }
  .comment-text:after, .comment-text:before {
    right: 100%;
    top: 20px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; }
  .comment-text:after {
    border-color: rgba(220, 220, 225, 0);
    border-right-color: #f8f8f8;
    border-width: 7px;
    margin-top: -7px; }
  .comment-text:before {
    border-color: rgba(248, 248, 248, 0);
    border-right-color: #DCDCE1;
    border-width: 8px;
    margin-top: -8px; }
  @media screen and (max-width: 770px) {
    .comment-text {
      margin-left: 70px; } }

.comment-posted {
  font-size: 12px;
  display: block;
  margin-top: 8px;
  color: #99999d; }

/** Ads */
.left-container-ads {
  padding-top: 30px; }
  .left-container-ads h1 {
    float: left;
    font-size: 40px;
    margin: 0 0 20px; }

/** Single ad */
.single-ad .post-box-single .post-box-content {
  width: 100%;
  padding-left: 0; }

/** Enterprises */
.left-container-ent-list {
  padding-top: 30px; }
  .left-container-ent-list h1 {
    float: left;
    font-size: 40px;
    margin: 0 0 20px; }
  .left-container-ent-list .rating-holder {
    float: left; }
    @media screen and (max-width: 770px) {
      .left-container-ent-list .rating-holder {
        float: none; } }

.follow {
  text-align: right;
  padding-top: 30px;
  height: 34px;
  margin-bottom: 32px; }
  @media screen and (max-width: 1050px) {
    .follow {
      padding-top: 10px; } }
  @media screen and (max-width: 1050px) {
    .follow a {
      width: 100%;
      box-sizing: border-box;
      text-align: center; } }

/** Paging */
.paging {
  float: right; }
  .paging .page {
    background-color: #fff;
    font-size: 13px;
    line-height: 15px;
    padding: 8px 13px;
    float: left;
    border: solid 1px #DCDCE1;
    border-right: none;
    cursor: pointer; }
    .paging .page:hover {
      background-color: #efeff3;
      text-decoration: none; }
  .paging .active {
    background: #5782B1;
    color: #fff;
    cursor: default; }
    .paging .active:hover {
      background: #5782B1; }
  .paging .prev {
    background: url(../img/ps-paging-prev.png) no-repeat center #fff;
    width: 8px;
    height: 15px; }
  .paging .first {
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    -ms-border-radius: 3px 0 0 3px;
    -o-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
    background: url(../img/ps-paging-first.png) no-repeat center #fff;
    width: 8px;
    height: 15px; }
  .paging .next {
    background: url(../img/ps-paging-next.png) no-repeat center #fff;
    width: 8px;
    height: 15px; }
  .paging .last {
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    -ms-border-radius: 0 3px 3px 0;
    -o-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    background: url(../img/ps-paging-last.png) no-repeat center #fff;
    border-right: solid 1px #DCDCE1;
    width: 8px;
    height: 15px; }
  .paging .disabled-paging {
    cursor: default; }
    .paging .disabled-paging:hover {
      background-color: #fff; }
  .paging .pageNumber {
    display: none; }
  .paging .disabled-paging {
    opacity: 0.5; }

/** Banners */
.holder-home-banners {
  padding-bottom: 15px; }

.banner-holder {
  -moz-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.18);
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.18);
  padding: 10px;
  background: #fff;
  display: inline-block;
  margin: 0 39px 15px 0;
  text-align: center; }
  .banner-holder img {
    vertical-align: bottom; }
  @media screen and (min-width: 1410px) {
    .banner-holder:nth-child(5n) {
      margin-right: 0; } }
  @media screen and (max-width: 1410px) and (min-width: 1260px) {
    .banner-holder {
      margin-right: 83px; }
      .banner-holder:nth-child(4n) {
        margin-right: 0; } }
  @media screen and (max-width: 1260px) and (min-width: 1050px) {
    .banner-holder {
      margin-right: 122px; }
      .banner-holder:nth-child(3n) {
        margin-right: 0; } }
  @media screen and (max-width: 1050px) and (min-width: 600px) {
    .banner-holder {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      width: 48%;
      margin-right: 2%; }
      .banner-holder:nth-child(2n) {
        margin-right: 0; } }
  @media screen and (max-width: 600px) {
    .banner-holder {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      width: 100%;
      margin-right: 0; } }

/** View and sorting */
.sort {
  position: relative; }

.sort-holder {
  -webkit-border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -ms-border-radius: 3px 3px 3px 3px;
  -o-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  -moz-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.15);
  position: absolute;
  display: none;
  padding: 8px 0;
  top: 38px;
  right: 0;
  background: white;
  border: solid 1px #DCDCE1;
  min-width: 190px; }
  .sort-holder ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .sort-holder li {
    font-size: 13px;
    padding: 2px 24px;
    cursor: pointer; }
    .sort-holder li:hover {
      background: #5782B1;
      color: #fff; }

/** Tabs */
.tabs-content {
  display: none; }

.tabs-content-active {
  display: block; }

/** Footer */
.footer-holder {
  background: #353538; }

.footer-cell {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  width: 30%;
  margin-right: 5%; }
  .footer-cell:nth-child(3) {
    margin-right: 0; }
  .footer-cell h5 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
    margin-bottom: 10px; }
  @media screen and (max-width: 1050px) {
    .footer-cell {
      float: none;
      width: 100%;
      margin-bottom: 40px; } }

.footer-cell-title {
  font-size: 27px;
  color: #fff;
  border-bottom: solid 1px #808084;
  padding-bottom: 16px;
  margin-bottom: 16px; }

.footer-text {
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  color: #ccccd2;
  margin-bottom: 16px;
  text-align: justify; }

.footer-form {
  margin-bottom: 30px; }
  .footer-form input, .footer-form textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 1px #66666c;
    color: #fff;
    width: 100%;
    margin-bottom: 16px; }
  .footer-form input {
    background: url(../img/ps-input-email.png) right no-repeat #4d4d52;
    max-width: 310px;
    padding: 12px 16px; }
  .footer-form input.validation-input {
    background: url(../img/ps-input-validation.png) right no-repeat #4d4d52; }
  .footer-form textarea {
    height: 100px;
    background: #4d4d52; }
  .footer-form #captcha-input, .footer-form #captcha-input-new {
    width: 207px; }

.footer-cell .social-icon {
  margin-right: 6px;
  display: inline-block;
  margin-top: 20px; }
  .footer-cell .social-icon img {
    border: 0; }

.footer-logo-small {
  text-align: right;
  margin-top: 83px; }

/** Lightboxes */
#create-account .small-screen {
  padding: 60px 23px 20px; }
  #create-account .small-screen .btn {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    width: 100%;
    margin-bottom: 20px; }
#create-account .account-lightbox {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  float: left;
  width: 300px;
  padding: 20px 40px 40px;
  cursor: pointer; }
  @media screen and (max-width: 1050px) {
    #create-account .account-lightbox {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      width: 100%;
      float: none; } }
  #create-account .account-lightbox h4 {
    font-size: 26px;
    font-weight: 400;
    text-align: center; }
  #create-account .account-lightbox:hover {
    background: #f8f8f8; }

#create-account .enterprise-account {
  border-right: solid 1px #DCDCE1; }

#create-account .account-lightbox-img {
  margin: 40px 0;
  text-align: center; }

.lightbox-content-padding {
  padding: 20px; }

/** Registration */
.left-container-registration {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  width: 40%;
  margin-right: 5%;
  min-width: 300px; }
  @media screen and (max-width: 1050px) {
    .left-container-registration {
      width: 100%;
      margin-bottom: 40px; } }
  .left-container-registration .left-container-registration-block {
    background: #EFEFF3;
    border: solid 1px #DCDCE1; }
  .left-container-registration .left-container-social-block {
    padding: 30px;
    margin-bottom: 20px; }
    .left-container-registration .left-container-social-block .login-title {
      margin-top: 0; }

.registration-form {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: auto;
  padding: 30px;
  max-width: 500px; }
  .registration-form label {
    margin-bottom: 5px;
    display: inline-block; }
  .registration-form .form-note {
    margin: 27px 0 15px; }
  .registration-form .registration-error {
    text-align: right;
    color: #FF5252;
    font-size: 12px;
    line-height: 14px; }

.right-container-registration {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  width: 55%; }
  .right-container-registration .registration-cell {
    margin-bottom: 40px;
    display: table; }
  .right-container-registration h2 {
    font-size: 28px;
    line-height: 28px;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    font-weight: 500; }
  .right-container-registration h3 {
    font-size: 20px;
    line-height: 20px;
    margin: 0 0 10px 0;
    text-transform: none;
    font-weight: 500;
    color: #808084; }
  .right-container-registration img {
    margin-bottom: 10px;
    display: table-cell;
    vertical-align: top;
    margin-right: 16px; }
  .right-container-registration .big-circle {
    width: 100px;
    height: 100px;
    text-align: center;
    border-radius: 50px;
    margin-right: 16px; }
    .right-container-registration .big-circle i {
      line-height: 100px;
      font-size: 50px;
      color: #fff;
      margin: 0; }
    .right-container-registration .big-circle.big-circle-red {
      background-color: #FF5252; }
    .right-container-registration .big-circle.big-circle-green {
      background-color: #7CB342; }
    .right-container-registration .big-circle.big-circle-blue {
      background-color: #5782B1; }
    .right-container-registration .big-circle.big-circle-orange {
      background-color: #FB8C00; }
  .right-container-registration .text {
    display: table-cell;
    vertical-align: top;
    line-height: 1.5; }
  @media screen and (max-width: 1050px) {
    .right-container-registration {
      width: 100%; } }

.registration-form .validation-tooltip {
  right: 0;
  left: initial;
  top: -9px; }
.registration-form .form-note .validation-tooltip {
  left: 0;
  right: initial;
  top: -34px; }
  .registration-form .form-note .validation-tooltip:after, .registration-form .form-note .validation-tooltip:before {
    left: 4%; }

/**
 * HOMEPAGE
 */
/** Slider */
.home-slider-holder {
  height: 282px;
  z-index: 0;
  overflow: hidden; }
  @media screen and (max-width: 1050px) {
    .home-slider-holder {
      height: auto; } }

@media screen and (max-width: 1050px) {
  .slidesjs-container, .slidesjs-control {
    height: 580px !important; } }

/** Testimonials */
.testimonialsH2 {
  background: #5782B1;
  color: white;
  text-align: center;
  padding: 4px 0;
  margin: 111px 0 10px 0;
  font-size: 21px;
  text-transform: uppercase; }
  @media screen and (max-width: 1050px) {
    .testimonialsH2 {
      margin-top: 20px; } }

.testimonials {
  position: relative; }

.testimonials .tes-nav {
  position: absolute;
  right: 50%;
  margin-right: -110px;
  margin-top: 10px; }

.testimonials .tes-image {
  -webkit-border-radius: 72px 72px 72px 72px;
  -moz-border-radius: 72px 72px 72px 72px;
  -ms-border-radius: 72px 72px 72px 72px;
  -o-border-radius: 72px 72px 72px 72px;
  border-radius: 72px 72px 72px 72px;
  float: left;
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin-bottom: 10px; }
  .testimonials .tes-image img {
    height: 100%; }

.testimonials .tes-header {
  text-align: center;
  padding-top: 24px; }

.testimonials h4 {
  font-weight: 500;
  font-size: 22px;
  margin: 0; }

.testimonials .tes-text {
  color: #66666c;
  clear: both; }

/** Pre footer */
.holder-home-about {
  background: url(../img/pre-footer-bgd.jpg) right no-repeat;
  height: 324px;
  padding: 0; }
  @media screen and (max-width: 1050px) {
    .holder-home-about {
      background-image: none;
      height: auto;
      padding-bottom: 24px; } }
  .holder-home-about .container {
    padding-top: 24px; }
  .holder-home-about .text {
    width: 55%; }
    @media screen and (max-width: 1050px) {
      .holder-home-about .text {
        width: 100%; } }
  .holder-home-about h2 {
    /*margin-top: 0;*/
    /*font-size: 33px;*/
    /*margin-bottom: 10px;*/ }

/** Half page */
.home-holder-half {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  width: 48%;
  margin-right: 2%; }
  @media screen and (max-width: 770px) {
    .home-holder-half {
      width: 100%;
      float: none;
      margin: 0 0 10px 0; } }
  .home-holder-half .box-post .box-top .box-image {
    width: 250px;
    height: 194px; }
  .home-holder-half .box-ad .box-top .box-image {
    height: 194px; }
  .home-holder-half .box-ad .box-content .box-text {
    margin-bottom: 16px; }
  .home-holder-half.home-holder-half-right {
    margin-right: 0; }
    .home-holder-half.home-holder-half-right .box-image {
      width: 200px; }
      .home-holder-half.home-holder-half-right .box-image a {
        height: 100%; }
      .home-holder-half.home-holder-half-right .box-image img {
        max-width: 100%;
        vertical-align: middle; }

/** Validation */
.validation-tooltip {
  -moz-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.4);
  -webkit-border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -ms-border-radius: 3px 3px 3px 3px;
  -o-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  padding: 4px 14px;
  font-size: 13px;
  position: absolute;
  left: 0;
  top: -31px;
  background: #FB8C00;
  color: #fff; }
  .validation-tooltip:after, .validation-tooltip:before {
    top: 100%;
    left: 85%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; }
  .validation-tooltip:after {
    border-color: rgba(251, 140, 0, 0);
    border-top-color: #FB8C00;
    border-width: 5px;
    margin-left: -5px; }
  .validation-tooltip:before {
    border-color: rgba(251, 140, 0, 0);
    border-top-color: #FB8C00;
    border-width: 6px;
    margin-left: -6px; }

/** Ezmark */
.ez-hide {
  opacity: 0;
  filter: alpha(opacity=0); }

.ez-checkbox {
  background: transparent url("../img/checkbox-red.png") 0 1px no-repeat;
  display: inline-block; }

.ez-radio {
  background: transparent url("../img/radio.png") 0 1px no-repeat;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 6px; }

.ez-selected {
  background-position: 0 -27px; }

.ez-checkbox, .ez-radio {
  zoom: 1;
  *display: inline;
  _height: 30px; }

/** User control panel */
.container-edit-profile {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  width: 47%;
  margin-right: 5%;
  min-width: 300px;
  background: #EFEFF3;
  border: solid 1px #DCDCE1;
  padding: 25px 35px; }
  @media screen and (max-width: 1050px) {
    .container-edit-profile {
      width: 100%;
      margin-bottom: 40px; } }
  .container-edit-profile:nth-child(2) {
    margin-right: 0; }

.user-header-image {
  -webkit-border-radius: 80px 80px 80px 80px;
  -moz-border-radius: 80px 80px 80px 80px;
  -ms-border-radius: 80px 80px 80px 80px;
  -o-border-radius: 80px 80px 80px 80px;
  border-radius: 80px 80px 80px 80px;
  display: inline-block;
  width: 160px;
  height: 160px;
  overflow: hidden;
  vertical-align: top;
  text-align: center; }
  .user-header-image img {
    vertical-align: middle;
    max-height: 100%; }

.user-header-title {
  vertical-align: top;
  display: inline-block;
  margin-left: 20px; }
  .user-header-title h1 {
    margin-bottom: 0; }
  .user-header-title table {
    margin-top: 10px;
    line-height: 18px; }

.user-form .validation-tooltip {
  left: initial;
  right: 0;
  top: -14px; }

.content-pracenje p {
  border: solid 1px #DCDCE1;
  padding: 15px 20px;
  background: #EFEFF3;
  display: block;
  margin-top: 5px;
  margin-bottom: 30px; }
.content-pracenje .h4 {
  margin-bottom: 5px; }

.user-follow-holder {
  width: 31%;
  margin-right: 3%;
  float: left; }
  @media screen and (max-width: 1050px) {
    .user-follow-holder {
      width: 100%;
      margin-right: 0;
      margin-bottom: 30px;
      float: none; } }
  .user-follow-holder:nth-child(3) {
    margin-right: 0; }
  .user-follow-holder .user-follow-main {
    font-weight: bold;
    margin-bottom: 20px; }
    .user-follow-holder .user-follow-main .user-follow-sub {
      padding-left: 15px;
      font-weight: normal; }
  .user-follow-holder .user-follow-header {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: solid 1px #DCDCE1; }

/** Password reset */
#resetPasswordEmail {
  background: url(../img/ps-registration-sprite.png) no-repeat right -78px #fff; }

#submitPasswordResetForm .validation-tooltip {
  left: auto;
  right: 0; }
  #submitPasswordResetForm .validation-tooltip:after, #submitPasswordResetForm .validation-tooltip:before {
    left: 91%; }

/** Helpers */
.margin-right {
  margin-right: 10px; }

.margin-bottom {
  margin-bottom: 10px; }

.orange {
  color: #FB8C00; }

.fa {
  margin-left: -5px;
  margin-right: 5px; }

/** Tooltip */
#tooltip {
  -webkit-border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  -ms-border-radius: 5px 5px 5px 5px;
  -o-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  z-index: 100;
  padding: 15px;
  font-size: 13px;
  line-height: 18px; }
  #tooltip:after {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(0, 0, 0, 0.8);
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -10px; }
  #tooltip.top:after {
    border-top-color: transparent;
    border-bottom: 10px solid rgba(0, 0, 0, 0.8);
    top: -20px;
    bottom: auto; }
  #tooltip.left:after {
    left: 10px;
    margin: 0; }
  #tooltip.right:after {
    right: 10px;
    left: auto;
    margin: 0; }
  #tooltip span {
    font-size: 15px;
    line-height: 22px;
    font-weight: 500; }

@media screen and (max-width: 1050px) {
  .fancybox-wrap h3 {
    font-size: 30px; } }
.fancybox-wrap .btn {
  text-transform: uppercase; }

.fancybox-inner {
  background-color: #fff; }

.ent-social .ent-social-icon-fb {
  margin-bottom: 7px; }
.ent-social .ent-social-icon-google iframe body {
  float: right; }

.inline-social-sharing {
  margin-top: 20px; }
  .inline-social-sharing .ent-social-icon {
    float: left;
    margin-right: 20px;
    vertical-align: bottom; }
  .inline-social-sharing .fb-like span {
    vertical-align: top !important; }

.btn-fb-login, .btn-fb-login:hover {
  background: url("../img/facebook_white_icon.svg") no-repeat 15px 7px #3b5998;
  background-size: 10px;
  padding-left: 35px;
  text-transform: none;
  font-weight: normal;
  text-transform: none !important; }

/** Responsive **/
.rmm {
  margin: 0 auto;
  z-index: 1; }

.rmm ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative; }

.rmm ul:after {
  content: "";
  clear: both;
  display: block; }

.rmm ul li {
  float: left; }

.rmm ul li a {
  border-right: solid 1px #DCDCE1;
  font-size: 15px;
  line-height: 44px;
  display: inline-block;
  padding: 13px 25px 12px;
  vertical-align: middle;
  color: #66666c;
  font-weight: normal; }
  .rmm ul li a:hover {
    background: #5782B1;
    color: #fff; }
  .rmm ul li a .user-image {
    display: inline-block;
    width: 44px;
    height: 44px;
    overflow: hidden;
    line-height: 44px;
    border-radius: 23px;
    vertical-align: middle;
    margin: 0 8px 0 -7px;
    position: relative; }
    .rmm ul li a .user-image img {
      position: absolute;
      top: -9999px;
      bottom: -9999px;
      left: -9999px;
      right: -9999px;
      margin: auto; }
    @media screen and (max-width: 1050px) {
      .rmm ul li a .user-image {
        display: none; } }

.rmm ul ul li {
  float: none;
  position: relative; }
  .rmm ul ul li a {
    padding: 15px 25px;
    border: none;
    border-bottom: solid 1px #eee; }
    .rmm ul ul li a i {
      width: 30px; }
  .rmm ul ul li:last-child a {
    border: none; }

/* mobile menu header button */
.rmm-toggled {
  width: 100%;
  min-height: 50px;
  margin: 0 auto;
  display: none; }

.rmm-closed ~ .rmm-mobile {
  display: none !important; }

.rmm-toggled-controls {
  width: 100%; }

.rmm-toggled-title {
  width: 60%;
  float: left;
  font-size: 27px;
  font-weight: 600;
  display: block;
  padding: 8px 0;
  text-decoration: none;
  text-transform: uppercase;
  text-align: left;
  padding-left: 35px; }

/* normalny back button visible only on mobiles  */
.rmm .rmm-back {
  display: none;
  font-size: 12px; }

.rmm .rmm-back:after {
  display: none; }

.rmm-mobile .rmm-back {
  display: block; }

/* mobile menu list */
.rmm-mobile {
  width: 100%; }
  .rmm-mobile .rmm-submenu.rmm-subview {
    top: 0;
    background: transparent; }

.rmm-mobile ul {
  width: 100%;
  position: inherit !important; }

.rmm-mobile li {
  width: 100%; }

/* mobile menu js action */
.rmm-dropdown {
  display: block; }

.rmm-mobile .rmm-subview {
  display: block !important;
  width: 100%; }

.rmm-mobile .rmm-subover-hidden {
  display: none !important; }

.rmm-mobile .rmm-subover-visible {
  display: block; }

.rmm-mobile .rmm-subover-header {
  display: none !important;
  padding: 0;
  margin: 0; }

/* mobile menu content */
.rmm-mobile .rmm-submenu {
  position: relative;
  left: 0px; }

/* arrow down for wide screen */
.rmm.style {
  text-align: left;
  z-index: 1; }

.rmm.style ul {
  display: block;
  text-align: left; }

.rmm.style ul ul {
  display: none; }

.rmm.style ul li {
  text-align: left; }

@media screen and (min-width: 1050px) {
  .rmm.style > ul li a {
    height: 45px; } }
@media screen and (max-width: 1050px) {
  .rmm.style > ul li a {
    line-height: 22px; } }

.rmm.style > ul > li > ul {
  background-color: #fff;
  display: none;
  margin: 0;
  border-radius: 0px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 85px;
  width: 100%;
  min-width: 200px; }
  .rmm.style > ul > li > ul:after, .rmm.style > ul > li > ul:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; }
  .rmm.style > ul > li > ul:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 7px;
    margin-left: -7px; }
  .rmm.style > ul > li > ul:before {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 8px;
    margin-left: -8px; }
  @media screen and (min-width: 1050px) {
    .rmm.style > ul > li > ul {
      -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.33);
      -moz-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.33);
      box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.33); } }
  .rmm.style > ul > li > ul a {
    line-height: 20px;
    height: auto; }

.rmm.style ul li a {
  display: block;
  text-decoration: none; }

/* arrow down for wide screen */
.rmm.style ul li > a:not(:only-child):after {
  font-family: FontAwesome;
  content: "\f078";
  position: relative;
  display: inline-block;
  left: 11px;
  font-size: 13px; }

/* arrow left for wide screen submenus  */
.rmm.style ul ul li > a:not(:only-child):after {
  -webkit-transform: rotate(120deg) !important;
  transform: rotate(120deg) !important;
  top: 2px;
  font-size: 14px;
  float: right;
  margin-right: -20px; }

/* mobile style */
.rmm.style .rmm-mobile li > a:not(:only-child):after {
  font-family: FontAwesome;
  content: "\f054";
  top: 4px !important;
  font-size: 14px !important;
  float: right;
  margin-right: 0; }

.rmm.style .rmm-mobile li {
  border-top: 0 !important; }

/** Enterprise dropdown **/
.rmm.style ul ul.submenu-holder {
  display: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -moz-box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, 0.3);
  background: transparent;
  position: absolute;
  top: 85px;
  left: 50%;
  right: auto;
  margin-left: -450px;
  width: 900px;
  background: white;
  z-index: 100; }
  .rmm.style ul ul.submenu-holder:after, .rmm.style ul ul.submenu-holder:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; }
  .rmm.style ul ul.submenu-holder:after {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 7px;
    margin-left: -7px; }
  .rmm.style ul ul.submenu-holder:before {
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 8px;
    margin-left: -8px; }
  .rmm.style ul ul.submenu-holder:after, .rmm.style ul ul.submenu-holder:before {
    left: 50%; }
  .rmm.style ul ul.submenu-holder .rmm-submenu {
    display: block; }
    .rmm.style ul ul.submenu-holder .rmm-submenu a {
      border-bottom: none;
      line-height: 16px; }
  .rmm.style ul ul.submenu-holder .submenu-sublist {
    display: none; }
  .rmm.style ul ul.submenu-holder .submenu-sublist-active {
    display: block; }

@media screen and (max-width: 1050px) {
  #mainMenuEnts {
    display: none; } }

@media screen and (min-width: 1050px) {
  #mainMenuEntsResponsive {
    display: none; } }

/** My Enterprises **/
.btn-red {
  background-color: #FF5252; }
  .btn-red:hover {
    background-color: #FF1744; }

.btn-gray {
  background-color: #999; }
  .btn-gray:hover {
    background-color: #666; }

.my-enterprises-btn {
  font-size: 13px; }

/** NEW MODAL **/
.modal-title {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 16px;
  display: block;
  text-transform: uppercase;
  font-weight: 500; }

/** MODALS **/
#ratingModal .rating-box {
  margin-left: 2px; }
  #ratingModal .rating-box > span {
    font-size: 33px; }
#ratingModal .modal-title {
  margin-bottom: 5px; }
#ratingModal .rating-form {
  max-width: 340px; }
  #ratingModal .rating-form p {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 0; }
#ratingModal textarea {
  height: 100px;
  margin-top: 20px; }
  @media screen and (max-width: 770px) {
    #ratingModal textarea {
      width: 240px; } }

/** Test **/
.ps-sad {
  text-align: center; }
  .ps-sad i {
    font-size: 60px !important;
    margin: 0 10px 0 0 !important;
    color: #99999d !important; }

.user-image {
  text-align: center;
  overflow: hidden; }
  .user-image img {
    width: 100%; }

.user-image-small {
  width: 50px;
  height: 50px;
  border-radius: 25px; }

.user-image-medium {
  width: 80px;
  height: 80px;
  border-radius: 40px; }
  @media screen and (max-width: 770px) {
    .user-image-medium {
      width: 50px;
      height: 50px;
      border-radius: 25px; } }

.user-image-large {
  width: 160px;
  height: 160px;
  border-radius: 80px; }
  @media screen and (max-width: 770px) {
    .user-image-large {
      width: 80px;
      height: 80px;
      border-radius: 40px; } }

i.no-image {
  background-color: #5782B1;
  width: 100%;
  height: 100%;
  font-size: 40px;
  line-height: 80px;
  color: #fff;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
  margin: 0;
  text-align: center; }
  @media screen and (max-width: 770px) {
    i.no-image {
      font-size: 25px;
      line-height: 50px; } }

i.no-image.fa-briefcase {
  font-size: 38px; }
  @media screen and (max-width: 770px) {
    i.no-image.fa-briefcase {
      font-size: 24px;
      margin: 1px 0 0 1px; } }

/** Select 2 **/
.select2-container, #s2id_mainMenuSelectCity {
  width: 100%; }
  .select2-container .select2-choice, #s2id_mainMenuSelectCity .select2-choice {
    background: #fff;
    border: solid 1px #DCDCE1;
    border-radius: 2px;
    padding: 7px 16px;
    line-height: 26px; }
    .select2-container .select2-choice .select2-arrow, #s2id_mainMenuSelectCity .select2-choice .select2-arrow {
      background: none;
      border-radius: 0 2px 2px 0;
      width: 42px;
      border-left: none; }
      .select2-container .select2-choice .select2-arrow b, #s2id_mainMenuSelectCity .select2-choice .select2-arrow b {
        background: none !important; }
        .select2-container .select2-choice .select2-arrow b:after, #s2id_mainMenuSelectCity .select2-choice .select2-arrow b:after {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          content: '\f0d7';
          font-family: "FontAwesome";
          text-align: center;
          line-height: 42px;
          color: #4d4d52; }
    .select2-container .select2-choice i, #s2id_mainMenuSelectCity .select2-choice i {
      margin: 0; }
    .select2-container .select2-choice .type-text, #s2id_mainMenuSelectCity .select2-choice .type-text {
      display: none; }

#s2id_mainMenuSelectCity a:hover {
  color: #4d4d52; }

.select2-container-active .select2-choice {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-radius: 2px 2px 0 0; }

.select2-drop {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  border-radius: 0 0 2px 2px; }
  .select2-drop i {
    margin: 0 0 0 4px;
    width: 16px; }

.select2-drop-active {
  border: solid 1px #DCDCE1;
  border-top: none; }

.select2-dropdown-open .select2-choice .select2-arrow b:after, #s2id_mainMenuSelectCity.select2-dropdown-open .select2-choice .select2-arrow b:after {
  content: "\f0d8"; }

.select2-search input {
  font-size: 14px;
  line-height: 16px;
  padding: 11px 16px;
  background: none !important; }

.select2-results .select2-highlighted {
  background: #5782B1; }
.select2-results .options-group {
  font-weight: 500; }
.select2-results .option {
  padding-left: 10px; }
.select2-results .type-text {
  padding-left: 8px; }

.select2-dropdown-open.select2-drop-above .select2-choice, .select2-dropdown-open.select2-drop-above .select2-choices {
  border: solid 1px #DCDCE1;
  background: #fff; }

.select2-container.select2-drop-above .select2-choice {
  border-radius: 0 0 2px 2px; }

.select2-drop.select2-drop-above {
  border-radius: 2px 2px 0 0; }
  .select2-drop.select2-drop-above.select2-drop-active {
    border: solid 1px #DCDCE1;
    border-bottom: none;
    box-shadow: none; }

/** Header Search **/
.header-search {
  width: 100%;
  max-width: 1000px;
  margin: auto; }
  .header-search .header-search-title {
    color: rgba(255, 255, 255, 0.65);
    font-size: 18px;
    padding-bottom: 5px; }
    @media screen and (max-width: 770px) {
      .header-search .header-search-title {
        padding-bottom: 0;
        font-size: 14px; } }
  .header-search .header-search-cell {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px; }
    @media screen and (max-width: 770px) {
      .header-search .header-search-cell {
        margin-bottom: 7px;
        margin-right: 0;
        float: none; } }

/** Jcrop **/
.jcrop-holder {
  direction: ltr;
  text-align: left; }

.jcrop-vline, .jcrop-hline {
  font-size: 0;
  position: absolute; }

.jcrop-vline {
  height: 100%;
  width: 1px !important; }

.jcrop-vline.right {
  right: 0; }

.jcrop-hline {
  height: 1px !important;
  width: 100%; }

.jcrop-hline.bottom {
  bottom: 0; }

.jcrop-tracker {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  height: 100%;
  width: 100%; }

.jcrop-handle {
  background-color: #333;
  border: 1px #EEE solid;
  font-size: 1px;
  height: 7px;
  width: 7px; }

.jcrop-handle.ord-n {
  left: 50%;
  margin-left: -4px;
  margin-top: -4px;
  top: 0; }

.jcrop-handle.ord-s {
  bottom: 0;
  left: 50%;
  margin-bottom: -4px;
  margin-left: -4px; }

.jcrop-handle.ord-e {
  margin-right: -4px;
  margin-top: -4px;
  right: 0;
  top: 50%; }

.jcrop-handle.ord-w {
  left: 0;
  margin-left: -4px;
  margin-top: -4px;
  top: 50%; }

.jcrop-handle.ord-nw {
  left: 0;
  margin-left: -4px;
  margin-top: -4px;
  top: 0; }

.jcrop-handle.ord-ne {
  margin-right: -4px;
  margin-top: -4px;
  right: 0;
  top: 0; }

.jcrop-handle.ord-se {
  bottom: 0;
  margin-bottom: -4px;
  margin-right: -4px;
  right: 0; }

.jcrop-handle.ord-sw {
  bottom: 0;
  left: 0;
  margin-bottom: -4px;
  margin-left: -4px; }

.jcrop-dragbar.ord-n, .jcrop-dragbar.ord-s {
  height: 7px;
  width: 100%; }

.jcrop-dragbar.ord-e, .jcrop-dragbar.ord-w {
  height: 100%;
  width: 7px; }

.jcrop-dragbar.ord-n {
  margin-top: -4px; }

.jcrop-dragbar.ord-s {
  bottom: 0;
  margin-bottom: -4px; }

.jcrop-dragbar.ord-e {
  margin-right: -4px;
  right: 0; }

.jcrop-dragbar.ord-w {
  margin-left: -4px; }

.jcrop-light .jcrop-vline, .jcrop-light .jcrop-hline {
  background: #FFF;
  filter: alpha(opacity=70) !important;
  opacity: .70 !important; }

.jcrop-light .jcrop-handle {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #000;
  border-color: #FFF;
  border-radius: 3px; }

.jcrop-dark .jcrop-vline, .jcrop-dark .jcrop-hline {
  background: #000;
  filter: alpha(opacity=70) !important;
  opacity: .7 !important; }

.jcrop-dark .jcrop-handle {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #FFF;
  border-color: #000;
  border-radius: 3px; }

.solid-line .jcrop-vline, .solid-line .jcrop-hline {
  background: #FFF; }

.jcrop-holder img, img.jcrop-preview {
  max-width: none; }

.header-search-cell-type {
  width: 100px; }

#image-thumbnail {
  width: 250px; }

.header-search-cell-keyword {
  width: 326px; }
  @media screen and (max-width: 770px) {
    .header-search-cell-keyword {
      width: 100%; } }
  .header-search-cell-keyword input {
    float: none; }

.header-search-cell-category {
  width: 241px; }
  @media screen and (max-width: 770px) {
    .header-search-cell-category {
      width: 100%; } }

.header-search-cell-city {
  width: 241px; }
  @media screen and (max-width: 770px) {
    .header-search-cell-city {
      width: 100%; } }

.header-search-cell-submit {
  width: 42px;
  margin-right: 0; }
  @media screen and (max-width: 770px) {
    .header-search-cell-submit {
      width: 50%;
      float: none;
      margin: auto; } }
  .header-search-cell-submit .btn {
    padding: 8px 13px; }
    @media screen and (max-width: 770px) {
      .header-search-cell-submit .btn {
        width: 100%;
        margin-top: 12px; } }
    .header-search-cell-submit .btn i {
      margin: 0;
      line-height: 1;
      font-size: 18px; }
    .header-search-cell-submit .btn span {
      display: none; }
      @media screen and (max-width: 770px) {
        .header-search-cell-submit .btn span {
          display: inline-block;
          margin-left: 5px; } }

.expand-header-search-holder {
  position: relative; }

.expand-header-search {
  position: absolute;
  right: 0;
  bottom: -25px;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #5782B1;
  float: right;
  text-align: center;
  color: #fff;
  cursor: pointer; }
  .expand-header-search:hover {
    background-color: #42709C; }
  @media screen and (max-width: 770px) {
    .expand-header-search {
      left: 50%;
      margin-left: -21px;
      bottom: -21px;
      width: 42px;
      height: 42px;
      border-radius: 21px; } }
  .expand-header-search i {
    line-height: 50px;
    font-size: 17px;
    margin: 0; }
    @media screen and (max-width: 770px) {
      .expand-header-search i {
        line-height: 42px;
        font-size: 15px; } }

.highlighted-search-result {
  background-color: #FFECB3;
  text-decoration: underline; }

/*# sourceMappingURL=general.css.map */
