/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*!
 * Cropper.js v1.5.1
 * https://fengyuanchen.github.io/cropperjs
 *
 * Copyright 2015-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2019-03-10T09:55:50.492Z
 */

.cropper-container {
  direction: ltr;
  font-size: 0;
  line-height: 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cropper-container img {
  display: block;
  height: 100%;
  image-orientation: 0deg;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  width: 100%;
}

.cropper-wrap-box,
.cropper-canvas,
.cropper-drag-box,
.cropper-crop-box,
.cropper-modal {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cropper-wrap-box,
.cropper-canvas {
  overflow: hidden;
}

.cropper-drag-box {
  background-color: #fff;
  opacity: 0;
}

.cropper-modal {
  background-color: #000;
  opacity: 0.5;
}

.cropper-view-box {
  display: block;
  height: 100%;
  outline: 1px solid #39f;
  outline-color: rgba(51, 153, 255, 0.75);
  overflow: hidden;
  width: 100%;
}

.cropper-dashed {
  border: 0 dashed #eee;
  display: block;
  opacity: 0.5;
  position: absolute;
}

.cropper-dashed.dashed-h {
  border-bottom-width: 1px;
  border-top-width: 1px;
  height: calc(100% / 3);
  left: 0;
  top: calc(100% / 3);
  width: 100%;
}

.cropper-dashed.dashed-v {
  border-left-width: 1px;
  border-right-width: 1px;
  height: 100%;
  left: calc(100% / 3);
  top: 0;
  width: calc(100% / 3);
}

.cropper-center {
  display: block;
  height: 0;
  left: 50%;
  opacity: 0.75;
  position: absolute;
  top: 50%;
  width: 0;
}

.cropper-center::before,
.cropper-center::after {
  background-color: #eee;
  content: ' ';
  display: block;
  position: absolute;
}

.cropper-center::before {
  height: 1px;
  left: -3px;
  top: 0;
  width: 7px;
}

.cropper-center::after {
  height: 7px;
  left: 0;
  top: -3px;
  width: 1px;
}

.cropper-face,
.cropper-line,
.cropper-point {
  display: block;
  height: 100%;
  opacity: 0.1;
  position: absolute;
  width: 100%;
}

.cropper-face {
  background-color: #fff;
  left: 0;
  top: 0;
}

.cropper-line {
  background-color: #39f;
}

.cropper-line.line-e {
  cursor: ew-resize;
  right: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-n {
  cursor: ns-resize;
  height: 5px;
  left: 0;
  top: -3px;
}

.cropper-line.line-w {
  cursor: ew-resize;
  left: -3px;
  top: 0;
  width: 5px;
}

.cropper-line.line-s {
  bottom: -3px;
  cursor: ns-resize;
  height: 5px;
  left: 0;
}

.cropper-point {
  background-color: #39f;
  height: 5px;
  opacity: 0.75;
  width: 5px;
}

.cropper-point.point-e {
  cursor: ew-resize;
  margin-top: -3px;
  right: -3px;
  top: 50%;
}

.cropper-point.point-n {
  cursor: ns-resize;
  left: 50%;
  margin-left: -3px;
  top: -3px;
}

.cropper-point.point-w {
  cursor: ew-resize;
  left: -3px;
  margin-top: -3px;
  top: 50%;
}

.cropper-point.point-s {
  bottom: -3px;
  cursor: s-resize;
  left: 50%;
  margin-left: -3px;
}

.cropper-point.point-ne {
  cursor: nesw-resize;
  right: -3px;
  top: -3px;
}

.cropper-point.point-nw {
  cursor: nwse-resize;
  left: -3px;
  top: -3px;
}

.cropper-point.point-sw {
  bottom: -3px;
  cursor: nesw-resize;
  left: -3px;
}

.cropper-point.point-se {
  bottom: -3px;
  cursor: nwse-resize;
  height: 20px;
  opacity: 1;
  right: -3px;
  width: 20px;
}

@media (min-width: 768px) {
  .cropper-point.point-se {
    height: 15px;
    width: 15px;
  }
}

@media (min-width: 992px) {
  .cropper-point.point-se {
    height: 10px;
    width: 10px;
  }
}

@media (min-width: 1200px) {
  .cropper-point.point-se {
    height: 5px;
    opacity: 0.75;
    width: 5px;
  }
}

.cropper-point.point-se::before {
  background-color: #39f;
  bottom: -50%;
  content: ' ';
  display: block;
  height: 200%;
  opacity: 0;
  position: absolute;
  right: -50%;
  width: 200%;
}

.cropper-invisible {
  opacity: 0;
}

.cropper-bg {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMz////TjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC');
}

.cropper-hide {
  display: block;
  height: 0;
  position: absolute;
  width: 0;
}

.cropper-hidden {
  display: none !important;
}

.cropper-move {
  cursor: move;
}

.cropper-crop {
  cursor: crosshair;
}

.cropper-disabled .cropper-drag-box,
.cropper-disabled .cropper-face,
.cropper-disabled .cropper-line,
.cropper-disabled .cropper-point {
  cursor: not-allowed;
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
      padding-left: 8px;
      padding-right: 20px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .select2-container .select2-selection--single .select2-selection__clear {
      position: relative; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px;
      padding: 0; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
      list-style: none; }
  .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
  .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px; }
  .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
    .select2-container--classic .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }
  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none; }
    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
      border-color: transparent transparent #888 transparent;
      border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }
/**
Ion.RangeSlider, 2.3.0
© Denis Ineshin, 2010 - 2018, IonDen.com
Build date: 2018-12-11 23:23:51
*/
.irs {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 12px;
  font-family: Arial, sans-serif;
}
.irs-line {
  position: relative;
  display: block;
  overflow: hidden;
  outline: none !important;
}
.irs-bar {
  position: absolute;
  display: block;
  left: 0;
  width: 0;
}
.irs-shadow {
  position: absolute;
  display: none;
  left: 0;
  width: 0;
}
.irs-handle {
  position: absolute;
  display: block;
  box-sizing: border-box;
  cursor: default;
  z-index: 1;
}
.irs-handle.type_last {
  z-index: 2;
}
.irs-min,
.irs-max {
  position: absolute;
  display: block;
  cursor: default;
}
.irs-min {
  left: 0;
}
.irs-max {
  right: 0;
}
.irs-from,
.irs-to,
.irs-single {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  cursor: default;
  white-space: nowrap;
}
.irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
}
.irs-with-grid .irs-grid {
  display: block;
}
.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #000;
}
.irs-grid-pol.small {
  height: 4px;
}
.irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #000;
}
.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}
.lt-ie9 .irs-disable-mask {
  background: #000;
  filter: alpha(opacity=0);
  cursor: not-allowed;
}
.irs-disabled {
  opacity: 0.4;
}
.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  outline: none !important;
  z-index: -9999 !important;
  background: none !important;
  border-style: solid !important;
  border-color: transparent !important;
}
.irs--flat {
  height: 40px;
}
.irs--flat.irs-with-grid {
  height: 60px;
}
.irs--flat .irs-line {
  top: 25px;
  height: 12px;
  background-color: #e1e4e9;
  border-radius: 4px;
}
.irs--flat .irs-bar {
  top: 25px;
  height: 12px;
  background-color: #ed5565;
}
.irs--flat .irs-bar--single {
  border-radius: 4px 0 0 4px;
}
.irs--flat .irs-shadow {
  height: 1px;
  bottom: 16px;
  background-color: #e1e4e9;
}
.irs--flat .irs-handle {
  top: 22px;
  width: 16px;
  height: 18px;
  background-color: transparent;
}
.irs--flat .irs-handle > i:first-child {
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  background-color: #da4453;
}
.irs--flat .irs-handle.state_hover > i:first-child,
.irs--flat .irs-handle:hover > i:first-child {
  background-color: #a43540;
}
.irs--flat .irs-min,
.irs--flat .irs-max {
  top: 0;
  padding: 1px 3px;
  color: #999;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  background-color: #e1e4e9;
  border-radius: 4px;
}
.irs--flat .irs-from,
.irs--flat .irs-to,
.irs--flat .irs-single {
  color: white;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #ed5565;
  border-radius: 4px;
}
.irs--flat .irs-from:before,
.irs--flat .irs-to:before,
.irs--flat .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #ed5565;
}
.irs--flat .irs-grid-pol {
  background-color: #e1e4e9;
}
.irs--flat .irs-grid-text {
  color: #999;
}
.irs--big {
  height: 55px;
}
.irs--big.irs-with-grid {
  height: 70px;
}
.irs--big .irs-line {
  top: 33px;
  height: 12px;
  background-color: white;
  background: linear-gradient(to bottom, #ddd -50%, white 150%);
  border: 1px solid #ccc;
  border-radius: 12px;
}
.irs--big .irs-bar {
  top: 33px;
  height: 12px;
  background-color: #92bce0;
  border: 1px solid #428bca;
  background: linear-gradient(to bottom, #ffffff 0%, #428bca 30%, #b9d4ec 100%);
  box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
}
.irs--big .irs-bar--single {
  border-radius: 12px 0 0 12px;
}
.irs--big .irs-shadow {
  height: 1px;
  bottom: 16px;
  background-color: rgba(66, 139, 202, 0.5);
}
.irs--big .irs-handle {
  top: 25px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background-color: #cbcfd5;
  background: linear-gradient(to bottom, white 0%, #B4B9BE 30%, white 100%);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px white;
  border-radius: 30px;
}
.irs--big .irs-handle.state_hover,
.irs--big .irs-handle:hover {
  border-color: rgba(0, 0, 0, 0.45);
  background-color: #939ba7;
  background: linear-gradient(to bottom, white 0%, #919BA5 30%, white 100%);
}
.irs--big .irs-min,
.irs--big .irs-max {
  top: 0;
  padding: 1px 5px;
  color: white;
  text-shadow: none;
  background-color: #9f9f9f;
  border-radius: 3px;
}
.irs--big .irs-from,
.irs--big .irs-to,
.irs--big .irs-single {
  color: white;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #428bca;
  background: linear-gradient(to bottom, #428bca 0%, #3071a9 100%);
  border-radius: 3px;
}
.irs--big .irs-grid-pol {
  background-color: #428bca;
}
.irs--big .irs-grid-text {
  color: #428bca;
}
.irs--modern {
  height: 55px;
}
.irs--modern.irs-with-grid {
  height: 55px;
}
.irs--modern .irs-line {
  top: 25px;
  height: 5px;
  background-color: #d1d6e0;
  background: linear-gradient(to bottom, #e0e4ea 0%, #d1d6e0 100%);
  border: 1px solid #a3adc1;
  border-bottom-width: 0;
  border-radius: 5px;
}
.irs--modern .irs-bar {
  top: 25px;
  height: 5px;
  background: #20b426;
  background: linear-gradient(to bottom, #20b426 0%, #18891d 100%);
}
.irs--modern .irs-bar--single {
  border-radius: 5px 0 0 5px;
}
.irs--modern .irs-shadow {
  height: 1px;
  bottom: 21px;
  background-color: rgba(209, 214, 224, 0.5);
}
.irs--modern .irs-handle {
  top: 37px;
  width: 12px;
  height: 13px;
  border: 1px solid #a3adc1;
  border-top-width: 0;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}
.irs--modern .irs-handle > i:nth-child(1) {
  position: absolute;
  display: block;
  top: -4px;
  left: 1px;
  width: 6px;
  height: 6px;
  border: 1px solid #a3adc1;
  background: white;
  transform: rotate(45deg);
}
.irs--modern .irs-handle > i:nth-child(2) {
  position: absolute;
  display: block;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 10px;
  height: 12px;
  background: #e9e6e6;
  background: linear-gradient(to bottom, white 0%, #e9e6e6 100%);
  border-radius: 0 0 3px 3px;
}
.irs--modern .irs-handle > i:nth-child(3) {
  position: absolute;
  display: block;
  box-sizing: border-box;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 5px;
  border-left: 1px solid #a3adc1;
  border-right: 1px solid #a3adc1;
}
.irs--modern .irs-handle.state_hover,
.irs--modern .irs-handle:hover {
  border-color: #7685a2;
  background: #c3c7cd;
  background: linear-gradient(to bottom, #ffffff 0%, #919ba5 30%, #ffffff 100%);
}
.irs--modern .irs-handle.state_hover > i:nth-child(1),
.irs--modern .irs-handle:hover > i:nth-child(1) {
  border-color: #7685a2;
}
.irs--modern .irs-handle.state_hover > i:nth-child(3),
.irs--modern .irs-handle:hover > i:nth-child(3) {
  border-color: #48536a;
}
.irs--modern .irs-min,
.irs--modern .irs-max {
  top: 0;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  color: white;
  background-color: #d1d6e0;
  border-radius: 5px;
}
.irs--modern .irs-from,
.irs--modern .irs-to,
.irs--modern .irs-single {
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #20b426;
  color: white;
  border-radius: 5px;
}
.irs--modern .irs-from:before,
.irs--modern .irs-to:before,
.irs--modern .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #20b426;
}
.irs--modern .irs-grid {
  height: 25px;
}
.irs--modern .irs-grid-pol {
  background-color: #dedede;
}
.irs--modern .irs-grid-text {
  color: silver;
  font-size: 13px;
}
.irs--sharp {
  height: 50px;
  font-size: 12px;
  line-height: 1;
}
.irs--sharp.irs-with-grid {
  height: 57px;
}
.irs--sharp .irs-line {
  top: 30px;
  height: 2px;
  background-color: black;
  border-radius: 2px;
}
.irs--sharp .irs-bar {
  top: 30px;
  height: 2px;
  background-color: #ee22fa;
}
.irs--sharp .irs-bar--single {
  border-radius: 2px 0 0 2px;
}
.irs--sharp .irs-shadow {
  height: 1px;
  bottom: 21px;
  background-color: rgba(0, 0, 0, 0.5);
}
.irs--sharp .irs-handle {
  top: 25px;
  width: 10px;
  height: 10px;
  background-color: #a804b2;
}
.irs--sharp .irs-handle > i:first-child {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: #a804b2;
}
.irs--sharp .irs-handle.state_hover,
.irs--sharp .irs-handle:hover {
  background-color: black;
}
.irs--sharp .irs-handle.state_hover > i:first-child,
.irs--sharp .irs-handle:hover > i:first-child {
  border-top-color: black;
}
.irs--sharp .irs-min,
.irs--sharp .irs-max {
  color: white;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 4px;
  opacity: 0.4;
  background-color: #a804b2;
  border-radius: 2px;
}
.irs--sharp .irs-from,
.irs--sharp .irs-to,
.irs--sharp .irs-single {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 4px;
  background-color: #a804b2;
  color: white;
  border-radius: 2px;
}
.irs--sharp .irs-from:before,
.irs--sharp .irs-to:before,
.irs--sharp .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #a804b2;
}
.irs--sharp .irs-grid {
  height: 25px;
}
.irs--sharp .irs-grid-pol {
  background-color: #dedede;
}
.irs--sharp .irs-grid-text {
  color: silver;
  font-size: 13px;
}
.irs--round {
  height: 50px;
}
.irs--round.irs-with-grid {
  height: 65px;
}
.irs--round .irs-line {
  top: 36px;
  height: 4px;
  background-color: #dee4ec;
  border-radius: 4px;
}
.irs--round .irs-bar {
  top: 36px;
  height: 4px;
  background-color: #006cfa;
}
.irs--round .irs-bar--single {
  border-radius: 4px 0 0 4px;
}
.irs--round .irs-shadow {
  height: 4px;
  bottom: 21px;
  background-color: rgba(222, 228, 236, 0.5);
}
.irs--round .irs-handle {
  top: 26px;
  width: 24px;
  height: 24px;
  border: 4px solid #006cfa;
  background-color: white;
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 255, 0.3);
}
.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover {
  background-color: #f0f6ff;
}
.irs--round .irs-min,
.irs--round .irs-max {
  color: #333;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 5px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 5px;
  background-color: #006cfa;
  color: white;
  border-radius: 4px;
}
.irs--round .irs-from:before,
.irs--round .irs-to:before,
.irs--round .irs-single:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #006cfa;
}
.irs--round .irs-grid {
  height: 25px;
}
.irs--round .irs-grid-pol {
  background-color: #dedede;
}
.irs--round .irs-grid-text {
  color: silver;
  font-size: 13px;
}
.irs--square {
  height: 50px;
}
.irs--square.irs-with-grid {
  height: 60px;
}
.irs--square .irs-line {
  top: 31px;
  height: 4px;
  background-color: #dedede;
}
.irs--square .irs-bar {
  top: 31px;
  height: 4px;
  background-color: black;
}
.irs--square .irs-shadow {
  height: 2px;
  bottom: 21px;
  background-color: #dedede;
}
.irs--square .irs-handle {
  top: 25px;
  width: 16px;
  height: 16px;
  border: 3px solid black;
  background-color: white;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.irs--square .irs-handle.state_hover,
.irs--square .irs-handle:hover {
  background-color: #f0f6ff;
}
.irs--square .irs-min,
.irs--square .irs-max {
  color: #333;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 5px;
  background-color: rgba(0, 0, 0, 0.1);
}
.irs--square .irs-from,
.irs--square .irs-to,
.irs--square .irs-single {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 5px;
  background-color: black;
  color: white;
}
.irs--square .irs-grid {
  height: 25px;
}
.irs--square .irs-grid-pol {
  background-color: #dedede;
}
.irs--square .irs-grid-text {
  color: silver;
  font-size: 11px;
}
.datepicker {
  display: none;
  position: absolute;
  padding: 4px;
  margin-top: 1px;
  direction: ltr; }
  .datepicker.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    display: none;
    min-width: 160px;
    list-style: none;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    *border-right-width: 2px;
    *border-bottom-width: 2px;
    color: #333;
    font-size: 13px;
    line-height: 18px; }
    .datepicker.dropdown-menu th {
      padding: 4px 5px; }
    .datepicker.dropdown-menu td {
      padding: 4px 5px; }
  .datepicker table {
    border: 0;
    margin: 0;
    width: auto; }
    .datepicker table tr td span {
      display: block;
      width: 23%;
      height: 54px;
      line-height: 54px;
      float: left;
      margin: 1%;
      cursor: pointer; }
  .datepicker td {
    text-align: center;
    width: 20px;
    height: 20px;
    border: 0;
    font-size: 12px;
    padding: 4px 8px;
    background: #fff;
    cursor: pointer; }
    .datepicker td.active.day, .datepicker td.active.year {
      background: #2ba6cb; }
    .datepicker td.old, .datepicker td.new {
      color: #999; }
    .datepicker td span.active {
      background: #2ba6cb; }
    .datepicker td.day.disabled {
      color: #eee; }
    .datepicker td span.month.disabled, .datepicker td span.year.disabled {
      color: #eee; }
  .datepicker th {
    text-align: center;
    width: 20px;
    height: 20px;
    border: 0;
    font-size: 12px;
    padding: 4px 8px;
    background: #fff;
    cursor: pointer; }
    .datepicker th.active.day, .datepicker th.active.year {
      background: #2ba6cb; }
    .datepicker th.date-switch {
      width: 145px; }
    .datepicker th span.active {
      background: #2ba6cb; }
  .datepicker .cw {
    font-size: 10px;
    width: 12px;
    padding: 0 2px 0 5px;
    vertical-align: middle; }
  .datepicker.days div.datepicker-days {
    display: block; }
  .datepicker.months div.datepicker-months {
    display: block; }
  .datepicker.years div.datepicker-years {
    display: block; }
  .datepicker thead tr:first-child th {
    cursor: pointer; }
    .datepicker thead tr:first-child th.cw {
      cursor: default;
      background-color: transparent; }
  .datepicker tfoot tr:first-child th {
    cursor: pointer; }

.datepicker-inline {
  width: 220px; }

.datepicker-rtl {
  direction: rtl; }
  .datepicker-rtl table tr td span {
    float: right; }

.datepicker-dropdown {
  top: 0;
  left: 0; }
  .datepicker-dropdown:before {
    content: '';
    display: inline-block;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-bottom-color: 1px solid rgba(0, 0, 0, 0.2);
    position: absolute;
    top: -7px;
    left: 6px; }
  .datepicker-dropdown:after {
    content: '';
    display: inline-block;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    position: absolute;
    top: -6px;
    left: 7px; }

.datepicker > div,
.datepicker-dropdown::before,
.datepicker-dropdown::after {
  display: none; }

.datepicker-close {
  position: absolute;
  top: -30px;
  right: 0;
  width: 15px;
  height: 30px;
  padding: 0;
  display: none; }

.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent; }
.wickedpicker{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;box-shadow:0 0 0 1px rgba(14,41,57,.12),0 2px 5px rgba(14,41,57,.44),inset 0 -1px 2px rgba(14,41,57,.15);background:#fefefe;margin:0 auto;border-radius:.1px;width:270px;height:130px;font-size:14px;display:none}.wickedpicker__title{background-image:-webkit-linear-gradient(top,#fff 0,#f2f2f2 100%);position:relative;background:#f2f2f2;margin:0 auto;border-bottom:1px solid #e5e5e5;padding:12px 11px 10px 15px;color:#4C4C4C;font-size:inherit}.wickedpicker__close{-webkit-transform:translateY(-25%);-moz-transform:translateY(-25%);-ms-transform:translateY(-25%);-o-transform:translateY(-25%);transform:translateY(-25%);position:absolute;top:25%;right:10px;color:#34495e;cursor:pointer}.wickedpicker__close:before{content:'\D7'}.wickedpicker__controls{padding:10px 0;line-height:normal;margin:0}.wickedpicker__controls__control,.wickedpicker__controls__control--separator{vertical-align:middle;display:inline-block;font-size:inherit;margin:0 auto;width:35px;letter-spacing:1.3px}.wickedpicker__controls__control-down,.wickedpicker__controls__control-up{color:#34495e;position:relative;display:block;margin:3px auto;font-size:18px;cursor:pointer}.wickedpicker__controls__control-up:before{content:'\E800'}.wickedpicker__controls__control-down:after{content:'\E801'}.wickedpicker__controls__control--separator{width:5px}.text-center,.wickedpicker__controls,.wickedpicker__controls__control,.wickedpicker__controls__control--separator,.wickedpicker__controls__control-down,.wickedpicker__controls__control-up,.wickedpicker__title{text-align:center}.hover-state{color:#3498db}@font-face{font-family:fontello;src:url(../fonts/fontello.eot?52602240);src:url(../fonts/fontello.eot?52602240#iefix) format("embedded-opentype"),url(../fonts/fontello.woff?52602240) format("woff"),url(../fonts/fontello.ttf?52602240) format("truetype"),url(../fonts/fontello.svg?52602240#fontello) format("svg");font-weight:400;font-style:normal}.fontello-after:after,.fontello:before,.wickedpicker__controls__control-down:after,.wickedpicker__controls__control-up:before{font-family:fontello;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.clearable-picker{position:relative;display:inline-block}.clearable-picker>.hasWickedpicker{padding-right:1em}.clearable-picker>.hasWickedpicker::-ms-clear{display:none}.clearable-picker>[data-clear-picker]{position:absolute;top:50%;right:0;transform:translateY(-50%);font-weight:700;font-size:.8em;padding:0 .3em .2em;line-height:1;color:#bababa;cursor:pointer}.clearable-picker>[data-clear-picker]:hover{color:#a1a1a1}@charset "UTF-8";
/*@if $global-text-direction == rtl {
  $body-font-family: $font-family-tanseek-light;
  $titles-font-family: $font-family-tanseek-bold;
  $global-font-size: 100%;
}*/
/**
 * Foundation for Sites by ZURB
 * Version 6.2.4
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
   * 1. Set default font family to sans-serif.
   * 2. Prevent iOS and IE text size adjust after device orientation change,
   *    without disabling user zoom.
   */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
   * Remove default margin.
   */
body {
  margin: 0; }

/* HTML5 display definitions
     ========================================================================== */
/**
   * Correct `block` display not defined for any HTML5 element in IE 8/9.
   * Correct `block` display not defined for `details` or `summary` in IE 10/11
   * and Firefox.
   * Correct `block` display not defined for `main` in IE 11.
   */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
   * 1. Correct `inline-block` display not defined in IE 8/9.
   * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
   */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
   * Prevent modern browsers from displaying `audio` without controls.
   * Remove excess height in iOS 5 devices.
   */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
   * Address `[hidden]` styling not present in IE 8/9/10.
   * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
   */
[hidden],
template {
  display: none; }

/* Links
     ========================================================================== */
/**
   * Remove the gray background color from active links in IE 10.
   */
a {
  background-color: transparent; }

/**
   * Improve readability of focused elements when they are also in an
   * active/hover state.
   */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
     ========================================================================== */
/**
   * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
   */
abbr[title] {
  border-bottom: 1px dotted; }

/**
   * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
   */
b,
strong {
  font-weight: bold; }

/**
   * Address styling not present in Safari and Chrome.
   */
dfn {
  font-style: italic; }

/**
   * Address variable `h1` font-size and margin within `section` and `article`
   * contexts in Firefox 4+, Safari, and Chrome.
   */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
   * Address styling not present in IE 8/9.
   */
mark {
  background: #ff0;
  color: #000; }

/**
   * Address inconsistent and variable font size in all browsers.
   */
small {
  font-size: 80%; }

/**
   * Prevent `sub` and `sup` affecting `line-height` in all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
     ========================================================================== */
/**
   * Remove border when inside `a` element in IE 8/9/10.
   */
img {
  border: 0; }

/**
   * Correct overflow not hidden in IE 9/10/11.
   */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
     ========================================================================== */
/**
   * Address margin not present in IE 8/9 and Safari.
   */
figure {
  margin: 1em 40px; }

/**
   * Address differences between Firefox and other browsers.
   */
hr {
  box-sizing: content-box;
  height: 0; }

/**
   * Contain overflow in all browsers.
   */
pre {
  overflow: auto; }

/**
   * Address odd `em`-unit font size rendering in all browsers.
   */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
     ========================================================================== */
/**
   * Known limitation: by default, Chrome and Safari on OS X allow very limited
   * styling of `select`, unless a `border` property is set.
   */
/**
   * 1. Correct color not being inherited.
   *    Known issue: affects color of disabled elements.
   * 2. Correct font properties not being inherited.
   * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
   */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
   * Address `overflow` set to `hidden` in IE 8/9/10/11.
   */
button {
  overflow: visible; }

/**
   * Address inconsistent `text-transform` inheritance for `button` and `select`.
   * All other form control elements do not inherit `text-transform` values.
   * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
   * Correct `select` style inheritance in Firefox.
   */
button,
select {
  text-transform: none; }

/**
   * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
   *    and `video` controls.
   * 2. Correct inability to style clickable `input` types in iOS.
   * 3. Improve usability and consistency of cursor style between image-type
   *    `input` and others.
   */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
   * Re-set default cursor for disabled elements.
   */
button[disabled],
html input[disabled] {
  cursor: not-allowed; }

/**
   * Remove inner padding and border in Firefox 4+.
   */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
   * Address Firefox 4+ setting `line-height` on `input` using `!important` in
   * the UA stylesheet.
   */
input {
  line-height: normal; }

/**
   * It's recommended that you don't attempt to style these elements.
   * Firefox's implementation doesn't respect box-sizing, padding, or width.
   *
   * 1. Address box sizing set to `content-box` in IE 8/9/10.
   * 2. Remove excess padding in IE 8/9/10.
   */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
   * Fix the cursor style for Chrome's increment/decrement buttons. For certain
   * `font-size` values of the `input`, it causes the cursor style of the
   * decrement button to change from `default` to `text`.
   */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
   * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
   * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
   */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
   * Remove inner padding and search cancel button in Safari and Chrome on OS X.
   * Safari (but not Chrome) clips the cancel button when the search input has
   * padding (and `textfield` appearance).
   */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
   * Define consistent border, margin, and padding.
   * [NOTE] We don't enable this ruleset in Foundation, because we want the <fieldset> element to have plain styling.
   */
/* fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
  } */
/**
   * 1. Correct `color` not being inherited in IE 8/9/10/11.
   * 2. Remove padding so people aren't caught out if they zero out fieldsets.
   */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
   * Remove default vertical scrollbar in IE 8/9/10/11.
   */
textarea {
  overflow: auto; }

/**
   * Don't inherit the `font-weight` (applied by a rule above).
   * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
   */
optgroup {
  font-weight: bold; }

/* Tables
     ========================================================================== */
/**
   * Remove most spacing between table cells.
   */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

.foundation-mq {
  font-family: "small=0em&medium=48em&large=64em&xlarge=75em&xxlarge=90em"; }

html {
  font-size: 16px;
  box-sizing: border-box; }

*,
*::before,
*::after {
  box-sizing: inherit; }

body {
  padding: 0;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #484848;
  background: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0; }

select {
  width: 100%;
  border-radius: 0; }

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important; }

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  line-height: 1; }
  [data-whatinput='mouse'] button {
    outline: 0; }

.is-visible {
  display: block !important; }

.is-hidden {
  display: none !important; }

.row {
  max-width: 85.375rem;
  margin-left: auto;
  margin-right: auto; }
  .row::before, .row::after {
    content: ' ';
    display: table; }
  .row::after {
    clear: both; }
  .row.collapse > .column, .row.collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row .row {
    margin-left: -0.625rem;
    margin-right: -0.625rem; }
    @media screen and (min-width: 48em) {
      .row .row {
        margin-left: -0.9375rem;
        margin-right: -0.9375rem; } }
    .row .row.collapse {
      margin-left: 0;
      margin-right: 0; }
  .row.expanded {
    max-width: none; }
    .row.expanded .row {
      margin-left: auto;
      margin-right: auto; }

.column, .columns {
  width: 100%;
  float: left;
  padding-left: 0.625rem;
  padding-right: 0.625rem; }
  @media screen and (min-width: 48em) {
    .column, .columns {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; } }
  .column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
    float: right; }
  .column.end:last-child:last-child, .end.columns:last-child:last-child {
    float: left; }

.column.row.row, .row.row.columns {
  float: none; }

.row .column.row.row, .row .row.row.columns {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0; }

.small-1 {
  width: 8.33333%; }

.small-push-1 {
  position: relative;
  left: 8.33333%; }

.small-pull-1 {
  position: relative;
  left: -8.33333%; }

.small-offset-0 {
  margin-left: 0%; }

.small-2 {
  width: 16.66667%; }

.small-push-2 {
  position: relative;
  left: 16.66667%; }

.small-pull-2 {
  position: relative;
  left: -16.66667%; }

.small-offset-1 {
  margin-left: 8.33333%; }

.small-3 {
  width: 25%; }

.small-push-3 {
  position: relative;
  left: 25%; }

.small-pull-3 {
  position: relative;
  left: -25%; }

.small-offset-2 {
  margin-left: 16.66667%; }

.small-4 {
  width: 33.33333%; }

.small-push-4 {
  position: relative;
  left: 33.33333%; }

.small-pull-4 {
  position: relative;
  left: -33.33333%; }

.small-offset-3 {
  margin-left: 25%; }

.small-5 {
  width: 41.66667%; }

.small-push-5 {
  position: relative;
  left: 41.66667%; }

.small-pull-5 {
  position: relative;
  left: -41.66667%; }

.small-offset-4 {
  margin-left: 33.33333%; }

.small-6 {
  width: 50%; }

.small-push-6 {
  position: relative;
  left: 50%; }

.small-pull-6 {
  position: relative;
  left: -50%; }

.small-offset-5 {
  margin-left: 41.66667%; }

.small-7 {
  width: 58.33333%; }

.small-push-7 {
  position: relative;
  left: 58.33333%; }

.small-pull-7 {
  position: relative;
  left: -58.33333%; }

.small-offset-6 {
  margin-left: 50%; }

.small-8 {
  width: 66.66667%; }

.small-push-8 {
  position: relative;
  left: 66.66667%; }

.small-pull-8 {
  position: relative;
  left: -66.66667%; }

.small-offset-7 {
  margin-left: 58.33333%; }

.small-9 {
  width: 75%; }

.small-push-9 {
  position: relative;
  left: 75%; }

.small-pull-9 {
  position: relative;
  left: -75%; }

.small-offset-8 {
  margin-left: 66.66667%; }

.small-10 {
  width: 83.33333%; }

.small-push-10 {
  position: relative;
  left: 83.33333%; }

.small-pull-10 {
  position: relative;
  left: -83.33333%; }

.small-offset-9 {
  margin-left: 75%; }

.small-11 {
  width: 91.66667%; }

.small-push-11 {
  position: relative;
  left: 91.66667%; }

.small-pull-11 {
  position: relative;
  left: -91.66667%; }

.small-offset-10 {
  margin-left: 83.33333%; }

.small-12 {
  width: 100%; }

.small-offset-11 {
  margin-left: 91.66667%; }

.small-up-1 > .column, .small-up-1 > .columns {
  width: 100%;
  float: left; }
  .small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
    clear: both; }
  .small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
    float: left; }

.small-up-2 > .column, .small-up-2 > .columns {
  width: 50%;
  float: left; }
  .small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
    clear: both; }
  .small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
    float: left; }

.small-up-3 > .column, .small-up-3 > .columns {
  width: 33.33333%;
  float: left; }
  .small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
    clear: both; }
  .small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
    float: left; }

.small-up-4 > .column, .small-up-4 > .columns {
  width: 25%;
  float: left; }
  .small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
    clear: both; }
  .small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
    float: left; }

.small-up-5 > .column, .small-up-5 > .columns {
  width: 20%;
  float: left; }
  .small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
    clear: both; }
  .small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
    float: left; }

.small-up-6 > .column, .small-up-6 > .columns {
  width: 16.66667%;
  float: left; }
  .small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
    clear: both; }
  .small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
    float: left; }

.small-up-7 > .column, .small-up-7 > .columns {
  width: 14.28571%;
  float: left; }
  .small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
    clear: both; }
  .small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
    float: left; }

.small-up-8 > .column, .small-up-8 > .columns {
  width: 12.5%;
  float: left; }
  .small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
    clear: both; }
  .small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
    float: left; }

.small-collapse > .column, .small-collapse > .columns {
  padding-left: 0;
  padding-right: 0; }

.small-collapse .row {
  margin-left: 0;
  margin-right: 0; }

.expanded.row .small-collapse.row {
  margin-left: 0;
  margin-right: 0; }

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-left: 0.625rem;
  padding-right: 0.625rem; }

.small-centered {
  margin-left: auto;
  margin-right: auto; }
  .small-centered, .small-centered:last-child:not(:first-child) {
    float: none;
    clear: both; }

.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  margin-left: 0;
  margin-right: 0;
  float: left; }

@media screen and (min-width: 48em) {
  .medium-1 {
    width: 8.33333%; }
  .medium-push-1 {
    position: relative;
    left: 8.33333%; }
  .medium-pull-1 {
    position: relative;
    left: -8.33333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    width: 16.66667%; }
  .medium-push-2 {
    position: relative;
    left: 16.66667%; }
  .medium-pull-2 {
    position: relative;
    left: -16.66667%; }
  .medium-offset-1 {
    margin-left: 8.33333%; }
  .medium-3 {
    width: 25%; }
  .medium-push-3 {
    position: relative;
    left: 25%; }
  .medium-pull-3 {
    position: relative;
    left: -25%; }
  .medium-offset-2 {
    margin-left: 16.66667%; }
  .medium-4 {
    width: 33.33333%; }
  .medium-push-4 {
    position: relative;
    left: 33.33333%; }
  .medium-pull-4 {
    position: relative;
    left: -33.33333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    width: 41.66667%; }
  .medium-push-5 {
    position: relative;
    left: 41.66667%; }
  .medium-pull-5 {
    position: relative;
    left: -41.66667%; }
  .medium-offset-4 {
    margin-left: 33.33333%; }
  .medium-6 {
    width: 50%; }
  .medium-push-6 {
    position: relative;
    left: 50%; }
  .medium-pull-6 {
    position: relative;
    left: -50%; }
  .medium-offset-5 {
    margin-left: 41.66667%; }
  .medium-7 {
    width: 58.33333%; }
  .medium-push-7 {
    position: relative;
    left: 58.33333%; }
  .medium-pull-7 {
    position: relative;
    left: -58.33333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    width: 66.66667%; }
  .medium-push-8 {
    position: relative;
    left: 66.66667%; }
  .medium-pull-8 {
    position: relative;
    left: -66.66667%; }
  .medium-offset-7 {
    margin-left: 58.33333%; }
  .medium-9 {
    width: 75%; }
  .medium-push-9 {
    position: relative;
    left: 75%; }
  .medium-pull-9 {
    position: relative;
    left: -75%; }
  .medium-offset-8 {
    margin-left: 66.66667%; }
  .medium-10 {
    width: 83.33333%; }
  .medium-push-10 {
    position: relative;
    left: 83.33333%; }
  .medium-pull-10 {
    position: relative;
    left: -83.33333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    width: 91.66667%; }
  .medium-push-11 {
    position: relative;
    left: 91.66667%; }
  .medium-pull-11 {
    position: relative;
    left: -91.66667%; }
  .medium-offset-10 {
    margin-left: 83.33333%; }
  .medium-12 {
    width: 100%; }
  .medium-offset-11 {
    margin-left: 91.66667%; }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    width: 100%;
    float: left; }
    .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
      float: left; }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    width: 50%;
    float: left; }
    .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
      float: left; }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    width: 33.33333%;
    float: left; }
    .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
      float: left; }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    width: 25%;
    float: left; }
    .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
      float: left; }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    width: 20%;
    float: left; }
    .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
      float: left; }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    width: 16.66667%;
    float: left; }
    .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
      float: left; }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    width: 14.28571%;
    float: left; }
    .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
      float: left; }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
      float: left; }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .medium-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .expanded.row .medium-collapse.row {
    margin-left: 0;
    margin-right: 0; }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .medium-centered {
    margin-left: auto;
    margin-right: auto; }
    .medium-centered, .medium-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 64em) {
  .large-1 {
    width: 8.33333%; }
  .large-push-1 {
    position: relative;
    left: 8.33333%; }
  .large-pull-1 {
    position: relative;
    left: -8.33333%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    width: 16.66667%; }
  .large-push-2 {
    position: relative;
    left: 16.66667%; }
  .large-pull-2 {
    position: relative;
    left: -16.66667%; }
  .large-offset-1 {
    margin-left: 8.33333%; }
  .large-3 {
    width: 25%; }
  .large-push-3 {
    position: relative;
    left: 25%; }
  .large-pull-3 {
    position: relative;
    left: -25%; }
  .large-offset-2 {
    margin-left: 16.66667%; }
  .large-4 {
    width: 33.33333%; }
  .large-push-4 {
    position: relative;
    left: 33.33333%; }
  .large-pull-4 {
    position: relative;
    left: -33.33333%; }
  .large-offset-3 {
    margin-left: 25%; }
  .large-5 {
    width: 41.66667%; }
  .large-push-5 {
    position: relative;
    left: 41.66667%; }
  .large-pull-5 {
    position: relative;
    left: -41.66667%; }
  .large-offset-4 {
    margin-left: 33.33333%; }
  .large-6 {
    width: 50%; }
  .large-push-6 {
    position: relative;
    left: 50%; }
  .large-pull-6 {
    position: relative;
    left: -50%; }
  .large-offset-5 {
    margin-left: 41.66667%; }
  .large-7 {
    width: 58.33333%; }
  .large-push-7 {
    position: relative;
    left: 58.33333%; }
  .large-pull-7 {
    position: relative;
    left: -58.33333%; }
  .large-offset-6 {
    margin-left: 50%; }
  .large-8 {
    width: 66.66667%; }
  .large-push-8 {
    position: relative;
    left: 66.66667%; }
  .large-pull-8 {
    position: relative;
    left: -66.66667%; }
  .large-offset-7 {
    margin-left: 58.33333%; }
  .large-9 {
    width: 75%; }
  .large-push-9 {
    position: relative;
    left: 75%; }
  .large-pull-9 {
    position: relative;
    left: -75%; }
  .large-offset-8 {
    margin-left: 66.66667%; }
  .large-10 {
    width: 83.33333%; }
  .large-push-10 {
    position: relative;
    left: 83.33333%; }
  .large-pull-10 {
    position: relative;
    left: -83.33333%; }
  .large-offset-9 {
    margin-left: 75%; }
  .large-11 {
    width: 91.66667%; }
  .large-push-11 {
    position: relative;
    left: 91.66667%; }
  .large-pull-11 {
    position: relative;
    left: -91.66667%; }
  .large-offset-10 {
    margin-left: 83.33333%; }
  .large-12 {
    width: 100%; }
  .large-offset-11 {
    margin-left: 91.66667%; }
  .large-up-1 > .column, .large-up-1 > .columns {
    width: 100%;
    float: left; }
    .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
      float: left; }
  .large-up-2 > .column, .large-up-2 > .columns {
    width: 50%;
    float: left; }
    .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
      float: left; }
  .large-up-3 > .column, .large-up-3 > .columns {
    width: 33.33333%;
    float: left; }
    .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
      float: left; }
  .large-up-4 > .column, .large-up-4 > .columns {
    width: 25%;
    float: left; }
    .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
      float: left; }
  .large-up-5 > .column, .large-up-5 > .columns {
    width: 20%;
    float: left; }
    .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
      float: left; }
  .large-up-6 > .column, .large-up-6 > .columns {
    width: 16.66667%;
    float: left; }
    .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
      float: left; }
  .large-up-7 > .column, .large-up-7 > .columns {
    width: 14.28571%;
    float: left; }
    .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
      float: left; }
  .large-up-8 > .column, .large-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
      float: left; }
  .large-collapse > .column, .large-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .large-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .expanded.row .large-collapse.row {
    margin-left: 0;
    margin-right: 0; }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .large-centered {
    margin-left: auto;
    margin-right: auto; }
    .large-centered, .large-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

@media screen and (min-width: 75em) {
  .xlarge-1 {
    width: 8.33333%; }
  .xlarge-push-1 {
    position: relative;
    left: 8.33333%; }
  .xlarge-pull-1 {
    position: relative;
    left: -8.33333%; }
  .xlarge-offset-0 {
    margin-left: 0%; }
  .xlarge-2 {
    width: 16.66667%; }
  .xlarge-push-2 {
    position: relative;
    left: 16.66667%; }
  .xlarge-pull-2 {
    position: relative;
    left: -16.66667%; }
  .xlarge-offset-1 {
    margin-left: 8.33333%; }
  .xlarge-3 {
    width: 25%; }
  .xlarge-push-3 {
    position: relative;
    left: 25%; }
  .xlarge-pull-3 {
    position: relative;
    left: -25%; }
  .xlarge-offset-2 {
    margin-left: 16.66667%; }
  .xlarge-4 {
    width: 33.33333%; }
  .xlarge-push-4 {
    position: relative;
    left: 33.33333%; }
  .xlarge-pull-4 {
    position: relative;
    left: -33.33333%; }
  .xlarge-offset-3 {
    margin-left: 25%; }
  .xlarge-5 {
    width: 41.66667%; }
  .xlarge-push-5 {
    position: relative;
    left: 41.66667%; }
  .xlarge-pull-5 {
    position: relative;
    left: -41.66667%; }
  .xlarge-offset-4 {
    margin-left: 33.33333%; }
  .xlarge-6 {
    width: 50%; }
  .xlarge-push-6 {
    position: relative;
    left: 50%; }
  .xlarge-pull-6 {
    position: relative;
    left: -50%; }
  .xlarge-offset-5 {
    margin-left: 41.66667%; }
  .xlarge-7 {
    width: 58.33333%; }
  .xlarge-push-7 {
    position: relative;
    left: 58.33333%; }
  .xlarge-pull-7 {
    position: relative;
    left: -58.33333%; }
  .xlarge-offset-6 {
    margin-left: 50%; }
  .xlarge-8 {
    width: 66.66667%; }
  .xlarge-push-8 {
    position: relative;
    left: 66.66667%; }
  .xlarge-pull-8 {
    position: relative;
    left: -66.66667%; }
  .xlarge-offset-7 {
    margin-left: 58.33333%; }
  .xlarge-9 {
    width: 75%; }
  .xlarge-push-9 {
    position: relative;
    left: 75%; }
  .xlarge-pull-9 {
    position: relative;
    left: -75%; }
  .xlarge-offset-8 {
    margin-left: 66.66667%; }
  .xlarge-10 {
    width: 83.33333%; }
  .xlarge-push-10 {
    position: relative;
    left: 83.33333%; }
  .xlarge-pull-10 {
    position: relative;
    left: -83.33333%; }
  .xlarge-offset-9 {
    margin-left: 75%; }
  .xlarge-11 {
    width: 91.66667%; }
  .xlarge-push-11 {
    position: relative;
    left: 91.66667%; }
  .xlarge-pull-11 {
    position: relative;
    left: -91.66667%; }
  .xlarge-offset-10 {
    margin-left: 83.33333%; }
  .xlarge-12 {
    width: 100%; }
  .xlarge-offset-11 {
    margin-left: 91.66667%; }
  .xlarge-up-1 > .column, .xlarge-up-1 > .columns {
    width: 100%;
    float: left; }
    .xlarge-up-1 > .column:nth-of-type(1n), .xlarge-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-1 > .column:nth-of-type(1n+1), .xlarge-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .xlarge-up-1 > .column:last-child, .xlarge-up-1 > .columns:last-child {
      float: left; }
  .xlarge-up-2 > .column, .xlarge-up-2 > .columns {
    width: 50%;
    float: left; }
    .xlarge-up-2 > .column:nth-of-type(1n), .xlarge-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-2 > .column:nth-of-type(2n+1), .xlarge-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .xlarge-up-2 > .column:last-child, .xlarge-up-2 > .columns:last-child {
      float: left; }
  .xlarge-up-3 > .column, .xlarge-up-3 > .columns {
    width: 33.33333%;
    float: left; }
    .xlarge-up-3 > .column:nth-of-type(1n), .xlarge-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-3 > .column:nth-of-type(3n+1), .xlarge-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .xlarge-up-3 > .column:last-child, .xlarge-up-3 > .columns:last-child {
      float: left; }
  .xlarge-up-4 > .column, .xlarge-up-4 > .columns {
    width: 25%;
    float: left; }
    .xlarge-up-4 > .column:nth-of-type(1n), .xlarge-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-4 > .column:nth-of-type(4n+1), .xlarge-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .xlarge-up-4 > .column:last-child, .xlarge-up-4 > .columns:last-child {
      float: left; }
  .xlarge-up-5 > .column, .xlarge-up-5 > .columns {
    width: 20%;
    float: left; }
    .xlarge-up-5 > .column:nth-of-type(1n), .xlarge-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-5 > .column:nth-of-type(5n+1), .xlarge-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .xlarge-up-5 > .column:last-child, .xlarge-up-5 > .columns:last-child {
      float: left; }
  .xlarge-up-6 > .column, .xlarge-up-6 > .columns {
    width: 16.66667%;
    float: left; }
    .xlarge-up-6 > .column:nth-of-type(1n), .xlarge-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-6 > .column:nth-of-type(6n+1), .xlarge-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .xlarge-up-6 > .column:last-child, .xlarge-up-6 > .columns:last-child {
      float: left; }
  .xlarge-up-7 > .column, .xlarge-up-7 > .columns {
    width: 14.28571%;
    float: left; }
    .xlarge-up-7 > .column:nth-of-type(1n), .xlarge-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-7 > .column:nth-of-type(7n+1), .xlarge-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .xlarge-up-7 > .column:last-child, .xlarge-up-7 > .columns:last-child {
      float: left; }
  .xlarge-up-8 > .column, .xlarge-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .xlarge-up-8 > .column:nth-of-type(1n), .xlarge-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-8 > .column:nth-of-type(8n+1), .xlarge-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .xlarge-up-8 > .column:last-child, .xlarge-up-8 > .columns:last-child {
      float: left; }
  .xlarge-collapse > .column, .xlarge-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .xlarge-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .expanded.row .xlarge-collapse.row {
    margin-left: 0;
    margin-right: 0; }
  .xlarge-uncollapse > .column, .xlarge-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .xlarge-centered {
    margin-left: auto;
    margin-right: auto; }
    .xlarge-centered, .xlarge-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .xlarge-uncentered,
  .xlarge-push-0,
  .xlarge-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; } }

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }

p {
  font-size: inherit;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-rendering: optimizeLegibility; }

em,
i {
  font-style: italic;
  line-height: inherit; }

strong,
b {
  font-weight: 700;
  line-height: inherit; }

small {
  font-size: 80%;
  line-height: inherit; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.4; }
  h1 small,
  h2 small,
  h3 small,
  h4 small,
  h5 small,
  h6 small {
    color: #CECED2;
    line-height: 0; }

h1 {
  font-size: 1.5rem; }

h2 {
  font-size: 1.25rem; }

h3 {
  font-size: 1.1875rem; }

h4 {
  font-size: 1.125rem; }

h5 {
  font-size: 1.0625rem; }

h6 {
  font-size: 1rem; }

@media screen and (min-width: 48em) {
  h1 {
    font-size: 2.25rem; }
  h2 {
    font-size: 1.75rem; }
  h3 {
    font-size: 1.6875rem; }
  h4 {
    font-size: 1.5rem; }
  h5 {
    font-size: 1.25rem; }
  h6 {
    font-size: 1rem; } }

a {
  color: #60cdf6;
  text-decoration: none;
  line-height: inherit;
  cursor: pointer; }
  a:hover, a:focus {
    color: #3fa5d7; }
  a img {
    border: 0; }

hr {
  max-width: 85.375rem;
  height: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid #CECED2;
  border-left: 0;
  margin: 1rem auto;
  clear: both; }

ul,
ol,
dl {
  line-height: 1.6;
  margin-bottom: 1rem;
  list-style-position: outside; }

li {
  font-size: inherit; }

ul {
  list-style-type: disc;
  margin-left: 1.25rem; }

ol {
  margin-left: 1.25rem; }

ul ul, ol ul, ul ol, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0; }

dl {
  margin-bottom: 1rem; }
  dl dt {
    margin-bottom: 0.3rem;
    font-weight: 700; }

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #CECED2; }
  blockquote, blockquote p {
    line-height: 1.6;
    color: #8E8E93; }

cite {
  display: block;
  font-size: 0.8125rem;
  color: #8E8E93; }
  cite:before {
    content: '\2014    '; }

abbr {
  color: #484848;
  cursor: help;
  border-bottom: 1px dotted #484848; }

code {
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 400;
  color: #484848;
  background-color: #EFEFF4;
  border: 1px solid #CECED2;
  padding: 0.125rem 0.3125rem 0.0625rem; }

kbd {
  padding: 0.125rem 0.25rem 0;
  margin: 0;
  background-color: #EFEFF4;
  color: #484848;
  font-family: Consolas, "Liberation Mono", Courier, monospace; }

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
  line-height: 1.4;
  color: #8E8E93; }

.lead {
  font-size: 20px;
  line-height: 1.6; }

.stat {
  font-size: 2.5rem;
  line-height: 1; }
  p + .stat {
    margin-top: -1rem; }

.no-bullet {
  margin-left: 0;
  list-style: none; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

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

.text-justify {
  text-align: justify; }

@media screen and (min-width: 48em) {
  .medium-text-left {
    text-align: left; }
  .medium-text-right {
    text-align: right; }
  .medium-text-center {
    text-align: center; }
  .medium-text-justify {
    text-align: justify; } }

@media screen and (min-width: 64em) {
  .large-text-left {
    text-align: left; }
  .large-text-right {
    text-align: right; }
  .large-text-center {
    text-align: center; }
  .large-text-justify {
    text-align: justify; } }

@media screen and (min-width: 75em) {
  .xlarge-text-left {
    text-align: left; }
  .xlarge-text-right {
    text-align: right; }
  .xlarge-text-center {
    text-align: center; }
  .xlarge-text-justify {
    text-align: justify; } }

.show-for-print {
  display: none !important; }

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  .show-for-print {
    display: block !important; }
  .hide-for-print {
    display: none !important; }
  table.show-for-print {
    display: table !important; }
  thead.show-for-print {
    display: table-header-group !important; }
  tbody.show-for-print {
    display: table-row-group !important; }
  tr.show-for-print {
    display: table-row !important; }
  td.show-for-print {
    display: table-cell !important; }
  th.show-for-print {
    display: table-cell !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: ''; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  pre,
  blockquote {
    border: 1px solid #8E8E93;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }

.button {
  display: inline-block;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 60px;
  padding: 0.85em 1em;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  background-color: #00AEEF;
  color: white; }
  [data-whatinput='mouse'] .button {
    outline: 0; }
  .button:hover, .button:focus {
    background-color: #0094cb;
    color: white; }
  .button.tiny {
    font-size: 0.6rem; }
  .button.small {
    font-size: 0.75rem; }
  .button.large {
    font-size: 1.25rem; }
  .button.expanded {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-right: 0; }
  .button.primary {
    background-color: #60cdf6;
    color: #484848; }
    .button.primary:hover, .button.primary:focus {
      background-color: #1fb9f2;
      color: #484848; }
  .button.secondary {
    background-color: #777;
    color: white; }
    .button.secondary:hover, .button.secondary:focus {
      background-color: #5f5f5f;
      color: white; }
  .button.success {
    background-color: #3adb76;
    color: white; }
    .button.success:hover, .button.success:focus {
      background-color: #22bb5b;
      color: white; }
  .button.warning {
    background-color: #ffae00;
    color: white; }
    .button.warning:hover, .button.warning:focus {
      background-color: #cc8b00;
      color: white; }
  .button.alert {
    background-color: #ff0000;
    color: white; }
    .button.alert:hover, .button.alert:focus {
      background-color: #cc0000;
      color: white; }
  .button.facebook {
    background-color: #3B5999;
    color: white; }
    .button.facebook:hover, .button.facebook:focus {
      background-color: #2f477a;
      color: white; }
  .button.shortlisted {
    background-color: #7f3f98;
    color: white; }
    .button.shortlisted:hover, .button.shortlisted:focus {
      background-color: #66327a;
      color: white; }
  .button.discarded {
    background-color: #8E8E93;
    color: white; }
    .button.discarded:hover, .button.discarded:focus {
      background-color: #717176;
      color: white; }
  .button.hollow {
    border: 1px solid #60cdf6;
    color: #60cdf6; }
    .button.hollow, .button.hollow:hover, .button.hollow:focus {
      background-color: transparent; }
    .button.hollow:hover, .button.hollow:focus {
      border-color: #0978a2;
      color: #0978a2; }
    .button.hollow.primary {
      border: 1px solid #60cdf6;
      color: #60cdf6; }
      .button.hollow.primary:hover, .button.hollow.primary:focus {
        border-color: #0978a2;
        color: #0978a2; }
    .button.hollow.secondary {
      border: 1px solid #777;
      color: #777; }
      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
        border-color: #3c3c3c;
        color: #3c3c3c; }
    .button.hollow.success {
      border: 1px solid #3adb76;
      color: #3adb76; }
      .button.hollow.success:hover, .button.hollow.success:focus {
        border-color: #157539;
        color: #157539; }
    .button.hollow.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.hollow.warning:hover, .button.hollow.warning:focus {
        border-color: #805700;
        color: #805700; }
    .button.hollow.alert {
      border: 1px solid #ff0000;
      color: #ff0000; }
      .button.hollow.alert:hover, .button.hollow.alert:focus {
        border-color: maroon;
        color: maroon; }
    .button.hollow.facebook {
      border: 1px solid #3B5999;
      color: #3B5999; }
      .button.hollow.facebook:hover, .button.hollow.facebook:focus {
        border-color: #1e2d4d;
        color: #1e2d4d; }
    .button.hollow.shortlisted {
      border: 1px solid #7f3f98;
      color: #7f3f98; }
      .button.hollow.shortlisted:hover, .button.hollow.shortlisted:focus {
        border-color: #40204c;
        color: #40204c; }
    .button.hollow.discarded {
      border: 1px solid #8E8E93;
      color: #8E8E93; }
      .button.hollow.discarded:hover, .button.hollow.discarded:focus {
        border-color: #47474a;
        color: #47474a; }
  .button.disabled, .button[disabled] {
    opacity: 0.25;
    cursor: not-allowed; }
    .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      background-color: #60cdf6;
      color: white; }
    .button.disabled.primary, .button[disabled].primary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary:hover, .button[disabled].primary:focus {
        background-color: #60cdf6;
        color: white; }
    .button.disabled.secondary, .button[disabled].secondary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #777;
        color: white; }
    .button.disabled.success, .button[disabled].success {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #3adb76;
        color: white; }
    .button.disabled.warning, .button[disabled].warning {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #ffae00;
        color: white; }
    .button.disabled.alert, .button[disabled].alert {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #ff0000;
        color: white; }
    .button.disabled.facebook, .button[disabled].facebook {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.facebook:hover, .button.disabled.facebook:focus, .button[disabled].facebook:hover, .button[disabled].facebook:focus {
        background-color: #3B5999;
        color: white; }
    .button.disabled.shortlisted, .button[disabled].shortlisted {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.shortlisted:hover, .button.disabled.shortlisted:focus, .button[disabled].shortlisted:hover, .button[disabled].shortlisted:focus {
        background-color: #7f3f98;
        color: white; }
    .button.disabled.discarded, .button[disabled].discarded {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.discarded:hover, .button.disabled.discarded:focus, .button[disabled].discarded:hover, .button[disabled].discarded:focus {
        background-color: #8E8E93;
        color: white; }
  .button.dropdown::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    border-color: white transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    position: relative;
    top: 0.4em;
    float: right;
    margin-left: 1em;
    display: inline-block; }
  .button.arrow-only::after {
    margin-left: 0;
    float: none;
    top: -0.1em; }

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #CECED2;
  margin: 0 0 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #484848;
  background-color: white;
  box-shadow: inset 0 1px 2px rgba(72, 72, 72, 0.1);
  border-radius: 0;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none; }
  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
  textarea:focus {
    border: 1px solid #8E8E93;
    background-color: white;
    outline: none;
    box-shadow: 0 0 5px #CECED2;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }

textarea {
  max-width: 100%; }
  textarea[rows] {
    height: auto; }

input::placeholder,
textarea::placeholder {
  color: #CECED2; }

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #EFEFF4;
  cursor: default; }

[type='submit'],
[type='button'] {
  border-radius: 60px;
  -webkit-appearance: none;
  -moz-appearance: none; }

input[type="search"] {
  box-sizing: border-box; }

[type='file'],
[type='checkbox'],
[type='radio'] {
  margin: 0 0 1rem; }

[type='checkbox'] + label,
[type='radio'] + label {
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  vertical-align: baseline; }
  [type='checkbox'] + label[for],
  [type='radio'] + label[for] {
    cursor: pointer; }

label > [type='checkbox'],
label > [type='radio'] {
  margin-right: 0.5rem; }

[type='file'] {
  width: 100%; }

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  color: #484848; }
  label.middle {
    margin: 0 0 1rem;
    padding: 0.5625rem 0; }

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #484848; }

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 1rem; }
  .input-group > :first-child {
    border-radius: 0 0 0 0; }
  .input-group > :last-child > * {
    border-radius: 0 0 0 0; }

.input-group-label, .input-group-field, .input-group-button {
  margin: 0;
  white-space: nowrap;
  display: table-cell;
  vertical-align: middle; }

.input-group-label {
  text-align: center;
  padding: 0 1rem;
  background: #EFEFF4;
  color: #484848;
  border: 1px solid #CECED2;
  white-space: nowrap;
  width: 1%;
  height: 100%; }
  .input-group-label:first-child {
    border-right: 0; }
  .input-group-label:last-child {
    border-left: 0; }

.input-group-field {
  border-radius: 0;
  height: 2.5rem; }

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  height: 100%;
  width: 1%; }
  .input-group-button a,
  .input-group-button input,
  .input-group-button button {
    margin: 0; }

.input-group .input-group-button {
  display: table-cell; }

fieldset {
  border: 0;
  padding: 0;
  margin: 0; }

legend {
  margin-bottom: 0.5rem;
  max-width: 100%; }

.fieldset {
  border: 1px solid #CECED2;
  padding: 1.25rem;
  margin: 1.125rem 0; }
  .fieldset legend {
    background: white;
    padding: 0 0.1875rem;
    margin: 0;
    margin-left: -0.1875rem; }

select {
  height: 2.4375rem;
  padding: 0.5rem;
  border: 1px solid #CECED2;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: normal;
  color: #484848;
  background-color: white;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28142, 142, 147%29'></polygon></svg>");
  background-size: 9px 6px;
  background-position: right -1rem center;
  background-origin: content-box;
  background-repeat: no-repeat;
  padding-right: 1.5rem; }
  @media screen and (min-width: 0\0) {
    select {
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
  select:disabled {
    background-color: #EFEFF4;
    cursor: default; }
  select::-ms-expand {
    display: none; }
  select[multiple] {
    height: auto;
    background-image: none; }

.is-invalid-input:not(:focus) {
  background-color: rgba(255, 0, 0, 0.1);
  border-color: #ff0000; }

.is-invalid-label {
  color: #ff0000; }

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: #ff0000; }
  .form-error.is-visible {
    display: block; }

.accordion {
  list-style-type: none;
  background: white;
  margin-left: 0; }

.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0; }

.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0; }

.accordion-title {
  display: block;
  padding: 1.25rem 1rem;
  line-height: 1;
  font-size: 0.75rem;
  color: #60cdf6;
  position: relative;
  border: 1px solid #EFEFF4;
  border-bottom: 0; }
  :last-child:not(.is-active) > .accordion-title {
    border-radius: 0 0 0 0;
    border-bottom: 1px solid #EFEFF4; }
  .accordion-title:hover, .accordion-title:focus {
    background-color: #EFEFF4; }
  .accordion-title::before {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -0.5rem; }
  .is-active > .accordion-title::before {
    content: '\2013'; }

.accordion-content {
  padding: 1rem;
  display: none;
  border: 1px solid #EFEFF4;
  border-bottom: 0;
  background-color: white;
  color: #60cdf6; }
  :last-child > .accordion-content:last-child {
    border-bottom: 1px solid #EFEFF4; }

.button-group {
  margin-bottom: 1rem;
  font-size: 0; }
  .button-group::before, .button-group::after {
    content: ' ';
    display: table; }
  .button-group::after {
    clear: both; }
  .button-group .button {
    margin: 0;
    margin-right: 0px;
    margin-bottom: 0px;
    font-size: 0.9rem; }
    .button-group .button:last-child {
      margin-right: 0; }
  .button-group.tiny .button {
    font-size: 0.6rem; }
  .button-group.small .button {
    font-size: 0.75rem; }
  .button-group.large .button {
    font-size: 1.25rem; }
  .button-group.expanded {
    margin-right: 0px; }
    .button-group.expanded::before, .button-group.expanded::after {
      display: none; }
    .button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
      display: inline-block;
      width: calc(50% - 0px);
      margin-right: 0px; }
      .button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child {
        margin-right: 0px; }
    .button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
      display: inline-block;
      width: calc(33.33333% - 0px);
      margin-right: 0px; }
      .button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child {
        margin-right: 0px; }
    .button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
      display: inline-block;
      width: calc(25% - 0px);
      margin-right: 0px; }
      .button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child {
        margin-right: 0px; }
    .button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
      display: inline-block;
      width: calc(20% - 0px);
      margin-right: 0px; }
      .button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child {
        margin-right: 0px; }
    .button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
      display: inline-block;
      width: calc(16.66667% - 0px);
      margin-right: 0px; }
      .button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child {
        margin-right: 0px; }
  .button-group.primary .button {
    background-color: #60cdf6;
    color: #484848; }
    .button-group.primary .button:hover, .button-group.primary .button:focus {
      background-color: #1fb9f2;
      color: #484848; }
  .button-group.secondary .button {
    background-color: #777;
    color: white; }
    .button-group.secondary .button:hover, .button-group.secondary .button:focus {
      background-color: #5f5f5f;
      color: white; }
  .button-group.success .button {
    background-color: #3adb76;
    color: white; }
    .button-group.success .button:hover, .button-group.success .button:focus {
      background-color: #22bb5b;
      color: white; }
  .button-group.warning .button {
    background-color: #ffae00;
    color: white; }
    .button-group.warning .button:hover, .button-group.warning .button:focus {
      background-color: #cc8b00;
      color: white; }
  .button-group.alert .button {
    background-color: #ff0000;
    color: white; }
    .button-group.alert .button:hover, .button-group.alert .button:focus {
      background-color: #cc0000;
      color: white; }
  .button-group.facebook .button {
    background-color: #3B5999;
    color: white; }
    .button-group.facebook .button:hover, .button-group.facebook .button:focus {
      background-color: #2f477a;
      color: white; }
  .button-group.shortlisted .button {
    background-color: #7f3f98;
    color: white; }
    .button-group.shortlisted .button:hover, .button-group.shortlisted .button:focus {
      background-color: #66327a;
      color: white; }
  .button-group.discarded .button {
    background-color: #8E8E93;
    color: white; }
    .button-group.discarded .button:hover, .button-group.discarded .button:focus {
      background-color: #717176;
      color: white; }
  .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
    width: 100%; }
    .button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
      margin-bottom: 0; }
  @media screen and (min-width: 48em) {
    .button-group.stacked-for-small .button {
      width: auto;
      margin-bottom: 0; } }
  @media screen and (min-width: 64em) {
    .button-group.stacked-for-medium .button {
      width: auto;
      margin-bottom: 0; } }
  @media screen and (max-width: 47.9375em) {
    .button-group.stacked-for-small.expanded {
      display: block; }
      .button-group.stacked-for-small.expanded .button {
        display: block;
        margin-right: 0; } }

.callout {
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(72, 72, 72, 0.25);
  border-radius: 0;
  position: relative;
  color: #484848;
  background-color: white; }
  .callout > :first-child {
    margin-top: 0; }
  .callout > :last-child {
    margin-bottom: 0; }
  .callout.primary {
    background-color: #e7f8fe; }
  .callout.secondary {
    background-color: #ebebeb; }
  .callout.success {
    background-color: #e1faea; }
  .callout.warning {
    background-color: #fff3d9; }
  .callout.alert {
    background-color: #ffd9d9; }
  .callout.facebook {
    background-color: #dfe5f3; }
  .callout.shortlisted {
    background-color: #ede0f2; }
  .callout.discarded {
    background-color: #eeeeef; }
  .callout.small {
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem; }
  .callout.large {
    padding-top: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    padding-left: 3rem; }

.close-button {
  position: absolute;
  color: #8E8E93;
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
  cursor: pointer; }
  [data-whatinput='mouse'] .close-button {
    outline: 0; }
  .close-button:hover, .close-button:focus {
    color: #484848; }

.menu {
  margin: 0;
  list-style-type: none; }
  .menu > li {
    display: table-cell;
    vertical-align: middle; }
    [data-whatinput='mouse'] .menu > li {
      outline: 0; }
  .menu > li > a {
    display: block;
    padding: 0.7rem 1rem;
    line-height: 1; }
  .menu input,
  .menu a,
  .menu button {
    margin-bottom: 0; }
  .menu > li > a img,
  .menu > li > a i,
  .menu > li > a svg {
    vertical-align: middle; }
    .menu > li > a img + span,
    .menu > li > a i + span,
    .menu > li > a svg + span {
      vertical-align: middle; }
  .menu > li > a img,
  .menu > li > a i,
  .menu > li > a svg {
    margin-right: 0.25rem;
    display: inline-block; }
  .menu > li {
    display: table-cell; }
  .menu.vertical > li {
    display: block; }
  @media screen and (min-width: 48em) {
    .menu.medium-horizontal > li {
      display: table-cell; }
    .menu.medium-vertical > li {
      display: block; } }
  @media screen and (min-width: 64em) {
    .menu.large-horizontal > li {
      display: table-cell; }
    .menu.large-vertical > li {
      display: block; } }
  @media screen and (min-width: 75em) {
    .menu.xlarge-horizontal > li {
      display: table-cell; }
    .menu.xlarge-vertical > li {
      display: block; } }
  .menu.simple li {
    line-height: 1;
    display: inline-block;
    margin-right: 1rem; }
  .menu.simple a {
    padding: 0; }
  .menu.align-right::before, .menu.align-right::after {
    content: ' ';
    display: table; }
  .menu.align-right::after {
    clear: both; }
  .menu.align-right > li {
    float: right; }
  .menu.expanded {
    width: 100%;
    display: table;
    table-layout: fixed; }
    .menu.expanded > li:first-child:last-child {
      width: 100%; }
  .menu.icon-top > li > a {
    text-align: center; }
    .menu.icon-top > li > a img,
    .menu.icon-top > li > a i,
    .menu.icon-top > li > a svg {
      display: block;
      margin: 0 auto 0.25rem; }
  .menu.nested {
    margin-left: 1rem; }
  .menu .active > a {
    color: white;
    background: #60cdf6; }

.menu-text {
  font-weight: bold;
  color: inherit;
  line-height: 1;
  padding-top: 0;
  padding-bottom: 0;
  padding: 0.7rem 1rem; }

.menu-centered {
  text-align: center; }
  .menu-centered > .menu {
    display: inline-block; }

.no-js [data-responsive-menu] ul {
  display: none; }

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 20px;
  height: 16px; }
  .menu-icon::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    top: 0;
    left: 0;
    box-shadow: 0 7px 0 white, 0 14px 0 white; }
  .menu-icon:hover::after {
    background: #434343;
    box-shadow: 0 7px 0 #434343, 0 14px 0 #434343; }

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  width: 20px;
  height: 16px; }
  .menu-icon.dark::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #484848;
    top: 0;
    left: 0;
    box-shadow: 0 7px 0 #484848, 0 14px 0 #484848; }
  .menu-icon.dark:hover::after {
    background: #8E8E93;
    box-shadow: 0 7px 0 #8E8E93, 0 14px 0 #8E8E93; }

.dropdown-pane {
  background-color: white;
  border: 1px solid #CECED2;
  border-radius: 0.2rem;
  display: block;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  visibility: hidden;
  width: 300px;
  z-index: 10; }
  .dropdown-pane.is-open {
    visibility: visible; }

.dropdown-pane.tiny {
  width: 100px; }

.dropdown-pane.small {
  width: 150px; }

.dropdown-pane.large {
  width: 400px; }

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  left: auto;
  right: 0;
  top: 100%; }

.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 0;
  top: 100%; }

[data-whatinput='mouse'] .dropdown.menu a {
  outline: 0; }

.no-js .dropdown.menu ul {
  display: none; }

.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0; }

.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  left: auto;
  right: 100%; }

.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%; }

@media screen and (min-width: 48em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%; }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%; }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; } }

@media screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%; }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%; }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; } }

@media screen and (min-width: 75em) {
  .dropdown.menu.xlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%; }
  .dropdown.menu.xlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%; }
  .dropdown.menu.xlarge-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.xlarge-vertical > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  .dropdown.menu.xlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; } }

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  left: auto;
  right: 0; }

.is-dropdown-menu.vertical {
  width: 100px; }
  .is-dropdown-menu.vertical.align-right {
    float: right; }

.is-dropdown-submenu-parent {
  position: relative; }
  .is-dropdown-submenu-parent a::after {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -2px; }
  .is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
    top: 100%;
    left: auto; }
  .is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  .is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }

.is-dropdown-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  z-index: 1;
  background: white;
  border: 0 solid #CECED2; }
  .is-dropdown-submenu .is-dropdown-submenu {
    margin-top: 0; }
  .is-dropdown-submenu > li {
    width: 100%; }
  .is-dropdown-submenu.js-dropdown-active {
    display: block; }

html,
body {
  height: 100%; }

.off-canvas-wrapper {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: auto; }

.off-canvas-wrapper-inner {
  position: relative;
  width: 100%;
  min-height: 100%;
  transition: transform 0.5s ease; }
  .off-canvas-wrapper-inner::before, .off-canvas-wrapper-inner::after {
    content: ' ';
    display: table; }
  .off-canvas-wrapper-inner::after {
    clear: both; }

.off-canvas-content,
.off-canvas-content {
  min-height: 100%;
  background: white;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  z-index: 1;
  padding-bottom: 0.1px;
  box-shadow: 0 0 10px rgba(72, 72, 72, 0.5); }

.js-off-canvas-exit {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.5s ease; }

.off-canvas {
  position: absolute;
  background: #232323;
  z-index: -1;
  max-height: 100%;
  overflow-y: auto;
  transform: translateX(0); }
  [data-whatinput='mouse'] .off-canvas {
    outline: 0; }
  .off-canvas.position-left {
    left: -85%;
    top: 0;
    width: 85%; }
    .is-open-left {
      transform: translateX(85%); }
  .off-canvas.position-right {
    right: -85%;
    top: 0;
    width: 85%; }
    .is-open-right {
      transform: translateX(-85%); }

@media screen and (min-width: 48em) {
  .position-left.reveal-for-medium {
    left: 0;
    z-index: auto;
    position: fixed; }
    .position-left.reveal-for-medium ~ .off-canvas-content {
      margin-left: 85%; }
  .position-right.reveal-for-medium {
    right: 0;
    z-index: auto;
    position: fixed; }
    .position-right.reveal-for-medium ~ .off-canvas-content {
      margin-right: 85%; } }

@media screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    left: 0;
    z-index: auto;
    position: fixed; }
    .position-left.reveal-for-large ~ .off-canvas-content {
      margin-left: 85%; }
  .position-right.reveal-for-large {
    right: 0;
    z-index: auto;
    position: fixed; }
    .position-right.reveal-for-large ~ .off-canvas-content {
      margin-right: 85%; } }

@media screen and (min-width: 75em) {
  .position-left.reveal-for-xlarge {
    left: 0;
    z-index: auto;
    position: fixed; }
    .position-left.reveal-for-xlarge ~ .off-canvas-content {
      margin-left: 85%; }
  .position-right.reveal-for-xlarge {
    right: 0;
    z-index: auto;
    position: fixed; }
    .position-right.reveal-for-xlarge ~ .off-canvas-content {
      margin-right: 85%; } }

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #EFEFF4;
  cursor: pointer;
  user-select: none;
  touch-action: none; }

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #CECED2;
  transition: all 0.2s ease-in-out; }
  .slider-fill.is-dragging {
    transition: all 0s linear; }

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #60cdf6;
  transition: all 0.2s ease-in-out;
  touch-action: manipulation;
  border-radius: 0; }
  [data-whatinput='mouse'] .slider-handle {
    outline: 0; }
  .slider-handle:hover {
    background-color: #2fbef3; }
  .slider-handle.is-dragging {
    transition: all 0s linear; }

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed; }

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  transform: scale(1, -1); }
  .slider.vertical .slider-fill {
    top: 0;
    width: 0.5rem;
    max-height: 100%; }
  .slider.vertical .slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1.4rem;
    height: 1.4rem;
    transform: translateX(-50%); }

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  border-radius: 0;
  background: #60cdf6;
  color: #484848; }
  .label.secondary {
    background: #777;
    color: white; }
  .label.success {
    background: #3adb76;
    color: white; }
  .label.warning {
    background: #ffae00;
    color: white; }
  .label.alert {
    background: #ff0000;
    color: white; }
  .label.facebook {
    background: #3B5999;
    color: white; }
  .label.shortlisted {
    background: #7f3f98;
    color: white; }
  .label.discarded {
    background: #8E8E93;
    color: white; }

.sticky-container {
  position: relative; }

.sticky {
  position: absolute;
  z-index: 0;
  transform: translate3d(0, 0, 0); }

.sticky.is-stuck {
  position: fixed;
  z-index: 5; }
  .sticky.is-stuck.is-at-top {
    top: 0; }
  .sticky.is-stuck.is-at-bottom {
    bottom: 0; }

.sticky.is-anchored {
  position: absolute;
  left: auto;
  right: auto; }
  .sticky.is-anchored.is-at-bottom {
    bottom: 0; }

body.is-reveal-open {
  overflow: hidden; }

html.is-reveal-open,
html.is-reveal-open body {
  min-height: 100%;
  overflow: hidden;
  user-select: none; }

.reveal-overlay {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1005;
  background-color: rgba(239, 239, 239, 0.85);
  overflow-y: scroll; }

.reveal {
  display: none;
  z-index: 1006;
  padding: 1rem;
  border: 0px solid #CECED2;
  background-color: #fff;
  border-radius: 6px;
  position: relative;
  top: 100px;
  margin-left: auto;
  margin-right: auto;
  overflow-y: auto; }
  [data-whatinput='mouse'] .reveal {
    outline: 0; }
  @media screen and (min-width: 48em) {
    .reveal {
      min-height: 0; } }
  .reveal .column, .reveal .columns,
  .reveal .columns {
    min-width: 0; }
  .reveal > :last-child {
    margin-bottom: 0; }
  @media screen and (min-width: 48em) {
    .reveal {
      width: 600px;
      max-width: 85.375rem; } }
  @media screen and (min-width: 48em) {
    .reveal .reveal {
      left: auto;
      right: auto;
      margin: 0 auto; } }
  .reveal.collapse {
    padding: 0; }
  @media screen and (min-width: 48em) {
    .reveal.tiny {
      width: 30%;
      max-width: 85.375rem; } }
  @media screen and (min-width: 48em) {
    .reveal.small {
      width: 50%;
      max-width: 85.375rem; } }
  @media screen and (min-width: 48em) {
    .reveal.large {
      width: 90%;
      max-width: 85.375rem; } }
  .reveal.full {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    max-width: none;
    margin-left: 0;
    border: 0;
    border-radius: 0; }
  @media screen and (max-width: 47.9375em) {
    .reveal {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      height: 100vh;
      min-height: 100vh;
      max-width: none;
      margin-left: 0;
      border: 0;
      border-radius: 0; } }
  .reveal.without-overlay {
    position: fixed; }

table {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0; }
  thead,
  tbody,
  tfoot {
    border: 1px solid #f2f2f2;
    background-color: white; }
  caption {
    font-weight: 700;
    padding: 0.5rem 0.625rem 0.625rem; }
  thead {
    background: #f9f9f9;
    color: #484848; }
  tfoot {
    background: #f2f2f2;
    color: #484848; }
  thead tr,
  tfoot tr {
    background: transparent; }
  thead th,
  thead td,
  tfoot th,
  tfoot td {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: 700;
    text-align: left; }
  tbody tr:nth-child(even) {
    background-color: #f2f2f2; }
  tbody th,
  tbody td {
    padding: 0.5rem 0.625rem 0.625rem; }

@media screen and (max-width: 63.9375em) {
  table.stack thead {
    display: none; }
  table.stack tfoot {
    display: none; }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block; }
  table.stack td {
    border-top: 0; } }

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto; }

table.hover thead tr:hover {
  background-color: #f4f4f4; }

table.hover tfoot tr:hover {
  background-color: #ededed; }

table.hover tbody tr:hover {
  background-color: #fafafa; }

table.hover tbody tr:nth-of-type(even):hover {
  background-color: #ededed; }

.table-scroll {
  overflow-x: auto; }
  .table-scroll table {
    width: auto; }

.has-tip {
  border-bottom: none;
  font-weight: 700;
  position: relative;
  display: inline-block;
  cursor: help; }

.tooltip {
  background-color: #efeff4;
  color: #484848;
  font-size: 80%;
  padding: 0.75rem;
  position: absolute;
  z-index: 10;
  top: calc(100% + 0.433rem);
  max-width: 10rem !important;
  border-radius: 0.1875rem; }
  .tooltip::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.5rem;
    border-color: transparent transparent #efeff4;
    border-bottom-style: solid;
    border-top-width: 0;
    bottom: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); }
  .tooltip.top::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.5rem;
    border-color: #efeff4 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    top: 100%;
    bottom: auto; }
  .tooltip.left::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.5rem;
    border-color: transparent transparent transparent #efeff4;
    border-left-style: solid;
    border-right-width: 0;
    bottom: auto;
    left: 100%;
    top: 50%;
    transform: translateY(-50%); }
  .tooltip.right::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 0.5rem;
    border-color: transparent #efeff4 transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
    bottom: auto;
    left: auto;
    right: 100%;
    top: 50%;
    transform: translateY(-50%); }

.top-bar {
  padding: 0.5rem; }
  .top-bar::before, .top-bar::after {
    content: ' ';
    display: table; }
  .top-bar::after {
    clear: both; }
  .top-bar,
  .top-bar ul {
    background-color: white; }
  .top-bar ul ul {
    background-color: #232323; }
  .top-bar input {
    max-width: 200px;
    margin-right: 1rem; }
  .top-bar .input-group-field {
    width: 100%;
    margin-right: 0; }
  .top-bar input.button {
    width: auto; }
  .top-bar .top-bar-left,
  .top-bar .top-bar-right {
    width: 100%; }
  @media screen and (min-width: 48em) {
    .top-bar .top-bar-left,
    .top-bar .top-bar-right {
      width: auto; } }
  @media screen and (max-width: 63.9375em) {
    .top-bar.stacked-for-medium .top-bar-left,
    .top-bar.stacked-for-medium .top-bar-right {
      width: 100%; } }
  @media screen and (max-width: 74.9375em) {
    .top-bar.stacked-for-large .top-bar-left,
    .top-bar.stacked-for-large .top-bar-right {
      width: 100%; } }
  @media screen and (max-width: 89.9375em) {
    .top-bar.stacked-for-xlarge .top-bar-left,
    .top-bar.stacked-for-xlarge .top-bar-right {
      width: 100%; } }

.top-bar-title {
  float: left;
  margin-right: 1rem; }

.top-bar-left {
  float: left; }

.top-bar-right {
  float: right; }

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

@media screen and (max-width: 47.9375em) {
  .hide-for-small-only {
    display: none !important; } }

@media screen and (max-width: 0em), screen and (min-width: 48em) {
  .show-for-small-only {
    display: none !important; } }

@media screen and (min-width: 48em) {
  .hide-for-medium {
    display: none !important; } }

@media screen and (max-width: 47.9375em) {
  .show-for-medium {
    display: none !important; } }

@media screen and (min-width: 48em) and (max-width: 63.9375em) {
  .hide-for-medium-only {
    display: none !important; } }

@media screen and (max-width: 47.9375em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important; } }

@media screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important; } }

@media screen and (max-width: 63.9375em) {
  .show-for-large {
    display: none !important; } }

@media screen and (min-width: 64em) and (max-width: 74.9375em) {
  .hide-for-large-only {
    display: none !important; } }

@media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important; } }

@media screen and (min-width: 75em) {
  .hide-for-xlarge {
    display: none !important; } }

@media screen and (max-width: 74.9375em) {
  .show-for-xlarge {
    display: none !important; } }

@media screen and (min-width: 75em) and (max-width: 89.9375em) {
  .hide-for-xlarge-only {
    display: none !important; } }

@media screen and (max-width: 74.9375em), screen and (min-width: 90em) {
  .show-for-xlarge-only {
    display: none !important; } }

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0); }

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  height: auto;
  width: auto;
  overflow: visible;
  clip: auto; }

.show-for-landscape,
.hide-for-portrait {
  display: block !important; }
  @media screen and (orientation: landscape) {
    .show-for-landscape,
    .hide-for-portrait {
      display: block !important; } }
  @media screen and (orientation: portrait) {
    .show-for-landscape,
    .hide-for-portrait {
      display: none !important; } }

.hide-for-landscape,
.show-for-portrait {
  display: none !important; }
  @media screen and (orientation: landscape) {
    .hide-for-landscape,
    .show-for-portrait {
      display: none !important; } }
  @media screen and (orientation: portrait) {
    .hide-for-landscape,
    .show-for-portrait {
      display: block !important; } }

.float-left {
  float: left !important; }

.float-right {
  float: right !important; }

.float-center {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.clearfix::before, .clearfix::after {
  content: ' ';
  display: table; }

.clearfix::after {
  clear: both; }

.media-object {
  margin-bottom: 1rem;
  display: block; }
  .media-object img {
    max-width: none; }
  @media screen and (max-width: 47.9375em) {
    .media-object.stack-for-small .media-object-section {
      padding: 0;
      padding-bottom: 1rem;
      display: block; }
      .media-object.stack-for-small .media-object-section img {
        width: 100%; } }

.media-object-section {
  display: table-cell;
  vertical-align: top; }
  .media-object-section:first-child {
    padding-right: 1rem; }
  .media-object-section:last-child:not(:nth-child(2)) {
    padding-left: 1rem; }
  .media-object-section > :last-child {
    margin-bottom: 0; }
  .media-object-section.middle {
    vertical-align: middle; }
  .media-object-section.bottom {
    vertical-align: bottom; }

.switch {
  height: 2rem;
  margin-bottom: 1rem;
  outline: 0;
  position: relative;
  user-select: none;
  color: white;
  font-weight: bold;
  font-size: 0.875rem; }

.switch-input {
  opacity: 0;
  position: absolute;
  margin-bottom: 0; }

.switch-paddle {
  background: #CECED2;
  cursor: pointer;
  display: block;
  position: relative;
  width: 4rem;
  height: 2rem;
  transition: all 0.25s ease-out;
  border-radius: 0;
  color: inherit;
  font-weight: inherit; }
  input + .switch-paddle {
    margin: 0; }
  .switch-paddle::after {
    background: white;
    content: '';
    display: block;
    position: absolute;
    height: 1.5rem;
    left: 0.25rem;
    top: 0.25rem;
    width: 1.5rem;
    transition: all 0.25s ease-out;
    transform: translate3d(0, 0, 0);
    border-radius: 0; }
  input:checked ~ .switch-paddle {
    background: #60cdf6; }
    input:checked ~ .switch-paddle::after {
      left: 2.25rem; }
  [data-whatinput='mouse'] input:focus ~ .switch-paddle {
    outline: 0; }

.switch-active, .switch-inactive {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

.switch-active {
  left: 8%;
  display: none; }
  input:checked + label > .switch-active {
    display: block; }

.switch-inactive {
  right: 15%; }
  input:checked + label > .switch-inactive {
    display: none; }

.switch.tiny {
  height: 1.5rem; }
  .switch.tiny .switch-paddle {
    width: 3rem;
    height: 1.5rem;
    font-size: 0.625rem; }
  .switch.tiny .switch-paddle::after {
    width: 1rem;
    height: 1rem; }
  .switch.tiny input:checked ~ .switch-paddle::after {
    left: 1.75rem; }

.switch.small {
  height: 1.75rem; }
  .switch.small .switch-paddle {
    width: 3.5rem;
    height: 1.75rem;
    font-size: 0.75rem; }
  .switch.small .switch-paddle::after {
    width: 1.25rem;
    height: 1.25rem; }
  .switch.small input:checked ~ .switch-paddle::after {
    left: 2rem; }

.switch.large {
  height: 2.5rem; }
  .switch.large .switch-paddle {
    width: 5rem;
    height: 2.5rem;
    font-size: 1rem; }
  .switch.large .switch-paddle::after {
    width: 2rem;
    height: 2rem; }
  .switch.large input:checked ~ .switch-paddle::after {
    left: 2.75rem; }

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*!
 * CSS jQuery.filer
 * Copyright (c) 2015 CreativeDream
 * Version: 1.0.5 (19-Nov-2015)
*/
/*!
 * CSS jQuery.filer
 * Modified by: Abdulhamid Alattar
*/
/*-------------------------
	Basic configurations
-------------------------*/
.jFiler * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.jFiler {
  font-family: sans-serif;
  font-size: 14px;
  color: #494949; }

/* Helpers */
.jFiler ul.list-inline li {
  display: inline-block;
  padding-right: 5px;
  padding-left: 5px; }

.jFiler .pull-left {
  float: left; }

.jFiler .pull-right {
  float: right; }

/* File Icons */
span.jFiler-icon-file {
  position: relative;
  width: 57px;
  height: 70px;
  display: inline-block;
  line-height: 70px;
  text-align: center;
  border-radius: 3px;
  color: #fff;
  font-family: sans-serif;
  font-size: 13px;
  font-weight: bold;
  overflow: hidden;
  box-shadow: 42px -55px 0 0 #A4A7AC inset; }

span.jFiler-icon-file:after {
  position: absolute;
  top: -1px;
  right: -1px;
  display: inline-block;
  content: '';
  border-style: solid;
  border-width: 16px 0 0 16px;
  border-color: transparent transparent transparent #DADDE1; }

span.jFiler-icon-file i[class*="icon-jfi-"] {
  font-size: 24px; }

span.jFiler-icon-file.f-image {
  box-shadow: 42px -55px 0 0 #e15955 inset; }

span.jFiler-icon-file.f-image:after {
  border-left-color: #c6393f; }

span.jFiler-icon-file.f-video {
  box-shadow: 42px -55px 0 0 #4183d7 inset; }

span.jFiler-icon-file.f-video:after {
  border-left-color: #446cb3; }

span.jFiler-icon-file.f-audio {
  box-shadow: 42px -55px 0 0 #5bab6e inset; }

span.jFiler-icon-file.f-audio:after {
  border-left-color: #448353; }

/* Progress Bar */
.jFiler-jProgressBar {
  height: 8px;
  background: #f1f1f1;
  margin-top: 3px;
  margin-bottom: 0;
  overflow: hidden;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.jFiler-jProgressBar .bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #50A1E9;
  box-sizing: border-box;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: width 0.3s ease;
  -moz-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease; }

.jFiler-jProgressBar .bar.dark {
  background-color: #555; }

.jFiler-jProgressBar .bar.blue {
  background-color: #428bca; }

.jFiler-jProgressBar .bar.green {
  background-color: #5cb85c; }

.jFiler-jProgressBar .bar.orange {
  background-color: #f7a923; }

.jFiler-jProgressBar .bar.red {
  background-color: #d9534f; }

/* Thumbs */
.jFiler-row:after,
.jFiler-item:after {
  display: table;
  line-height: 0;
  content: "";
  clear: both; }

.jFiler-items ul {
  margin: 0;
  padding: 0;
  list-style: none; }

/*-------------------------
	Default Theme
-------------------------*/
.jFiler-theme-default .jFiler-input {
  position: relative;
  display: block;
  width: 100%;
  height: 35px;
  margin: 0 0 15px 0;
  background: #fefefe;
  border: 1px solid #cecece;
  font-size: 12px;
  font-family: sans-serif;
  color: #888;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0 4px 5px -5px inset;
  -moz-box-shadow: rgba(0, 0, 0, 0.25) 0 4px 5px -5px inset;
  box-shadow: rgba(0, 0, 0, 0.25) 0 4px 5px -5px inset; }

.jFiler-theme-default .jFiler-input.focused {
  outline: none;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.1); }

.jFiler-theme-default .jFiler.dragged .jFiler-input {
  border: 1px dashed #aaaaaa;
  background: #f9f9f9; }

.jFiler-theme-default .jFiler.dragged .jFiler-input:hover {
  background: #FFF8D0; }

.jFiler-theme-default .jFiler.dragged .jFiler-input * {
  pointer-events: none; }

.jFiler-theme-default .jFiler.dragged .jFiler-input .jFiler-input-caption {
  width: 100%;
  text-align: center; }

.jFiler-theme-default .jFiler.dragged .jFiler-input .jFiler-input-button {
  display: none; }

.jFiler-theme-default .jFiler-input-caption {
  display: block;
  float: left;
  height: 100%;
  padding-top: 8px;
  padding-left: 10px;
  text-overflow: ellipsis;
  overflow: hidden; }

.jFiler-theme-default .jFiler-input-button {
  display: block;
  float: right;
  height: 100%;
  padding-top: 8px;
  padding-left: 15px;
  padding-right: 15px;
  border-left: 1px solid #ccc;
  color: #666666;
  text-align: center;
  background-color: #fefefe;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fefefe), to(#f1f1f1));
  background-image: -webkit-linear-gradient(top, #fefefe, #f1f1f1);
  background-image: -o-linear-gradient(top, #fefefe, #f1f1f1);
  background-image: linear-gradient(to bottom, #fefefe, #f1f1f1);
  background-image: -moz-linear-gradient(top, #fefefe, #f1f1f1);
  -webkit-transition: all .1s ease-out;
  -moz-transition: all .1s ease-out;
  -o-transition: all .1s ease-out;
  transition: all .1s ease-out; }

.jFiler-theme-default .jFiler-input-button:hover {
  -moz-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.07);
  -webkit-box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.07);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.07); }

.jFiler-theme-default .jFiler-input-button:active {
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f1f1f1), to(#fefefe));
  background-image: -webkit-linear-gradient(top, #f1f1f1, #fefefe);
  background-image: -o-linear-gradient(top, #f1f1f1, #fefefe);
  background-image: linear-gradient(to bottom, #f1f1f1, #fefefe);
  background-image: -moz-linear-gradient(top, #f1f1f1, #fefefe); }

/*-------------------------
	Thumbnails
-------------------------*/
.jFiler-items-default .jFiler-item {
  position: relative;
  padding: 16px;
  margin-bottom: 16px;
  background: #f7f7f7;
  color: #4d4d4c; }

.jFiler-items-default .jFiler-item .jFiler-item-icon {
  font-size: 32px;
  color: #f5871f;
  margin-right: 15px;
  margin-top: -3px; }

.jFiler-items-default .jFiler-item .jFiler-item-title {
  font-weight: bold; }

.jFiler-items-default .jFiler-item .jFiler-item-others {
  font-size: 12px;
  color: #777;
  margin-left: -5px;
  margin-right: -5px; }

.jFiler-items-default .jFiler-item .jFiler-item-others span {
  padding-left: 5px;
  padding-right: 5px; }

.jFiler-items-default .jFiler-item-assets {
  position: absolute;
  display: block;
  right: 16px;
  top: 50%;
  margin-top: -10px; }

.jFiler-items-default .jFiler-item-assets a {
  padding: 8px 9px 8px 12px;
  cursor: pointer;
  background: #fafafa;
  color: #777;
  border-radius: 4px;
  border: 1px solid #e3e3e3; }

.jFiler-items-default .jFiler-item-assets .jFiler-item-trash-action:hover,
.jFiler-items-default .jFiler-item-assets .jFiler-item-trash-action:active {
  color: #d9534f; }

.jFiler-items-default .jFiler-item-assets .jFiler-item-trash-action:active {
  background: transparent; }

/* Thumbnails: Grid */
.jFiler-items-grid .jFiler-item {
  float: left; }

.jFiler-items-grid .jFiler-item .jFiler-item-container {
  position: relative;
  margin: 0 20px 30px 0;
  padding: 10px;
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.06); }

.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-thumb {
  position: relative;
  width: 160px;
  height: 115px;
  min-height: 115px;
  border: 1px solid #e1e1e1;
  overflow: hidden; }

.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-thumb .jFiler-item-thumb-image {
  width: 100%;
  height: 100%;
  text-align: center; }

.jFiler-item .jFiler-item-container .jFiler-item-thumb img {
  max-width: none;
  max-height: 100%; }

.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-thumb span.jFiler-icon-file {
  margin-top: 20px; }

.jFiler-items-grid .jFiler-item-thumb-image.fi-loading {
  background: url("data:image/gif;base64,R0lGODlhIwAjAMQAAP////f39+/v7+bm5t7e3tbW1s7OzsXFxb29vbW1ta2traWlpZycnJSUlIyMjISEhHt7e3Nzc2tra2NjY1paWlJSUkpKSkJCQjo6OjExMSkpKRkZGRAQEAAAAP///wAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQFBAAeACwAAAAAIwAjAAAF5CAgjmRpnmiqrmzrvnAsz3Rto4Fwm4EYLIweQHcTKAiAQOPRI0QKRcYiEGA4qI8K9HZoGAIOSOBgCdIGBeLCMUgoBJSJjsBAxAiKRSFAQBCVBwMKGRsNQi8DBwsJhyQVGxMKjTCJk0kPjDI5AlQqBAcICFstBQqmmScFGh0dHBaWKAIEBQQDKQEKDxEQCTMBA5Y/o5oDoZYCHB1PMgIHCQacwCPACRStDTEDBrYABQg5wAgGIg4YYjQCogEGB3wI3J2+oD0G42PfN2Pc7D2JRDb/+In4t8MHwYIIEypcyLChQ4YhAAAh+QQFBAAeACwIAAgAEwATAAAFlqAnjiKSjAFJBscgLos4NIQ6JggAKLHXSDWbp6CoLRgeg0ShGwkIKQ9iITggPJFHaqA4eAYIRK0a9SwK0spl0TQkvEIJJnIlCdDCRk4lEJIGBgcHRn4jBBkciROFKgkNDg51jCJBJJU2ARocD4xNAQsGCBMcGz2FAxwZKQwVDYVwEhwOI02MAxsceJMeOgwaJ7skCX0jIQAh+QQFBAAeACwAAAAAAQABAAAFA6AXAgAh+QQFBAAeACwAAAAAAQABAAAFA6AXAgAh+QQFBAAeACwJAAcAEgAVAAAFjqAnjmJAnihgHChqCACAJKMyoMHBeggSJ40baoC4zTwFB6IlOiwLhkCDMUIYUAUSgiA4RCZLAXPkoDQOsfFosVNjDYaBQiRmWjaaDMTdXDAYbWMJQnwiGBoOBEwmIwVeGhhzKAJ+BBsXIgoSVCcEAxkbAw8enEwAARkaYqluAqliChlLY64aQrNjAT2MKCEAIfkEBQQAHgAsBwAIABQAFAAABZqgJ45jUQBkqorGgQqIsKqteCjyTLbAsBg6UoBA8CgSIoGhGGQNAoXG4zAaNBcPxalJQhS4KwGhUCQgRYHZQGKxVBpgD8CQUCiAYEQTpZpcGFYrBgw5HgkEBg4XFHoqFx10CwMZFCIIDwl8IwscFAQXGR4NGQo6BBocRRUYHgIWGEwqBxoPHgEWoYYXVCsBCTIBqzkHaVwHvCshACH5BAUEAB4ALAAAAAABAAEAAAUDoBcCACH5BAUEAB4ALAcACAAVABQAAAWaoCeOpDECZKqKgRcY7bqanoHI6+EKSIHjCJ2oMPidCgIPQbHwGUkIBoLwJAEM1OpqQBgkC0yjwBGRRBQokfdXOASzo0MjqTrQUwQIpwM/QSYJKQoaHRUKHgtQSgwTEUIeDRcPSRQcHgiBFREiB1IkdAkaEgMUGAILFoE4AxkaRRIVLRIURTIGGQ0iExWcEzQyBzGwI05PV78rIQAh+QQFBAAeACwAAAAAAQABAAAFA6AXAgAh+QQFBAAeACwHAAgAFAAUAAAFlaAnjmRBnmgqCip6kEGbDnJqvmJAsLVIDwgEoTc6JAy0k05VSIoKiSgipgoIaIFKZ8tBVBeNBgORkEwkDt6sYECSBosUwJRybDiqxuOgTmTwCAUKIwAHAwMJDw10CxUNMRIaBQcIAmhPCgYjVAcZDx4REx5lOCoWGCIPER4Bqi0FFwwiEBIxBg9DKpqpEVS5PQUFACohACH5BAUEAB4ALAAAAAABAAEAAAUDoBcCACH5BAUEAB4ALAcACAAUABQAAAWRoCeOpEGeaCoGKmqOQlvKXgId4usR6DA+HA6kQDsxMB0Nr0hSTHxFAgJxIABogpiEI9rgVAiF2ICARCANVovAjsESKoKaNGBkMqrEojA/WDYSHgMIJAVZBwsKSwoSCyIOFx4FJg4LVwQHRCgVDQIOEAEHDi9XJwISFAIADA4iDJ1xEwoiDa2SDFA0rCO5NGwtIQAh+QQFBAAeACwAAAAAAQABAAAFA6AXAgAh+QQFBAAeACwHAAgAEwAUAAAFj6AnisNonqeBLWg7GpwmtAENcc8s6ifyGKJMp1DyIFqNjecxUEiKLpGi4slATcBW4hkdDQ6HbHd048TELtah8XCwxqjAsXXdKSyWuuiAILwmGBBABzUiBDUFCQglCBAJIgsTBAQFAQpzAwZ1BREsCwweBQt+Lg8QNQpvCAqFJwMQc6mGjy6kHrI7cB4DeiIhACH5BAUEAB4ALAAAAAABAAEAAAUDoBcCACH5BAUEAB4ALAcABwASABUAAAWXoCeOI0GQaBpUl5CSRZV4QrYN71hoWBBkGpdISAI4No2BhoNLHRijy8YQmQwOpJMC2BAgIh5fgJZKSDYWYg4FWZMMhkLT7XHYeAW6wrBgLGZ0KQZjgR4IEhFqJIAeBQ8UDQUCeSNzIwcNCCIJDwMDJwgGawSZAQgzBAiWIwELDSIHmh6xOQyiAKciV4oeAHO0IwB0ArweIQAh+QQFBAAeACwAAAAAAQABAAAFA6AXAgAh+QQFBAAeACwHAAcAEAAVAAAFjKAnjuMwkKgnjFJVosSEeMGVrcc1j8TlehVMIIDh7EaMzMKDuTE4k4DHsCiIKJnCI0LYcE6ehMWyPDxGgshyZL5MUqID6uCAowsEwsouWlTGFAR8HgUJCglHgyNWigF0dXYzBAwPCoJgcAUKBnELAgKYcAObHgdyfIYiBQcAdgIJjAanrq0AsoojQyghACH5BAUEAB4ALAAAAAABAAEAAAUDoBcCACH5BAUEAB4ALAcACAAUABQAAAWYoCeKwQhF5aiqA3SIlDVW7yoOlCRKlVhtNZtHYUkIKBfPYoNaFRADUUTWeAwyGYHHAFmIDhIJImBorBIFB6cDSZUnEGEA08k0UiPDQrsSTB58HgEDhEIqAHgIERESVoY2BAcIBwaPlh5Rl04KCnhnKwMJDFCelgMIBAAeT3hBNqoeAggFIgiaX7ZblZoBB5lbqoG3wzbCKyEAIfkEBQQAHgAsBwAHABUAEwAABZygJ46jIJBoSjZPqa6GGEmBZ0zx60Gt90QiSSb3QkgOHskkkMj0UAOkyCEhLBiey2X0SIwMLKRVAPAEHggCY8N5egiKB6OGAmwtC1UhQScFIgt9JAKCKQUICQkxBw2NCycqBhsdlBgBAwUGBgRlKgMPExMSgSSdKmQvBAgIOqwoAgeKkDopBgMiMbOutCgGSLe8IlIeSKbBI1LAKCEAIfkEBQQAHgAsAAAAAAEAAQAABQOgFwIAIfkEBQQAHgAsAAAAAAEAAQAABQOgFwIAIfkECQQAHgAsAAAAACMAIwAABbWgJ45kaZ5oqq5s675wLM90baPBvS6MTgoKgqjxEBEihZuAsRAxHKJHJXk7NAwBB8RzsPRqBYFo4RgkFALKxMhAxAiKBdXtAXgah4Eis2nIBgcLCSgVGxMKNYAoD4MzAgI5KgQHCAhULQUKmgmRJgUaIhwWLwIEBQQDKQEKDxEQCXYxnSUBcjapKAIcHUg+JgkUHRx+YB6zIw4YEMc2QiMBzDB0HgbGvifR19rb3N3e3+Dh4ikhADs=") no-repeat center;
  width: 100%;
  height: 100%; }

.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-info {
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 6px 10px;
  background: -moz-linear-gradient(bottom, black 0, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(bottom, black 0, rgba(0, 0, 0, 0) 100%);
  background: -o-linear-gradient(bottom, black 0, rgba(0, 0, 0, 0) 100%);
  background: -ms-linear-gradient(bottom, black 0, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, black 0, rgba(0, 0, 0, 0) 100%);
  z-index: 9;
  opacity: 0;
  filter: alpha(opacity(0));
  -webkit-transition: all 0.12s;
  -moz-transition: all 0.12s;
  transition: all 0.12s; }

.jFiler-items-grid .jFiler-no-thumbnail.jFiler-item .jFiler-item-container .jFiler-item-info {
  background: rgba(0, 0, 0, 0.55); }

.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-thumb:hover .jFiler-item-info {
  bottom: 0;
  opacity: 1;
  filter: aplpha(opacity(100)); }

.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-info .jFiler-item-title {
  display: block;
  font-weight: bold;
  word-break: break-all;
  line-height: 1; }

.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-info .jFiler-item-others {
  display: inline-block;
  font-size: 10px; }

.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-assets {
  margin-top: 10px;
  color: #999; }

.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-assets .text-success {
  color: #3C763D; }

.jFiler-items-grid .jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-assets .text-error {
  color: #A94442; }

.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-assets .jFiler-jProgressBar {
  width: 120px;
  margin-left: -5px; }

.jFiler-items-grid .jFiler-item .jFiler-item-container .jFiler-item-assets .jFiler-item-others {
  font-size: 12px; }

.jFiler-items-grid .jFiler-item-trash-action:hover {
  cursor: pointer;
  color: #d9534f; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.ais-RefinementList__item {
  color: #60cdf6;
  margin-top: 6px; }
  .ais-RefinementList__item input[type="checkbox"] {
    display: none; }
  .ais-RefinementList__item .ais-RefinementList__itemBox {
    display: inline-block;
    border-radius: 3.5px;
    width: 16px;
    height: 16px;
    background: #ffffff url("data:image/svg+xml;utf8,<svg viewBox='0 0 10 9' xmlns='http://www.w3.org/2000/svg'><path d='M1 4.88l2.378 2.435L9.046 1.6' stroke-width='1.6' stroke='%23FFF' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat 50%/10px;
    box-shadow: inset 0 0 0 1px #d4d8e3;
    outline: none;
    vertical-align: middle;
    margin-right: 8px;
    transition: all .15s ease; }
  .ais-RefinementList__item input[type="checkbox"]:checked ~ .ais-RefinementList__itemBox {
    background: #60cdf6 url("data:image/svg+xml;utf8,<svg viewBox='0 0 10 9' xmlns='http://www.w3.org/2000/svg'><path d='M1 4.88l2.378 2.435L9.046 1.6' stroke-width='1.6' stroke='%23FFF' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat 50%/10px;
    border-color: #60cdf6;
    box-shadow: none; }
  .ais-RefinementList__item:hover .ais-RefinementList__itemBox {
    box-shadow: inset 0 0 0 2px #d4d8e3; }

.ais-RefinementList__itemSelected {
  font-weight: 600; }

.ais-RefinementList__itemLabel {
  cursor: pointer; }

.ais-RefinementList__itemCount {
  border-radius: 31px;
  background-color: rgba(39, 81, 175, 0.1);
  color: #60cdf6;
  font-size: 12px;
  padding: 2px 10px; }

.ais-RefinementList__showMore {
  background: transparent;
  border: none;
  cursor: pointer; }

.ais-RefinementList__showMoreDisabled[disabled], .ais-RefinementList__showMoreDisabled:disabled {
  opacity: 0.5;
  pointer-events: none; }

.ais-RefinementList__SearchBox {
  margin-bottom: 3px; }

.ais-RefinementList__SearchBox .ais-SearchBox__root {
  display: inline-block;
  position: relative;
  max-width: 300px;
  width: 100%;
  height: 2rem;
  white-space: nowrap;
  box-sizing: border-box;
  font-size: 14px;
  margin-bottom: 1rem; }

.ais-RefinementList__SearchBox .ais-SearchBox__wrapper {
  width: 100%;
  height: 100%; }

.ais-RefinementList__SearchBox .ais-SearchBox__input {
  border-radius: 3px;
  background-color: #ffffff;
  border: solid 1px #60cdf6;
  appearance: none;
  display: inline-block;
  transition: box-shadow 0.4s ease, background 0.4s ease;
  box-sizing: border-box;
  padding: 0;
  padding-right: 26px;
  padding-left: 32px;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  white-space: normal;
  font-size: inherit;
  appearance: none; }
  .ais-RefinementList__SearchBox .ais-SearchBox__input::-webkit-search-decoration, .ais-RefinementList__SearchBox .ais-SearchBox__input::-webkit-search-cancel-button, .ais-RefinementList__SearchBox .ais-SearchBox__input::-webkit-search-results-button, .ais-RefinementList__SearchBox .ais-SearchBox__input::-webkit-search-results-decoration {
    display: none; }
  .ais-RefinementList__SearchBox .ais-SearchBox__input:hover, .ais-RefinementList__SearchBox .ais-SearchBox__input:active, .ais-RefinementList__SearchBox .ais-SearchBox__input:focus {
    box-shadow: none;
    outline: 0; }
  .ais-RefinementList__SearchBox .ais-SearchBox__input::placeholder {
    color: #9faab2; }

.ais-RefinementList__SearchBox .ais-SearchBox__submit {
  position: absolute;
  top: 0;
  right: inherit;
  left: 0;
  margin: 0;
  border: 0;
  padding: 0;
  width: 32px;
  height: 100%;
  vertical-align: middle;
  text-align: center;
  font-size: inherit;
  user-select: none; }
  .ais-RefinementList__SearchBox .ais-SearchBox__submit::before {
    display: inline-block;
    margin-right: -4px;
    height: 100%;
    vertical-align: middle;
    content: ""; }
  .ais-RefinementList__SearchBox .ais-SearchBox__submit:hover, .ais-RefinementList__SearchBox .ais-SearchBox__submit:active {
    cursor: pointer; }
  .ais-RefinementList__SearchBox .ais-SearchBox__submit:focus {
    outline: 0; }
  .ais-RefinementList__SearchBox .ais-SearchBox__submit svg {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    fill: #bfc7d8; }

.ais-RefinementList__SearchBox .ais-SearchBox__reset {
  display: none;
  position: absolute;
  top: 6px;
  right: 6px;
  margin: 0;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  user-select: none;
  fill: #bfc7d8; }
  .ais-RefinementList__SearchBox .ais-SearchBox__reset:focus {
    outline: 0; }
  .ais-RefinementList__SearchBox .ais-SearchBox__reset svg {
    display: block;
    margin: 4px;
    width: 12px;
    height: 12px; }

.ais-RefinementList__SearchBox .ais-SearchBox__input:valid ~ .ais-RefinementList__SearchBox .ais-SearchBox__reset {
  display: block;
  animation-name: sbx-reset-in;
  animation-duration: 250ms; }

@keyframes sbx-reset-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.ais-Panel__title {
  margin: 0 0 6px;
  padding: 0 0 6px;
  text-transform: uppercase;
  border-bottom: 2px solid #eee; }

.ais-Panel__noRefinement {
  opacity: .7; }

.ais-SortBy__root {
  appearance: none;
  background: transparent;
  border: none;
  background: #ffffff url("data:image/svg+xml;utf8,<svg viewBox='0 0 12 7' xmlns='http://www.w3.org/2000/svg'><path d='M11 1L6.02 6 1 1' stroke-width='1.5' stroke='%23BFC7D8' fill='none' fill-rule='evenodd' stroke-linecap='round'/></svg>") no-repeat center right 16px/10px;
  box-shadow: 0 1px 1px 0 rgba(85, 95, 110, 0.2);
  border: solid 1px #d4d8e3;
  padding: 8px 16px;
  padding-right: 32px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: #697782;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  border-radius: 4px;
  text-align: left; }
  .ais-SortBy__root:hover, .ais-SortBy__root:active {
    box-shadow: none; }
  .ais-SortBy__root:focus, .ais-SortBy__root:active {
    outline: none;
    background: #f2f2f2 url("data:image/svg+xml;utf8,<svg viewBox='0 0 12 7' xmlns='http://www.w3.org/2000/svg'><path d='M11 1L6.02 6 1 1' stroke-width='1.5' stroke='%23BFC7D8' fill='none' fill-rule='evenodd' stroke-linecap='round'/></svg>") no-repeat center right 16px/10px; }

.ais-Pagination__root {
  background-color: #ffffff;
  box-shadow: 0 1px 1px 0 rgba(85, 95, 110, 0.2);
  border: solid 1px #d4d8e3;
  width: auto;
  display: inline-block;
  border-radius: 4px;
  padding: 8px 16px; }

.ais-Pagination__item {
  display: inline-block;
  padding: 3px;
  width: 28px;
  border-radius: 4px;
  text-align: center;
  font-size: 14px; }
  .ais-Pagination__item:hover {
    background: rgba(39, 81, 175, 0.1); }
    .ais-Pagination__item:hover .ais-Pagination__itemLink {
      color: #60cdf6; }

.ais-Pagination__itemSelected {
  color: #fff;
  background: #60cdf6; }
  .ais-Pagination__itemSelected .ais-Pagination__itemLink {
    color: currentColor;
    font-weight: normal; }

.ais-Pagination__itemDisabled {
  visibility: visible;
  color: #bbbbbb; }
  .ais-Pagination__itemDisabled[disabled], .ais-Pagination__itemDisabled:disabled {
    opacity: 0.5;
    pointer-events: none; }

.ais-Pagination__itemDisabled:hover {
  cursor: default;
  text-decoration: none; }

.ais-Pagination__itemLink {
  text-decoration: none;
  color: #697782;
  display: block;
  width: 100%;
  height: 100%; }

/* css overrride */
.ais-Panel__root {
  margin-bottom: 1.8rem; }

.ais-Panel__title {
  font-size: .95rem; }

.ais-RefinementList__itemCount {
  float: right; }

.ais-RefinementList__SearchBox .ais-SearchBox__root {
  max-width: 100%;
  margin-top: .5rem;
  margin-bottom: .5rem; }

@font-face {
  font-family: "gt";
  src: url("../fonts/gt-icons.eot");
  src: url("../fonts/gt-icons.eot?#iefix") format("embedded-opentype"), url("../fonts/gt-icons.woff") format("woff"), url("../fonts/gt-icons.ttf") format("truetype"), url("../fonts/gt-icons.svg#gt") format("svg");
  font-weight: normal;
  font-style: normal; }

[data-icon]:before {
  font-family: "gt" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

[class^="gt-"]:before,
[class^="fa-"]:before,
[class*=" gt-"]:before,
[class*=" fa-"]:before {
  font-family: "gt" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: black; }

.gt-icon-large:before {
  font-size: 3rem;
  line-height: 3rem; }

.gt-icon-medium:before {
  font-size: 1.625rem;
  line-height: 1.625rem; }

.gt-icon-alert-solid:before {
  content: "b"; }

.gt-icon-area:before {
  content: "c"; }

.gt-icon-arrowdown:before {
  content: "d"; }

.gt-icon-arrowdown-outline:before {
  content: "e"; }

.gt-icon-arrowdown-solid:before {
  content: "f"; }

.gt-icon-arrowleft:before {
  content: "g"; }

.gt-icon-arrowleft-outline:before {
  content: "h"; }

.gt-icon-arrowleft-solid:before {
  content: "i"; }

.gt-icon-arrowright:before {
  content: "j"; }

.gt-icon-arrowright-outline:before {
  content: "k"; }

.gt-icon-arrowright-solid:before {
  content: "l"; }

.gt-icon-arrowup:before {
  content: "m"; }

.gt-icon-delete-outline:before {
  content: "n"; }

.gt-icon-crop-solid:before {
  content: "o"; }

.gt-icon-crop:before {
  content: "p"; }

.gt-icon-close-outline-solid:before {
  content: "q"; }

.gt-icon-close-outline:before {
  content: "r"; }

.gt-icon-close:before {
  content: "s"; }

.gt-icon-chat-solid:before {
  content: "t"; }

.gt-icon-chat:before {
  content: "u"; }

.gt-icon-cars-guide-solid:before {
  content: "v"; }

.gt-icon-cars-guide:before {
  content: "w"; }

.gt-icon-bed:before {
  content: "x"; }

.gt-icon-arrowup-solid:before {
  content: "y"; }

.gt-icon-arrowup-outline:before {
  content: "z"; }

.gt-icon-delete-solid:before {
  content: "A"; }

.gt-icon-edit:before {
  content: "B"; }

.gt-icon-edit-outline:before {
  content: "C"; }

.gt-icon-edit-outline-solid:before {
  content: "E"; }

.gt-icon-email:before {
  content: "G"; }

.gt-icon-edit-solid:before {
  content: "D"; }

.gt-icon-email-outline:before {
  content: "F"; }

.gt-icon-extra:before {
  content: "I"; }

.gt-icon-email-solid:before {
  content: "H"; }

.gt-icon-extra-solid:before {
  content: "J"; }

.gt-icon-favourite-off:before {
  content: "K"; }

.gt-icon-favourite-on:before {
  content: "L"; }

.gt-icon-fb:before {
  content: "M"; }

.gt-icon-list-solid:before {
  content: "N"; }

.gt-icon-list:before {
  content: "O"; }

.gt-icon-linkedin-solid:before {
  content: "P"; }

.gt-icon-linkedin:before {
  content: "Q"; }

.gt-icon-instagram-solid:before {
  content: "R"; }

.gt-icon-instagram:before {
  content: "S"; }

.gt-icon-info-solid:before {
  content: "T"; }

.gt-icon-info:before {
  content: "U"; }

.gt-icon-grid-solid:before {
  content: "V"; }

.gt-icon-grid:before {
  content: "W"; }

.gt-icon-flag-solid:before {
  content: "X"; }

.gt-icon-flag:before {
  content: "Y"; }

.gt-icon-fb-solid:before {
  content: "Z"; }

.gt-icon-lock:before {
  content: "0"; }

.gt-icon-lock-solid:before {
  content: "1"; }

.gt-icon-max:before {
  content: "2"; }

.gt-icon-menu:before {
  content: "3"; }

.gt-icon-menu-solid:before {
  content: "4"; }

.gt-icon-min:before {
  content: "5"; }

.gt-icon-move-line:before {
  content: "7"; }

.gt-icon-phone:before {
  content: "6"; }

.gt-icon-phone-solid:before {
  content: "8"; }

.gt-icon-pinterest:before {
  content: "9"; }

.gt-icon-pinterest-solid:before {
  content: "!"; }

.gt-icon-plus:before {
  content: "#"; }

.gt-icon-plus-outline:before {
  content: "\""; }

.gt-icon-shower:before {
  content: "$"; }

.gt-icon-search:before {
  content: "%"; }

.gt-icon-rotate-right:before {
  content: "&"; }

.gt-icon-rotate-left:before {
  content: "'"; }

.gt-icon-renew-solid:before {
  content: "("; }

.gt-icon-renew:before {
  content: ")"; }

.gt-icon-remove-circular:before {
  content: "*"; }

.gt-icon-remove:before {
  content: "+"; }

.gt-icon-refine-solid:before {
  content: ","; }

.gt-icon-refine:before {
  content: "-"; }

.gt-icon-plusrounded:before {
  content: "."; }

.gt-icon-profile:before {
  content: "/"; }

.gt-icon-profile-solid:before {
  content: ":"; }

.gt-icon-sms:before {
  content: ";"; }

.gt-icon-sms-solid:before {
  content: "<"; }

.gt-icon-stats:before {
  content: "="; }

.gt-icon-twitter:before {
  content: ">"; }

.gt-icon-twitter-solid:before {
  content: "?"; }

.gt-icon-whatsapp:before {
  content: "@"; }

.gt-icon-whatsapp-solid:before {
  content: "["; }

.gt-iconminusrounded:before {
  content: "]"; }

.gt-icon-time:before {
  content: "^"; }

.gt-icon-play:before {
  content: "_"; }

.gt-icon-play-outline:before {
  content: "`"; }

.gt-icon-play-solid:before {
  content: "{"; }

.gt-icon-pause:before {
  content: "|"; }

.gt-icon-pause-outline:before {
  content: "}"; }

.gt-icon-pause-solid:before {
  content: "~"; }

.gt-icon-sortdescending:before {
  content: "\\"; }

.gt-icon-sortascending:before {
  content: "\E000"; }

.gt-icon-download:before {
  content: "\E001"; }

.gt-icon-calendar:before {
  content: "\E002"; }

.gt-icon-alert:before {
  content: "a"; }

::selection {
  background: #453269;
  color: white; }

::-moz-selection {
  background: #453269;
  color: white; }

body {
  height: auto;
  /* fix for scrollTop doent work if body height is 100% */ }

.soft-hide {
  display: none; }

.tooltip {
  padding: 0.3125rem 0.5rem;
  font-size: 0.6875rem;
  background: #f7f7f7; }
  .tooltip.top:before {
    border-color: #f7f7f7 transparent transparent; }
  .tooltip:before {
    border-color: #f7f7f7 transparent transparent; }

input:focus::-webkit-input-placeholder {
  color: transparent; }

input:focus:-moz-placeholder {
  color: transparent; }

/* FF 4-18 */
input:focus::-moz-placeholder {
  color: transparent; }

/* FF 19+ */
input:focus:-ms-input-placeholder {
  color: transparent; }

/* IE 10+ */
.off-canvas-content .row {
  background-color: #fff; }

.menu > li > a {
  display: inline-block; }

.bold {
  font-weight: bold; }

.uppercase {
  text-transform: uppercase; }

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

.secondary-action {
  background-color: #f8981d; }
  .secondary-action:hover, .secondary-action:focus {
    background-color: #e68407; }

/* Style for alert */
.alert {
  color: #ff0000;
  padding: 0.5rem 0.625rem;
  border: 1px solid #ff0000;
  border-radius: 5px;
  margin-bottom: 1rem;
  text-align: center; }
  .alert.success {
    border-color: #3adb76;
    color: #3adb76; }
  .alert.warning {
    border-color: #ffae00;
    color: #ffae00; }

/*row gutter */
.row-gutter {
  margin-bottom: 2.5rem; }

.small-gutter {
  margin-bottom: 0.9375rem; }

.nopadding {
  padding: 0; }

.nomargin {
  margin: 0; }

/*common class border top */
.outr-top-border {
  border-top: 1px #ceced2 solid; }

/*extra padding on top and bottom */
.extra-vertical-padding {
  padding: 1.25rem 0; }

.no-bottom-margin {
  margin-bottom: 0; }

.sub-heading-small {
  font-size: 0.75rem; }

.no-border {
  border: none !important; }

.select2-container.select2-container--focus .select2-selection--single,
.select2-container.select2-container--focus .select2-selection--multiple {
  transition: box-shadow 0.5s,border-color 0.25s ease-in-out;
  border-color: #000; }

/* Xtra animations */
/* Pulse Grow */
@-webkit-keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); } }

@keyframes hvr-pulse-grow {
  to {
    -webkit-transform: scale(1.1);
    transform: scale(1.1); } }

.hvr-pulse-grow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent; }

.hvr-pulse-grow:hover,
.hvr-pulse-grow:focus,
.hvr-pulse-grow:active {
  -webkit-animation-name: hvr-pulse-grow;
  animation-name: hvr-pulse-grow;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate; }

@media screen and (max-width: 47.9375em) {
  .reveal.full {
    top: 0 !important;
    left: 0;
    width: 80%;
    max-width: none;
    margin-left: 0;
    border: 0;
    border-radius: 0;
    height: 80vh;
    min-height: 80vh;
    transform: translateY(15%) translateX(10%);
    -moz-transform: translateY(15%) translateX(10%);
    -o-transform: translateY(15%) translateX(10%);
    -ms-transform: translateY(15%) translateX(10%);
    -webkit-transform: translateY(15%) translateX(10%); } }

@media screen and (max-width: 47.9375em) {
  .reveal.small-popup {
    top: 0 !important;
    left: 0;
    width: 88%;
    max-width: none;
    margin-left: 0;
    border: 0;
    border-radius: 0;
    height: auto;
    min-height: auto;
    transform: translateY(50%) translateX(7%);
    -moz-transform: translateY(50%) translateX(7%);
    -o-transform: translateY(50%) translateX(7%);
    -ms-transform: translateY(50%) translateX(17%);
    -webkit-transform: translateY(50%) translateX(7%); } }

.reveal.gallery {
  padding: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible; }
  @media screen and (max-width: 74.9375em) {
    .reveal.gallery.small {
      width: 100%;
      top: 0 !important;
      height: 100%;
      position: absolute; } }
  .reveal.gallery .slick-slider {
    zoom: 1; }
    @media screen and (max-width: 74.9375em) {
      .reveal.gallery .slick-slider.single-item {
        margin-top: 25%; } }
  @media screen and (max-width: 74.9375em) and (orientation: landscape) {
    .reveal.gallery .slick-slider.single-item {
      margin-top: 5%; } }
  .reveal.gallery .slick-list {
    padding: 0 0.3125rem !important; }
  .reveal.gallery .single-item-nav .slick-list {
    background: black;
    padding: 10px 0 !important; }
  .reveal.gallery .slick-prev {
    position: absolute;
    top: 40%;
    width: 170px;
    left: -170px; }
    @media screen and (max-width: 74.9375em) {
      .reveal.gallery .slick-prev {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 9;
        height: 100%;
        background: rgba(0, 0, 0, 0.25);
        padding: 0 10px;
        width: auto; }
        .reveal.gallery .slick-prev svg {
          width: 30px;
          display: inline-block;
          vertical-align: middle;
          height: 100%; } }
  .reveal.gallery .slick-next {
    position: absolute;
    top: 40%;
    width: 170px;
    right: -170px;
    text-align: right; }
    @media screen and (max-width: 74.9375em) {
      .reveal.gallery .slick-next {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 9;
        height: 100%;
        background: rgba(0, 0, 0, 0.25);
        padding: 0 10px;
        width: auto; }
        .reveal.gallery .slick-next svg {
          width: 30px;
          display: inline-block;
          vertical-align: middle;
          height: 100%; } }
  .reveal.gallery .close-button {
    top: -55px;
    right: 0;
    font-size: 3.125rem; }
    .reveal.gallery .close-button:hover {
      color: #60cdf6; }
    @media screen and (max-width: 74.9375em) {
      .reveal.gallery .close-button {
        right: 0.9375rem;
        font-size: 1.875rem;
        top: 0; } }
  .reveal.gallery .single-item-nav {
    margin-top: 3.125rem; }
    @media screen and (max-width: 74.9375em) {
      .reveal.gallery .single-item-nav {
        margin-top: 1.5625rem; } }
    .reveal.gallery .single-item-nav .slick-slide {
      padding: 0.125rem;
      width: 7.1875rem;
      border: 3px solid transparent;
      box-sizing: border-box;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -o-box-sizing: border-box;
      outline: none; }
      .reveal.gallery .single-item-nav .slick-slide.slick-current.slick-active {
        border: 3px solid #60cdf6; }

.reveal-overlay {
  z-index: 1605; }
  .reveal-overlay.gallery-overlay {
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden; }
    @media (orientation: landscape) {
      .reveal-overlay.gallery-overlay {
        overflow-y: scroll; } }

table {
  border-collapse: separate;
  table-layout: fixed;
  width: 100%; }
  @media screen and (min-width: 64em) {
    table {
      border-collapse: collapse; } }
  table tbody tr {
    border: 1px solid #eae2f7;
    border-collapse: collapse;
    margin-bottom: 1.25rem;
    padding: 0.625rem 0 0.9375rem;
    box-sizing: border-box; }
    @media screen and (min-width: 64em) {
      table tbody tr {
        margin-bottom: 0;
        padding: 0; } }
    table tbody tr:nth-child(even) {
      background: none; }
  table thead tr {
    background-color: #eae2f7; }
  table tbody td, table thead th {
    padding: 0.625rem 0.9375rem 0 1.25rem; }
    @media screen and (min-width: 64em) {
      table tbody td, table thead th {
        padding: 0.9375rem 0.625rem 1.25rem; } }

.breadcrumbs {
  margin-top: 1rem;
  margin-bottom: 0.625rem; }
  @media screen and (max-width: 47.9375em) {
    .breadcrumbs {
      padding: 0 0.3125rem; } }
  .breadcrumbs li:not(:last-child)::after {
    margin: 0 0.15rem; }
  .breadcrumbs a {
    color: #000; }
  .breadcrumbs .current {
    color: #1b344a; }
  .breadcrumbs li {
    text-transform: capitalize; }
    @media screen and (min-width: 64em) {
      .breadcrumbs li {
        font-size: 1rem; } }
  .breadcrumbs .dropdown {
    margin: 0;
    width: 0.75rem;
    height: 0.75rem;
    padding: 0;
    border-radius: 0.125rem;
    margin-bottom: 0.125rem;
    line-height: 0;
    margin-left: 0.1875rem;
    color: #575757;
    background-color: #d7d7d7; }
    .breadcrumbs .dropdown:after {
      display: none; }
    .breadcrumbs .dropdown:before {
      font-size: 0.375rem;
      vertical-align: top; }
  .breadcrumbs .dropdown-pane {
    left: 5.9375rem !important;
    z-index: 100000; }
    .breadcrumbs .dropdown-pane:after, .breadcrumbs .dropdown-pane:before {
      bottom: 100%;
      left: 50%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none; }
    .breadcrumbs .dropdown-pane:after {
      border-color: rgba(136, 183, 213, 0);
      border-bottom-color: white;
      border-width: 0.9375rem;
      margin-left: -0.9375rem; }
    .breadcrumbs .dropdown-pane:before {
      border-color: rgba(194, 225, 245, 0);
      border-bottom-color: #c2c2c2;
      border-width: 1rem;
      margin-left: -1rem; }
    .breadcrumbs .dropdown-pane li {
      width: 100%;
      border-bottom: 0.0625rem solid #1b344a;
      font-size: 0.75rem; }
      .breadcrumbs .dropdown-pane li > a {
        padding: 0.8rem 1rem; }
      .breadcrumbs .dropdown-pane li:after {
        display: none; }
      .breadcrumbs .dropdown-pane li:last-child {
        border: 0; }

.title-bar {
  text-align: center;
  z-index: 10; }
  .title-bar .row {
    background-color: white; }
  .title-bar .icon-burger,
  .title-bar .icon-search,
  .title-bar .icon-close {
    color: black;
    font-size: 1.25rem;
    line-height: 1.25rem;
    vertical-align: middle;
    height: 1.25rem; }
    @media screen and (min-width: 48em) {
      .title-bar .icon-burger,
      .title-bar .icon-search,
      .title-bar .icon-close {
        font-size: 1.875rem;
        line-height: 1.875rem;
        height: 1.875rem; } }
  .title-bar .title-bar-left, .title-bar .title-bar-right, .title-bar .title-bar-title {
    padding: 0.75rem 0.9375rem 0.75rem 0.9375rem;
    width: auto; }
    @media screen and (min-width: 48em) {
      .title-bar .title-bar-left, .title-bar .title-bar-right, .title-bar .title-bar-title {
        padding: 1rem;
        padding-left: 0; } }
  .title-bar .title-bar-title {
    padding-right: 0; }
    @media screen and (min-width: 48em) {
      .title-bar .title-bar-title {
        padding: 0;
        padding-right: 1.25rem; } }
    @media screen and (min-width: 75em) {
      .title-bar .title-bar-title {
        padding-right: 8.75rem; } }
  .title-bar .darker-bar {
    background-color: #181819;
    padding: 1rem; }
  .title-bar .title-bar-title,
  .title-bar .title-bar-right,
  .title-bar .title-bar-left {
    line-height: 1; }
  .title-bar .title-bar-left {
    float: left;
    width: 59px;
    text-align: left;
    padding-top: 18px; }
  .title-bar .title-bar-right {
    float: right;
    padding-left: 0; }
    .title-bar .title-bar-right .switch {
      padding-right: 1.25rem; }

.off-canvas-wrapper,
.off-canvas-wrapper-inner {
  height: 100%; }

.off-canvas {
  outline: none;
  background: white;
  /*height: 100%;*/
  position: fixed;
  top: 0;
  z-index: 5; }
  .off-canvas .title-section {
    padding: 0.75rem 0.9375rem 0.75rem 0.9375rem;
    text-align: left; }
    .off-canvas .title-section .switch {
      float: right; }
  .off-canvas .icon-down-chevron {
    padding-left: 0; }
  .off-canvas .menu-footer {
    text-align: center;
    float: left;
    margin-top: 6.25rem; }
    .off-canvas .menu-footer a {
      margin-left: 0.625rem;
      margin-right: 0.625rem; }
  .off-canvas .site-logo {
    width: 70%; }
  .off-canvas .gt-icon-arrowdown {
    color: white; }
  .off-canvas.is-open {
    box-shadow: 83px 0 37px 12px rgba(0, 0, 0, 0.1); }
  .off-canvas .menu {
    padding: 16px 0;
    border-bottom: 1px #eeeeee solid; }
    .off-canvas .menu a {
      color: #555555; }
    .off-canvas .menu > li {
      border-bottom: 0; }
    .off-canvas .menu.secondary-menu {
      background: #fff;
      border-bottom: 0; }
      .off-canvas .menu.secondary-menu a {
        font-size: 13px; }
      .off-canvas .menu.secondary-menu > li {
        border-bottom: 0;
        border-top: 0; }
    .off-canvas .menu.vertical li.active a {
      font-weight: bold;
      background: none; }
    .off-canvas .menu.sub-menu {
      background: #E5F7FD; }
      .off-canvas .menu.sub-menu a {
        font-size: 16px;
        padding: 1rem; }
      .off-canvas .menu.sub-menu li.active {
        background: #60cdf6; }
        .off-canvas .menu.sub-menu li.active a {
          color: white; }
      .off-canvas .menu.sub-menu li.new-feature a:before {
        content: 'Call Support | NEW';
        position: absolute;
        left: 10.9375rem;
        background: #7f3f98;
        color: white;
        font-size: 0.625rem;
        padding: 0.125rem 0.1875rem 0.1875rem;
        font-weight: 600;
        border-radius: 0.1875rem;
        text-transform: capitalize; }

.menu {
  font-size: 0.875rem; }
  .menu a {
    color: #28ace2; }
    .menu a.up {
      color: #1b344a; }

.is-accordion-submenu-parent .icon-down-chevron:before {
  float: right; }

.is-accordion-submenu-parent .up {
  font-weight: bold; }
  .is-accordion-submenu-parent .up:before {
    /* Safari */
    -webkit-transform: rotate(-180deg);
    /* Firefox */
    -moz-transform: rotate(-180deg);
    /* IE */
    -ms-transform: rotate(-180deg);
    /* Opera */
    -o-transform: rotate(-180deg);
    /* Internet Explorer */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=6); }

.is-accordion-submenu-parent.opened {
  background-color: #434343; }

.accordion-menu a.gt-icon-arrowdown {
  position: relative;
  padding: 0.3125rem; }
  .accordion-menu a.gt-icon-arrowdown:before {
    color: #28ace2;
    position: absolute;
    top: 0.3125rem;
    font-size: 0.75rem; }

.accordion-menu li a {
  position: relative;
  display: block;
  padding: 1rem;
  font-size: 1rem; }
  .accordion-menu li a.new-feature:before {
    content: 'New';
    position: absolute;
    top: 0.5rem;
    left: 4.6875rem;
    background: #7f3f98;
    color: white;
    font-size: 0.625rem;
    padding: 0.125rem 0.1875rem 0.1875rem;
    font-weight: 600;
    border-radius: 0.1875rem;
    text-transform: capitalize; }

.accordion-menu > li {
  border-bottom: 1px #eeeeee solid; }
  .accordion-menu > li:last-child {
    border: 0; }

.secondary-menu {
  margin: 0;
  background: #f9f9f9; }
  .secondary-menu li {
    border-bottom: 1px #eeeeee solid; }
    .secondary-menu li a {
      display: block;
      padding: 1rem; }
    .secondary-menu li:first-child {
      border-top: 1px #eeeeee solid; }

.off-canvas-content footer .row,
.off-canvas-content footer div.row {
  background-color: #453269; }

.off-canvas-content footer .share-bar .row {
  background-color: #453269 !important; }

/* Site Footer */
footer {
  background-color: #453269;
  width: 100%; }
  footer .footer-content {
    padding: 1.25rem 0 0.625rem; }
    @media screen and (min-width: 64em) {
      footer .footer-content {
        padding: 2rem 0 1rem; } }
  footer .home-footer-theme {
    background: #ffffff url("../img/generic/m_footer_img_bg.jpg") no-repeat center top;
    min-height: 6.5625rem;
    display: none; }
    @media screen and (min-width: 48em) {
      footer .home-footer-theme {
        background: #453269 url("../img/generic/d_footer_img_bg.jpg") no-repeat center top/contain;
        min-height: 8.125rem; } }
    @media screen and (min-width: 64em) {
      footer .home-footer-theme {
        display: block;
        background: #453269 url("../img/generic/d_footer_img_bg.jpg") no-repeat center top;
        height: 16.3125rem; } }
  footer a {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    -moz-transition: color .2s ease-in;
    -webkit-transition: color .2s ease-in;
    transition: color .2s ease-in; }
    footer a:hover {
      color: #c898db;
      -moz-transition: color .2s ease-in;
      -webkit-transition: color .2s ease-in;
      transition: color .2s ease-in; }
  @media screen and (max-width: 74.9375em) {
    footer .nav-footer {
      display: none; } }
  footer .footer-col {
    margin-bottom: 1rem; }
    footer .footer-col:last-child {
      margin-bottom: 0; }
    footer .footer-col .were-do-i-leave-btn {
      background: #7F3F98;
      border-radius: 15px;
      text-transform: capitalize;
      padding: 2px 15px;
      display: inline-block;
      text-decoration: none; }
      footer .footer-col .were-do-i-leave-btn:visited, footer .footer-col .were-do-i-leave-btn:hover, footer .footer-col .were-do-i-leave-btn:active {
        color: white; }
      footer .footer-col .were-do-i-leave-btn span {
        font-family: "Open Sans", sans-serif;
        font-weight: 600;
        font-size: 12px;
        text-align: center;
        letter-spacing: 0.002em; }
  footer .footer-menu {
    list-style: none;
    margin: 0 0 1rem;
    text-align: center; }
    footer .footer-menu li {
      display: inline-block;
      padding: 0.25rem 0.625rem; }
      @media screen and (min-width: 64em) {
        footer .footer-menu li {
          display: block;
          text-align: left;
          padding-top: 0.5rem;
          padding-bottom: 0.5rem; } }
  footer .share-bar {
    white-space: nowrap; }
    @media screen and (max-width: 74.9375em) {
      footer .share-bar li a span {
        display: none; } }
    footer .share-bar li {
      padding: 0 0.9375rem; }
      @media screen and (min-width: 64em) {
        footer .share-bar li {
          padding: 0.625rem 0; } }
    footer .share-bar a {
      line-height: 1.5625rem;
      vertical-align: bottom;
      font-size: 0.75rem;
      font-weight: normal;
      -moz-transition: color .2s ease-in;
      -webkit-transition: color .2s ease-in;
      transition: color .2s ease-in; }
      @media screen and (min-width: 64em) {
        footer .share-bar a {
          font-size: 0.875rem;
          line-height: 1.5rem; } }
      footer .share-bar a:hover {
        color: #c898db;
        -moz-transition: color .2s ease-in;
        -webkit-transition: color .2s ease-in;
        transition: color .2s ease-in; }
    footer .share-bar .gt-icon:before {
      color: white;
      font-size: 1.5625rem;
      margin-right: 5px;
      vertical-align: middle;
      -moz-transition: color .2s ease-in;
      -webkit-transition: color .2s ease-in;
      transition: color .2s ease-in; }
      @media screen and (max-width: 74.9375em) {
        footer .share-bar .gt-icon:before {
          font-size: 2.1875rem; } }
    footer .share-bar .gt-icon:hover:before {
      color: #c898db; }
  footer .copyrights {
    margin-bottom: 1rem;
    font-weight: 300;
    font-size: 0.75rem;
    color: white; }
    footer .copyrights a {
      display: block; }
    footer .copyrights .site-logo {
      width: 46%;
      max-width: 11.25rem;
      margin-bottom: 1rem; }
      @media screen and (min-width: 64em) {
        footer .copyrights .site-logo {
          width: 70%; } }
  @media screen and (min-width: 64em) {
    footer .footer-col {
      float: right; } }

.top-bar .menu-top {
  background: #F5F5F5;
  position: relative;
  z-index: 500; }
  .top-bar .menu-top .row {
    background: #F5F5F5; }
    .top-bar .menu-top .row .menu-top-left {
      float: left;
      padding: 0.625rem;
      color: #888888;
      font-size: 0.6875rem; }
    .top-bar .menu-top .row .menu-top-right {
      float: right; }
      .top-bar .menu-top .row .menu-top-right ul {
        margin: 0;
        background: none; }
        .top-bar .menu-top .row .menu-top-right ul li {
          display: inline-block;
          padding: 0.375rem; }
          .top-bar .menu-top .row .menu-top-right ul li a {
            padding: 2.375rem 0.3125rem 0.5rem;
            transition: color 0.3s ease;
            font-size: 0.6875rem;
            color: #888888; }
            .top-bar .menu-top .row .menu-top-right ul li a:hover {
              color: #60cdf6; }
          .top-bar .menu-top .row .menu-top-right ul li.active a {
            color: #333333;
            font-weight: bold; }

@media screen and (min-width: 64em) {
  .top-bar .top-menu-wrapper {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    max-width: 81.25rem; } }

@media screen and (min-width: 90em) {
  .top-bar .top-menu-wrapper {
    max-width: 85.9375rem !important; } }

.top-bar .feedback-callout {
  background: #90afdd;
  color: #fff;
  font-size: 0.875rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  margin-top: -0.5rem;
  padding-left: 1.25rem;
  padding-right: 5rem;
  box-sizing: border-box;
  width: auto;
  text-align: center;
  border: none; }
  @media screen and (min-width: 64em) {
    .top-bar .feedback-callout {
      font-size: 1.125rem;
      margin-left: -1.5rem;
      margin-right: -1.5rem;
      margin-top: 0; } }
  .top-bar .feedback-callout p {
    margin-bottom: 0; }
    .top-bar .feedback-callout p a {
      color: inherit;
      border-bottom: 1px solid #fff; }
  .top-bar .feedback-callout .close-button {
    width: 60px;
    height: 100%;
    font-size: 30px;
    line-height: 0;
    top: 0;
    right: 0;
    background: #6884b3;
    white-space: nowrap;
    overflow: hidden; }
    .top-bar .feedback-callout .close-button:before {
      font-size: 1.25rem;
      color: white;
      justify-content: center;
      width: 100%;
      display: inline-flex;
      align-items: center; }
      @media screen and (min-width: 64em) {
        .top-bar .feedback-callout .close-button:before {
          font-size: 1.75rem; } }

.top-bar.is-stuck {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); }

.top-bar .elem-inactive {
  position: fixed;
  width: 100%;
  height: 6.5625rem;
  background: #ffffff;
  opacity: 0.5;
  top: 0;
  left: 0;
  opacity: 0.7; }
  @media screen and (max-width: 63.9375em) {
    .top-bar .elem-inactive {
      height: 3.125rem; } }

.top-bar .avatar {
  float: right;
  border-radius: 100%;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0.625rem; }

.top-bar .icon-login {
  float: left; }
  .top-bar .icon-login:before {
    font-size: 1.75rem;
    vertical-align: bottom;
    color: #60cdf6; }
    @media screen and (max-width: 74.9375em) {
      .top-bar .icon-login:before {
        font-size: 2.375rem;
        line-height: 2.75rem;
        color: #60cdf6; } }
  @media screen and (max-width: 74.9375em) and (orientation: landscape) {
    .top-bar .icon-login:before {
      line-height: 2rem; } }

.top-bar .gt-icon-menu {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  outline: none; }
  .top-bar .gt-icon-menu:before {
    font-size: 1.5rem;
    vertical-align: middle; }

.top-bar .logo-container {
  display: block;
  text-align: left; }
  @media screen and (max-width: 74.9375em) {
    .top-bar .logo-container {
      display: inline-block;
      padding: 0.5rem 0 0.125rem; } }

.top-bar .site-logo {
  width: auto;
  height: 1.875rem; }
  @media screen and (min-width: 64em) {
    .top-bar .site-logo {
      height: 1.5rem; } }

.top-bar .top-bar-right,
.top-bar .top-bar-left,
.top-bar .top-bar-title {
  margin: 0; }

@media screen and (min-width: 64em) {
  .top-bar .top-bar-left {
    padding-top: 1.5625rem;
    padding-bottom: 0.3125rem; }
  .top-bar .top-bar-right {
    padding-top: 1.6875rem;
    padding-bottom: 1.4375rem; } }

.top-bar .top-bar-right {
  width: 68%;
  text-align: center; }
  @media screen and (min-width: 64em) {
    .top-bar .top-bar-right {
      width: 46%; } }
  .top-bar .top-bar-right .onesignal-popup {
    display: inline-block;
    margin: 7px auto;
    position: relative; }
    .top-bar .top-bar-right .onesignal-popup img {
      width: 30px; }
    @media screen and (max-width: 63.9375em) {
      .top-bar .top-bar-right .onesignal-popup {
        float: right;
        margin: 7px 5px 0 10px; } }

.top-bar .top-bar-left {
  width: auto;
  position: relative;
  z-index: 500; }

.top-bar .top-bar-title {
  width: 40%; }

@media screen and (max-width: 63.9375em) {
  .top-bar .top-bar-title {
    padding-left: 1rem;
    position: relative;
    z-index: 700;
    width: 20%; } }

.top-bar .nav-verticals {
  text-align: left; }
  .top-bar .nav-verticals li {
    display: inline-block;
    padding: 0 0.375rem;
    position: relative; }
    .top-bar .nav-verticals li a {
      padding: 2.375rem 0.3125rem 2.25rem;
      transition: color 0.3s ease;
      font-size: 0.9375rem; }
      .top-bar .nav-verticals li a:hover {
        color: #60cdf6; }
    .top-bar .nav-verticals li.new-feature {
      margin-right: 30px; }
      .top-bar .nav-verticals li.new-feature a:before {
        content: 'Call Support | NEW';
        position: absolute;
        top: 1.125rem;
        left: auto;
        background: #7f3f98;
        color: white;
        font-size: 0.625rem;
        padding: 0.125rem 0.1875rem 0.1875rem;
        font-weight: 600;
        border-radius: 0.1875rem; }
    .top-bar .nav-verticals li.active a {
      color: #359acb;
      background: none !important;
      border-bottom: 5px #359acb solid;
      padding: 2.375rem 0.3125rem 2.25rem; }
  .top-bar .nav-verticals a {
    color: #484848;
    font-weight: 600; }
    .top-bar .nav-verticals a:hover {
      color: #888888; }

.top-bar .btn-place-ad {
  margin: 0;
  padding: 0.5rem 0.9375rem !important;
  font-size: 12px;
  float: right;
  font-weight: 600; }

.top-bar .ln-profile {
  height: 2.5rem;
  margin: 0 0 0 .5rem;
  display: inline-block;
  border-radius: 50%;
  background-color: #FFF;
  padding: 0;
  outline: none; }
  .top-bar .ln-profile:after {
    display: none; }

.top-bar .avatar {
  margin: 0;
  top: 0; }

@media screen and (max-width: 63.9375em) {
  .top-bar .birth-day .logo-container .site-logo {
    height: 2.5rem;
    margin-top: -0.625rem; } }

@media screen and (min-width: 64em) {
  .top-bar {
    padding: 0; }
    .top-bar .top-bar-right {
      width: 32%; }
    .top-bar .top-bar-left {
      width: 13%; }
    .top-bar .top-bar-title {
      width: 55%; }
    .top-bar .birth-day .top-bar-right {
      width: 30%; }
      .top-bar .birth-day .top-bar-right .ln-profile .name {
        max-width: 6.5625rem; }
    .top-bar .birth-day .top-bar-left {
      width: 20%;
      padding-top: 0.625rem;
      padding-bottom: 0.9375rem; }
    .top-bar .birth-day .top-bar-title {
      width: 50%; }
    .top-bar .birth-day .logo-container .site-logo {
      max-height: 4.25rem;
      min-height: 4.25rem;
      width: 14.6875rem;
      margin: 0 0 0 -5px; }
    .top-bar .btn-place-ad {
      padding: 0.5625rem 2.375rem !important;
      font-size: 0.8125rem;
      line-height: 1.125rem;
      float: left;
      font-weight: 600; }
    .top-bar .icon-login {
      align-items: center;
      padding: 0.0625rem;
      display: inline-block;
      line-height: 2.125rem; }
      .top-bar .icon-login:before {
        font-size: 2rem; } }
      @media screen and (min-width: 64em) and (min-width: 64em) {
        .top-bar .icon-login:before {
          margin: 0.0625rem 0.0625rem 0.0625rem -0.0625rem; } }

@media screen and (min-width: 64em) {
    .top-bar .ln-profile {
      height: 2.375rem;
      margin-left: 0;
      display: inline-block;
      border: 1px solid #00AEEF;
      border-radius: 1.75rem;
      background-color: #FFF;
      font-size: 0.8125rem;
      padding: 0 0.125rem; }
      .top-bar .ln-profile.user-logged:after {
        content: "d";
        font-family: "gt";
        display: inline-block;
        top: 1rem;
        right: 0.5rem;
        color: #60cdf6;
        float: right;
        margin-right: 0.625rem;
        margin-top: 0.75rem; }
      .top-bar .ln-profile .name {
        padding: 0 0.3125rem 0 0.75rem;
        line-height: 2.125rem;
        color: #484848;
        max-width: 7.5rem;
        overflow: hidden;
        white-space: nowrap;
        display: inline-block;
        text-overflow: ellipsis;
        min-width: 4.375rem;
        text-align: left; }
    .top-bar .avatar {
      width: 2.125rem;
      height: 2.125rem;
      line-height: 2.125rem;
      margin-top: 1px; }
    .top-bar .logo-container {
      text-align: left; }
      .top-bar .logo-container .site-logo {
        height: 100%;
        max-height: 2.5rem; } }

@media screen and (max-width: 74.9375em) and (orientation: landscape) {
  .top-bar .birth-day .top-bar-left {
    width: 50%;
    padding-top: 0;
    padding-bottom: 0; }
  .top-bar .birth-day .top-bar-right {
    width: 50%; } }

.top-bar .with-tip {
  position: relative; }
  .top-bar .with-tip:hover {
    cursor: pointer; }
  .top-bar .with-tip .topnav-tip {
    color: #555555;
    background: #efeff4;
    display: none;
    font-weight: 300;
    padding: 0.625rem;
    position: absolute;
    left: -0.3125rem;
    top: 50%;
    transform: translate(-100%, -50%);
    border-radius: 0.1875rem; }
    .top-bar .with-tip .topnav-tip:after {
      content: "";
      width: 0;
      height: 0;
      border-top: 0.5rem solid transparent;
      border-bottom: 0.5rem solid transparent;
      border-left: 0.5rem solid #efeff4;
      position: absolute;
      top: 50%;
      right: -0.5rem;
      transform: translate(0, -50%); }

@media screen and (max-width: 74.9375em) {
  .top-bar .btn-place-ad {
    line-height: 1.375rem; }
  .top-bar .top-bar-left button {
    padding: 0.5rem 0.3125rem; } }

@media screen and (max-width: 74.9375em) and (orientation: landscape) {
  .top-bar .top-menu-wrapper {
    padding: 1.25rem; }
  .top-bar .top-bar-left {
    padding: 0;
    width: 50%; }
    .top-bar .top-bar-left .gt-icon-menu {
      display: inline !important;
      padding: 0.3125rem 1.25rem 0 0; }
  .top-bar .top-bar-right {
    padding: 0;
    width: 50%; }
    .top-bar .top-bar-right .btn-place-ad {
      float: right;
      margin-right: 0.9375rem; }
  .top-bar .top-bar-title {
    display: none; }
  .top-bar .menu-top {
    display: none; } }

.sticky-container {
  background-color: white;
  z-index: 1500;
  height: 58px; }
  @media screen and (min-width: 48em) {
    .sticky-container {
      height: 131px; } }
  .sticky-container .advert-element {
    height: 1px;
    overflow: hidden; }

.btn-top-chat, .btn-dashboard-chat {
  background: url("../img/generic/chat-icon-outline.svg");
  background-size: 100% !important;
  background-repeat: no-repeat !important;
  height: 2.5rem;
  padding: 0.625rem 0 0 0.75rem;
  width: 2.5rem;
  float: right;
  height: 2.5rem;
  border-radius: 0;
  text-align: center;
  margin-left: 1.25rem;
  margin-right: 0.625rem;
  margin-bottom: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0px;
  line-height: 0.9375rem; }
  .btn-top-chat.unread-message, .unread-message.btn-dashboard-chat {
    background: url("../img/generic/chat-icon.svg");
    font-size: 0.6875rem;
    font-weight: 400; }
  @media screen and (min-width: 64em) {
    .btn-top-chat, .btn-dashboard-chat {
      display: none; } }

.btn-dashboard-chat {
  position: absolute;
  margin-left: 0.625rem;
  margin-top: -0.625rem; }

.dropdown {
  font-size: 0.875rem; }
  .dropdown a {
    color: white;
    text-transform: uppercase; }
    .dropdown a.up {
      color: #1b344a; }

.site-logo {
  width: 5.5625rem; }

.alpha {
  margin-left: 0; }

.beta {
  margin-right: 0; }

.overlay-bg {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none; }

.titles, .featured-carousel .slick-caption h4 {
  font-family: "Open Sans", sans-serif; }

.buttons-panel {
  float: left;
  text-align: center;
  width: 100%;
  margin-top: 50px; }
  .buttons-panel .load-more {
    border-radius: 3.125rem;
    text-transform: uppercase;
    display: inline-block;
    line-height: 1;
    font-size: 0.75rem;
    padding-top: 0.6875rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-top: 0.6rem;
    background-color: #d7d7d7; }
    @media screen and (min-width: 48em) {
      .buttons-panel .load-more {
        padding-top: 1rem;
        padding-left: 10%;
        padding-right: 10%;
        font-size: 1.375rem;
        font-weight: bold;
        margin-bottom: 5%; } }

.select2-container .ico-color {
  background-color: white;
  width: 15px;
  height: 15px;
  border: 1px solid grey;
  display: inline-block;
  border-radius: 3px;
  margin-right: 5px; }

.select2-container .ico-wrapper {
  display: flex;
  align-items: center; }

.section-icon-1 {
  width: 40%; }

.txt-gr-1 {
  font-size: 12px;
  color: #8e8e93; }

.txt-gr-2 {
  font-size: 12px;
  color: #8e8e93;
  font-weight: bold;
  padding-bottom: 5px; }

.ad-title-1 {
  color: #000000;
  font-size: 18px; }

.txt-pad-1 {
  padding-bottom: 5px; }

ul.p-details-1 li {
  list-style: none;
  text-align: left; }

ul.p-details-1 li span {
  font-weight: bold; }

/* the header title on the module */
.featured-carousel .header-title {
  position: absolute;
  padding: 0.3125rem 0.8125rem 0.1875rem;
  background-color: #575757;
  text-transform: uppercase;
  border-bottom: 0.125rem solid #1b344a;
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
  z-index: 1; }
  @media screen and (min-width: 48em) {
    .featured-carousel .header-title {
      font-size: 1.65rem;
      padding: 0.625rem 1.625rem 0.625rem; } }

/* select option look */
/* ==========  Text fields  ========== */
.md-select {
  padding: 10px 0; }

.md-textfield {
  position: relative;
  font-size: 16px;
  line-height: 1.35;
  display: inline-table;
  align-items: flex-start;
  margin: -10px 0 0 0;
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
  padding: 10px 0; }
  .md-textfield .is-invalid-input:not(:focus) {
    background-color: transparent; }
  .md-textfield textarea {
    resize: none; }
  .md-textfield .md-focus-hr {
    background-color: #000;
    bottom: 10px;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    width: 10px; }
  .md-textfield.is-focused .md-focus-hr {
    left: 0;
    visibility: visible;
    width: 100%; }

.md-textfield + .md-textfield {
  margin-top: 0; }

.md-textfield-input {
  border: none;
  border-bottom: 1px solid #CECED2;
  display: block;
  font-size: 16px;
  margin: 0;
  padding: 4px 0;
  width: 100%;
  background: transparent;
  text-align: left;
  color: #000;
  box-shadow: none;
  transition: box-shadow 0.5s,border-color 0.25s ease-in-out; }
  .md-textfield-input[required].is-invalid-input + .md-textfield-label:not(.is-invalid-label):before {
    position: relative;
    border: none; }
  .md-textfield-input[required] + .md-textfield-label:not(.is-invalid-label):before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    height: 1px;
    width: 25px;
    border-bottom: 1px solid #ff0000; }
  .md-textfield-input:focus {
    box-shadow: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #000;
    background: transparent; }
  .md-textfield-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important; }
  .md-textfield-input[type="number"] {
    -moz-appearance: textfield; }
  .md-textfield-input[type="number"]::-webkit-inner-spin-button, .md-textfield-input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .md-textfield-input.md-textfield-multiline {
    border: 1px solid #CECED2;
    padding: .5rem; }
    .md-textfield-input.md-textfield-multiline + .lbl-txtarea {
      padding-left: 0.625rem; }
  .md-textfield.is-focused .md-textfield-input {
    outline: none;
    border-bottom: 1px solid #000; }
  .md-textfield.is-invalid .md-textfield-input {
    border-color: #ff0000;
    box-shadow: none; }
  fieldset[disabled] .md-textfield .md-textfield-input,
  .md-textfield.is-disabled .md-textfield-input {
    background-color: transparent;
    border-bottom: 1px dotted #CECED2;
    color: #EFEFF4; }
  .md-textfield-icon .md-textfield-input {
    padding-left: 24px; }

.md-textfield .md-textfield-input:disabled {
  color: #7e7e7e;
  border-bottom-style: dashed;
  cursor: not-allowed; }

input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0; }

.md-textfield textarea.md-textfield-input {
  display: block; }

.input-icon {
  position: absolute;
  left: 0;
  font-size: 16px;
  top: 14px; }
  .input-icon:before {
    color: rgba(0, 0, 0, 0.45); }

.md-textfield-label {
  bottom: 0;
  color: rgba(0, 0, 0, 0.36);
  font-size: 16px;
  left: 0;
  right: 0;
  pointer-events: none;
  position: absolute;
  display: block;
  top: 15px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  visibility: hidden; }
  .md-floating-label .md-textfield-label {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
  .md-textfield-icon .md-textfield-label {
    padding-left: 24px; }
  fieldset[disabled] .mdl-textfield .md-textfield-label,
  .mdl-textfield.is-disabled.is-disabled .md-textfield-label {
    color: #EFEFF4; }
  .md-floating-label.is-focused .md-textfield-label,
  .md-floating-label.is-dirty .md-textfield-label {
    font-size: 12px;
    top: -0.625rem;
    visibility: visible; }
    .md-floating-label.is-focused .md-textfield-label.lbl-txtarea,
    .md-floating-label.is-dirty .md-textfield-label.lbl-txtarea {
      top: -0.625rem;
      padding-left: 0; }
  .mdl-textfield--floating-label.is-invalid .md-textfield-label {
    color: #ff0000;
    font-size: 12px; }

.md-textfield-error,
.md-textfield-info {
  font-size: 12px;
  margin: 0.3125rem 0 0.625rem; }

.md-textfield-info {
  display: inline-block; }

.md-textfield.is-dirty .md-textfield-label:before {
  display: none; }

.md-textfield-error {
  color: #ff0000;
  font-weight: 400; }

.md-textfield-info {
  color: #8E8E93;
  margin: -5px 0 0 0;
  display: block; }

.md-textfield-error.is-visible + .md-textfield-info {
  display: none; }

.md-textfield-multiline.is-invalid-input {
  border-bottom-color: #ff0000; }

.md-checkbox {
  position: relative;
  z-index: 1;
  vertical-align: middle;
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  min-height: 24px;
  margin: 0;
  padding: 0; }
  .md-checkbox.is-upgraded {
    padding-left: 26px; }
    .md-checkbox.is-upgraded.is-focused {
      outline: 1px dotted #ccc; }

.md-checkbox-input {
  line-height: 24px; }
  .md-checkbox.is-upgraded .md-checkbox-input {
    position: absolute;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    -ms-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none; }

.md-checkbox-outline {
  position: absolute;
  top: 3px;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid #c898db;
  border-radius: 50%;
  z-index: 2; }
  .md-checkbox.is-checked .md-checkbox-outline {
    border: 2px solid #7f3f98; }
  fieldset[disabled] .md-checkbox .md-checkbox-outline,
  .md-checkbox.is-disabled .md-checkbox-outline {
    border: 2px solid #c898db;
    cursor: auto; }

.md-checkbox-tick-outline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  background-size: 13px;
  background-repeat: no-repeat;
  transition-duration: 0.28s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: background; }
  .md-checkbox.is-checked .md-checkbox-tick-outline {
    background: #7f3f98 url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8cGF0aAogICAgIGQ9Ik0gMC4wNDAzODA1OSwwLjYyNjc3NjcgMC4xNDY0NDY2MSwwLjUyMDcxMDY4IDAuNDI5Mjg5MzIsMC44MDM1NTMzOSAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IE0gMC4yMTcxNTcyOSwwLjgwMzU1MzM5IDAuODUzNTUzMzksMC4xNjcxNTcyOSAwLjk1OTYxOTQxLDAuMjczMjIzMyAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IgogICAgIGlkPSJyZWN0Mzc4MCIKICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPgo8L3N2Zz4K"); }
  .md-checkbox-tick-outline .md-checkbox:focus {
    background: #7f3f98 url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8cGF0aAogICAgIGQ9Ik0gMC4wNDAzODA1OSwwLjYyNjc3NjcgMC4xNDY0NDY2MSwwLjUyMDcxMDY4IDAuNDI5Mjg5MzIsMC44MDM1NTMzOSAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IE0gMC4yMTcxNTcyOSwwLjgwMzU1MzM5IDAuODUzNTUzMzksMC4xNjcxNTcyOSAwLjk1OTYxOTQxLDAuMjczMjIzMyAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IgogICAgIGlkPSJyZWN0Mzc4MCIKICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPgo8L3N2Zz4K"); }
  fieldset[disabled] .md-checkbox.is-checked .md-checkbox-tick-outline,
  .md-checkbox.is-checked.is-disabled .md-checkbox-tick-outline {
    background: #7f3f98 url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8cGF0aAogICAgIGQ9Ik0gMC4wNDAzODA1OSwwLjYyNjc3NjcgMC4xNDY0NDY2MSwwLjUyMDcxMDY4IDAuNDI5Mjg5MzIsMC44MDM1NTMzOSAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IE0gMC4yMTcxNTcyOSwwLjgwMzU1MzM5IDAuODUzNTUzMzksMC4xNjcxNTcyOSAwLjk1OTYxOTQxLDAuMjczMjIzMyAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IgogICAgIGlkPSJyZWN0Mzc4MCIKICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPgo8L3N2Zz4K"); }

.md-checkbox-label {
  position: relative;
  cursor: pointer;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
  color: #8E8E93; }
  fieldset[disabled] .mdl-checkbox .md-checkbox-label,
  .md-checkbox.is-disabled .md-checkbox-label {
    color: #c898db;
    cursor: auto; }

.md-radio {
  position: relative;
  z-index: 1;
  vertical-align: middle;
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  min-height: 24px;
  margin: 0;
  padding: 0; }
  .md-radio.is-upgraded {
    padding-left: 26px; }
    .md-radio.is-upgraded.is-focused {
      outline: 1px dotted #ccc; }

.md-radio-input {
  line-height: 24px; }
  .md-radio.is-upgraded .md-radio-input {
    position: absolute;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    -ms-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none; }

.md-radio-outline {
  position: absolute;
  top: 3px;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid rgba(0, 37, 66, 0.54);
  border-radius: 50%;
  z-index: 2; }
  .md-radio.is-checked .md-radio-outline {
    border: 2px solid #002542; }
  fieldset[disabled] .md-radio .md-radio-outline,
  .md-radio.is-disabled .md-radio-outline {
    border: 2px solid rgba(0, 37, 66, 0.26);
    cursor: auto; }

.md-radio-tick-outline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  background-size: 13px;
  background-repeat: no-repeat;
  transition-duration: 0.28s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: background; }
  .md-radio.is-checked .md-radio-tick-outline {
    background: #002542;
    border-radius: 50%;
    border: 2px solid white; }
  fieldset[disabled] .md-radio.is-checked .md-radio-tick-outline,
  .md-radio.is-checked.is-disabled .md-radio-tick-outline {
    background: #002542;
    border-radius: 50%;
    border: 2px solid white; }

.md-radio-label {
  position: relative;
  cursor: pointer;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
  color: #8E8E93; }
  fieldset[disabled] .mdl-radio .md-radio-label,
  .md-radio.is-disabled .md-radio-label {
    color: rgba(0, 37, 66, 0.26);
    cursor: auto; }

@media screen and (min-width: 64em) {
  .user-wrapper {
    min-height: 35rem; } }

@media screen and (min-width: 64em) {
  .form-container {
    width: 66.5rem;
    margin: auto;
    border: 1px solid #CECED2;
    padding: 2rem 1rem 1rem;
    border-radius: 6px;
    margin-bottom: 2rem; }
    .form-container .form-wrapper {
      width: 35rem;
      margin: 0 auto; } }

.piano-form {
  overflow: hidden;
  min-height: 100px;
  position: relative; }
  .piano-form .loading {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; }
    .piano-form .loading img {
      top: 3.125rem;
      position: absolute;
      width: 40px; }

@media screen and (max-width: 63.9375em) {
  #main-footer {
    position: relative; } }

#main-footer .elem-inactive {
  position: absolute;
  width: 100%;
  height: 25.625rem;
  background: #f4f3f8;
  top: 0;
  left: 0;
  opacity: 0.7; }
  @media screen and (min-width: 48em) {
    #main-footer .elem-inactive {
      display: none; } }

.category-select {
  background: #f6f5f8; }
  @media screen and (min-width: 64em) {
    .category-select {
      height: 70vh; } }
  .category-select .row {
    background: none; }
  .category-select .form-container {
    padding: 1.25rem;
    border: 1px solid #CECED2;
    border-radius: 6px;
    margin: 0.9375rem; }
    @media screen and (min-width: 64em) {
      .category-select .form-container {
        margin: 0.9375rem auto; } }

.category-blocked {
  display: inline-flex;
  width: 100%;
  align-items: center;
  min-height: 80vh; }
  .category-blocked.block-small {
    display: inline-block; }
  .category-blocked.wizard-content {
    margin-top: 0; }
  @media screen and (max-width: 47.9375em) {
    .category-blocked {
      min-height: 60vh; } }
  .category-blocked .info-outr {
    margin: 0 auto 0;
    float: none;
    max-width: 35rem;
    position: relative; }
    .category-blocked .info-outr .overlay-close {
      position: absolute;
      top: 1.125rem;
      right: 2.25rem;
      font-size: 1.125rem; }
      .category-blocked .info-outr .overlay-close:hover {
        opacity: 0.6; }
  .category-blocked .info-sec {
    width: 100%;
    background: #fff;
    box-shadow: 0px 0px 138px 28px rgba(204, 204, 204, 0.44);
    padding: 1.25rem;
    border-radius: 6px; }
  .category-blocked .info-container {
    margin: 2.1875rem 0; }
    .category-blocked .info-container h1 {
      font-weight: 700;
      line-height: 2.1875rem; }
    .category-blocked .info-container p {
      line-height: 1.4;
      font-size: 1.0625rem;
      color: #000; }
    .category-blocked .info-container a {
      text-transform: none;
      margin-top: 0.9375rem; }
  .category-blocked .summary {
    margin-top: 2.5rem;
    padding-bottom: 6.25rem; }
    .category-blocked .summary.summary-small {
      margin-top: 25px;
      padding-bottom: 5px; }
      .category-blocked .summary.summary-small p:first-child {
        margin-bottom: 0; }
    .category-blocked .summary p {
      line-height: 1.4;
      font-size: 1.125rem;
      color: #000; }
      .category-blocked .summary p:first-child {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 1.5625rem; }
    @media screen and (min-width: 64em) {
      .category-blocked .summary p {
        line-height: 1.4;
        font-size: 1.25rem;
        color: #000; }
        .category-blocked .summary p:first-child {
          font-size: 1.5rem;
          line-height: 1.25;
          margin-bottom: 2.1875rem; } }
    .category-blocked .summary .button {
      font-size: 1.0625rem;
      margin-top: 1.875rem; }

.wizard-content {
  margin-top: 0;
  padding: 0.9375rem 1rem 0.9375rem; }
  @media screen and (max-width: 63.9375em) {
    .wizard-content {
      padding: 0.9375rem 0 0.9375rem; } }
  .wizard-content h2 a {
    position: absolute;
    border-bottom: 1px #60cdf6 dotted;
    font-weight: 400; }
    @media screen and (max-width: 63.9375em) {
      .wizard-content h2 a {
        font-size: 0.875rem;
        top: 0.6875rem;
        right: 0;
        bottom: auto; } }
    @media screen and (min-width: 64em) {
      .wizard-content h2 a {
        font-size: 1.125rem;
        right: 0;
        bottom: 8px; } }
  @media screen and (min-width: 48em) {
    .wizard-content#placead-step8 .form-container {
      padding-left: 3.5rem;
      padding-right: 3.5rem; }
      .wizard-content#placead-step8 .form-container .badge-wrap {
        padding: 1.875rem 0fix; } }
  .wizard-content .md-textfield-input:disabled {
    background-color: #fff; }
  .wizard-content .elem-inactive {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #f4f3f8;
    top: 5.375rem;
    left: 0;
    opacity: 0.7; }
    @media screen and (max-width: 63.9375em) {
      .wizard-content .elem-inactive {
        display: none; } }
  .wizard-content .elem-active {
    position: relative;
    z-index: 1000; }
    .wizard-content .elem-active .form-container {
      background: #fff; }
    .wizard-content .elem-active .row-gutter {
      background: transparent; }
  .wizard-content .upload-container .md-textfield-label {
    padding-left: 0; }
  .wizard-content .upload-container .upload-doc-url {
    background: #fff;
    padding-left: 0; }
  .wizard-content .upload-container .upload {
    overflow: hidden;
    border-radius: 0;
    border-color: #ccc;
    background-color: #fff;
    color: black;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 10px;
    margin: 0;
    font-weight: normal;
    cursor: pointer;
    position: relative;
    min-width: 20%; }
    .wizard-content .upload-container .upload input.fupload {
      position: absolute;
      top: 0;
      left: 0;
      margin: 0;
      padding: 0;
      height: 40px;
      width: 115px;
      z-index: 999;
      display: block;
      cursor: pointer;
      opacity: 0;
      filter: alpha(opacity=0); }
  .wizard-content .upload-container progress {
    display: none; }
  .wizard-content .job-post-type, .wizard-content .property-user,
  .wizard-content .classifieds-type {
    margin: 5rem 0; }
    .wizard-content .job-post-type .button, .wizard-content .property-user .button,
    .wizard-content .classifieds-type .button {
      text-transform: uppercase;
      padding: 0.625rem 2.1875rem;
      font-weight: 600; }
      @media screen and (min-width: 64em) {
        .wizard-content .job-post-type .button, .wizard-content .property-user .button,
        .wizard-content .classifieds-type .button {
          font-size: 1.0625rem; } }
    .wizard-content .job-post-type .top-space, .wizard-content .property-user .top-space,
    .wizard-content .classifieds-type .top-space {
      margin-top: 0.9375rem; }
    .wizard-content .job-post-type .progress-msg, .wizard-content .property-user .progress-msg,
    .wizard-content .classifieds-type .progress-msg {
      width: 80%;
      text-align: center;
      margin: -74px auto; }
  .wizard-content .property-user .button {
    padding: 1.25rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    background: none;
    border: 2px #ceced2 solid;
    color: #000;
    margin-bottom: 1.5625rem;
    text-transform: uppercase; }
    .wizard-content .property-user .button:hover {
      background: #60cdf6;
      color: white;
      border: 2px #60cdf6 solid; }
  @media screen and (min-width: 64em) {
    .wizard-content .property-user {
      max-width: 27.625rem;
      margin: 1.5625rem auto; } }
  .wizard-content .packages-block fieldset {
    border: none;
    padding: 0;
    width: 100%; }
    @media screen and (min-width: 64em) {
      .wizard-content .packages-block fieldset {
        text-align: center; } }
  .wizard-content .whatthreewords-wrapper .md-textfield-input {
    background: url("../img/generic/w3word-icon.png") no-repeat 0 center #fff;
    padding: 0 0 0 2.1875rem; }

/*.Property{
  .wizard .packages .multi-pack{
      background-color: transparent;
      position:relative;
      cursor:pointer;
    .badges-check-icon {
        background: $checkbox-color url($checkbox-tick-svg);
        position: absolute;
        top: -10px;
        left: -10px;
        width: rem-calc(38px);
        height: rem-calc(38px);
        background-size: 71% auto;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 100%;
        display: none;
      }
      &.selected{
        background-color: #eae2f7;
        .badges-check-icon{
          display:block;
        }
      }
  }
}*/
@media screen and (min-width: 64em) {
  .Autos .wizard h2.header-with-skip {
    width: 47.5rem;
    padding: 0 7.5rem; } }

.wizard {
  min-height: 60vh;
  /**
  * Jobs
  */ }
  @media screen and (min-width: 64em) {
    .wizard h2.header-with-skip {
      width: 47.5rem;
      padding: 0 7.5rem; } }
  .wizard .success-screen .loading {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center; }
  .wizard .success-screen .button.count-down {
    width: 70%;
    background: #effbff;
    color: #62cef5;
    font-size: 1.125rem;
    font-weight: 800; }
  .wizard .textbox-with-button .large-2 {
    width: 16.66667%; }
    .wizard .textbox-with-button .large-2 .button {
      width: 100%;
      border-radius: 0;
      min-width: 100%;
      border-radius: 0;
      padding: 0.75rem 0 0.6875rem;
      font-size: 0.875rem;
      font-weight: normal;
      text-transform: capitalize; }
      @media screen and (min-width: 64em) {
        .wizard .textbox-with-button .large-2 .button {
          font-size: 1rem;
          padding: 0.6875rem 0 0.625rem; } }
  .wizard .row {
    background: none; }
  .wizard .classifieds-continue {
    display: block; }
    .wizard .classifieds-continue .row-action {
      display: none; }
  .wizard .classifieds-approval-req {
    display: block; }
    .wizard .classifieds-approval-req .row-action {
      display: block; }
  .wizard .notify-callout {
    border-left: 26px solid #62ccf5;
    padding: 1.25rem 3.4375rem 1.25rem 2.1875rem;
    background: #e0f5fd;
    font-size: 0.875rem;
    width: 100%;
    margin: 1.875rem auto 1.875rem; }
    @media screen and (min-width: 64em) {
      .wizard .notify-callout {
        width: 47.5rem;
        margin: 1.875rem auto 0; }
        .wizard .notify-callout p {
          font-size: 1rem; } }
    .wizard .notify-callout button {
      background: #c7d6dd;
      padding: 0.4375rem;
      border-radius: 50%;
      top: 1rem; }
      .wizard .notify-callout button:before {
        color: #e0f5fd;
        font-weight: 800;
        font-size: 17px; }
  @media screen and (max-width: 63.9375em) {
    .wizard {
      background: #f6f5f8 !important; } }
  @media screen and (min-width: 48em) {
    .wizard {
      min-height: 80vh;
      font-size: 18px; } }
  @media screen and (max-width: 63.9375em) {
    .wizard .form-container {
      padding: 1.25rem;
      border: 1px solid #CECED2;
      border-radius: 6px; } }
  .wizard .skills .tag {
    background-color: #e0f5fd;
    color: #002542;
    position: relative;
    font-size: 0.875rem;
    padding: 0 1rem;
    display: inline-block;
    line-height: 1.875rem;
    margin: 0.375rem 0.375rem 0.5rem 0;
    border-radius: 3.125rem; }
    .wizard .skills .tag span {
      padding-right: 1rem;
      font-size: 0.8125rem; }
  .wizard .skills .gt-icon-close {
    position: relative;
    top: 0.1875rem;
    cursor: pointer; }
    .wizard .skills .gt-icon-close:before {
      color: #002542; }
  .wizard .form-outr-top h2,
  .wizard .form-outr-bottom h2 {
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
    line-height: 1.375rem; }
    .wizard .form-outr-top h2.package-title,
    .wizard .form-outr-bottom h2.package-title {
      text-transform: none;
      text-align: center;
      font-size: 20px;
      margin-bottom: 20px;
      color: #aaaaaa;
      font-weight: bold; }
  .wizard .form-outr-bottom {
    background: #60CDF6 !important; }
    .wizard .form-outr-bottom .wizard-btns {
      font-size: 15px;
      color: #ffffff;
      text-align: right; }
      .wizard .form-outr-bottom .wizard-btns a {
        color: #ffffff;
        font-weight: bold;
        text-decoration: underline; }
      .wizard .form-outr-bottom .wizard-btns span {
        font-size: 12px;
        padding: 0 0 10px 0;
        color: #ffffff;
        vertical-align: sub; }
        @media screen and (min-width: 64em) {
          .wizard .form-outr-bottom .wizard-btns span {
            font-size: 15px;
            padding: 0 20px 0 0; } }
      .wizard .form-outr-bottom .wizard-btns .button {
        background-color: #FFFFFF;
        color: #00AEEF;
        font-size: 13px;
        margin-top: 10px;
        margin-bottom: 0; }
        @media screen and (min-width: 64em) {
          .wizard .form-outr-bottom .wizard-btns .button {
            margin-right: 30px;
            margin-top: 0px; } }
  .wizard .form-container {
    margin: 0 0 1.875rem; }
    @media screen and (min-width: 64em) {
      .wizard .form-container {
        padding: 1.25rem 7.5rem;
        margin: 1.875rem auto; } }
  .wizard .autocomplete-field.is-invalid-autocomplete .algolia-autocomplete:before {
    border-color: #fff; }
  .wizard .required-field .algolia-autocomplete:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0.0625rem;
    width: 1.5625rem;
    border-bottom: 1px solid #ff0000;
    z-index: 100; }
  .wizard .required-field.is-dirty .algolia-autocomplete:before, .wizard .required-field.skill-is-dirty .algolia-autocomplete:before {
    display: none; }
  .wizard a.gt-tool-tip {
    display: inline-block;
    position: relative;
    font-size: 0.8125rem; }
    .wizard a.gt-tool-tip:before {
      position: absolute;
      top: 0.1875rem;
      left: -1.25rem;
      color: #60cdf6; }
  .wizard .no-margin {
    margin: 0; }
  .wizard .place-ad-location-icon:before {
    position: absolute;
    right: 0;
    top: 1.25rem;
    font-size: 1.25rem;
    color: #919191; }
  @media screen and (min-width: 48em) {
    .wizard .form-container .md-textfield .md-textfield-input:not(.md-textfield-multiline) {
      height: 2.4375rem; } }
  .wizard .form-container .md-textfield .md-textfield-input.md-textfield-multiline {
    height: 7.125rem; }
  .wizard.jobs-wizard .form-container .md-textfield .md-textfield-input.md-textfield-multiline {
    height: 12.9375rem; }
  .wizard h2 {
    font-weight: 600;
    color: #000;
    font-size: 27px;
    position: relative; }
    .wizard h2.ad-process {
      font-size: 25px; }
    @media screen and (min-width: 64em) {
      .wizard h2 {
        font-size: 36px;
        margin: 0 auto; }
        .wizard h2.ad-process {
          font-size: 32px; } }
  .wizard .small-text {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #888888; }
    @media screen and (min-width: 64em) {
      .wizard .small-text {
        font-size: 1rem; } }
    .wizard .small-text p {
      font-size: 0.8125rem;
      font-weight: 400; }
  .wizard .lbl-count {
    position: absolute;
    right: 0.3125rem;
    top: 1.25rem;
    font-size: 12px;
    color: #8E8E93; }
  .wizard .button {
    text-transform: uppercase;
    padding: 0.625rem 2.1875rem;
    font-weight: 600; }
    @media screen and (min-width: 64em) {
      .wizard .button {
        font-size: 1.0625rem; } }
  .wizard .nav-btn-container {
    margin-top: 0.75rem; }
  .wizard .go-back-step {
    color: white;
    background: #ceced2;
    padding: 2px 6px 0px 6px;
    min-width: 4rem;
    float: left; }
    .wizard .go-back-step:before {
      line-height: 2.0625rem;
      font-size: 1rem; }
    @media screen and (min-width: 64em) {
      .wizard .go-back-step {
        margin-left: 20px; } }
  .wizard .packages .card {
    margin-bottom: 1rem;
    padding: 0.75rem 0 0 0;
    border: 1px solid #CECED2;
    border-radius: 8px; }
    @media screen and (min-width: 64em) {
      .wizard .packages .card {
        padding: 1.4rem 0 0 0; } }
    .wizard .packages .card.badges-list {
      border: 0;
      padding: 0;
      margin-bottom: 0; }
  .wizard .packages .product-tab {
    text-align: center;
    margin-bottom: 15px;
    float: left;
    width: 100%;
    display: flex; }
    .wizard .packages .product-tab ul {
      background: #ECEAF0;
      border: 1px solid #ECEAF0;
      border-radius: 8px;
      margin: 0 auto;
      display: flex; }
      .wizard .packages .product-tab ul li {
        display: inline-block;
        border-right: 1px solid #D0CCD9;
        font-size: 13px;
        text-align: center;
        text-transform: uppercase; }
        .wizard .packages .product-tab ul li.active {
          background: #fff; }
        .wizard .packages .product-tab ul li a {
          color: #000;
          display: inline-block;
          padding: 14px 6px; }
        .wizard .packages .product-tab ul li:last-child {
          border-right: 0px; }
  .wizard .packages .pdt-summery {
    border: 1px solid #ceced2;
    width: 100%;
    float: left;
    display: none;
    vertical-align: top;
    font-size: 0.875rem; }
    .wizard .packages .pdt-summery.selected {
      background-color: #eae2f7;
      border: 1px solid #453269; }
    @media screen and (min-width: 64em) {
      .wizard .packages .pdt-summery {
        font-size: 1rem;
        display: inline-block;
        width: 30%;
        margin: 0 10px;
        float: none;
        text-align: left; } }
    .wizard .packages .pdt-summery .package-listing h2 {
      color: #7F3F98;
      font-size: 0.875rem;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 0.3125rem;
      /*background: #cabbe1;*/
      padding: 0.3125rem 0; }
      @media screen and (min-width: 64em) {
        .wizard .packages .pdt-summery .package-listing h2 {
          font-size: 0.875rem; } }
    .wizard .packages .pdt-summery .package-listing h2.selected-pack {
      background: #f2eaf5;
      color: #7f5296; }
    .wizard .packages .pdt-summery .package-listing p {
      margin-bottom: 0; }
    .wizard .packages .pdt-summery .package-listing .pack-name {
      font-weight: 700;
      font-size: 1.25rem; }
    .wizard .packages .pdt-summery .package-listing .pack-date {
      color: #7d618c;
      font-size: 0.875rem; }
    .wizard .packages .pdt-summery .package-listing .pack-desc {
      border-top: 1px 7d618c solid;
      padding: 0.625rem 0;
      margin-top: 0.625rem; }
      .wizard .packages .pdt-summery .package-listing .pack-desc p {
        font-size: 0.875rem; }
        .wizard .packages .pdt-summery .package-listing .pack-desc p span {
          font-weight: 700; }
    .wizard .packages .pdt-summery .row {
      margin: 0; }
      .wizard .packages .pdt-summery .row .row {
        margin: 0; }
    .wizard .packages .pdt-summery .small-text-badges {
      font-size: 13px;
      background: #F2EBF4;
      color: #7F3F98;
      text-align: center;
      padding: 10px;
      font-weight: normal;
      width: 100%;
      float: left;
      margin-top: 10px; }
      .wizard .packages .pdt-summery .small-text-badges:before {
        padding: 0;
        margin: 0;
        right: 40px;
        font-size: 20px;
        color: #7F3F98;
        float: right;
        font-weight: 900 !important; }
  .wizard .packages .exhausted {
    margin-bottom: 20px;
    display: block;
    margin: 0 auto;
    padding: 0 5px;
    border: 0; }
    @media screen and (min-width: 64em) {
      .wizard .packages .exhausted {
        width: 94%; } }
    .wizard .packages .exhausted .package-listing h2 {
      font-size: 0.875rem;
      font-weight: normal;
      margin-bottom: 0;
      /*background: #cabbe1;*/
      padding: 0.3125rem 0;
      text-transform: uppercase; }
      @media screen and (min-width: 64em) {
        .wizard .packages .exhausted .package-listing h2 {
          font-size: 0.875rem; } }
    .wizard .packages .exhausted .package-listing h2.selected-pack {
      background: #f2eaf5;
      color: #7f5296; }
    .wizard .packages .exhausted .package-listing p {
      margin-bottom: 0; }
    .wizard .packages .exhausted .package-listing .pack-name {
      color: #453269;
      font-weight: 700;
      font-size: 1.25rem; }
    .wizard .packages .exhausted .package-listing .pack-info {
      font-size: 0.875rem; }
    .wizard .packages .exhausted .package-listing .pack-date {
      /*color: #7d618c;*/
      font-size: 0.875rem; }
    .wizard .packages .exhausted .package-listing .pack-desc {
      border-top: 1px 7d618c solid;
      padding: 0.625rem 0;
      margin-top: 0.625rem; }
      .wizard .packages .exhausted .package-listing .pack-desc p {
        font-size: 0.875rem; }
        .wizard .packages .exhausted .package-listing .pack-desc p span {
          font-weight: 700; }
      .wizard .packages .exhausted .package-listing .pack-desc strong {
        color: #7F3F98; }
  .wizard .packages h6 {
    padding-left: 20px; }
  .wizard .packages .tbl-row {
    width: 100%; }
  .wizard .packages .tbl-data {
    vertical-align: middle; }
    @media screen and (min-width: 64em) {
      .wizard .packages .tbl-data {
        vertical-align: top; } }
  .wizard .packages .col-1 {
    width: 18%; }
  .wizard .packages .col-2 {
    width: 62%; }
  .wizard .packages .col-3 {
    width: 20%; }
  .wizard .packages .col-full {
    width: 100%; }
  .wizard .packages .col-2-1 {
    width: 60%; }
  .wizard .packages .col-2-2 {
    width: 40%; }
  .wizard .packages .col-refresh-2 {
    width: 18%; }
  .wizard .packages .col-refresh-1 {
    width: 82%; }
  .wizard .packages .multi-select .col-1 {
    width: 6%;
    vertical-align: top; }
  .wizard .packages .md-radio-outline {
    width: 1.75rem;
    height: 1.75rem;
    display: none; }
  .wizard .packages .packing-heading p {
    font-size: 0.8125rem;
    margin: 0; }
    @media screen and (min-width: 64em) {
      .wizard .packages .packing-heading p {
        font-size: 0.875rem; } }
  .wizard .packages .packing-heading .title {
    font-size: 1rem;
    line-height: 1rem;
    color: #453269;
    font-weight: bold;
    text-align: center; }
    @media screen and (min-width: 64em) {
      .wizard .packages .packing-heading .title {
        font-size: 0.9375rem;
        line-height: 1.25rem; } }
  .wizard .packages .packing-heading .expiry-date {
    padding-bottom: 0.625rem; }
    .wizard .packages .packing-heading .expiry-date span {
      font-weight: 700; }
  @media screen and (max-width: 63.9375em) {
    .wizard .packages .pack-price-sec {
      vertical-align: top; }
      .wizard .packages .pack-price-sec .content {
        margin-top: 0.625rem; } }
  .wizard .packages .pack-price-sec .amount {
    text-transform: uppercase;
    text-align: right;
    font-weight: 700;
    color: #453269;
    line-height: 1rem;
    font-size: 1rem; }
    @media screen and (min-width: 64em) {
      .wizard .packages .pack-price-sec .amount {
        font-size: 1.5625rem; } }
    .wizard .packages .pack-price-sec .amount .currency {
      display: block;
      font-size: 0.875rem;
      font-weight: 400; }
      @media screen and (min-width: 64em) {
        .wizard .packages .pack-price-sec .amount .currency {
          font-size: 1.5625rem;
          display: inline-block; } }
  .wizard .packages .package-desc {
    font-size: 0.8125rem;
    min-height: 4.375rem;
    padding-top: 0.625rem; }
  .wizard .packages .package-details {
    margin-top: 1.25rem; }
    .wizard .packages .package-details .row {
      padding: 0.625rem 0;
      border-top: 1px solid #ECEAF0;
      font-size: 13px;
      color: #555555; }
      .wizard .packages .package-details .row .t-name {
        font-weight: normal;
        padding: 0; }
      .wizard .packages .package-details .row .t-value {
        font-weight: bold;
        padding: 0;
        text-align: right; }
      .wizard .packages .package-details .row .t-name-feature {
        font-size: 12px;
        color: #7F3F98;
        padding: 0; }
        .wizard .packages .package-details .row .t-name-feature span {
          font-weight: bold;
          color: #3fa5d7; }
  .wizard .packages .popular1 {
    background: url(../img/generic/popular.png);
    background-repeat: no-repeat;
    background-position-x: right; }
  .wizard .packages .badge-featured {
    border-bottom: 1px solid #ECEAF0; }
    .wizard .packages .badge-featured .t-name {
      font-size: 13px;
      color: #00aeef;
      text-align: left;
      font-weight: bold;
      padding: 15px 0 15px 15px;
      width: 55%; }
    .wizard .packages .badge-featured .t-value {
      font-size: 13px;
      color: #7F3F98;
      text-align: right;
      font-weight: bold;
      padding: 15px;
      width: 45%; }
    .wizard .packages .badge-featured .t-name-2 {
      font-size: 13px;
      background: #F2EBF4;
      text-align: left;
      margin-left: 15px;
      padding: 10px; }
    .wizard .packages .badge-featured .t-value-2 {
      width: 28%;
      padding-right: 0; }
    .wizard .packages .badge-featured .featured-text {
      margin-top: 15px; }
      .wizard .packages .badge-featured .featured-text ul li {
        list-style: none;
        font-weight: normal;
        font-size: 13px;
        background: url(../img/generic/featured.png);
        background-repeat: no-repeat;
        background-position: left;
        padding-left: 20px; }
    .wizard .packages .badge-featured .for-featured {
      font-size: 12px;
      color: #7F3F98; }
      .wizard .packages .badge-featured .for-featured div {
        padding: 15px 0; }
      .wizard .packages .badge-featured .for-featured span {
        font-weight: bold;
        color: #3fa5d7; }
  .wizard .packages .round-border {
    border: 2px solid #A298B4;
    border-radius: 13px; }
  .wizard .packages .cv-downloads {
    border-bottom: 1px solid #ECEAF0;
    padding-bottom: 10px; }
    .wizard .packages .cv-downloads .t-name {
      padding: 15px 0 15px 15px;
      font-weight: bold;
      font-size: 13px; }
      .wizard .packages .cv-downloads .t-name span {
        font-size: 13px;
        font-weight: normal;
        color: #333333;
        display: block; }
    .wizard .packages .cv-downloads .t-value {
      font-size: 13px;
      color: #7F3F98;
      text-align: right;
      font-weight: bold;
      padding-left: 0;
      padding-top: 15px; }
    .wizard .packages .cv-downloads .item-download {
      padding: 5px 15px;
      float: left;
      width: 100%;
      cursor: pointer; }
      .wizard .packages .cv-downloads .item-download .name {
        margin-top: 8px; }
        .wizard .packages .cv-downloads .item-download .name h4 {
          font-weight: normal;
          float: left;
          text-align: left;
          color: #555555;
          font-size: 0.8125rem;
          line-height: 1.125rem; }
      .wizard .packages .cv-downloads .item-download .item-icon {
        width: 1.25rem;
        height: 1.25rem;
        background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8cGF0aAogICAgIGQ9Ik0gMC4wNDAzODA1OSwwLjYyNjc3NjcgMC4xNDY0NDY2MSwwLjUyMDcxMDY4IDAuNDI5Mjg5MzIsMC44MDM1NTMzOSAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IE0gMC4yMTcxNTcyOSwwLjgwMzU1MzM5IDAuODUzNTUzMzksMC4xNjcxNTcyOSAwLjk1OTYxOTQxLDAuMjczMjIzMyAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IgogICAgIGlkPSJyZWN0Mzc4MCIKICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPgo8L3N2Zz4K");
        background-color: transparent;
        background-size: 71% auto;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 100%;
        border: 1px solid #453269;
        margin: 0 0.625rem 0 0;
        float: right; }
        @media screen and (min-width: 64em) {
          .wizard .packages .cv-downloads .item-download .item-icon {
            width: 1.5625rem;
            height: 1.5625rem;
            margin: 0.3125rem 0 0;
            display: block; } }
      .wizard .packages .cv-downloads .item-download.selected .item-icon {
        background-color: #7f3f98; }
    .wizard .packages .cv-downloads .compare {
      font-size: 11px;
      padding: 15px;
      text-decoration-line: underline; }
      .wizard .packages .cv-downloads .compare a {
        color: #888888; }
  .wizard .packages .badges-details {
    padding: 0px;
    margin: 0px 0 50px 0;
    display: none; }
    .wizard .packages .badges-details .badge-message {
      padding-top: 15px; }
      .wizard .packages .badges-details .badge-message .small-text-1 {
        padding: 5px 15px;
        font-size: 13px; }
      .wizard .packages .badges-details .badge-message .t-name {
        font-size: 13px;
        background: #F2EBF4;
        color: #7F3F98;
        margin-left: 15px;
        padding: 10px 0 10px 10px; }
        .wizard .packages .badges-details .badge-message .t-name a {
          font-weight: bold; }
      .wizard .packages .badges-details .badge-message .t-value {
        font-size: 13px;
        width: 40%;
        text-align: right;
        padding: 10px 0 0 5px; }
        .wizard .packages .badges-details .badge-message .t-value span {
          color: #7F3F98;
          font-weight: bold; }
  .wizard .packages .sub-tot-amt .row {
    padding: 0.625rem 0;
    border-top: 1px solid #ECEAF0;
    font-size: 13px;
    color: #555555; }
    .wizard .packages .sub-tot-amt .row .t-name {
      font-weight: normal;
      padding: 0; }
    .wizard .packages .sub-tot-amt .row .t-value {
      font-weight: bold;
      padding: 0;
      text-align: right; }
    .wizard .packages .sub-tot-amt .row .t-value-amt {
      font-weight: bold;
      padding: 0;
      text-align: right;
      color: #7F3F98; }
    .wizard .packages .sub-tot-amt .row .t-name-feature {
      font-size: 12px;
      color: #7F3F98;
      padding: 0; }
      .wizard .packages .sub-tot-amt .row .t-name-feature span {
        font-weight: bold;
        color: #3fa5d7; }
  .wizard .packages .tot-amt {
    background: #9F6FB2;
    color: #ffffff;
    border-radius: 0 0 8px 8px;
    padding: 20px;
    text-align: center; }
    .wizard .packages .tot-amt .radio-option {
      color: #7F3F98;
      text-align: center;
      background: #fff;
      border-radius: 10px;
      padding: 10px; }
      .wizard .packages .tot-amt .radio-option.current-p {
        background: #BF9FCB; }
        .wizard .packages .tot-amt .radio-option.current-p .md-radio-label {
          background: url(../img/generic/group.png);
          background-repeat: no-repeat;
          background-position: center;
          display: block;
          height: 24px; }
    .wizard .packages .tot-amt .md-radio-label {
      cursor: pointer;
      font-size: 13px;
      margin: 0;
      color: #7F3F98;
      font-weight: bold;
      text-transform: uppercase; }
    .wizard .packages .tot-amt .is-upgraded {
      padding: 0; }
    .wizard .packages .tot-amt .amount {
      font-size: 30px;
      font-weight: 800; }
    .wizard .packages .tot-amt .title {
      font-size: 13px;
      color: #ffffff;
      font-weight: normal;
      padding: 0;
      outline: none; }
  .wizard .packages .special-plus {
    font-size: 0.8125rem;
    padding: 0.3125rem 0 0 0;
    font-weight: 600; }
    @media screen and (min-width: 64em) {
      .wizard .packages .special-plus {
        font-size: 0.875rem; } }
    @media screen and (max-width: 74.9375em) {
      .wizard .packages .special-plus {
        margin-top: 0.3125rem;
        padding: 0; } }
    .wizard .packages .special-plus span {
      background: #453269;
      padding: 0.125rem 0.5rem;
      display: inline-block;
      color: #ffffff;
      border-radius: 0.25rem;
      text-transform: uppercase; }
  .wizard .packages #total-amount:before {
    display: none; }
  .wizard .packages .title {
    font-weight: 700;
    font-size: 1rem;
    color: black;
    padding-bottom: 5px; }
    @media screen and (min-width: 64em) {
      .wizard .packages .title {
        font-size: 1.2rem; } }
  .wizard .packages .refresh-block .desc {
    margin-top: 1rem; }
  .wizard .packages .total-block {
    margin-bottom: 1rem; }
    .wizard .packages .total-block .title, .wizard .packages .total-block .amount {
      font-weight: 300;
      color: #484848; }
    .wizard .packages .total-block hr {
      margin: 0.625rem auto;
      border-color: #ceced2; }
    .wizard .packages .total-block .sub-total-sec {
      border-radius: 0.25rem 0.25rem 0 0;
      background-color: #f6f5f8;
      padding: 0.625rem 0.625rem 0 0.625rem; }
      .wizard .packages .total-block .sub-total-sec .title, .wizard .packages .total-block .sub-total-sec .amount {
        font-size: 0.9375rem; }
        @media screen and (min-width: 64em) {
          .wizard .packages .total-block .sub-total-sec .title, .wizard .packages .total-block .sub-total-sec .amount {
            font-size: 1.5625rem; } }
    .wizard .packages .total-block .vat-percent-sec {
      background-color: #f6f5f8;
      padding: 0 0.625rem 0.625rem 0.625rem; }
      .wizard .packages .total-block .vat-percent-sec .title, .wizard .packages .total-block .vat-percent-sec .amount {
        font-size: 0.75rem; }
        @media screen and (min-width: 64em) {
          .wizard .packages .total-block .vat-percent-sec .title, .wizard .packages .total-block .vat-percent-sec .amount {
            font-size: 0.9375rem; } }
    .wizard .packages .total-block .grand-total-sec {
      border-radius: 0 0 0.25rem 0.25rem;
      padding: 0.625rem;
      background-color: #453269; }
      .wizard .packages .total-block .grand-total-sec .title, .wizard .packages .total-block .grand-total-sec .amount {
        font-size: 1.125rem;
        color: white; }
        @media screen and (min-width: 64em) {
          .wizard .packages .total-block .grand-total-sec .title, .wizard .packages .total-block .grand-total-sec .amount {
            font-size: 1.875rem; } }
  .wizard .badge-header {
    margin-left: -1rem;
    margin-right: -1rem;
    border-bottom: 1px solid #CECED2; }
    .wizard .badge-header .badge-desc {
      font-size: 0.875rem; }
    .wizard .badge-header .content {
      padding: 0 1rem 1rem; }
    .wizard .badge-header .title {
      line-height: 1.8rem; }
      @media screen and (min-width: 64em) {
        .wizard .badge-header .title {
          line-height: 2.4rem; } }
  .wizard .section-icon {
    width: 3.125rem;
    height: 3.125rem;
    margin-bottom: 0.625rem; }
    @media screen and (max-width: 63.9375em) {
      .wizard .section-icon {
        width: 2.5rem;
        height: 2.5rem; } }
  .wizard .help-text {
    margin-bottom: 1rem;
    color: #909090;
    margin-top: 0.3125rem; }
  .wizard textarea + .form-error {
    margin-top: 0.3125rem; }
  .wizard .auto-features a.feature-btn {
    background: white;
    border: 1px #ceced2 solid;
    border-radius: 0.1875rem;
    padding: 0.875rem 1.25rem;
    display: block;
    margin-bottom: 0.9375rem;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color .5s ease-out !important;
    transition: color .5s ease-out; }
    .wizard .auto-features a.feature-btn::before {
      font-size: 30px;
      float: right;
      color: #000;
      transition: color .5s ease-out; }
    .wizard .auto-features a.feature-btn:hover {
      color: #000;
      background: #e1f5fe;
      transition: background-color .5s ease-out;
      transition: color .5s ease-out; }
      .wizard .auto-features a.feature-btn:hover::before {
        transition: color .5s ease-out; }
  .wizard .auto-features .feature-slide-content {
    padding: 0.3125rem 1.25rem 1.25rem; }
    .wizard .auto-features .feature-slide-content .list-item {
      float: left; }
    .wizard .auto-features .feature-slide-content span.checkall-sec {
      display: inline-block;
      padding-bottom: 0.9375rem; }
      .wizard .auto-features .feature-slide-content span.checkall-sec .md-checkbox-label {
        color: #000;
        font-weight: 600; }
  .wizard .clicked a.feature-btn {
    color: #000;
    background: #e1f5fe;
    transition: background-color .5s ease-out;
    transition: color .5s ease-out; }
    .wizard .clicked a.feature-btn::before {
      color: #000;
      transition: color .5s ease-out; }
  .wizard .amenities h4 {
    font-size: 1rem;
    margin-top: 1rem; }
    @media screen and (min-width: 64em) {
      .wizard .amenities h4 {
        margin-top: 0; } }
  .wizard .amenities .list-item {
    margin-bottom: 0.5rem; }
  .wizard .amenities .show-more {
    text-align: center; }
    @media screen and (min-width: 64em) {
      .wizard .amenities .show-more {
        text-align: left; } }
  .wizard .amenities .btn-show-more {
    text-align: center;
    margin-top: 0.3125rem;
    display: inline-block;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #efeef4;
    padding: 0; }
    @media screen and (min-width: 64em) {
      .wizard .amenities .btn-show-more {
        width: 3rem;
        height: 3rem; } }
    .wizard .amenities .btn-show-more:hover {
      background-color: #eae7f9; }
    .wizard .amenities .btn-show-more:before {
      color: white;
      font-size: 1.75rem;
      line-height: 2.5rem; }
      @media screen and (min-width: 64em) {
        .wizard .amenities .btn-show-more:before {
          font-size: 2rem;
          line-height: 3rem; } }
  .wizard .block-verify-number .wizard-input {
    margin-bottom: 0;
    font-weight: 600;
    text-align: center; }
    @media screen and (min-width: 64em) {
      .wizard .block-verify-number .wizard-input {
        height: 3rem; } }
  @media screen and (min-width: 64em) {
    .wizard .block-verify-number .button {
      padding-left: 4rem;
      padding-right: 4rem; } }
  .wizard .block-verify-number .is-invalid-input + .md-textfield-info {
    display: none; }
  .wizard .block-verify-number .form-error {
    margin-top: 2px; }
  .wizard .all-fields {
    font-size: 0.75rem; }
    @media screen and (min-width: 64em) {
      .wizard .all-fields {
        padding-bottom: 1.875rem; } }
  .wizard .wizard-input {
    border-color: #CECED2;
    border-radius: 3px;
    background-color: white; }
    @media screen and (min-width: 64em) {
      .wizard .wizard-input {
        font-size: 1.1rem; } }
  .wizard .form-error {
    margin: 3px 0 0 0; }
  .wizard .desc-upload {
    margin: 10px 0 50px;
    color: #919191; }
  .wizard .text-upload-message {
    font-size: 11px;
    padding-top: 10px; }
  .wizard .filer-upload-btn {
    width: 100%;
    text-align: center;
    margin: 0.9375rem 0;
    position: relative; }
    .wizard .filer-upload-btn a {
      display: inline-block;
      color: #000;
      border-radius: 3px;
      padding: 0.625rem 1.25rem;
      text-transform: uppercase;
      font-weight: 600;
      background: #f0eff5;
      width: 100%;
      height: 9.375rem;
      position: relative; }
      @media screen and (min-width: 64em) {
        .wizard .filer-upload-btn a {
          height: 17.8125rem; } }
      .wizard .filer-upload-btn a .btn-wrap {
        position: absolute;
        top: 50%;
        margin-top: -20px; }
      .wizard .filer-upload-btn a span.image-plus-icon {
        font-weight: 400;
        font-size: 5rem;
        width: 4rem;
        height: 4rem;
        line-height: 4rem;
        top: 15%;
        background: #60cdf6;
        color: white;
        position: absolute;
        border-radius: 50%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%); }
        @media screen and (min-width: 64em) {
          .wizard .filer-upload-btn a span.image-plus-icon {
            width: 6.25rem;
            height: 6.25rem;
            line-height: 6.25rem;
            top: 20%; } }
        .wizard .filer-upload-btn a span.image-plus-icon::before {
          position: absolute;
          left: 50%;
          top: 50%;
          color: white;
          transform: translate(-50%, -50%); }
      .wizard .filer-upload-btn a span.image-count {
        font-weight: 600;
        position: absolute;
        top: 75%;
        text-align: center;
        color: #60cdf6;
        font-size: 1.1875rem;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        white-space: nowrap; }
        @media screen and (max-width: 63.9375em) {
          .wizard .filer-upload-btn a span.image-count {
            font-size: 0.9375rem;
            top: 70%; } }
      .wizard .filer-upload-btn a span.plus-icon {
        font-weight: 900;
        font-size: 1.25rem;
        padding-right: 0.375rem; }
  .wizard .hasImg .filer-upload-btn a {
    height: 6.5625rem; }
    .wizard .hasImg .filer-upload-btn a span.image-plus-icon {
      font-size: 2.5rem;
      width: 3.125rem;
      height: 3.125rem;
      line-height: 3.125rem;
      top: 50%;
      left: 20%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%); }
      @media screen and (max-width: 63.9375em) {
        .wizard .hasImg .filer-upload-btn a span.image-plus-icon {
          left: 5%;
          width: 2.5rem;
          height: 2.5rem; } }
    .wizard .hasImg .filer-upload-btn a span.image-count {
      top: 50%;
      font-size: 1.1875rem;
      left: 35%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%); }
      @media screen and (max-width: 63.9375em) {
        .wizard .hasImg .filer-upload-btn a span.image-count {
          left: 22%;
          font-size: 0.9375rem; } }
  .wizard .maxImages .filer-upload-btn {
    display: none; }
  .wizard select:focus {
    outline: none; }

.pg-message {
  background: #ECEAF0;
  font-size: 13px;
  color: #453269;
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid #aaa;
  opacity: 0.9; }
  .pg-message .row {
    background: #ECEAF0;
    display: none;
    text-align: center; }
    .pg-message .row span {
      display: block;
      padding: 0 0 10px 0; }
      @media screen and (min-width: 64em) {
        .pg-message .row span {
          display: inline;
          padding: 0 10px 0 0; } }
  .pg-message .pg-txt {
    padding-bottom: 10px; }
    @media screen and (min-width: 64em) {
      .pg-message .pg-txt {
        text-align: right;
        padding-bottom: 0;
        padding-top: 8px; } }

.support-details {
  background: #FFFFFF;
  padding: 10px;
  font-size: 15px;
  font-weight: 800;
  color: #A298B4;
  opacity: 0.9; }
  .support-details .plan-txt {
    font-size: 24px;
    color: #aaaaaa;
    padding: 10px; }
  .support-details div {
    padding: 10px; }
  .support-details span {
    font-size: 18px;
    font-weight: normal;
    color: #aaaaaa; }
  @media screen and (min-width: 64em) {
    .support-details .gt-icon-email-outline:before {
      font-size: 25px; }
    .support-details .gt-icon-phone:before {
      font-size: 25px; }
    .support-details .plan-txt2 {
      text-align: center; } }
  @media screen and (min-width: 64em) {
    .support-details .row {
      max-width: 51.75rem; } }

.Classifieds .product-list {
  list-style: none;
  margin: 2.875rem 0 0 0; }
  .Classifieds .product-list .button {
    width: 75%;
    line-height: 2rem;
    background: white;
    border: 2px solid #CECED2;
    color: #000; }
    @media screen and (max-width: 63.9375em) {
      .Classifieds .product-list .button {
        line-height: 1.2; } }
    .Classifieds .product-list .button:hover {
      background: #60cdf6;
      color: #fff;
      border: 2px #60cdf6 solid; }

/* jfiler file upload custom css */
.gt-auto-images {
  width: 100%; }
  .gt-auto-images .jFiler-items {
    background: white; }
    .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item {
      float: left;
      width: 49%;
      margin-bottom: 0.5rem; }
      @media screen and (min-width: 64em) {
        .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item {
          width: 49.5%; } }
      @media screen and (max-width: 63.9375em) {
        .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item {
          width: 100%; } }
      .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container {
        border: none;
        margin: 0;
        padding: 0;
        box-shadow: none; }
        .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-item-inner .jFiler-item-info {
          display: none; }
        .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb {
          width: 100%;
          height: 8.125rem;
          border: none;
          background: #f0eff5;
          position: relative;
          /*opacity:0.3;*/ }
          @media screen and (max-width: 63.9375em) {
            .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb {
              height: 100%; } }
          .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb .jFiler-item-thumb-image {
            max-height: 18.1875rem; }
          .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb img {
            max-width: 100%; }
          .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb .jFiler-progressSec {
            width: 100%;
            position: absolute;
            bottom: 0px; }
            .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb .jFiler-progressSec .jFiler-item-others {
              display: none; }
          .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb .jFiler-item-trash-action::before {
            color: white;
            font-size: 1.875rem;
            position: absolute;
            top: 0.3125rem;
            right: 0.3125rem;
            text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3); }
            @media screen and (min-width: 64em) {
              .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb .jFiler-item-trash-action::before {
                height: 2.25rem; } }
          .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb label {
            display: block; }
            .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb label input[type="radio"] {
              display: none; }
            .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb label .main-photo {
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%);
              background: rgba(40, 172, 226, 0.8);
              color: white;
              width: 6rem;
              height: 6rem;
              border-radius: 50%;
              font-size: 1.125rem;
              font-weight: 700;
              text-transform: uppercase;
              line-height: 1.125rem;
              text-align: center;
              padding: 1.875rem 0;
              display: inline-block; }
            .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb label input[type="radio"] + .main-photo {
              visibility: hidden;
              opacity: 0;
              transition: visibility 0.5s, opacity 0.5s linear; }
            .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb label input[type="radio"]:checked + .main-photo {
              visibility: visible;
              opacity: 1; }
            .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb label:hover {
              cursor: pointer; }
              .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb label:hover input[type="radio"] + .main-photo {
                background: rgba(40, 172, 226, 0.6);
                transition: background 0.5s ease;
                visibility: visible;
                opacity: 1; }
        .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-image-uploaded .jFiler-item-thumb {
          opacity: 1; }
      .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item:nth-child(2), .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item:nth-child(4), .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item:nth-child(7), .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item:nth-child(9) {
        margin-right: 0.3125rem; }
      .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item:nth-child(1), .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item:nth-child(6) {
        width: 100%; }
        .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item:nth-child(1) .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb, .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item:nth-child(6) .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb {
          height: 100%; }
          .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item:nth-child(1) .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb label .main-photo, .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item:nth-child(6) .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb label .main-photo {
            width: 6rem;
            height: 6rem;
            font-size: 1.125rem;
            line-height: 1.125rem;
            padding: 1.875rem 0; }
    .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item.not-approved {
      border: 1px #ff0000 solid !important;
      background: #ecd6d1; }
      .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item.not-approved .jFiler-item-container .jFiler-item-inner::before {
        content: "Image Not Approved";
        position: absolute;
        z-index: 100;
        left: 50%;
        top: 50%;
        width: 130px;
        height: 130px;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
        line-height: 1.25rem;
        background: rgba(191, 40, 40, 0.6);
        border-radius: 50%;
        padding: 2.8125rem 0 0 0;
        transform: translate(-50%, -50%);
        text-align: center; }
      .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item.not-approved .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb .jFiler-progressSec {
        display: none; }
      .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item.not-approved .jFiler-item-container .jFiler-item-inner label {
        display: block; }
        .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item.not-approved .jFiler-item-container .jFiler-item-inner label input[type="radio"] {
          display: none; }
        .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item.not-approved .jFiler-item-container .jFiler-item-inner label .main-photo {
          display: none !important; }
  .gt-auto-images .icon-edit-photo {
    position: absolute;
    left: 0.5rem;
    bottom: 0.5rem;
    height: 2.25rem; }
    @media screen and (min-width: 64em) {
      .gt-auto-images .icon-edit-photo {
        height: 1.625rem; } }
    .gt-auto-images .icon-edit-photo:before {
      text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
      color: #fff;
      font-size: 2.25rem; }
      @media screen and (min-width: 64em) {
        .gt-auto-images .icon-edit-photo:before {
          font-size: 1.625rem; } }

.wizard-popup {
  padding: 1.875rem 1.25rem 1.5625rem;
  color: #000; }
  .wizard-popup h2 {
    font-size: 1.5rem;
    margin-bottom: 20px; }
  .wizard-popup ul li {
    color: #60cdf6; }
    .wizard-popup ul li p {
      color: #484848; }
  .wizard-popup .close-button {
    padding: 0.625rem;
    font-size: 1rem;
    top: 0.5rem;
    right: 0.3125rem; }
    .wizard-popup .close-button:before {
      color: #000;
      -moz-transition: color 0.3s ease-in;
      -webkit-transition: color 0.3s ease-in;
      transition: color 0.3s ease-in; }
      .wizard-popup .close-button:before:hover {
        -moz-transition: color 0.3s ease-in;
        -webkit-transition: color 0.3s ease-in;
        transition: color 0.3s ease-in; }
    .wizard-popup .close-button:hover:before {
      color: #60cdf6;
      -moz-transition: color 0.3s ease-in;
      -webkit-transition: color 0.3s ease-in;
      transition: color 0.3s ease-in; }
      .wizard-popup .close-button:hover:before:hover {
        -moz-transition: color 0.3s ease-in;
        -webkit-transition: color 0.3s ease-in;
        transition: color 0.3s ease-in; }
  .wizard-popup .small-text {
    font-size: 0.875rem; }

.my-ads-edit .form-error {
  margin-top: 0px; }

.user-profile .form-error {
  margin-bottom: 0;
  margin-top: 0px; }

.wizard .image-count,
.my-ads-edit .image-count,
.user-profile .image-count {
  font-weight: 300; }

.wizard .plus-icon,
.my-ads-edit .plus-icon,
.user-profile .plus-icon {
  font-weight: 700;
  font-size: 1rem;
  padding-right: 0.375rem; }

.wizard .wizard-select[required] ~ .select2-container:not(.select2-container--open):before,
.my-ads-edit .wizard-select[required] ~ .select2-container:not(.select2-container--open):before,
.user-profile .wizard-select[required] ~ .select2-container:not(.select2-container--open):before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  height: 1px;
  width: 25px;
  border-bottom: 1px solid #ff0000; }

.wizard .optns-row,
.my-ads-edit .optns-row,
.user-profile .optns-row {
  position: relative; }
  .wizard .optns-row .md-optfield-label,
  .my-ads-edit .optns-row .md-optfield-label,
  .user-profile .optns-row .md-optfield-label {
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    top: 0.625rem;
    position: absolute;
    color: rgba(0, 0, 0, 0.36);
    z-index: 4;
    font-size: 1rem; }
  .wizard .optns-row.opt-opned .md-optfield-label, .wizard .optns-row.opt-selected .md-optfield-label,
  .my-ads-edit .optns-row.opt-opned .md-optfield-label,
  .my-ads-edit .optns-row.opt-selected .md-optfield-label,
  .user-profile .optns-row.opt-opned .md-optfield-label,
  .user-profile .optns-row.opt-selected .md-optfield-label {
    font-size: 0.6875rem;
    top: -0.8125rem; }
  .wizard .optns-row .select2-container,
  .my-ads-edit .optns-row .select2-container,
  .user-profile .optns-row .select2-container {
    z-index: 20;
    margin-bottom: 0.3125rem; }
  .wizard .optns-row .select2-container--disabled .select2-selection--single,
  .my-ads-edit .optns-row .select2-container--disabled .select2-selection--single,
  .user-profile .optns-row .select2-container--disabled .select2-selection--single {
    background-color: transparent;
    border-bottom-style: dashed;
    cursor: not-allowed; }
  .wizard .optns-row .select2-selection--single,
  .wizard .optns-row .is-invalid-input,
  .my-ads-edit .optns-row .select2-selection--single,
  .my-ads-edit .optns-row .is-invalid-input,
  .user-profile .optns-row .select2-selection--single,
  .user-profile .optns-row .is-invalid-input {
    background-color: transparent; }

.wizard .wizard-select,
.wizard .select2-selection--single,
.wizard .select2-selection--multiple,
.my-ads-edit .wizard-select,
.my-ads-edit .select2-selection--single,
.my-ads-edit .select2-selection--multiple,
.user-profile .wizard-select,
.user-profile .select2-selection--single,
.user-profile .select2-selection--multiple {
  border-color: #CECED2;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background-color: transparent !important;
  padding-left: 0;
  color: rgba(0, 0, 0, 0.36); }

.wizard .select2-container .select2-search--inline .select2-search__field,
.my-ads-edit .select2-container .select2-search--inline .select2-search__field,
.user-profile .select2-container .select2-search--inline .select2-search__field {
  margin: 0; }
  .wizard .select2-container .select2-search--inline .select2-search__field::-webkit-input-placeholder,
  .my-ads-edit .select2-container .select2-search--inline .select2-search__field::-webkit-input-placeholder,
  .user-profile .select2-container .select2-search--inline .select2-search__field::-webkit-input-placeholder {
    opacity: 0; }
  .wizard .select2-container .select2-search--inline .select2-search__field:-ms-input-placeholder,
  .my-ads-edit .select2-container .select2-search--inline .select2-search__field:-ms-input-placeholder,
  .user-profile .select2-container .select2-search--inline .select2-search__field:-ms-input-placeholder {
    opacity: 0; }
  .wizard .select2-container .select2-search--inline .select2-search__field::-moz-placeholder,
  .my-ads-edit .select2-container .select2-search--inline .select2-search__field::-moz-placeholder,
  .user-profile .select2-container .select2-search--inline .select2-search__field::-moz-placeholder {
    opacity: 0; }

.wizard .select2-selection--multiple ul.select2-selection__rendered,
.my-ads-edit .select2-selection--multiple ul.select2-selection__rendered,
.user-profile .select2-selection--multiple ul.select2-selection__rendered {
  padding: 0; }
  .wizard .select2-selection--multiple ul.select2-selection__rendered li.select2-selection__choice,
  .my-ads-edit .select2-selection--multiple ul.select2-selection__rendered li.select2-selection__choice,
  .user-profile .select2-selection--multiple ul.select2-selection__rendered li.select2-selection__choice {
    background-color: #e0f5fd;
    color: #002542;
    font-size: 0.8125rem;
    padding: 0.25rem 1.5625rem 0.25rem 0.625rem;
    float: left;
    border-radius: 3.125rem;
    height: auto;
    border: none;
    position: relative; }
    .wizard .select2-selection--multiple ul.select2-selection__rendered li.select2-selection__choice span.select2-selection__choice__remove,
    .my-ads-edit .select2-selection--multiple ul.select2-selection__rendered li.select2-selection__choice span.select2-selection__choice__remove,
    .user-profile .select2-selection--multiple ul.select2-selection__rendered li.select2-selection__choice span.select2-selection__choice__remove {
      background: #000;
      color: #e0f5fd;
      line-height: 0.5rem;
      position: absolute;
      right: 0.125rem;
      top: 50%;
      transform: translate(-20%, -50%);
      padding: 0.1875rem;
      border-radius: 50%; }

.wizard .select2-container--default.select2-container--focus .select2-selection--multiple,
.my-ads-edit .select2-container--default.select2-container--focus .select2-selection--multiple,
.user-profile .select2-container--default.select2-container--focus .select2-selection--multiple {
  border: none;
  transition: box-shadow 0.5s,border-color 0.25s ease-in-out;
  border-bottom: 1px solid #000; }

.wizard .is-invalid-input .select2-selection--multiple,
.my-ads-edit .is-invalid-input .select2-selection--multiple,
.user-profile .is-invalid-input .select2-selection--multiple {
  border-bottom: 1px #ff0000 solid !important; }

.wizard .select2-container--disabled .select2-selection--single,
.my-ads-edit .select2-container--disabled .select2-selection--single,
.user-profile .select2-container--disabled .select2-selection--single {
  background-color: white;
  border-bottom: 1px dashed #ceced2; }

.wizard .select2-container .select2-selection--single .select2-selection__placeholder,
.wizard .select2-container .select2-selection--multiple .select2-selection__placeholder,
.my-ads-edit .select2-container .select2-selection--single .select2-selection__placeholder,
.my-ads-edit .select2-container .select2-selection--multiple .select2-selection__placeholder,
.user-profile .select2-container .select2-selection--single .select2-selection__placeholder,
.user-profile .select2-container .select2-selection--multiple .select2-selection__placeholder {
  color: rgba(0, 0, 0, 0.36);
  display: none; }

.wizard .select2-selection--single,
.wizard .select2-selection--multiple,
.my-ads-edit .select2-selection--single,
.my-ads-edit .select2-selection--multiple,
.user-profile .select2-selection--single,
.user-profile .select2-selection--multiple {
  border-radius: 0;
  line-height: normal;
  background-color: white;
  padding: 5px 0 5px;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0, 0 32, 0 16, 24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
  background-size: 9px 6px;
  background-position: right -1rem center;
  background-origin: content-box;
  background-repeat: no-repeat; }

.wizard .select2-selection--single,
.my-ads-edit .select2-selection--single,
.user-profile .select2-selection--single {
  height: 2.5rem; }

.wizard .select2-selection--multiple,
.my-ads-edit .select2-selection--multiple,
.user-profile .select2-selection--multiple {
  height: 2.8125rem; }

.wizard .select2-container--focus,
.my-ads-edit .select2-container--focus,
.user-profile .select2-container--focus {
  border: none; }

.wizard .is-invalid-input,
.my-ads-edit .is-invalid-input,
.user-profile .is-invalid-input {
  background-color: white; }

.wizard .is-invalid-input .select2-selection--single,
.wizard .wizard-select.is-invalid-input,
.my-ads-edit .is-invalid-input .select2-selection--single,
.my-ads-edit .wizard-select.is-invalid-input,
.user-profile .is-invalid-input .select2-selection--single,
.user-profile .wizard-select.is-invalid-input {
  border-color: #ff0000; }

.wizard .select2-container--default .select2-selection--single .select2-selection__arrow,
.my-ads-edit .select2-container--default .select2-selection--single .select2-selection__arrow,
.user-profile .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 2.4375rem;
  top: 0; }

.wizard .select2-container--default .select2-selection--single .select2-selection__rendered,
.my-ads-edit .select2-container--default .select2-selection--single .select2-selection__rendered,
.user-profile .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 0; }

.wizard .gt-select2-arrow:before,
.my-ads-edit .gt-select2-arrow:before,
.user-profile .gt-select2-arrow:before {
  font-size: 1.375rem;
  color: #ceced2; }

.wizard .select2-container--default .select2-selection--single .select2-selection__arrow:before,
.my-ads-edit .select2-container--default .select2-selection--single .select2-selection__arrow:before,
.user-profile .select2-container--default .select2-selection--single .select2-selection__arrow:before {
  content: "d";
  font-family: "gt" !important;
  font-size: 0.75rem;
  line-height: 2.5rem;
  color: #ceced2; }

.wizard .select2-container--default .select2-selection--single .select2-selection__arrow b,
.my-ads-edit .select2-container--default .select2-selection--single .select2-selection__arrow b,
.user-profile .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none; }

.wizard .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:before,
.my-ads-edit .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:before,
.user-profile .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:before {
  content: "m"; }

.wizard .opt-selected .select2-container:before,
.my-ads-edit .opt-selected .select2-container:before,
.user-profile .opt-selected .select2-container:before {
  display: none; }

.my-ads-edit .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item {
  border: 1px #ceced2 solid;
  padding: 0.625rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  width: 100%; }
  @media screen and (min-width: 64em) {
    .my-ads-edit .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item {
      width: 32.6%; } }
  .my-ads-edit .gt-auto-images .jFiler-items ul.jFiler-items-list li.jFiler-item .jFiler-item-container .jFiler-item-inner .jFiler-item-thumb {
    width: 100%;
    height: 100%; }

.my-ads-edit .filer-upload-btn {
  margin: 0.9375rem 0; }
  .my-ads-edit .filer-upload-btn a {
    display: inline-block;
    color: #000;
    padding: 0.625rem 1.25rem;
    text-transform: uppercase;
    font-weight: 600;
    background: #f0eff5; }
    .my-ads-edit .filer-upload-btn a span.image-plus-icon {
      font-weight: 400;
      width: 3.125rem;
      height: 3.125rem;
      line-height: 3.125rem;
      display: inline-block;
      position: relative;
      background: #60cdf6;
      color: white;
      border-radius: 50%;
      float: left;
      margin-right: 0.625rem; }
      .my-ads-edit .filer-upload-btn a span.image-plus-icon::before {
        font-size: 2.5rem;
        position: absolute;
        left: 50%;
        top: 50%;
        color: white;
        transform: translate(-50%, -50%); }
    .my-ads-edit .filer-upload-btn a span.image-count {
      font-weight: 600;
      color: #60cdf6;
      font-size: 1.1875rem;
      white-space: nowrap;
      line-height: 2.9375rem;
      float: left; }

.select2-dropdown {
  top: 0; }
  .select2-dropdown .select2-search input {
    margin-bottom: 0; }
  .select2-dropdown .select2-results {
    border-top: 1px #ceced2 solid;
    border-bottom: 1px #ceced2 solid; }

.select2-selection {
  outline: none; }

.gt-info-popup {
  z-index: 10050; }

.info-section {
  -webkit-box-shadow: 0px 0px 138px 28px rgba(204, 204, 204, 0.44);
  -moz-box-shadow: 0px 0px 138px 28px rgba(204, 204, 204, 0.44);
  box-shadow: 0px 0px 138px 28px rgba(204, 204, 204, 0.44);
  border-radius: 6px; }

.dealer-info-outr {
  margin: 0 auto;
  float: none;
  max-width: 35rem; }
  .dealer-info-outr .dealer-info-sec {
    width: 100%;
    padding: 1.25rem; }
    @media screen and (min-width: 64em) {
      .dealer-info-outr .dealer-info-sec {
        margin-top: 4.375rem; } }
    .dealer-info-outr .dealer-info-sec summary {
      margin-top: 2.5rem;
      padding-bottom: 6.25rem;
      color: #000; }
      .dealer-info-outr .dealer-info-sec summary h4 {
        font-size: 1.875rem;
        margin-bottom: 2.1875rem;
        color: #000; }
      .dealer-info-outr .dealer-info-sec summary p {
        font-size: 1.25rem;
        color: #000; }

.package-info-sec {
  padding: 0.9375rem 0.9375rem 4.0625rem;
  font-size: 14px; }
  @media screen and (min-width: 64em) {
    .package-info-sec {
      padding-bottom: 6.25rem;
      min-height: 6.25rem; } }
  .package-info-sec h2 {
    text-align: center;
    background: #f4f3f8;
    color: #453269;
    font-size: 0.875rem;
    padding: 8px 0;
    font-weight: 700;
    margin-top: 1.5625rem; }
  .package-info-sec h2.selected-pack {
    background: #f2eaf5;
    color: #7f5296;
    margin-top: 0.3125rem;
    width: auto; }
  .package-info-sec p {
    margin-bottom: 0.375rem; }
  .package-info-sec .pack-name {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.25rem; }
  .package-info-sec .pack-date {
    color: #919191;
    font-size: 0.875rem; }
  .package-info-sec .pack-recommendation {
    text-align: left;
    border-top: 1px #ceced2 solid;
    padding: 1.25rem 0;
    margin-top: 2.5rem; }
    .package-info-sec .pack-recommendation p {
      font-size: 0.875rem;
      color: #7F3F98;
      font-weight: bold;
      text-align: center; }
    .package-info-sec .pack-recommendation p.highlight {
      margin-bottom: 0.9375rem;
      font-weight: 700; }

.is-invalid-autocomplete input {
  border-color: #ff0000 !important; }

@media screen and (min-width: 64em) {
  .narrow-grid {
    max-width: 81.25rem !important; } }

@media screen and (min-width: 90em) {
  .narrow-grid {
    max-width: 85.9375rem !important; } }

/* Photo editor */
.photo-editor {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 0;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100vh;
  min-height: 100vh;
  max-width: none;
  margin-left: 0;
  border: 0;
  border-radius: 0; }
  .photo-editor .head {
    background-color: #e7e2ec;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 3px 3px 0 0;
    color: #1d2129;
    font-weight: 600;
    line-height: 19px;
    padding: 0.75rem 1rem;
    position: relative; }
  .photo-editor .overlay-close {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-25%); }
    .photo-editor .overlay-close :before {
      color: gray; }
  .photo-editor .canvas {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: calc(100% - 50px);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1rem; }
    .photo-editor .canvas.active {
      background-color: rgba(0, 0, 0, 0.85); }
      .photo-editor .canvas.active .cropper-bg {
        background: transparent; }
    .photo-editor .canvas > img {
      /* This rule is very important, please do not ignore this! */
      max-height: 100%;
      max-width: 100%; }
    .photo-editor .canvas p {
      position: absolute;
      top: 50%;
      transform: translateY(-25%); }
  .photo-editor .action-button {
    position: absolute;
    min-width: 4.6875rem;
    height: 32px;
    line-height: 32px;
    color: white;
    font-weight: 600;
    background-color: #0074d9;
    padding: 0 12px;
    border-radius: 3px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
    margin-left: 0.625rem; }
  .photo-editor .apply-button {
    right: 0;
    display: none; }
  .photo-editor .cancel-button {
    background-color: #8e8e93;
    left: 0;
    display: none; }
  .photo-editor .toolbar {
    background-color: rgba(0, 0, 0, 0.5);
    top: 3.125rem;
    color: #fff;
    height: 32px;
    left: 50%;
    margin-left: -4rem;
    position: absolute;
    width: 6.125rem;
    z-index: 2015; }
    .photo-editor .toolbar.action-only {
      width: 10.625rem; }
    .photo-editor .toolbar .toolbar-button {
      background-color: transparent;
      border-width: 0;
      color: gray;
      cursor: pointer;
      display: block;
      float: left;
      font-size: 14px;
      height: 32px;
      text-align: center;
      width: 32px; }
      .photo-editor .toolbar .toolbar-button.left {
        -moz-transform: scale(-1, 1);
        -webkit-transform: scale(-1, 1);
        -o-transform: scale(-1, 1);
        -ms-transform: scale(-1, 1);
        transform: scale(-1, 1); }
      .photo-editor .toolbar .toolbar-button span:before {
        color: white;
        font-weight: 600; }
      .photo-editor .toolbar .toolbar-button:hover {
        background-color: #0074d9; }

.crop-mode .cancel-button,
.crop-mode .apply-button {
  display: block; }

.crop-mode .toolbar {
  background-color: transparent;
  width: 10.625rem; }
  .crop-mode .toolbar .toolbar-button {
    display: none; }

.crop-mode .save-button {
  display: none; }

.badge-wrap .tbl {
  width: 100%;
  display: block; }
  @media screen and (min-width: 64em) {
    .badge-wrap .tbl {
      width: 24.5%;
      display: inline-block;
      vertical-align: top; } }
  .badge-wrap .tbl .tbl-row {
    display: block; }
    .badge-wrap .tbl .tbl-row .tbl-data {
      display: block; }

.badge-wrap .badges.badge {
  padding: 0.3125rem 0.9375rem;
  text-align: left;
  float: left;
  width: 100%;
  margin: 0; }

.badge-wrap.featured .tbl {
  width: 100%; }

.badge-wrap.featured .badges .icon-badge {
  display: none !important; }

.badge-wrap.featured .badges .name {
  padding-left: 10px;
  margin-top: 8px; }

.badges {
  text-align: center;
  border-radius: 6px;
  margin: 1rem 0 0;
  padding: 1rem 1.3rem;
  cursor: pointer;
  position: relative;
  /*border: 1px $border-color solid;
  transition: background-color .5s ease-out;
  @include breakpoint(large up) {
    min-height: rem-calc(210);
  }*/ }
  @media screen and (max-width: 63.9375em) {
    .badges {
      padding: 0.75rem; } }
  .badges .amount {
    color: #453269;
    text-align: left;
    font-size: 1.125rem;
    position: absolute;
    top: 0.75rem;
    right: 0.625rem;
    font-weight: 700; }
    @media screen and (min-width: 64em) {
      .badges .amount {
        font-size: 1.5625rem; } }
    .badges .amount span {
      font-weight: 400;
      padding-right: 0.25rem;
      font-size: 0.875rem; }
      @media screen and (min-width: 64em) {
        .badges .amount span {
          font-size: 1.375rem; } }
  .badges .badges-check-icon {
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8cGF0aAogICAgIGQ9Ik0gMC4wNDAzODA1OSwwLjYyNjc3NjcgMC4xNDY0NDY2MSwwLjUyMDcxMDY4IDAuNDI5Mjg5MzIsMC44MDM1NTMzOSAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IE0gMC4yMTcxNTcyOSwwLjgwMzU1MzM5IDAuODUzNTUzMzksMC4xNjcxNTcyOSAwLjk1OTYxOTQxLDAuMjczMjIzMyAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IgogICAgIGlkPSJyZWN0Mzc4MCIKICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPgo8L3N2Zz4K");
    background-color: transparent;
    background-size: 71% auto;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 100%;
    border: 1px solid #453269;
    margin: 0 0.625rem 0 0;
    float: right; }
    @media screen and (min-width: 64em) {
      .badges .badges-check-icon {
        width: 1.5625rem;
        height: 1.5625rem;
        margin: 0.3125rem 0 0;
        display: block; } }
  .badges .icon-badge {
    position: absolute;
    right: 0.625rem;
    bottom: 0.625rem;
    width: 15%;
    max-width: 3.125rem; }
    @media screen and (min-width: 64em) {
      .badges .icon-badge {
        width: 20%; } }
    .badges .icon-badge:before {
      font-size: 2.75rem;
      margin: 0;
      vertical-align: middle; }
      @media screen and (min-width: 48em) {
        .badges .icon-badge:before {
          font-size: 5rem; } }
  .badges .name {
    float: left; }
    @media screen and (min-width: 64em) {
      .badges .name {
        margin-top: 0.5rem;
        padding-left: 10px; } }
    .badges .name h4 {
      font-weight: normal;
      float: left;
      text-align: left;
      color: #555555;
      font-size: 0.8125rem;
      line-height: 1.125rem; }
      @media screen and (max-width: 63.9375em) {
        .badges .name h4 {
          font-size: 0.8125rem; } }
    .badges .name p {
      text-align: left;
      font-size: 0.8125rem;
      line-height: 1.125rem;
      margin-right: 0.3125rem;
      font-weight: 400;
      white-space: normal;
      padding-right: 30%;
      clear: left; }
    @media screen and (max-width: 74.9375em) {
      .badges .name a {
        display: block; } }
    .badges .name.col-2 {
      width: 70%; }
  .badges .duration {
    font-size: 0.8125rem; }
    @media screen and (min-width: 48em) {
      .badges .duration {
        font-size: 1rem; } }
  .badges:hover {
    transition: background-color .5s ease-out; }
    @media screen and (max-width: 63.9375em) {
      .badges:hover {
        background-color: #fff; } }
  .badges.disabled {
    cursor: default; }
  .badges.selected .badges-check-icon {
    background-color: #7f3f98; }
  .badges.selected.existing-pack {
    opacity: 0.8;
    background-color: #dadada; }
    .badges.selected.existing-pack .badges-check-icon {
      display: none; }
    .badges.selected.existing-pack .amount {
      display: none; }

.badges-expand-container .row:before {
  display: none; }

.badges-expand-container .badges-expand-btn {
  width: 100%;
  border: 1px #ceced2 solid;
  border-radius: 0.25rem;
  display: block;
  padding: 0.5rem;
  position: relative; }
  .badges-expand-container .badges-expand-btn h2 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #60cdf6;
    margin: 0; }
  .badges-expand-container .badges-expand-btn p {
    font-size: 0.75rem;
    color: #888888; }
  .badges-expand-container .badges-expand-btn:before {
    position: absolute;
    right: 0.625rem;
    font-size: 1.5625rem;
    color: #60cdf6; }

.badge-wrap.featured {
  display: block; }
  .badge-wrap.featured .featured-upgrade {
    width: 100%; }
    .badge-wrap.featured .featured-upgrade .badges {
      min-height: auto;
      overflow: hidden; }
      .badge-wrap.featured .featured-upgrade .badges .name {
        margin-top: 0; }
        .badge-wrap.featured .featured-upgrade .badges .name p {
          float: left;
          padding-right: 0; }
      .badge-wrap.featured .featured-upgrade .badges .amount {
        text-align: right; }
      @media screen and (max-width: 74.9375em) {
        .badge-wrap.featured .featured-upgrade .badges .amount {
          text-align: right;
          font-size: 1.25rem;
          line-height: 1.25rem; }
          .badge-wrap.featured .featured-upgrade .badges .amount span {
            padding-right: 0;
            display: block;
            font-size: 0.9375rem; } }
      .badge-wrap.featured .featured-upgrade .badges .badges-check-icon {
        margin: 0 0.625rem;
        float: left; }
      .badge-wrap.featured .featured-upgrade .badges a.gt-tool-tip {
        vertical-align: text-top;
        margin-left: 1.25rem; }
        @media screen and (max-width: 74.9375em) {
          .badge-wrap.featured .featured-upgrade .badges a.gt-tool-tip {
            float: left;
            width: 100%;
            text-align: left; } }

.badge-wrap.listing-badges .badges {
  overflow: hidden; }
  @media screen and (max-width: 74.9375em) {
    .badge-wrap.listing-badges .badges .name {
      margin-top: 0;
      width: 100%; } }
  @media screen and (max-width: 74.9375em) {
    .badge-wrap.listing-badges .badges .name h4 {
      margin: 0.625rem 0 0.3125rem; } }
  @media screen and (max-width: 74.9375em) {
    .badge-wrap.listing-badges .badges .name .amount {
      clear: both; } }

@media screen and (min-width: 64em) {
  .badge-wrap.listing-badges.employer-badges .badges {
    min-height: 16.5625rem; } }

.listings-package .col-1 {
  width: 5%;
  vertical-align: top; }

.wizard-terms {
  text-align: left; }

.wizard-btns button {
  float: right; }
  @media screen and (max-width: 74.9375em) {
    .wizard-btns button {
      padding: 0.75rem 1.25rem !important; } }

.wizard-btns .go-back-step {
  margin-right: 0.9375rem; }
  @media screen and (max-width: 74.9375em) {
    .wizard-btns .go-back-step {
      padding: 0.125rem 0.375rem !important; } }

.wizard .jobs-wizard .badge-wrap.featured .badges.badge {
  overflow: hidden; }

.smcx-modal-survey {
  right: 0px !important;
  bottom: 0 !important;
  left: auto !important;
  top: auto !important;
  visibility: hidden; }

.algolia-autocomplete {
  width: 100%; }
  .algolia-autocomplete .aa-input, .algolia-autocomplete #search-location {
    margin-bottom: 0; }

.algolia-autocomplete + .form-error {
  margin-top: 0.0125rem; }

.algolia-autocomplete .aa-input, .algolia-autocomplete .aa-hint {
  width: 100%; }

.algolia-autocomplete .aa-hint {
  color: #999; }

.algolia-autocomplete .aa-dropdown-menu {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 1px;
  margin: 0 0 10px 0;
  border-top: none; }

.algolia-autocomplete .aa-dropdown-menu .aa-suggestion,
.algolia-autocomplete .empty {
  cursor: pointer;
  padding: 9px 10px;
  color: #000;
  border-bottom: 1px solid #e6e6e6;
  text-overflow: ellipsis; }

.algolia-autocomplete .aa-dropdown-menu .aa-suggestion.aa-cursor {
  background-color: #e0f5fd; }

.algolia-autocomplete .aa-dropdown-menu {
  padding: 1.25rem 0.9375rem; }

.algolia-autocomplete .aa-dropdown-menu .aa-suggestion {
  overflow: hidden; }
  .algolia-autocomplete .aa-dropdown-menu .aa-suggestion:last-child {
    border: none; }

.algolia-autocomplete .empty:last-child {
  border: none; }

.algolia-autocomplete .aa-dropdown-menu .aa-suggestion em {
  font-weight: bold;
  font-style: normal; }

.aa-dropdown-menu .aa-suggestion .filter-section {
  color: #9d9d9d;
  font-style: italic;
  font-weight: 300;
  font-size: 0.8125rem; }

.aa-dropdown-menu .aa-suggestion .filter-key {
  text-transform: capitalize;
  font-size: 0.875rem; }

.featured-carousel {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  position: relative; }
  @media screen and (min-width: 64em) {
    .featured-carousel {
      margin-bottom: 10px; } }
  @media screen and (min-width: 48em) {
    .featured-carousel .header-title {
      position: relative;
      width: 100%;
      border: 0;
      background-color: #1b344a;
      padding: 0.5rem 0.8125rem 0.3125rem 0.8125rem;
      font-size: 0.875rem;
      border-bottom: 0.0625rem solid white;
      font-size: 1.65rem; }
      .featured-carousel .header-title span:nth-child(2) {
        color: #1b344a;
        padding-left: 0.1875rem; } }
  .featured-carousel .slick-override-buttons, .featured-carousel .slick-next, .featured-carousel .slick-previous {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    padding: 1rem;
    color: #fefefe;
    padding-bottom: 0.9rem;
    background: rgba(0, 0, 0, 0.3);
    width: 3.75rem;
    padding-top: 1.25rem;
    position: absolute; }
    @media screen and (min-width: 64em) {
      .featured-carousel .slick-override-buttons, .featured-carousel .slick-next, .featured-carousel .slick-previous {
        background-color: transparent;
        font-size: 60px;
        top: 50%; } }
  .featured-carousel .slick-next {
    right: -1.875rem;
    text-align: left;
    padding-left: 8px; }
    @media screen and (min-width: 48em) {
      .featured-carousel .slick-next {
        padding-left: 0.6rem;
        padding-bottom: 1.25rem;
        width: 4rem;
        font-size: 1.375rem;
        border-radius: 0;
        padding-top: 30px;
        background: rgba(0, 0, 0, 0.3); } }
    @media screen and (min-width: 64em) {
      .featured-carousel .slick-next {
        right: 0.9375rem;
        font-size: 2.5rem;
        padding-bottom: 1rem; } }
  .featured-carousel .slick-previous {
    left: -1.875rem;
    text-align: right;
    padding-right: 8px; }
    @media screen and (min-width: 48em) {
      .featured-carousel .slick-previous {
        padding-left: 0;
        padding-bottom: 1.25rem;
        width: 4rem;
        font-size: 1.375rem;
        border-radius: 0;
        padding-top: 30px;
        background: rgba(0, 0, 0, 0.3); } }
    @media screen and (min-width: 64em) {
      .featured-carousel .slick-previous {
        left: 0.9375rem;
        font-size: 2.5rem;
        padding-bottom: 1rem; } }
  .featured-carousel .icon-play {
    position: absolute;
    right: 50%;
    top: 35%; }
    @media screen and (min-width: 64em) {
      .featured-carousel .icon-play {
        top: 42.5%; } }
    .featured-carousel .icon-play:before {
      position: absolute;
      color: white;
      right: -22px;
      top: -22px;
      font-size: 2.8125rem; }
      @media screen and (min-width: 64em) {
        .featured-carousel .icon-play:before {
          font-size: 5.625rem; } }
  .featured-carousel .slick-slide {
    position: relative; }
    .featured-carousel .slick-slide img {
      width: 100%; }
  .featured-carousel .slick-caption {
    bottom: 0;
    width: 100%;
    padding: 1rem;
    margin-bottom: 0;
    color: #fefefe;
    background-color: #000;
    position: relative;
    padding-top: 0; }
    .featured-carousel .slick-caption .category {
      color: #1b344a;
      text-transform: uppercase;
      padding-top: 0.625rem;
      line-height: 1;
      display: block;
      font-size: 0.875rem; }
    .featured-carousel .slick-caption h4 {
      margin-top: 0.0625rem;
      margin-bottom: 0;
      color: white;
      line-height: 1;
      font-size: 1.625rem;
      overflow: hidden;
      clear: both;
      width: 97%; }
      @media screen and (min-width: 48em) {
        .featured-carousel .slick-caption h4 {
          margin-top: 0.3125rem;
          white-space: normal; } }
    .featured-carousel .slick-caption p {
      color: white;
      display: none; }
      @media screen and (min-width: 48em) {
        .featured-carousel .slick-caption p {
          display: block; } }
    .featured-carousel .slick-caption .date {
      color: #c2c2c2;
      font-size: 0.625rem;
      margin-top: 0.3125rem;
      margin-bottom: 0.625rem;
      display: block; }
  .featured-carousel .slick-caption-light {
    background-color: rgba(67, 67, 67, 0.6);
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-bottom: 0;
    color: white; }
    @media screen and (min-width: 48em) {
      .featured-carousel .slick-caption-light {
        font-size: 1.25rem; } }
  .featured-carousel.multi-article .slick-next, .featured-carousel.multi-article .slick-previous {
    background-color: transparent;
    font-size: 35px; }
  .featured-carousel.multi-article .slick-next {
    right: 0; }
  .featured-carousel.multi-article .slick-previous {
    left: 0; }
  @media screen and (min-width: 64em) {
    .featured-carousel.in-article {
      padding-right: 0.9375rem !important;
      padding-left: 0.9375rem !important; } }
  .featured-carousel.home {
    background-color: black; }
    @media screen and (min-width: 64em) {
      .featured-carousel.home .slick-caption {
        width: 20%;
        float: left;
        padding-top: 50px;
        height: 500px; } }
    .featured-carousel.home .slide-count-wrap {
      color: #fefefe;
      text-align: center;
      margin-bottom: 10px; }
      @media screen and (min-width: 64em) {
        .featured-carousel.home .slide-count-wrap {
          margin-bottom: 0; } }
    @media screen and (min-width: 64em) {
      .featured-carousel.home .slick-slide img {
        width: 80%;
        float: left; } }
    .featured-carousel.home .slick-previous {
      left: 0; }
    .featured-carousel.home .slick-next {
      right: 0; }

.videoWrapper {
  text-align: center;
  position: relative;
  padding-bottom: 51.2% !important;
  height: 0;
  margin-top: 0.625rem;
  overflow: hidden; }
  @media screen and (min-width: 48em) and (max-width: 63.9375em) {
    .videoWrapper {
      padding-left: 0 !important;
      padding-right: 0 !important; } }
  @media screen and (max-width: 47.9375em) {
    .videoWrapper {
      padding-left: 0 !important;
      padding-right: 0 !important; } }
  .videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    @media screen and (min-width: 64em) {
      .videoWrapper iframe {
        padding: 0 0.9375rem !important; } }
  .videoWrapper + p {
    margin-top: 0.625rem; }
  .videoWrapper .start-video {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: .7;
    cursor: pointer;
    transition: all 0.7s; }
    .videoWrapper .start-video:before {
      background: none;
      padding: 0;
      font-size: 3.125rem;
      right: -1.25rem;
      top: -1.25rem; }
  .videoWrapper .start-video:hover {
    opacity: 1;
    -webkit-filter: brightness 1; }
  .videoWrapper div.thumbnail_container {
    width: 100%;
    height: auto;
    overflow: hidden;
    background-color: #000; }
  .videoWrapper img.thumbnail {
    overflow: hidden;
    vertical-align: middle;
    opacity: 0.5;
    margin-top: -1.875rem;
    margin-bottom: -1.875rem; }
    @media screen and (min-width: 48em) {
      .videoWrapper img.thumbnail {
        margin-top: 0;
        margin-bottom: 0; } }

h2.section-title {
  text-transform: uppercase;
  font-size: 1.25rem;
  margin: 1.875rem auto 1.25rem;
  font-weight: 700;
  line-height: 1.25rem;
  color: #000; }

.search-head + .search-bar .algolia-autocomplete .aa-dropdown-menu {
  font-size: 0.8125rem; }
  @media screen and (min-width: 64em) {
    .search-head + .search-bar .algolia-autocomplete .aa-dropdown-menu {
      margin-top: 20px; } }
  .search-head + .search-bar .algolia-autocomplete .aa-dropdown-menu .aa-suggestion {
    padding: 0.3125rem 0.625rem; }

.search-bar {
  background: #62ccf5;
  position: relative;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem; }
  @media screen and (min-width: 64em) {
    .search-bar {
      padding-top: 1.25rem;
      padding-bottom: 1.25rem; } }
  .search-bar .search-with-filters {
    width: 100%;
    margin: 0 auto;
    background: none;
    padding: 0; }
    @media screen and (min-width: 64em) {
      .search-bar .search-with-filters {
        -webkit-box-shadow: 17px 51px 100px -23px black;
        -moz-box-shadow: 17px 51px 100px -23px black;
        box-shadow: 17px 51px 100px -23px black; } }
    @media screen and (min-width: 64em) {
      .search-bar .search-with-filters {
        width: 55.625rem; } }
  .search-bar.content {
    width: 100%;
    float: left;
    padding-left: 0.625rem;
    padding-right: 0.625rem; }
    @media screen and (min-width: 48em) {
      .search-bar.content {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } }
    .search-bar.content:last-child:not(:first-child) {
      float: right; }
  .search-bar .algolia-autocomplete {
    position: static !important; }
    @media screen and (max-width: 63.9375em) {
      .search-bar .algolia-autocomplete .aa-dropdown-menu {
        top: 40% !important; } }
    @media screen and (min-width: 64em) {
      .search-bar .algolia-autocomplete .aa-dropdown-menu {
        width: 51.25rem;
        left: 50% !important;
        transform: translateX(-50%) !important;
        position: relative;
        border-radius: 5px; }
        .search-bar .algolia-autocomplete .aa-dropdown-menu:before {
          content: "";
          border-top: none;
          border-left: 18px solid transparent;
          border-right: 18px solid transparent;
          border-bottom: 18px solid white;
          border-top-right-radius: 30%;
          display: block;
          position: absolute;
          top: -15px;
          left: 50px; } }
  .search-bar .search-wrap {
    background-color: white;
    overflow: hidden;
    padding-left: 0.4375rem;
    height: 2.1875rem;
    width: 100%;
    border: 1px solid #ccc; }
  .search-bar .search-selection::-webkit-scrollbar {
    /*web-kit fix*/
    display: none; }
  .search-bar .search-selection {
    width: calc(100% - 30px);
    float: right;
    overflow: hidden;
    height: 2.375rem;
    overflow-x: scroll; }
    @media screen and (min-width: 64em) {
      .search-bar .search-selection {
        overflow: hidden; } }
    .search-bar .search-selection ul {
      margin: 0;
      width: 100%;
      list-style-type: none;
      white-space: nowrap;
      height: 100%;
      display: inline-flex;
      align-items: center; }
    .search-bar .search-selection li {
      display: inline-block;
      line-height: 1.75rem;
      height: 100%;
      width: 100%; }
    .search-bar .search-selection .tag {
      background-color: #e0f5fd;
      color: #002542;
      position: relative;
      font-size: 0.875rem;
      padding: 0 0.75rem;
      float: left;
      border-radius: 3.125rem;
      height: auto;
      width: auto; }
      .search-bar .search-selection .tag span {
        padding-right: 1rem; }
      @media screen and (min-width: 64em) {
        .search-bar .search-selection .tag {
          padding: 0.625rem 0.75rem; } }
    .search-bar .search-selection .gt-icon-close {
      position: relative;
      top: 0.1875rem;
      cursor: pointer; }
      .search-bar .search-selection .gt-icon-close:before {
        color: #002542; }
  .search-bar .finder-icon {
    width: 50px;
    position: relative;
    height: 100%; }
  .search-bar .gt-icon-search {
    position: absolute;
    right: 31px;
    top: 50%;
    cursor: pointer;
    transform: translateY(-36%);
    font-size: 0.8125rem; }
    .search-bar .gt-icon-search:before {
      color: #8e8e93; }
  .search-bar .align-controls {
    display: inline-block;
    vertical-align: middle;
    margin-top: 0.375rem; }
    @media screen and (min-width: 64em) {
      .search-bar .align-controls {
        margin-top: 0;
        margin-left: 0.375rem; } }
  .search-bar .btn-search {
    margin-bottom: 0;
    width: 49.2%;
    padding: 0.625rem 0.25rem 0.5625rem;
    background-color: #3fa5d7;
    border-radius: 1.25rem;
    text-transform: uppercase; }
    @media screen and (min-width: 64em) {
      .search-bar .btn-search {
        width: 5.625rem; } }
    .search-bar .btn-search:hover {
      background-color: #339ccf; }
  .search-bar .dropdown {
    width: 49.2%;
    padding: 0.625rem 0.6875rem;
    position: relative;
    text-overflow: ellipsis;
    background: white;
    color: #000;
    margin-bottom: 0;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 0.8125rem;
    display: inline-block;
    text-align: left; }
    .search-bar .dropdown .moreItems {
      color: #3fa5d7;
      border: 1px solid #ceced2;
      border-radius: 3px;
      padding: 0.125rem 0.25rem;
      margin-left: 5px;
      position: absolute;
      z-index: 1;
      top: 7px; }
    .search-bar .dropdown.apartments {
      width: 49.2%; }
      @media screen and (min-width: 64em) {
        .search-bar .dropdown.apartments {
          width: 12.5rem; } }
    @media screen and (min-width: 64em) {
      .search-bar .dropdown.price {
        width: 8.125rem;
        overflow: hidden; } }
    .search-bar .dropdown.price .range {
      display: inline-block;
      line-height: 1;
      width: 64%;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      font-size: 12px;
      vertical-align: middle;
      margin: 0;
      padding: 0; }
    @media screen and (min-width: 64em) {
      .search-bar .dropdown {
        width: 8.125rem; } }
    .search-bar .dropdown:before {
      content: "d";
      font-family: "gt" !important;
      color: #555;
      font-size: 0.75rem;
      right: 0.625rem;
      top: 50%;
      transform: translateY(-50%);
      position: absolute; }
    .search-bar .dropdown:after {
      display: none; }
    .search-bar .dropdown.hover:before {
      content: "m"; }
  .search-bar .dropdown-pane {
    z-index: 50;
    font-size: 0.8125rem; }
    @media screen and (max-width: 63.9375em) {
      .search-bar .dropdown-pane {
        width: 100% !important;
        top: 0 !important;
        left: 0 !important;
        height: 100% !important;
        position: fixed;
        z-index: 1500; }
        .search-bar .dropdown-pane h2 {
          font-size: 0.9375rem;
          font-family: "Open Sans", sans-serif;
          border-bottom: 1px solid #ceced2;
          padding: 0.6875rem 0.9375rem; }
        .search-bar .dropdown-pane .wrap {
          height: calc(100% - 50px);
          overflow-y: auto;
          padding: 0.9375rem; }
        .search-bar .dropdown-pane .btn-close {
          position: absolute;
          top: 7px;
          right: 10px;
          border-radius: 3px;
          font-size: 0.75rem;
          padding: 0.4375rem 0.875rem; } }
    .search-bar .dropdown-pane .wrap {
      padding: 0.9375rem; }
    .search-bar .dropdown-pane .checklist label {
      padding-left: 1.25rem;
      width: 100%;
      box-sizing: border-box;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -o-box-sizing: border-box;
      padding: 0.3125rem 0 0.3125rem 1.25rem; }
      .search-bar .dropdown-pane .checklist label:before {
        content: "";
        width: 16px;
        height: 15px;
        border: 1px solid #ceced2;
        display: inline-flex;
        margin-right: 7px;
        position: absolute;
        left: 0;
        top: 10px; }
        @media screen and (min-width: 64em) {
          .search-bar .dropdown-pane .checklist label:before {
            width: 13px;
            height: 12px; } }
    .search-bar .dropdown-pane .checklist input[type="checkbox"]:checked + label:before {
      border-color: #7f3f98;
      background: #7f3f98; }
    .search-bar .dropdown-pane .checklist input[type="checkbox"]:checked + label:after {
      content: "";
      width: 10px;
      height: 5px;
      border-left: white 2px solid;
      border-bottom: white 2px solid;
      display: inline-flex;
      position: absolute;
      left: 3px;
      top: 14px;
      transform: rotate(-43deg);
      -webkit-transform: rotate(-43deg);
      -moz-transform: rotate(-43deg);
      -o-transform: rotate(-43deg); }
      @media screen and (min-width: 64em) {
        .search-bar .dropdown-pane .checklist input[type="checkbox"]:checked + label:after {
          width: 8px;
          height: 4px;
          top: 13px; } }
    .search-bar .dropdown-pane .checklist input[type="checkbox"]:indeterminate + label:before {
      border-color: #7f3f98;
      background: #7f3f98; }
    .search-bar .dropdown-pane .checklist input[type="checkbox"]:indeterminate + label:after {
      content: "";
      width: 8px;
      height: 4px;
      border-bottom: white 2px solid;
      display: inline-flex;
      position: absolute;
      left: 4px;
      top: 14px; }
      @media screen and (min-width: 64em) {
        .search-bar .dropdown-pane .checklist input[type="checkbox"]:indeterminate + label:after {
          width: 9px;
          left: 2px;
          top: 13px; } }
    .search-bar .dropdown-pane.apartments-filter .checklist > li {
      padding-bottom: 1.5625rem; }
      @media screen and (min-width: 64em) {
        .search-bar .dropdown-pane.apartments-filter .checklist > li {
          padding-bottom: 0.9375rem; } }
    @media screen and (min-width: 64em) {
      .search-bar .dropdown-pane.apartments-filter {
        width: 26.25rem; } }
    .search-bar .dropdown-pane.price-filter label {
      padding: 0.3125rem 0;
      cursor: pointer; }
      .search-bar .dropdown-pane.price-filter label.active {
        background: #60cdf6;
        margin-left: -0.9375rem;
        margin-right: -0.9375rem;
        padding-left: 0.9375rem;
        color: white; }
    @media screen and (min-width: 64em) {
      .search-bar .dropdown-pane.linkList {
        width: 10.9375rem; } }
    .search-bar .dropdown-pane.linkList li a {
      font-family: "Open Sans", sans-serif;
      font-size: 1rem;
      color: #000;
      padding: 0.3125rem 0 0.3125rem 0.625rem;
      display: block; }
      .search-bar .dropdown-pane.linkList li a:focus {
        outline: none; }
      @media screen and (min-width: 64em) {
        .search-bar .dropdown-pane.linkList li a {
          padding: 0.3125rem;
          font-size: 0.8125rem; } }
    .search-bar .dropdown-pane.linkList li.selected {
      background: #60cdf6; }
      .search-bar .dropdown-pane.linkList li.selected a {
        color: white; }
    .search-bar .dropdown-pane .row .columns {
      font-family: "Open Sans", sans-serif;
      font-size: 0.8125rem; }
    .search-bar .dropdown-pane .pricing-table {
      background: #f4f4f5;
      padding: 0.625rem 0.9375rem; }
      .search-bar .dropdown-pane .pricing-table .row {
        background: inherit; }
    .search-bar .dropdown-pane .price-wrap {
      overflow: auto;
      overflow-x: hidden;
      display: flex;
      box-sizing: border-box;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -o-box-sizing: border-box;
      justify-content: space-between; }
      @media screen and (min-width: 64em) {
        .search-bar .dropdown-pane .price-wrap {
          max-height: 200px; } }
    .search-bar .dropdown-pane ul {
      padding: 0;
      margin: 0; }
      .search-bar .dropdown-pane ul.minPrice, .search-bar .dropdown-pane ul.maxPrice {
        width: 40%;
        display: inline-block; }
      .search-bar .dropdown-pane ul.hideRange {
        visibility: hidden; }
      .search-bar .dropdown-pane ul li {
        list-style: none;
        display: inline-block;
        width: 100%;
        position: relative; }
      .search-bar .dropdown-pane ul ul {
        width: 100%;
        padding: 0 0 0 1.5625rem; }
        @media screen and (min-width: 64em) {
          .search-bar .dropdown-pane ul ul li {
            width: 49%; } }
    .search-bar .dropdown-pane label,
    .search-bar .dropdown-pane input {
      font-family: "Open Sans", sans-serif;
      font-size: 1rem;
      text-transform: capitalize; }
      @media screen and (min-width: 64em) {
        .search-bar .dropdown-pane label,
        .search-bar .dropdown-pane input {
          font-size: 0.8125rem; } }
    .search-bar .dropdown-pane input[type="text"] {
      height: 1.875rem;
      margin-bottom: 5px; }
    @media screen and (min-width: 64em) {
      .search-bar .dropdown-pane.align-inline ul li {
        width: 49%; } }
  .search-bar .search-cars {
    border: none;
    box-shadow: none;
    color: #000;
    background-color: transparent;
    font-size: 0.8125rem;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    text-overflow: ellipsis;
    min-width: 12.5rem;
    display: inline-flex;
    align-items: center;
    height: 2.1875rem; }
    .search-bar .search-cars:focus {
      outline: none;
      border: none;
      box-shadow: none; }
  .search-bar.box {
    background-color: #00AEEF; }

.property-banner .search-bar,
.auto-banner .search-bar {
  background: #60cdf6; }
  @media screen and (min-width: 64em) {
    .property-banner .search-bar .search-with-filters,
    .auto-banner .search-bar .search-with-filters {
      background: #fff;
      padding: 0.9375rem; } }
  .property-banner .search-bar .search-wrap,
  .auto-banner .search-bar .search-wrap {
    width: 100%;
    height: 2.1875rem; }
    @media screen and (min-width: 64em) {
      .property-banner .search-bar .search-wrap,
      .auto-banner .search-bar .search-wrap {
        width: 16.25rem; } }

.property-details-sec .search-bar .search-wrap {
  width: 100%; }
  @media screen and (min-width: 64em) {
    .property-details-sec .search-bar .search-wrap {
      width: 16.25rem; } }

.auto-details-sec .search-bar .search-wrap {
  width: 100%; }
  @media screen and (min-width: 64em) {
    .auto-details-sec .search-bar .search-wrap {
      width: 74%; } }

.auto-details-sec .auto-banner .search-bar {
  background: #62ccf5; }
  .auto-details-sec .auto-banner .search-bar .search-with-filters {
    background: none;
    padding: 0; }

.auto-details-sec .gt-badge-details .gt-icon-badge .badge-name {
  line-height: 1.8;
  vertical-align: middle; }

.classifieds-details .classifieds-search-bar .classifieds-search-box {
  padding: 0;
  background: none; }

.auto-banner .search-bar .search-with-filters .search-wrap {
  width: 100%; }
  @media screen and (min-width: 64em) {
    .auto-banner .search-bar .search-with-filters .search-wrap {
      width: 71%; } }

.auto-banner .search-bar .search-with-filters .dropdown.button {
  width: calc(100% - 95px); }
  @media screen and (min-width: 64em) {
    .auto-banner .search-bar .search-with-filters .dropdown.button {
      width: 8.125rem; } }

.auto-banner .search-bar .search-with-filters .btn-search {
  width: 5.625rem; }

/* Search box - common */
.classifieds-search-box .algolia-autocomplete .aa-dropdown-menu {
  font-size: 0.8125rem; }
  @media screen and (max-width: 63.9375em) {
    .classifieds-search-box .algolia-autocomplete .aa-dropdown-menu {
      top: 87% !important; } }
  @media screen and (min-width: 64em) {
    .classifieds-search-box .algolia-autocomplete .aa-dropdown-menu {
      width: 37.5rem;
      left: 53% !important;
      transform: translateX(-53%);
      -webkit-transform: translateX(-53%);
      -moz-transform: translateX(-53%);
      -o-transform: translateX(-53%); } }
  .classifieds-search-box .algolia-autocomplete .aa-dropdown-menu .aa-suggestion {
    padding: 0.3125rem 0.625rem; }

.jobs-search-sec .search-bar .algolia-autocomplete .aa-dropdown-menu {
  font-size: 0.8125rem; }
  @media screen and (max-width: 63.9375em) {
    .jobs-search-sec .search-bar .algolia-autocomplete .aa-dropdown-menu {
      top: 90% !important; } }
  @media screen and (min-width: 64em) {
    .jobs-search-sec .search-bar .algolia-autocomplete .aa-dropdown-menu {
      margin-top: 20px;
      width: 37.5rem;
      left: 53% !important;
      transform: translateX(-53%);
      -webkit-transform: translateX(-53%);
      -moz-transform: translateX(-53%);
      -o-transform: translateX(-53%); } }
  .jobs-search-sec .search-bar .algolia-autocomplete .aa-dropdown-menu .aa-suggestion {
    padding: 0.3125rem 0.625rem; }

@media screen and (max-width: 63.9375em) {
  .jobs-search-sec .search-bar.jobsOnly .algolia-autocomplete .aa-dropdown-menu {
    top: 64% !important; } }

/** End Search box **/
@media screen and (min-width: 64em) {
  .candidate-home .search-bar .algolia-autocomplete .aa-dropdown-menu {
    margin-top: 15px;
    width: 45em;
    left: 57% !important; } }

/** Tag hack for properties*/
.property-for-rent .search-bar .search-selection .tag,
.property-for-sale .search-bar .search-selection .tag {
  width: auto; }
  .property-for-rent .search-bar .search-selection .tag span,
  .property-for-sale .search-bar .search-selection .tag span {
    text-transform: capitalize; }

.search-bar .search-selection .tag {
  width: auto; }

.search, .search-410,
.my-ads-action-bar {
  /* list view */
  /* list view end */ }
  @media screen and (min-width: 64em) {
    .search, .search-410,
    .my-ads-action-bar {
      max-width: 81.25rem !important; } }
  @media screen and (min-width: 90em) {
    .search, .search-410,
    .my-ads-action-bar {
      max-width: 85.9375rem !important; } }
  .search .content, .search-410 .content,
  .search .badges,
  .search-410 .badges,
  .my-ads-action-bar .content,
  .my-ads-action-bar .badges {
    width: 100%;
    float: left;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    margin-top: 0; }
    @media screen and (min-width: 48em) {
      .search .content, .search-410 .content,
      .search .badges,
      .search-410 .badges,
      .my-ads-action-bar .content,
      .my-ads-action-bar .badges {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } }
    .search .content:last-child:not(:first-child), .search-410 .content:last-child:not(:first-child),
    .search .badges:last-child:not(:first-child),
    .search-410 .badges:last-child:not(:first-child),
    .my-ads-action-bar .content:last-child:not(:first-child),
    .my-ads-action-bar .badges:last-child:not(:first-child) {
      float: right; }
  .search .icon-badge:before, .search-410 .icon-badge:before,
  .my-ads-action-bar .icon-badge:before {
    margin-right: 0.1875rem !important; }
  .search .icon-badge span, .search-410 .icon-badge span,
  .my-ads-action-bar .icon-badge span {
    font-size: 0.6875rem; }
  .search .btn-search-filter, .search-410 .btn-search-filter,
  .search .btn-toggle-view,
  .search-410 .btn-toggle-view,
  .search .select-sort-by,
  .search-410 .select-sort-by,
  .my-ads-action-bar .btn-search-filter,
  .my-ads-action-bar .btn-toggle-view,
  .my-ads-action-bar .select-sort-by {
    border: 1px solid #00AEEF;
    border-radius: 2px; }
  
  .search .btn-toggle-view,
  .search-410 .btn-toggle-view,
  .my-ads-action-bar .btn-toggle-view {
    padding: 0.1875rem 0.625rem;
    margin-right: 0.625rem;
    height: 1.75rem;
    line-height: 0; }
    @media screen and (min-width: 64em) {
      
      .search .btn-toggle-view,
      .search-410 .btn-toggle-view,
      .my-ads-action-bar .btn-toggle-view {
        margin-right: 0; } }
    @media screen and (max-width: 63.9375em) {
      
      .search .btn-toggle-view,
      .search-410 .btn-toggle-view,
      .my-ads-action-bar .btn-toggle-view {
        font-size: 1rem;
        height: 2.5rem; } }
    @media screen and (max-width: 47.9375em) {
      
      .search .btn-toggle-view,
      .search-410 .btn-toggle-view,
      .my-ads-action-bar .btn-toggle-view {
        display: none; } }
    @media screen and (max-width: 63.9375em) {
      .search .btn-toggle-view .icon-toggle, .search-410 .btn-toggle-view .icon-toggle,
      .my-ads-action-bar .btn-toggle-view .icon-toggle {
        font-size: 1rem;
        height: 2.5rem; } }
    .search .btn-toggle-view .icon-toggle:before, .search-410 .btn-toggle-view .icon-toggle:before,
    .my-ads-action-bar .btn-toggle-view .icon-toggle:before {
      font-size: 0.8125rem;
      vertical-align: middle;
      color: #8E8E93; }
      @media screen and (max-width: 63.9375em) {
        .search .btn-toggle-view .icon-toggle:before, .search-410 .btn-toggle-view .icon-toggle:before,
        .my-ads-action-bar .btn-toggle-view .icon-toggle:before {
          font-size: 1rem; } }
    @media screen and (min-width: 64em) {
      .search .btn-toggle-view .icon-toggle:before, .search-410 .btn-toggle-view .icon-toggle:before,
      .my-ads-action-bar .btn-toggle-view .icon-toggle:before {
        font-size: 0.8125rem; } }
  .search .btn-search-filter, .search-410 .btn-search-filter,
  .my-ads-action-bar .btn-search-filter {
    padding: 0.25rem 1rem;
    font-size: 0.8125rem;
    height: 1.75rem;
    font-weight: 700;
    text-transform: uppercase; }
    @media screen and (max-width: 63.9375em) {
      .search .btn-search-filter, .search-410 .btn-search-filter,
      .my-ads-action-bar .btn-search-filter {
        font-size: 1rem;
        height: 2.5rem;
        padding: 0.25rem 0.625rem; } }

@media screen and (min-width: 64em) and (orientation: landscape) {
  .search .btn-search-filter, .search-410 .btn-search-filter,
  .my-ads-action-bar .btn-search-filter {
    display: inline-block;
    min-width: 1.875rem !important;
    margin-left: 0.5rem; } }
    @media screen and (min-width: 64em) {
      .search .btn-search-filter, .search-410 .btn-search-filter,
      .my-ads-action-bar .btn-search-filter {
        display: none; } }

@media screen and (min-width: 1024px) and (max-width: 1030px) and (orientation: landscape) {
  .search .btn-search-filter, .search-410 .btn-search-filter,
  .my-ads-action-bar .btn-search-filter {
    /*display: inline-block!important;*/ } }
  .search .btn-fav, .search-410 .btn-fav, .search .jobs-card-wrap .jobs-card a .seeker-btn-fav, .jobs-card-wrap .jobs-card a .search .seeker-btn-fav, .search-410 .jobs-card-wrap .jobs-card a .seeker-btn-fav, .jobs-card-wrap .jobs-card a .search-410 .seeker-btn-fav,
  .my-ads-action-bar .btn-fav,
  .my-ads-action-bar .jobs-card-wrap .jobs-card a .seeker-btn-fav,
  .jobs-card-wrap .jobs-card a .my-ads-action-bar .seeker-btn-fav {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0.9375rem; }
    .search .btn-fav:before, .search-410 .btn-fav:before, .search .jobs-card-wrap .jobs-card a .seeker-btn-fav:before, .jobs-card-wrap .jobs-card a .search .seeker-btn-fav:before, .search-410 .jobs-card-wrap .jobs-card a .seeker-btn-fav:before, .jobs-card-wrap .jobs-card a .search-410 .seeker-btn-fav:before,
    .my-ads-action-bar .btn-fav:before,
    .my-ads-action-bar .jobs-card-wrap .jobs-card a .seeker-btn-fav:before,
    .jobs-card-wrap .jobs-card a .my-ads-action-bar .seeker-btn-fav:before {
      font-size: 1.625rem;
      color: #60cdf6; }
  
  .search .select-sort-by,
  .search-410 .select-sort-by,
  .my-ads-action-bar .select-sort-by {
    width: 10.3125rem;
    height: 1.75rem;
    padding: 0 1.375rem 0 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    background: none;
    outline: none;
    outline: none;
    background: url("/img/generic/arrowdwn.png") no-repeat right; }
    .search .select-sort-by:only-child, .search-410 .select-sort-by:only-child,
    .my-ads-action-bar .select-sort-by:only-child {
      margin-right: 0; }
    @media screen and (max-width: 63.9375em) {
      
      .search .select-sort-by,
      .search-410 .select-sort-by,
      .my-ads-action-bar .select-sort-by {
        float: left !important;
        font-size: 1rem;
        height: 2.5rem;
        margin-right: 0.25rem; } }
  @media screen and (min-width: 64em) {
    
    .search .select-sort-by,
    .search-410 .select-sort-by,
    .my-ads-action-bar .select-sort-by {
      min-width: 12.1875rem; }
    .search .btn-search-filter, .search-410 .btn-search-filter,
    .my-ads-action-bar .btn-search-filter {
      height: 2.375rem;
      min-width: 8.75rem; } }
  .search .search-result, .search-410 .search-result,
  .my-ads-action-bar .search-result {
    min-height: 20rem; }
    @media screen and (min-width: 64em) {
      .search .search-result, .search-410 .search-result,
      .my-ads-action-bar .search-result {
        min-height: 60vh; } }
    .search .search-result.large-up-3 .card-wrap, .search-410 .search-result.large-up-3 .card-wrap,
    .my-ads-action-bar .search-result.large-up-3 .card-wrap {
      padding-left: 1.25rem;
      padding-right: 1.25rem; }
      @media screen and (max-width: 74.9375em) {
        .search .search-result.large-up-3 .card-wrap, .search-410 .search-result.large-up-3 .card-wrap,
        .my-ads-action-bar .search-result.large-up-3 .card-wrap {
          padding-left: 0.625rem;
          padding-right: 0.625rem; } }
  .search .badges-with-logo, .search-410 .badges-with-logo,
  .my-ads-action-bar .badges-with-logo {
    margin-top: 1.5625rem; }
  .search .dealers-info, .search-410 .dealers-info,
  .my-ads-action-bar .dealers-info {
    box-sizing: border-box;
    width: 100%;
    display: inline-block;
    margin: 0px 0px 0.9375rem 0px;
    cursor: pointer; }
    .search .dealers-info .dealer-logo, .search-410 .dealers-info .dealer-logo,
    .my-ads-action-bar .dealers-info .dealer-logo {
      float: left; }
    .search .dealers-info .descpn, .search-410 .dealers-info .descpn,
    .my-ads-action-bar .dealers-info .descpn {
      float: left;
      font-size: 1rem;
      font-weight: 300;
      line-height: 1rem;
      margin: 1.375rem 0px 0px 0px; }
  .search.no-results .search-stats, .no-results.search-410 .search-stats,
  .my-ads-action-bar.no-results .search-stats {
    display: none; }
  .search .msg-no-results, .search-410 .msg-no-results,
  .my-ads-action-bar .msg-no-results {
    min-height: 12.5rem;
    padding: 0 0.9375rem;
    line-height: normal;
    font-size: 1.125rem;
    margin-top: 4.375rem; }
    .search .msg-no-results p, .search-410 .msg-no-results p,
    .my-ads-action-bar .msg-no-results p {
      font-size: 1.5rem;
      line-height: 1.3;
      margin-top: 1.875rem;
      color: #000; }
      .search .msg-no-results p .highlight, .search-410 .msg-no-results p .highlight,
      .my-ads-action-bar .msg-no-results p .highlight {
        font-weight: 500;
        display: inline-block; }
      .search .msg-no-results p strong, .search-410 .msg-no-results p strong,
      .my-ads-action-bar .msg-no-results p strong {
        font-weight: 500; }
    .search .msg-no-results img, .search-410 .msg-no-results img,
    .my-ads-action-bar .msg-no-results img {
      margin-top: 1.25rem;
      width: 7.5rem; }
    .search .msg-no-results .btn-filter-close, .search-410 .msg-no-results .btn-filter-close,
    .my-ads-action-bar .msg-no-results .btn-filter-close {
      color: #333333;
      border-color: #ebebeb;
      border-radius: 3px;
      color: #3fa5d7;
      padding: 0.375rem 0.9375rem;
      margin: 1.5625rem auto 0;
      display: block;
      width: 12.5rem; }
    .search .msg-no-results h4, .search-410 .msg-no-results h4,
    .my-ads-action-bar .msg-no-results h4 {
      font-size: 16px; }
    .search .msg-no-results hr, .search-410 .msg-no-results hr,
    .my-ads-action-bar .msg-no-results hr {
      color: #ddd; }
  .search .no-search-box, .search-410 .no-search-box,
  .my-ads-action-bar .no-search-box {
    width: 70%;
    color: #333333;
    padding: 25px;
    margin: auto;
    display: inline-block;
    margin: 40px 0 40px 0;
    font-size: 13px;
    color: #333;
    background: #EFFAFE; }
    .search .no-search-box .cnt-text, .search-410 .no-search-box .cnt-text,
    .my-ads-action-bar .no-search-box .cnt-text {
      width: 50%;
      float: left;
      padding: 25px; }
      .search .no-search-box .cnt-text p, .search-410 .no-search-box .cnt-text p,
      .my-ads-action-bar .no-search-box .cnt-text p {
        font-size: 13px;
        margin: 0;
        line-height: 20px; }
      .search .no-search-box .cnt-text:first-child, .search-410 .no-search-box .cnt-text:first-child,
      .my-ads-action-bar .no-search-box .cnt-text:first-child {
        border-right: 1px solid #ddd; }
    .search .no-search-box .cnt-full, .search-410 .no-search-box .cnt-full,
    .my-ads-action-bar .no-search-box .cnt-full {
      width: 100%;
      display: inline-block;
      padding: 0 0 0 30px; }
    .search .no-search-box h4, .search-410 .no-search-box h4,
    .my-ads-action-bar .no-search-box h4 {
      font-size: 18px;
      color: #333333;
      font-weight: 600;
      margin: 0 0 10px 0; }
      .search .no-search-box h4.icon-light, .search-410 .no-search-box h4.icon-light,
      .my-ads-action-bar .no-search-box h4.icon-light {
        background: url("../img/generic/light.png") right 0 no-repeat;
        display: inline-block;
        padding: 0 35px 0 0; }
    .search .no-search-box .bold-blue, .search-410 .no-search-box .bold-blue,
    .my-ads-action-bar .no-search-box .bold-blue {
      font-weight: 700;
      color: #60cdf6; }
    .search .no-search-box ul, .search-410 .no-search-box ul,
    .my-ads-action-bar .no-search-box ul {
      margin: 0; }
      .search .no-search-box ul li, .search-410 .no-search-box ul li,
      .my-ads-action-bar .no-search-box ul li {
        list-style-type: none; }
    @media screen and (max-width: 63.9375em) {
      .search .no-search-box, .search-410 .no-search-box,
      .my-ads-action-bar .no-search-box {
        width: 90%; }
        .search .no-search-box .cnt-text, .search-410 .no-search-box .cnt-text,
        .my-ads-action-bar .no-search-box .cnt-text {
          width: 100%;
          border: 0px !important; }
        .search .no-search-box ul li, .search-410 .no-search-box ul li,
        .my-ads-action-bar .no-search-box ul li {
          padding-left: 0; } }
  .search .no-result-cards, .search-410 .no-result-cards,
  .my-ads-action-bar .no-result-cards {
    padding: 10px 0 0 0; }
    .search .no-result-cards .autos-card-wrap, .search-410 .no-result-cards .autos-card-wrap,
    .my-ads-action-bar .no-result-cards .autos-card-wrap {
      min-height: 0; }
    .search .no-result-cards h4, .search-410 .no-result-cards h4,
    .my-ads-action-bar .no-result-cards h4 {
      padding: 0 0 10px 20px; }
    .search .no-result-cards .card, .search-410 .no-result-cards .card,
    .my-ads-action-bar .no-result-cards .card {
      min-height: 0; }
      .search .no-result-cards .card img, .search-410 .no-result-cards .card img,
      .my-ads-action-bar .no-result-cards .card img {
        margin: 0; }
  .search .search-stats, .search-410 .search-stats,
  .my-ads-action-bar .search-stats {
    padding: 2.1875rem 0.9375rem 2.1875rem 0.9375rem;
    color: #000;
    margin: 0;
    vertical-align: middle;
    font-weight: 600;
    font-size: 0.875rem; }
    @media screen and (max-width: 63.9375em) {
      .search .search-stats, .search-410 .search-stats,
      .my-ads-action-bar .search-stats {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem; } }
    .search .search-stats .result-count, .search-410 .search-stats .result-count,
    .my-ads-action-bar .search-stats .result-count {
      margin: 0.1875rem 0 0.1875rem 0;
      text-align: center;
      font-size: 0.875rem; }
      @media screen and (min-width: 48em) {
        .search .search-stats .result-count, .search-410 .search-stats .result-count,
        .my-ads-action-bar .search-stats .result-count {
          text-align: left; } }
      .search .search-stats .result-count h1.seo-head, .search-410 .search-stats .result-count h1.seo-head,
      .my-ads-action-bar .search-stats .result-count h1.seo-head {
        font-size: 0.75rem; }
    .search .search-stats #search-count, .search-410 .search-stats #search-count,
    .my-ads-action-bar .search-stats #search-count {
      font-weight: 300;
      color: #000;
      font-size: 0.8125rem; }
      .search .search-stats #search-count .highlightTime, .search-410 .search-stats #search-count .highlightTime,
      .my-ads-action-bar .search-stats #search-count .highlightTime {
        color: #8e8e93; }
    .search .search-stats .dealers-info, .search-410 .search-stats .dealers-info,
    .my-ads-action-bar .search-stats .dealers-info {
      min-height: 6.25rem;
      background: #f4f4f4;
      border-radius: 0.25rem;
      padding: 0.5rem 0; }
      .search .search-stats .dealers-info .dealer-logo, .search-410 .search-stats .dealers-info .dealer-logo,
      .my-ads-action-bar .search-stats .dealers-info .dealer-logo {
        width: 100%;
        margin-right: 0.3125rem;
        overflow: hidden; }
        @media screen and (min-width: 48em) {
          .search .search-stats .dealers-info .dealer-logo, .search-410 .search-stats .dealers-info .dealer-logo,
          .my-ads-action-bar .search-stats .dealers-info .dealer-logo {
            width: 15%; } }
        .search .search-stats .dealers-info .dealer-logo .logo-container, .search-410 .search-stats .dealers-info .dealer-logo .logo-container,
        .my-ads-action-bar .search-stats .dealers-info .dealer-logo .logo-container {
          width: 100%;
          min-height: 6.25rem; }
      .search .search-stats .dealers-info .descpn, .search-410 .search-stats .dealers-info .descpn,
      .my-ads-action-bar .search-stats .dealers-info .descpn {
        margin: 0;
        width: 80%; }
        .search .search-stats .dealers-info .descpn .row, .search-410 .search-stats .dealers-info .descpn .row,
        .my-ads-action-bar .search-stats .dealers-info .descpn .row {
          background: transparent; }
          .search .search-stats .dealers-info .descpn .row .column:last-child:not(:first-child), .search-410 .search-stats .dealers-info .descpn .row .column:last-child:not(:first-child), .search .search-stats .dealers-info .descpn .row .columns:last-child:not(:first-child), .search-410 .search-stats .dealers-info .descpn .row .columns:last-child:not(:first-child),
          .my-ads-action-bar .search-stats .dealers-info .descpn .row .column:last-child:not(:first-child),
          .my-ads-action-bar .search-stats .dealers-info .descpn .row .columns:last-child:not(:first-child) {
            float: left; }
        .search .search-stats .dealers-info .descpn p, .search-410 .search-stats .dealers-info .descpn p,
        .my-ads-action-bar .search-stats .dealers-info .descpn p {
          margin: 0 0 5px;
          font-size: 0.875rem; }
        .search .search-stats .dealers-info .descpn h3, .search-410 .search-stats .dealers-info .descpn h3,
        .my-ads-action-bar .search-stats .dealers-info .descpn h3 {
          font-weight: 400;
          font-size: 1.125rem;
          line-height: 1.25rem; }
      @media screen and (max-width: 63.9375em) {
        .search .search-stats .dealers-info, .search-410 .search-stats .dealers-info,
        .my-ads-action-bar .search-stats .dealers-info {
          padding: 0.9375rem; }
          .search .search-stats .dealers-info .dealer-logo, .search-410 .search-stats .dealers-info .dealer-logo,
          .my-ads-action-bar .search-stats .dealers-info .dealer-logo {
            position: static;
            margin: 0px 0px 1.25rem 0px; } }
    .search .search-stats .btn-save-search, .search-410 .search-stats .btn-save-search,
    .my-ads-action-bar .search-stats .btn-save-search {
      cursor: pointer;
      display: block;
      margin-bottom: 1.25rem;
      font-weight: 400; }
      @media screen and (min-width: 48em) {
        .search .search-stats .btn-save-search, .search-410 .search-stats .btn-save-search,
        .my-ads-action-bar .search-stats .btn-save-search {
          display: inline-block;
          margin-bottom: 0; } }
      .search .search-stats .btn-save-search:hover, .search-410 .search-stats .btn-save-search:hover,
      .my-ads-action-bar .search-stats .btn-save-search:hover {
        opacity: 1; }
      .search .search-stats .btn-save-search .ico, .search-410 .search-stats .btn-save-search .ico,
      .my-ads-action-bar .search-stats .btn-save-search .ico {
        vertical-align: middle; }
        @media screen and (min-width: 48em) {
          .search .search-stats .btn-save-search .ico, .search-410 .search-stats .btn-save-search .ico,
          .my-ads-action-bar .search-stats .btn-save-search .ico {
            vertical-align: middle;
            border-left: 1px solid #000;
            font-size: 0.8125rem;
            line-height: 1;
            padding-right: 0.9375rem;
            margin-left: 0.9375rem;
            height: 0.8125rem;
            display: inline-block; } }
        .search .search-stats .btn-save-search .ico:before, .search-410 .search-stats .btn-save-search .ico:before,
        .my-ads-action-bar .search-stats .btn-save-search .ico:before {
          color: #453269; }
        @media screen and (min-width: 48em) {
          .search .search-stats .btn-save-search .ico:after, .search-410 .search-stats .btn-save-search .ico:after,
          .my-ads-action-bar .search-stats .btn-save-search .ico:after {
            font-size: 1.3rem; } }
      .search .search-stats .btn-save-search .text, .search-410 .search-stats .btn-save-search .text,
      .my-ads-action-bar .search-stats .btn-save-search .text {
        text-transform: uppercase;
        font-size: 0.8125rem;
        color: #7f3f98;
        font-weight: 600; }
    .search .search-stats .sort-by-pannel, .search-410 .search-stats .sort-by-pannel,
    .my-ads-action-bar .search-stats .sort-by-pannel {
      text-align: right; }
    .search .search-stats .sort-by-lbl, .search-410 .search-stats .sort-by-lbl,
    .my-ads-action-bar .search-stats .sort-by-lbl {
      padding: 3px 6px 0 0;
      display: inline-block; }
  .search .card-wrap, .search-410 .card-wrap,
  .my-ads-action-bar .card-wrap {
    margin-bottom: 2.5rem;
    clear: none !important; }
  .search .advert-dfp, .search-410 .advert-dfp,
  .my-ads-action-bar .advert-dfp {
    width: 100%;
    text-align: center;
    display: inline-block;
    height: 100% !important; }
    .search .advert-dfp.banner, .search-410 .advert-dfp.banner,
    .my-ads-action-bar .advert-dfp.banner {
      margin: 0 0 2.5rem 0px;
      height: auto !important; }
    .search .advert-dfp.mob.mpu, .search-410 .advert-dfp.mob.mpu,
    .my-ads-action-bar .advert-dfp.mob.mpu {
      padding: 1.25rem 0px 1.25rem;
      box-sizing: content-box;
      border-top: 1px solid #ceced2;
      border-bottom: 1px solid #ceced2;
      margin: 0.9375rem 0px 1.5625rem; }
  .search .advert-wrap, .search-410 .advert-wrap,
  .my-ads-action-bar .advert-wrap {
    display: inline-block;
    text-align: center;
    width: 100%; }
    .search .advert-wrap .advert-dfp, .search-410 .advert-wrap .advert-dfp,
    .my-ads-action-bar .advert-wrap .advert-dfp {
      display: inline-block;
      width: 18.75rem;
      margin: 0 1.25rem 0.9375rem;
      height: 100% !important; }
  .search .search-result > div:not(.msg-no-results):first-child, .search-410 .search-result > div:not(.msg-no-results):first-child,
  .my-ads-action-bar .search-result > div:not(.msg-no-results):first-child {
    margin-top: 0; }
  .search .card, .search-410 .card,
  .my-ads-action-bar .card {
    overflow: hidden;
    margin: 0;
    border-radius: 2px;
    position: relative;
    border: 1px solid #ceced2; }
    @media screen and (max-width: 63.9375em) {
      .search .card, .search-410 .card,
      .my-ads-action-bar .card {
        padding-bottom: 3.125rem; } }
    .search .card:first-child, .search-410 .card:first-child,
    .my-ads-action-bar .card:first-child {
      margin-top: 0; }
    .search .card.native-ad, .search-410 .card.native-ad,
    .my-ads-action-bar .card.native-ad {
      border: 0;
      padding-bottom: 0; }
    @media screen and (min-width: 64em) {
      .search .card, .search-410 .card,
      .my-ads-action-bar .card {
        padding-left: 0;
        padding-right: 0;
        min-height: 28.125rem;
        max-height: 28.125rem; }
        .search .card .hit-wrap, .search-410 .card .hit-wrap,
        .my-ads-action-bar .card .hit-wrap {
          min-height: 21.5625rem; } }
    .search .card .title, .search-410 .card .title,
    .my-ads-action-bar .card .title {
      line-height: 1.5rem;
      font-size: 1.125rem;
      font-weight: 300;
      color: #000; }
      @media screen and (min-width: 64em) {
        .search .card .title, .search-410 .card .title,
        .my-ads-action-bar .card .title {
          font-size: 1.0625rem; } }
    .search .card .btn-fav, .search-410 .card .btn-fav, .search .card .jobs-card-wrap .jobs-card a .seeker-btn-fav, .jobs-card-wrap .jobs-card a .search .card .seeker-btn-fav, .search-410 .card .jobs-card-wrap .jobs-card a .seeker-btn-fav, .jobs-card-wrap .jobs-card a .search-410 .card .seeker-btn-fav,
    .my-ads-action-bar .card .btn-fav,
    .my-ads-action-bar .card .jobs-card-wrap .jobs-card a .seeker-btn-fav,
    .jobs-card-wrap .jobs-card a .my-ads-action-bar .card .seeker-btn-fav {
      position: absolute;
      z-index: 2; }
    .search .card .content, .search-410 .card .content,
    .my-ads-action-bar .card .content {
      padding-top: 0.625rem;
      padding-bottom: 0.625rem;
      line-height: 1.125rem;
      font-weight: 300;
      border-radius: 0 0 2px 2px; }
      @media screen and (min-width: 64em) {
        .search .card .content, .search-410 .card .content,
        .my-ads-action-bar .card .content {
          padding: 0.75rem;
          min-height: 8.75rem;
          max-height: 8.75rem;
          overflow: hidden; } }
    .search .card .badge-row, .search-410 .card .badge-row,
    .my-ads-action-bar .card .badge-row {
      padding: 0 0.75rem; }
    .search .card .mileage:before, .search-410 .card .mileage:before,
    .my-ads-action-bar .card .mileage:before {
      content: "\2022";
      font-size: 1.375rem;
      line-height: 1.3125rem;
      vertical-align: bottom;
      color: #8e8e93;
      margin: 0 0.3125rem; }
    .search .card .dot:before, .search-410 .card .dot:before,
    .my-ads-action-bar .card .dot:before {
      content: "\2022";
      font-size: 1.375rem;
      line-height: 1.3125rem;
      vertical-align: bottom;
      color: #8e8e93;
      margin: 0 0.3125rem; }
    .search .card .location, .search-410 .card .location,
    .my-ads-action-bar .card .location {
      color: #8e8e93;
      font-size: 0.875rem;
      line-height: 1.3125rem; }
      @media screen and (max-width: 63.9375em) {
        .search .card .location, .search-410 .card .location,
        .my-ads-action-bar .card .location {
          font-size: 0.75rem; } }
    .search .card p, .search-410 .card p,
    .my-ads-action-bar .card p {
      margin: 0; }
    .search .card .price, .search-410 .card .price,
    .my-ads-action-bar .card .price {
      padding: 0.125rem 0;
      font-size: 1.5rem;
      font-weight: 600;
      color: #000; }
      @media screen and (min-width: 64em) {
        .search .card .price, .search-410 .card .price,
        .my-ads-action-bar .card .price {
          font-size: 1.1875rem; } }
    .search .card .make, .search-410 .card .make,
    .my-ads-action-bar .card .make {
      font-size: 0.875rem;
      color: #8e8e93; }
      @media screen and (max-width: 63.9375em) {
        .search .card .make, .search-410 .card .make,
        .my-ads-action-bar .card .make {
          font-size: 0.75rem;
          font-weight: 600;
          color: #000; } }
    .search .card a, .search-410 .card a,
    .my-ads-action-bar .card a {
      transition: color 0.3s ease;
      text-decoration: none;
      color: #8e8e93;
      display: block;
      overflow: hidden; }
    .search .card .image, .search-410 .card .image,
    .my-ads-action-bar .card .image {
      min-height: 10.9375rem;
      background: #efeef4;
      position: relative; }
      .search .card .image img, .search-410 .card .image img,
      .my-ads-action-bar .card .image img {
        border-radius: 2px 2px 0 0;
        width: 100%; }
    .search .card .title, .search-410 .card .title,
    .my-ads-action-bar .card .title {
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap; }
      .search .card .title.top, .search-410 .card .title.top,
      .my-ads-action-bar .card .title.top {
        display: none; }
    .search .card .actions, .search-410 .card .actions,
    .my-ads-action-bar .card .actions {
      position: absolute;
      bottom: 0;
      width: 100%; }
      .search .card .actions.contacts .btn-contact, .search-410 .card .actions.contacts .btn-contact,
      .my-ads-action-bar .card .actions.contacts .btn-contact {
        padding: 0.625rem 0;
        color: white; }
        .search .card .actions.contacts .btn-contact i:before, .search-410 .card .actions.contacts .btn-contact i:before,
        .my-ads-action-bar .card .actions.contacts .btn-contact i:before {
          font-size: 1.375rem;
          color: white; }
      .search .card .actions.contacts .button-sms, .search-410 .card .actions.contacts .button-sms,
      .my-ads-action-bar .card .actions.contacts .button-sms {
        background: #3fa5d7;
        border-right: 0; }
        .search .card .actions.contacts .button-sms:hover, .search-410 .card .actions.contacts .button-sms:hover,
        .my-ads-action-bar .card .actions.contacts .button-sms:hover {
          background: #339ccf; }
        .search .card .actions.contacts .button-sms i:before, .search-410 .card .actions.contacts .button-sms i:before,
        .my-ads-action-bar .card .actions.contacts .button-sms i:before {
          font-size: 1.875rem !important;
          line-height: 1.5rem;
          vertical-align: middle; }
      .search .card .actions.contacts .button-email, .search-410 .card .actions.contacts .button-email,
      .my-ads-action-bar .card .actions.contacts .button-email {
        background: #62ccf5;
        border-right: 1px white solid; }
        .search .card .actions.contacts .button-email:hover, .search-410 .card .actions.contacts .button-email:hover,
        .my-ads-action-bar .card .actions.contacts .button-email:hover {
          background: #4fb7e9; }
      .search .card .actions.contacts .button-call, .search-410 .card .actions.contacts .button-call,
      .my-ads-action-bar .card .actions.contacts .button-call {
        background: #3fa5d7;
        border-left: 0; }
        .search .card .actions.contacts .button-call:hover, .search-410 .card .actions.contacts .button-call:hover,
        .my-ads-action-bar .card .actions.contacts .button-call:hover {
          background: #339ccf; }
      .search .card .actions.contacts .button-chat, .search-410 .card .actions.contacts .button-chat,
      .my-ads-action-bar .card .actions.contacts .button-chat {
        background: #62ccf5;
        line-height: 1.3125rem; }
        .search .card .actions.contacts .button-chat:hover, .search-410 .card .actions.contacts .button-chat:hover,
        .my-ads-action-bar .card .actions.contacts .button-chat:hover {
          background: #4fb7e9; }
        .search .card .actions.contacts .button-chat i:before, .search-410 .card .actions.contacts .button-chat i:before,
        .my-ads-action-bar .card .actions.contacts .button-chat i:before {
          font-size: 1.875rem !important;
          line-height: 1.5rem;
          vertical-align: middle; }
      .search .card .actions .show-number, .search-410 .card .actions .show-number,
      .my-ads-action-bar .card .actions .show-number {
        visibility: hidden; }
      @media screen and (min-width: 64em) {
        .search .card .actions, .search-410 .card .actions,
        .my-ads-action-bar .card .actions {
          position: absolute;
          bottom: 0;
          width: 100%; }
          .search .card .actions .show-number, .search-410 .card .actions .show-number,
          .my-ads-action-bar .card .actions .show-number {
            position: absolute;
            background: #00AEEF;
            height: 100%;
            width: 0;
            visibility: hidden;
            text-align: left;
            line-height: 2.5rem;
            transition-duration: 0.2s;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            left: 0;
            box-sizing: border-box;
            border: 1px solid #fff; }
            .search .card .actions .show-number.show, .search-410 .card .actions .show-number.show,
            .my-ads-action-bar .card .actions .show-number.show {
              width: 100%;
              visibility: visible; }
            .search .card .actions .show-number .number, .search-410 .card .actions .show-number .number,
            .my-ads-action-bar .card .actions .show-number .number {
              color: white;
              font-size: 1.125rem;
              line-height: 2.875rem;
              font-weight: 600;
              padding-left: 18%; }
              .search .card .actions .show-number .number:before, .search-410 .card .actions .show-number .number:before,
              .my-ads-action-bar .card .actions .show-number .number:before {
                color: white;
                margin-right: 0.3125rem;
                font-size: 1.375rem;
                position: absolute;
                top: 50%;
                left: 5%;
                transform: translateY(-50%); }
            .search .card .actions .show-number .btn-number-close, .search-410 .card .actions .show-number .btn-number-close,
            .my-ads-action-bar .card .actions .show-number .btn-number-close {
              position: absolute;
              background-color: #3fa5d7;
              height: 100%;
              width: 2.5rem;
              right: 0;
              top: 0;
              text-align: center;
              cursor: pointer;
              line-height: 2.8125rem; }
              .search .card .actions .show-number .btn-number-close:hover, .search-410 .card .actions .show-number .btn-number-close:hover,
              .my-ads-action-bar .card .actions .show-number .btn-number-close:hover {
                background-color: #2991c4; }
              .search .card .actions .show-number .btn-number-close:before, .search-410 .card .actions .show-number .btn-number-close:before,
              .my-ads-action-bar .card .actions .show-number .btn-number-close:before {
                color: white;
                font-size: 0.875rem;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%); } }
    .search .card .button-group, .search-410 .card .button-group,
    .my-ads-action-bar .card .button-group {
      margin-bottom: 0; }
    .search .card .button, .search-410 .card .button,
    .my-ads-action-bar .card .button {
      border-right: 1px solid #ceced2;
      border-top: 1px solid #ceced2;
      border-collapse: collapse;
      background-color: white;
      color: #00AEEF;
      border-radius: 0;
      font-weight: 600;
      font-size: 0.875rem; }
      @media screen and (min-width: 64em) {
        .search .card .button, .search-410 .card .button,
        .my-ads-action-bar .card .button {
          font-size: 0.8125rem; } }
      .search .card .button:last-child, .search-410 .card .button:last-child,
      .my-ads-action-bar .card .button:last-child {
        border-right: none; }
      .search .card .button:hover, .search-410 .card .button:hover,
      .my-ads-action-bar .card .button:hover {
        background: #00AEEF;
        color: #fff; }
    .search .card .dealers-info, .search-410 .card .dealers-info,
    .my-ads-action-bar .card .dealers-info {
      margin: 0;
      padding: 0;
      width: calc(100% - 14px); }
      .search .card .dealers-info .dealer-logo, .search-410 .card .dealers-info .dealer-logo,
      .my-ads-action-bar .card .dealers-info .dealer-logo {
        width: 3.75rem;
        height: 2.3125rem;
        margin-right: 0.375rem; }
        .search .card .dealers-info .dealer-logo img, .search-410 .card .dealers-info .dealer-logo img,
        .my-ads-action-bar .card .dealers-info .dealer-logo img {
          width: 100%; }
      .search .card .dealers-info .descpn, .search-410 .card .dealers-info .descpn,
      .my-ads-action-bar .card .dealers-info .descpn {
        max-width: 9.0625rem;
        margin: 0; }
        .search .card .dealers-info .descpn p, .search-410 .card .dealers-info .descpn p,
        .my-ads-action-bar .card .dealers-info .descpn p {
          margin: 0;
          height: 1.875rem;
          font-size: 0.875rem;
          line-height: 0.9375rem; }
        .search .card .dealers-info .descpn span, .search-410 .card .dealers-info .descpn span,
        .my-ads-action-bar .card .dealers-info .descpn span {
          color: #00AEEF;
          font-size: 0.6875rem; }
  .search .list .card, .search-410 .list .card,
  .my-ads-action-bar .list .card {
    border-radius: 0 !important; }
    .search .list .card .title, .search-410 .list .card .title,
    .my-ads-action-bar .list .card .title {
      display: none; }
      .search .list .card .title.top, .search-410 .list .card .title.top,
      .my-ads-action-bar .list .card .title.top {
        display: block;
        padding-top: 0.625rem; }
    .search .list .card .content, .search-410 .list .card .content,
    .my-ads-action-bar .list .card .content {
      min-height: 5.3125rem; }
    .search .list .card .gt-badges, .search-410 .list .card .gt-badges,
    .my-ads-action-bar .list .card .gt-badges {
      padding-left: 0.9375rem; }
      .search .list .card .gt-badges div, .search-410 .list .card .gt-badges div,
      .my-ads-action-bar .list .card .gt-badges div {
        margin-right: 0.3125rem; }
    .search .list .card > a, .search-410 .list .card > a,
    .my-ads-action-bar .list .card > a {
      width: 100%;
      float: left;
      padding-left: 0.625rem;
      padding-right: 0.625rem;
      padding-bottom: 0.625rem; }
      @media screen and (min-width: 48em) {
        .search .list .card > a, .search-410 .list .card > a,
        .my-ads-action-bar .list .card > a {
          padding-left: 0.9375rem;
          padding-right: 0.9375rem; } }
      .search .list .card > a:last-child:not(:first-child), .search-410 .list .card > a:last-child:not(:first-child),
      .my-ads-action-bar .list .card > a:last-child:not(:first-child) {
        float: right; }
    .search .list .card .badges, .search-410 .list .card .badges,
    .my-ads-action-bar .list .card .badges {
      padding: 0.625rem 0 0 0; }
      @media screen and (max-width: 63.9375em) {
        .search .list .card .badges, .search-410 .list .card .badges,
        .my-ads-action-bar .list .card .badges {
          padding: 0.625rem 0 0 0; }
          .search .list .card .badges .icon-badge:before, .search-410 .list .card .badges .icon-badge:before,
          .my-ads-action-bar .list .card .badges .icon-badge:before {
            font-size: 1.625rem; } }
    .search .list .card .price, .search-410 .list .card .price,
    .my-ads-action-bar .list .card .price {
      padding-top: 0; }
      @media screen and (max-width: 63.9375em) {
        .search .list .card .price, .search-410 .list .card .price,
        .my-ads-action-bar .list .card .price {
          line-height: 1.5rem; } }
    .search .list .card .hit-wrap, .search-410 .list .card .hit-wrap,
    .my-ads-action-bar .list .card .hit-wrap {
      min-height: 0;
      display: block; }
    .search .list .card .content, .search-410 .list .card .content,
    .my-ads-action-bar .list .card .content {
      padding-left: 0.625rem;
      padding-right: 0;
      padding-bottom: 0;
      width: 62%; }
      @media screen and (max-width: 63.9375em) {
        .search .list .card .content, .search-410 .list .card .content,
        .my-ads-action-bar .list .card .content {
          min-height: 5.625rem; } }
    .search .list .card .image, .search-410 .list .card .image,
    .my-ads-action-bar .list .card .image {
      margin-top: 0.625rem;
      -webkit-transition: width 0.5s ease-in-out;
      -moz-transition: width 0.5s ease-in-out;
      -o-transition: width 0.5s ease-in-out;
      transition: width 0.5s ease-in-out;
      width: 38%;
      float: left; }
    .search .list .card .mileage, .search-410 .list .card .mileage,
    .my-ads-action-bar .list .card .mileage {
      display: block; }
      .search .list .card .mileage:before, .search-410 .list .card .mileage:before,
      .my-ads-action-bar .list .card .mileage:before {
        display: none; }
  @media screen and (min-width: 48em) {
    .search .list .column, .search-410 .list .column, .search .list .columns, .search-410 .list .columns,
    .my-ads-action-bar .list .column,
    .my-ads-action-bar .list .columns {
      width: 100%; }
      .search .list .column .card, .search-410 .list .column .card, .search .list .columns .card, .search-410 .list .columns .card,
      .my-ads-action-bar .list .column .card,
      .my-ads-action-bar .list .columns .card {
        min-height: 10rem;
        border-radius: 0 0.3125rem 0.3125rem 0;
        -moz-border-radius: 0 0.3125rem 0.3125rem 0;
        -webkit-border-radius: 0 0.3125rem 0.3125rem 0; }
        .search .list .column .card.native-ad, .search-410 .list .column .card.native-ad, .search .list .columns .card.native-ad, .search-410 .list .columns .card.native-ad,
        .my-ads-action-bar .list .column .card.native-ad,
        .my-ads-action-bar .list .columns .card.native-ad {
          height: 100%;
          overflow: hidden; }
        .search .list .column .card > a, .search-410 .list .column .card > a, .search .list .columns .card > a, .search-410 .list .columns .card > a,
        .my-ads-action-bar .list .column .card > a,
        .my-ads-action-bar .list .columns .card > a {
          padding: 0; }
        .search .list .column .card .link-wrap, .search-410 .list .column .card .link-wrap, .search .list .columns .card .link-wrap, .search-410 .list .columns .card .link-wrap,
        .my-ads-action-bar .list .column .card .link-wrap,
        .my-ads-action-bar .list .columns .card .link-wrap {
          padding: 0 15% 0 26%;
          position: relative;
          min-height: 10rem; }
          .search .list .column .card .link-wrap .image, .search-410 .list .column .card .link-wrap .image, .search .list .columns .card .link-wrap .image, .search-410 .list .columns .card .link-wrap .image,
          .my-ads-action-bar .list .column .card .link-wrap .image,
          .my-ads-action-bar .list .columns .card .link-wrap .image {
            width: 26%;
            position: absolute;
            height: 100%;
            top: 0px;
            left: 0px;
            padding-top: 0;
            min-height: 8.875rem;
            background: #efeef4; }
            .search .list .column .card .link-wrap .image img, .search-410 .list .column .card .link-wrap .image img, .search .list .columns .card .link-wrap .image img, .search-410 .list .columns .card .link-wrap .image img,
            .my-ads-action-bar .list .column .card .link-wrap .image img,
            .my-ads-action-bar .list .columns .card .link-wrap .image img {
              border-radius: 0;
              -moz-border-radius: 0;
              -webkit-border-radius: 0; }
          .search .list .column .card .link-wrap .mileage, .search-410 .list .column .card .link-wrap .mileage, .search .list .columns .card .link-wrap .mileage, .search-410 .list .columns .card .link-wrap .mileage,
          .my-ads-action-bar .list .column .card .link-wrap .mileage,
          .my-ads-action-bar .list .columns .card .link-wrap .mileage {
            display: inline; }
            .search .list .column .card .link-wrap .mileage:before, .search-410 .list .column .card .link-wrap .mileage:before, .search .list .columns .card .link-wrap .mileage:before, .search-410 .list .columns .card .link-wrap .mileage:before,
            .my-ads-action-bar .list .column .card .link-wrap .mileage:before,
            .my-ads-action-bar .list .columns .card .link-wrap .mileage:before {
              display: inline; }
          .search .list .column .card .link-wrap .make, .search-410 .list .column .card .link-wrap .make, .search .list .columns .card .link-wrap .make, .search-410 .list .columns .card .link-wrap .make,
          .my-ads-action-bar .list .column .card .link-wrap .make,
          .my-ads-action-bar .list .columns .card .link-wrap .make {
            font-size: 0.875rem; }
          .search .list .column .card .link-wrap .badges, .search-410 .list .column .card .link-wrap .badges, .search .list .columns .card .link-wrap .badges, .search-410 .list .columns .card .link-wrap .badges,
          .my-ads-action-bar .list .column .card .link-wrap .badges,
          .my-ads-action-bar .list .columns .card .link-wrap .badges {
            margin-top: 0.375rem; }
            .search .list .column .card .link-wrap .badges .tbl-row, .search-410 .list .column .card .link-wrap .badges .tbl-row, .search .list .columns .card .link-wrap .badges .tbl-row, .search-410 .list .columns .card .link-wrap .badges .tbl-row,
            .my-ads-action-bar .list .column .card .link-wrap .badges .tbl-row,
            .my-ads-action-bar .list .columns .card .link-wrap .badges .tbl-row {
              display: inline-block;
              margin: 0 1.25rem 0 0; }
              .search .list .column .card .link-wrap .badges .tbl-row .icon-badge, .search-410 .list .column .card .link-wrap .badges .tbl-row .icon-badge, .search .list .columns .card .link-wrap .badges .tbl-row .icon-badge, .search-410 .list .columns .card .link-wrap .badges .tbl-row .icon-badge,
              .my-ads-action-bar .list .column .card .link-wrap .badges .tbl-row .icon-badge,
              .my-ads-action-bar .list .columns .card .link-wrap .badges .tbl-row .icon-badge {
                margin-bottom: 0; }
        .search .list .column .card .content, .search-410 .list .column .card .content, .search .list .columns .card .content, .search-410 .list .columns .card .content,
        .search .list .column .card .title,
        .search-410 .list .column .card .title,
        .search .list .columns .card .title,
        .search-410 .list .columns .card .title,
        .search .list .column .card .badges,
        .search-410 .list .column .card .badges,
        .search .list .columns .card .badges,
        .search-410 .list .columns .card .badges,
        .my-ads-action-bar .list .column .card .content,
        .my-ads-action-bar .list .columns .card .content,
        .my-ads-action-bar .list .column .card .title,
        .my-ads-action-bar .list .columns .card .title,
        .my-ads-action-bar .list .column .card .badges,
        .my-ads-action-bar .list .columns .card .badges {
          width: 100%;
          padding-left: 1.25rem; }
        .search .list .column .card .content, .search-410 .list .column .card .content, .search .list .columns .card .content, .search-410 .list .columns .card .content,
        .my-ads-action-bar .list .column .card .content,
        .my-ads-action-bar .list .columns .card .content {
          padding-top: 0; }
        .search .list .column .card .actions, .search-410 .list .column .card .actions, .search .list .columns .card .actions, .search-410 .list .columns .card .actions,
        .my-ads-action-bar .list .column .card .actions,
        .my-ads-action-bar .list .columns .card .actions {
          top: 0;
          right: 0;
          width: 15%;
          height: 100%; }
          .search .list .column .card .actions .show-number, .search-410 .list .column .card .actions .show-number, .search .list .columns .card .actions .show-number, .search-410 .list .columns .card .actions .show-number,
          .my-ads-action-bar .list .column .card .actions .show-number,
          .my-ads-action-bar .list .columns .card .actions .show-number {
            height: 50%;
            padding-left: 0.625rem;
            bottom: 0;
            transition-duration: 0.05s; }
            .search .list .column .card .actions .show-number .btn-number-close, .search-410 .list .column .card .actions .show-number .btn-number-close, .search .list .columns .card .actions .show-number .btn-number-close, .search-410 .list .columns .card .actions .show-number .btn-number-close,
            .my-ads-action-bar .list .column .card .actions .show-number .btn-number-close,
            .my-ads-action-bar .list .columns .card .actions .show-number .btn-number-close {
              right: 0;
              top: 0;
              display: flex;
              justify-content: center;
              align-items: center; }
            .search .list .column .card .actions .show-number .number, .search-410 .list .column .card .actions .show-number .number, .search .list .columns .card .actions .show-number .number, .search-410 .list .columns .card .actions .show-number .number,
            .my-ads-action-bar .list .column .card .actions .show-number .number,
            .my-ads-action-bar .list .columns .card .actions .show-number .number {
              position: absolute;
              height: 3.75rem;
              margin: 0px;
              top: 50%;
              padding: 0px;
              margin-top: -0.6875rem; }
              .search .list .column .card .actions .show-number .number:before, .search-410 .list .column .card .actions .show-number .number:before, .search .list .columns .card .actions .show-number .number:before, .search-410 .list .columns .card .actions .show-number .number:before,
              .my-ads-action-bar .list .column .card .actions .show-number .number:before,
              .my-ads-action-bar .list .columns .card .actions .show-number .number:before {
                position: absolute;
                top: -0.25rem;
                left: 50%;
                transform: translate(-50%, -50%); }
          .search .list .column .card .actions .button-group, .search-410 .list .column .card .actions .button-group, .search .list .columns .card .actions .button-group, .search-410 .list .columns .card .actions .button-group,
          .my-ads-action-bar .list .column .card .actions .button-group,
          .my-ads-action-bar .list .columns .card .actions .button-group {
            height: 100%; }
            .search .list .column .card .actions .button-group .button, .search-410 .list .column .card .actions .button-group .button, .search .list .columns .card .actions .button-group .button, .search-410 .list .columns .card .actions .button-group .button,
            .my-ads-action-bar .list .column .card .actions .button-group .button,
            .my-ads-action-bar .list .columns .card .actions .button-group .button {
              width: 100% !important;
              height: 50%;
              display: inline-flex;
              align-items: center;
              justify-content: center;
              border: 0;
              text-transform: uppercase;
              border-left: 1px solid #ceced2;
              border-bottom: 1px solid #ceced2; }
              .search .list .column .card .actions .button-group .button:last-child, .search-410 .list .column .card .actions .button-group .button:last-child, .search .list .columns .card .actions .button-group .button:last-child, .search-410 .list .columns .card .actions .button-group .button:last-child,
              .my-ads-action-bar .list .column .card .actions .button-group .button:last-child,
              .my-ads-action-bar .list .columns .card .actions .button-group .button:last-child {
                border-bottom: 0;
                display: inline-flex; } }
  @media screen and (max-width: 74.9375em) {
    .search .list .card-wrap .card, .search-410 .list .card-wrap .card,
    .my-ads-action-bar .list .card-wrap .card {
      padding-bottom: 0; }
      .search .list .card-wrap .card .link-wrap, .search-410 .list .card-wrap .card .link-wrap,
      .my-ads-action-bar .list .card-wrap .card .link-wrap {
        padding: 0 15% 0 0; }
        .search .list .card-wrap .card .link-wrap .title, .search-410 .list .card-wrap .card .link-wrap .title,
        .search .list .card-wrap .card .link-wrap .content,
        .search-410 .list .card-wrap .card .link-wrap .content,
        .my-ads-action-bar .list .card-wrap .card .link-wrap .title,
        .my-ads-action-bar .list .card-wrap .card .link-wrap .content {
          width: 90%;
          float: right;
          padding-left: 30%; }
        .search .list .card-wrap .card .link-wrap .image, .search-410 .list .card-wrap .card .link-wrap .image,
        .my-ads-action-bar .list .card-wrap .card .link-wrap .image {
          width: 30%;
          top: 0.1875rem;
          left: 0.1875rem;
          margin: 0;
          background: none; }
        .search .list .card-wrap .card .link-wrap .badges-with-logo, .search-410 .list .card-wrap .card .link-wrap .badges-with-logo,
        .my-ads-action-bar .list .card-wrap .card .link-wrap .badges-with-logo {
          margin-top: 0.625rem;
          width: 61%;
          float: right; }
          .search .list .card-wrap .card .link-wrap .badges-with-logo .dealers-info, .search-410 .list .card-wrap .card .link-wrap .badges-with-logo .dealers-info,
          .my-ads-action-bar .list .card-wrap .card .link-wrap .badges-with-logo .dealers-info {
            margin: 0; }
      .search .list .card-wrap .card .actions .show-number, .search-410 .list .card-wrap .card .actions .show-number,
      .my-ads-action-bar .list .card-wrap .card .actions .show-number {
        display: none; }
      .search .list .card-wrap .card .actions .button-group, .search-410 .list .card-wrap .card .actions .button-group,
      .my-ads-action-bar .list .card-wrap .card .actions .button-group {
        padding: 0.1875rem; }
        .search .list .card-wrap .card .actions .button-group .btn-contact, .search-410 .list .card-wrap .card .actions .button-group .btn-contact,
        .my-ads-action-bar .list .card-wrap .card .actions .button-group .btn-contact {
          height: 33.3%;
          border: 0 !important;
          border-radius: 0; }
          .search .list .card-wrap .card .actions .button-group .btn-contact i:before, .search-410 .list .card-wrap .card .actions .button-group .btn-contact i:before,
          .my-ads-action-bar .list .card-wrap .card .actions .button-group .btn-contact i:before {
            display: block;
            margin-top: 0.3125rem;
            font-size: 1.875rem; } }

.my-ads-action-bar .select-sort-by,
.my-ads-action-bar .btn-search-filter {
  height: 2.375rem;
  font-size: 1rem;
  text-transform: capitalize;
  font-weight: 600; }

@media screen and (min-width: 64em) {
  .search .sidebar, .search-410 .sidebar {
    width: 18.75rem;
    padding-right: 1.875rem; } }

@media screen and (min-width: 64em) {
  .search .sidebar:not(.hide) + .content, .search-410 .sidebar:not(.hide) + .content {
    width: calc(100% - 300px); } }

@media screen and (min-width: 64em) {
  .search .sidebar.hide + .content, .search-410 .sidebar.hide + .content {
    width: 100%; } }

.search.no-results .sidebar, .no-results.search-410 .sidebar {
  display: none; }

.search.no-results .sidebar + .content, .no-results.search-410 .sidebar + .content {
  width: 100%; }

@media screen and (max-width: 74.9375em) {
  .reveal-overlay .sidebar.reveal {
    border-radius: 0;
    width: 100%;
    padding-top: 0;
    height: 100%;
    position: relative;
    top: 0 !important; }
    .reveal-overlay .sidebar.reveal .sidebarFooter,
    .reveal-overlay .sidebar.reveal .sidebarHeader {
      padding: 0.625rem 1.25rem;
      position: fixed;
      width: 100%;
      left: 0;
      height: 3.125rem;
      background: white; }
    .reveal-overlay .sidebar.reveal .sidebarHeader {
      border-bottom: 1px solid #ceced2; }
      .reveal-overlay .sidebar.reveal .sidebarHeader p {
        font-size: 0.9375rem;
        font-family: "Open Sans", sans-serif;
        font-weight: 600;
        color: #333333;
        width: 75%;
        display: inline-block;
        vertical-align: middle;
        line-height: 1; }
        .reveal-overlay .sidebar.reveal .sidebarHeader p span {
          font-size: 0.75rem;
          color: #666666;
          display: block; }
      .reveal-overlay .sidebar.reveal .sidebarHeader .close-button {
        background: #62ccf5;
        color: white;
        font-size: 0.75rem;
        text-transform: uppercase;
        padding: 0.4375rem 0.875rem;
        border-radius: 3px; } }

@media screen and (max-width: 74.9375em) and (min-width: 64em) and (orientation: landscape) {
  .reveal-overlay .sidebar.reveal .sidebarHeader {
    width: 40%; } }

@media screen and (max-width: 74.9375em) {
    .reveal-overlay .sidebar.reveal .sidebarFooter {
      border-top: 1px solid #ceced2;
      bottom: 0; }
      .reveal-overlay .sidebar.reveal .sidebarFooter .button {
        margin: 0; } }

@media screen and (max-width: 74.9375em) and (min-width: 64em) and (orientation: landscape) {
  .reveal-overlay .sidebar.reveal .sidebarFooter {
    width: 40%; } }

@media screen and (max-width: 74.9375em) {
    .reveal-overlay .sidebar.reveal .sidebarContent {
      margin-top: 3.125rem;
      overflow-y: auto; } }
    @media screen and (max-width: 74.9375em) and (max-width: 63.9375em) {
      .reveal-overlay .sidebar.reveal .sidebarContent {
        height: calc(100% - 90px) !important; } }

@media screen and (min-width: 64em) and (orientation: landscape) {
  .reveal-overlay .sidebar.reveal {
    width: 40%; } }

.sidebar .accordion-custom {
  list-style-type: none;
  background: #fff;
  margin-left: 0; }

.sidebar .accordion-title {
  font-size: 0.9375rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #333333;
  padding: 0.625rem 0;
  border: none;
  border-bottom: 2px solid #ebebeb !important; }
  .sidebar .accordion-title span {
    text-transform: uppercase; }
  .sidebar .accordion-title:hover, .sidebar .accordion-title:focus {
    background: none; }
  .sidebar .accordion-title:before {
    content: "d";
    font-family: "gt" !important;
    font-size: 0.875rem;
    top: 50%;
    right: 0;
    color: #60cdf6; }

.sidebar .is-active > .accordion-title:before {
  content: "m"; }

.sidebar .accordion-item {
  margin-bottom: 25px; }
  .sidebar .accordion-item:last-child > :last-child {
    border-bottom: 0; }
  .sidebar .accordion-item.is-active .accordion-content {
    display: block;
    border-bottom: 0; }

.sidebar .accordion-content {
  padding: 0.625rem 0;
  border: none;
  display: none;
  overflow: hidden; }
  .sidebar .accordion-content .row {
    margin-left: 0;
    margin-right: 0;
    padding-top: 0.3125rem; }
  .sidebar .accordion-content.twoTextCols .row .columns input,
  .sidebar .accordion-content.twoTextCols .row .columns .button {
    margin-top: 0.625rem; }
  .sidebar .accordion-content.twoTextCols .row .columns label {
    margin-top: 0.625rem; }
  .sidebar .accordion-content.twoTextCols .row .columns:first-child label {
    margin-top: 0; }

.sidebar .accordion-content,
.sidebar label {
  font-size: 0.8125rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1; }

.sidebar input[type="text"],
.sidebar input[type="number"],
.sidebar input[type="search"] {
  margin-bottom: 0;
  height: 25px;
  font-size: 13px;
  font-family: "Open Sans", sans-serif;
  padding: 2px 3px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box; }

.sidebar .inline-search-pod {
  position: relative;
  padding-top: 0.375rem; }
  .sidebar .inline-search-pod .gt-icon-search {
    position: absolute;
    left: 7px;
    top: 13px;
    font-size: 11px; }
  .sidebar .inline-search-pod input[type="search"] {
    padding-left: 25px; }
    .sidebar .inline-search-pod input[type="search"]:valid ~ .button {
      display: block;
      position: absolute;
      top: 8px;
      right: -1px;
      padding: 3px 6px;
      background: none;
      font-size: 11px;
      margin-top: 0; }
    .sidebar .inline-search-pod input[type="search"]:not(:valid) ~ .button {
      display: none; }

.sidebar .button {
  margin-bottom: 0;
  padding: 6px 15px;
  margin-top: 10px; }
  .sidebar .button.btn-filter-close {
    color: #333333;
    border-color: #ebebeb;
    border-radius: 3px;
    margin-bottom: 1.875rem;
    margin-top: 1.875rem;
    color: #3fa5d7;
    padding: 0.6875rem;
    -moz-transition: border-color 0.2s ease-in;
    -webkit-transition: border-color 0.2s ease-in;
    transition: border-color 0.2s ease-in; }
    .sidebar .button.btn-filter-close:hover {
      -moz-transition: border-color 0.2s ease-in;
      -webkit-transition: border-color 0.2s ease-in;
      transition: border-color 0.2s ease-in; }
    .sidebar .button.btn-filter-close:hover {
      border-color: #919191; }

.sidebar .itemList {
  margin: 0;
  padding: 0; }
  .sidebar .itemList:not(:first-child) {
    margin-top: 15px; }
  .sidebar .itemList li {
    padding: 0.0625rem 0;
    list-style: none; }
  .sidebar .itemList a {
    color: #000; }

.sidebar .badgelistTitle {
  color: #8e8e93;
  font-size: 0.75rem; }

.sidebar .badgelist {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: #8e8e93; }
  .sidebar .badgelist li {
    margin-top: 0.4375rem;
    display: block; }
    .sidebar .badgelist li:first-child {
      margin-top: 0; }
    .sidebar .badgelist li a {
      color: #8e8e93;
      border: 1px solid #ceced2;
      padding: 0 0.25rem 0 0.25rem;
      display: flex;
      align-items: center;
      line-height: 1.2;
      height: 32px;
      border-radius: 4px;
      width: calc(100% - 20px);
      margin: 0 auto;
      font-size: 0.75rem; }
      .sidebar .badgelist li a .badge-icons {
        display: inline-block;
        vertical-align: middle;
        line-height: 0.5;
        margin-right: 0.3125rem; }
        .sidebar .badgelist li a .badge-icons:before {
          font-size: 2rem;
          color: #f8981d;
          line-height: 0.95; }
        .sidebar .badgelist li a .badge-icons.gt-icon-readytomovein, .sidebar .badgelist li a .badge-icons.gt-icon-uaeexperienced, .sidebar .badgelist li a .badge-icons.gt-icon-uaedrivinglicense {
          margin-right: 0.5625rem; }
          .sidebar .badgelist li a .badge-icons.gt-icon-readytomovein:before, .sidebar .badgelist li a .badge-icons.gt-icon-uaeexperienced:before, .sidebar .badgelist li a .badge-icons.gt-icon-uaedrivinglicense:before {
            font-size: 1.875rem !important; }
      .sidebar .badgelist li a:hover {
        border-color: #f8981d; }
      .sidebar .badgelist li a.facet-refined {
        background: #f8981d;
        color: white;
        border-color: #f8981d; }
        .sidebar .badgelist li a.facet-refined .badge-icons:before {
          color: white; }

.sidebar .checklist {
  margin: 0;
  padding: 0; }
  .sidebar .checklist .count {
    position: absolute;
    right: 0;
    top: 1px;
    color: #888888;
    font-size: 0.75rem; }
  .sidebar .checklist:not(:first-child) {
    margin-top: 15px; }
  .sidebar .checklist li {
    padding: 0.1875rem 0;
    list-style: none;
    line-height: 1.5; }
    .sidebar .checklist li input[type="checkbox"] {
      display: none; }
    .sidebar .checklist li label,
    .sidebar .checklist li .facet-link {
      margin: 0;
      position: relative;
      text-transform: capitalize;
      padding-left: 1.3125rem;
      padding-right: 1.875rem;
      line-height: 1.2;
      width: 100%;
      display: inline-block;
      color: #484848; }
      .sidebar .checklist li label:before,
      .sidebar .checklist li .facet-link:before {
        content: "";
        width: 13px;
        height: 12px;
        border: 1px solid #ceced2;
        display: inline-flex;
        margin-right: 7px;
        position: absolute;
        left: 0;
        top: 2px; }
    .sidebar .checklist li input[type="checkbox"]:checked + label,
    .sidebar .checklist li .facet-refined {
      color: #7f3f98; }
      .sidebar .checklist li input[type="checkbox"]:checked + label:before,
      .sidebar .checklist li .facet-refined:before {
        border-color: #7f3f98;
        background: #7f3f98; }
      .sidebar .checklist li input[type="checkbox"]:checked + label:after,
      .sidebar .checklist li .facet-refined:after {
        content: "";
        width: 8px;
        height: 4px;
        border-left: white 2px solid;
        border-bottom: white 2px solid;
        display: inline-flex;
        position: absolute;
        left: 3px;
        top: 5px;
        transform: rotate(-43deg);
        -webkit-transform: rotate(-43deg);
        -moz-transform: rotate(-43deg);
        -o-transform: rotate(-43deg); }

.sidebar .view-more-val {
  float: right;
  font-weight: 600;
  padding-top: 10px; }

.search .list .card .hit-wrap > .btn-fav, .search-410 .list .card .hit-wrap > .btn-fav, .search .list .card .jobs-card-wrap .jobs-card a .hit-wrap > .seeker-btn-fav, .jobs-card-wrap .jobs-card a .search .list .card .hit-wrap > .seeker-btn-fav, .search-410 .list .card .jobs-card-wrap .jobs-card a .hit-wrap > .seeker-btn-fav, .jobs-card-wrap .jobs-card a .search-410 .list .card .hit-wrap > .seeker-btn-fav {
  right: 2%; }
  @media screen and (min-width: 64em) {
    .search .list .card .hit-wrap > .btn-fav, .search-410 .list .card .hit-wrap > .btn-fav, .search .list .card .jobs-card-wrap .jobs-card a .hit-wrap > .seeker-btn-fav, .jobs-card-wrap .jobs-card a .search .list .card .hit-wrap > .seeker-btn-fav, .search-410 .list .card .jobs-card-wrap .jobs-card a .hit-wrap > .seeker-btn-fav, .jobs-card-wrap .jobs-card a .search-410 .list .card .hit-wrap > .seeker-btn-fav {
      right: 17%; } }

@media screen and (min-width: 64em) {
  .search .list .card .image, .search-410 .list .card .image {
    margin-top: 0; } }

.search .list .card .image > .btn-fav, .search-410 .list .card .image > .btn-fav, .search .list .card .jobs-card-wrap .jobs-card a .image > .seeker-btn-fav, .jobs-card-wrap .jobs-card a .search .list .card .image > .seeker-btn-fav, .search-410 .list .card .jobs-card-wrap .jobs-card a .image > .seeker-btn-fav, .jobs-card-wrap .jobs-card a .search-410 .list .card .image > .seeker-btn-fav {
  display: none; }

@media screen and (max-width: 63.9375em) {
  .search .list .card .dealers-info, .search-410 .list .card .dealers-info {
    margin: 0.75rem 0; } }

.search .pagination, .search-410 .pagination,
.my-ads .pagination {
  text-align: center;
  float: none;
  display: inline-block;
  width: 100%; }
  @media screen and (min-width: 64em) {
    .search .pagination, .search-410 .pagination,
    .my-ads .pagination {
      margin: 0 0 2.5rem; } }
  .search .pagination a:hover, .search-410 .pagination a:hover,
  .my-ads .pagination a:hover {
    background-color: #60cdf6; }
  .search .pagination .go-to-page, .search-410 .pagination .go-to-page,
  .my-ads .pagination .go-to-page {
    text-align: center;
    display: inline-block;
    padding: 1.25rem 2.1875rem !important;
    height: 1.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0;
    border: 1px solid #60cdf6;
    line-height: 0;
    text-transform: uppercase;
    border-radius: 21px;
    background-color: #60cdf6;
    color: white; }
    @media screen and (min-width: 64em) {
      .search .pagination .go-to-page, .search-410 .pagination .go-to-page,
      .my-ads .pagination .go-to-page {
        font-size: 0.8125rem;
        padding: 1.25rem 4.0625rem !important; } }
    .search .pagination .go-to-page:before, .search-410 .pagination .go-to-page:before,
    .my-ads .pagination .go-to-page:before {
      color: white;
      font-size: 1.75rem;
      line-height: 2.5rem; }
      @media screen and (min-width: 64em) {
        .search .pagination .go-to-page:before, .search-410 .pagination .go-to-page:before,
        .my-ads .pagination .go-to-page:before {
          font-size: 2rem;
          line-height: 3rem; } }

.search-410 {
  min-height: 65vh; }
  .search-410 .related-ads-search {
    padding: 0.9375rem 0 0.9375rem; }
    .search-410 .related-ads-search.add-border {
      border-top: 1px solid #ceced2; }
    .search-410 .related-ads-search .card {
      min-height: 23.4375rem; }
      .search-410 .related-ads-search .card .hit-wrap {
        min-height: 0; }
    @media screen and (min-width: 64em) {
      .search-410 .related-ads-search .card-wrap {
        margin: 0.9375rem 0 !important; } }
  .search-410 .msg-410 {
    margin: 1.875rem auto 1.875rem auto;
    display: inline-block;
    min-height: 9.375rem;
    padding: 1.875rem 0 0 0;
    width: auto;
    position: relative; }
    .search-410 .msg-410 p {
      font-size: 1rem; }
    @media screen and (max-width: 63.9375em) {
      .search-410 .msg-410 {
        width: 100%;
        padding: 0; }
        .search-410 .msg-410 img {
          position: static;
          display: block;
          margin: 0 auto 1.25rem auto; } }

.search-sec .search-head {
  display: none; }

@media screen and (min-width: 64em) {
  .search-sec {
    background-size: 95%;
    height: 100%; }
    .search-sec .search-bar {
      background: none;
      padding: 0.0625rem; }
    .search-sec .search-head {
      display: block;
      padding-top: 3.75rem;
      margin: 0 auto 2.5rem; }
      .search-sec .search-head h2 {
        font-size: 1.5rem;
        color: #002244;
        font-weight: 600;
        line-height: 1.875rem; } }

@media screen and (min-width: 64em) {
  .search-sec.autos-search-sec {
    background: url("../img/contents/panel-autos.jpg") no-repeat 50% 100%;
    min-height: 30rem; } }

@media screen and (max-width: 63.9375em) {
  .search-sec.autos-search-sec .aa-dropdown-menu {
    top: 55% !important; } }

.recent-search-module > .content:last-of-type {
  margin-bottom: 3rem; }

@media screen and (min-width: 64em) {
  .landing-page-listing,
  .talent-pool {
    max-width: 81.25rem; } }

@media screen and (min-width: 90em) {
  .landing-page-listing,
  .talent-pool {
    max-width: 85.9375rem !important; } }

.banner-wrap .advert-dfp {
  padding: 2.5rem 0;
  border-bottom: 1px solid #ceced2;
  margin: 0 !important; }

.recent-jobs-module .banner-wrap .advert-dfp {
  border-top: 1px solid #ceced2;
  border-bottom: 0; }

.recent-search-module {
  min-height: 50rem; }
  .recent-search-module .card {
    min-height: 29.6875rem; }
    @media screen and (min-width: 64em) {
      .recent-search-module .card {
        min-height: 27.5rem; } }

.search .card-wrap, .search-410 .card-wrap {
  opacity: 0; }

.search .date, .search-410 .date {
  font-size: 0.75rem; }

.search .featured-agent, .search-410 .featured-agent {
  width: 100%; }
  .search .featured-agent .agent-profile, .search-410 .featured-agent .agent-profile {
    background: #f5f5f5; }
    .search .featured-agent .agent-profile .row, .search-410 .featured-agent .agent-profile .row {
      background: #f5f5f5; }
    .search .featured-agent .agent-profile .column:first-child, .search-410 .featured-agent .agent-profile .column:first-child, .search .featured-agent .agent-profile .columns:first-child, .search-410 .featured-agent .agent-profile .columns:first-child {
      border: 0; }
    .search .featured-agent .agent-profile .title, .search-410 .featured-agent .agent-profile .title {
      padding: 0 0 0.5rem 0;
      font-size: 1.375rem;
      font-weight: 500;
      color: #000; }
    .search .featured-agent .agent-profile ul, .search-410 .featured-agent .agent-profile ul {
      line-height: 0.6875rem;
      padding-right: 18.4375rem; }
    .search .featured-agent .agent-profile li, .search-410 .featured-agent .agent-profile li {
      padding: 0; }
      .search .featured-agent .agent-profile li .attr-name, .search-410 .featured-agent .agent-profile li .attr-name {
        width: 3.75rem; }
      .search .featured-agent .agent-profile li .attr-val, .search-410 .featured-agent .agent-profile li .attr-val {
        width: calc(100% - 60px);
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap; }
        .search .featured-agent .agent-profile li .attr-val .item:after, .search-410 .featured-agent .agent-profile li .attr-val .item:after {
          content: ", "; }
        .search .featured-agent .agent-profile li .attr-val .item:last-child:after, .search-410 .featured-agent .agent-profile li .attr-val .item:last-child:after {
          content: ""; }
    .search .featured-agent .agent-profile .companylogo, .search-410 .featured-agent .agent-profile .companylogo {
      width: 7.625rem;
      position: absolute;
      right: 0;
      top: 0;
      border: 1px solid #dfdfdf; }
      .search .featured-agent .agent-profile .companylogo img, .search-410 .featured-agent .agent-profile .companylogo img {
        width: 100%; }
    .search .featured-agent .agent-profile .lead-actions, .search-410 .featured-agent .agent-profile .lead-actions {
      margin: -3.125rem 0 0 0;
      width: 17.5rem; }
  .search .featured-agent .cnt-wrap, .search-410 .featured-agent .cnt-wrap {
    position: relative; }
  .search .featured-agent .agent-info, .search-410 .featured-agent .agent-info {
    padding: 1.25rem 0 1.25rem 18.125rem;
    border-left: 6px solid #7f3f98;
    min-height: 0;
    height: auto; }
    .search .featured-agent .agent-info .agent-pic, .search-410 .featured-agent .agent-info .agent-pic {
      width: 16.875rem; }
  @media screen and (max-width: 63.9375em) {
    .search .featured-agent .agent-profile, .search-410 .featured-agent .agent-profile {
      padding: 0; }
      .search .featured-agent .agent-profile .row, .search-410 .featured-agent .agent-profile .row {
        margin: 0; }
      .search .featured-agent .agent-profile .title, .search-410 .featured-agent .agent-profile .title {
        padding: 0 5rem 0.3125rem 0.9375rem;
        font-size: 1.125rem; }
      .search .featured-agent .agent-profile ul, .search-410 .featured-agent .agent-profile ul {
        padding: 0 0.9375rem; }
      .search .featured-agent .agent-profile .featured-title, .search-410 .featured-agent .agent-profile .featured-title {
        padding: 0 0.9375rem;
        font-size: 0.6875rem; }
      .search .featured-agent .agent-profile .agent-pic, .search-410 .featured-agent .agent-profile .agent-pic {
        width: 100%;
        margin: 0 auto; }
      .search .featured-agent .agent-profile .lead-actions, .search-410 .featured-agent .agent-profile .lead-actions {
        margin: 0;
        width: 100%; }
      .search .featured-agent .agent-profile .companylogo, .search-410 .featured-agent .agent-profile .companylogo {
        top: 0.9375rem;
        right: 0.9375rem;
        width: 4.0625rem;
        height: 2.1875rem; }
    .search .featured-agent .cnt-wrap, .search-410 .featured-agent .cnt-wrap {
      border-left: 2px solid #7f3f98;
      padding: 0.9375rem 0 0.625rem 0; }
    .search .featured-agent .show-number, .search-410 .featured-agent .show-number {
      display: none; }
    .search .featured-agent .agent-info, .search-410 .featured-agent .agent-info {
      text-align: left;
      padding: 0;
      width: 100%;
      border: 0; }
      .search .featured-agent .agent-info ul, .search-410 .featured-agent .agent-info ul {
        margin: 0;
        width: 100%;
        margin: 0; }
        .search .featured-agent .agent-info ul .attr-val, .search-410 .featured-agent .agent-info ul .attr-val {
          font-weight: 600;
          text-transform: none; } }

.no-space hr {
  margin: 0; }

.showcase .column, .showcase .columns {
  padding-bottom: 25px; }

.showcase .columns {
  padding-top: 0;
  padding-bottom: 0; }

.showcase .img-shadebox {
  position: relative;
  text-decoration: none;
  text-align: center;
  width: 100%;
  overflow: hidden;
  display: inline-block; }
  .showcase .img-shadebox.agent-tile {
    height: 31.0625rem; }
    .showcase .img-shadebox.agent-tile h3 {
      margin: 2.625rem 0 0 0; }
    .showcase .img-shadebox.agent-tile img {
      min-height: 100%; }
  .showcase .img-shadebox img {
    position: relative;
    margin: auto;
    width: 100%;
    min-height: 14.5625rem; }
    @media screen and (max-width: 63.9375em) {
      .showcase .img-shadebox img {
        width: 100%; } }
  .showcase .img-shadebox .shade {
    background: url("../img/generic/shade.png") repeat-x 0 bottom;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 10;
    height: 7.1875rem; }
  .showcase .img-shadebox h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
    margin: 4.25rem 0 0 0; }
  @media screen and (min-width: 64em) {
    .showcase .img-shadebox img {
      -moz-transition: all 0.5s;
      -webkit-transition: all 0.5s;
      transition: all 0.5s; }
    .showcase .img-shadebox:hover img {
      -moz-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      transform: scale(1.1); } }
  @media screen and (min-width: 64em) {
    .showcase .img-shadebox #proprty_recmndtn {
      height: 223px; } }

.horiz-widget {
  position: relative;
  width: 100%;
  display: inline-block; }
  .horiz-widget .sponsor-logo {
    position: absolute;
    right: 18px;
    top: 29px;
    width: 210px;
    height: 40px; }
    .horiz-widget .sponsor-logo img {
      float: right; }
    .horiz-widget .sponsor-logo label {
      color: #b5b6b8;
      font-size: 12px; }
  .horiz-widget .column, .horiz-widget .columns {
    padding-bottom: 25px; }
  .horiz-widget .columns {
    padding-top: 0;
    padding-bottom: 0; }
  .horiz-widget .link-box {
    display: inline-block;
    overflow: hidden;
    position: relative;
    width: 100%; }
  .horiz-widget .img-box {
    width: 100%;
    overflow: hidden; }
    .horiz-widget .img-box img {
      min-height: 100%;
      width: 100%; }
  .horiz-widget .shade {
    width: 100%;
    background: #000;
    z-index: 10;
    padding: 5px 10px;
    min-height: 4.0625rem; }
    @media screen and (max-width: 74.9375em) {
      .horiz-widget .shade {
        min-height: 2.8125rem; } }
  .horiz-widget h3 {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 400;
    overflow: hidden;
    margin: 0; }

.article-list {
  background: #f5f5f5 !important;
  padding: 1.25rem 0 1.25rem; }
  .article-list h2 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.25rem;
    color: #000;
    margin: 0.625rem auto 0.625rem; }
    .article-list h2 .icon {
      background: url("../img/generic/article-icons-sprite.png") no-repeat 0 0;
      width: 1.9375rem;
      height: 1.625rem;
      display: inline-block;
      margin: 0 0 -0.25rem 0.3125rem; }
      .article-list h2 .icon.book {
        background-position: -80px 0; }
      .article-list h2 .icon.chat {
        background-position: -42px 0; }
      .article-list h2 .icon.bookmark {
        background-position: 0 0; }
  .article-list .title-block {
    padding: 0.9rem;
    color: #00aadd;
    background-color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
  .article-list .img-wrapper img {
    max-width: 100%; }
  .article-list .row {
    background: transparent; }

@media screen and (min-width: 1024px) and (max-width: 1230px) and (orientation: landscape) {
  .article-list .ar-wrapper {
    width: 68% !important; } }

@media screen and (min-width: 1024px) and (max-width: 1230px) and (orientation: portrait) {
  .article-list .ar-wrapper {
    width: 68% !important; } }
  .article-list .ar-wrapper .row:not(.no-margin) {
    margin-right: -1.875rem; }
  .article-list .ar-wrapper .column, .article-list .ar-wrapper .columns {
    padding: 0 2.5rem 1.5625rem 0; }
  .article-list .ar-wrapper .ar-small .ar-block {
    min-height: 11.25rem; }
    .article-list .ar-wrapper .ar-small .ar-block h4 {
      white-space: normal;
      text-overflow: initial;
      overflow: auto; }
  .article-list .ar-block {
    background: #fff;
    padding: 0.9375rem;
    -webkit-box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.25);
    min-height: 8.75rem; }
    .article-list .ar-block h4 {
      font-weight: 400;
      font-size: 1.125rem;
      color: #000;
      margin: 0 auto 0.1875rem;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden; }
    .article-list .ar-block p {
      color: #999999;
      font-size: 0.9375rem;
      margin: 0; }
    .article-list .ar-block .no-space {
      padding: 0; }
    .article-list .ar-block .more {
      font-size: 0.8125rem;
      text-transform: uppercase;
      color: #62ccf5; }
  .article-list .ar-banner {
    padding-top: 3.125rem; }
    @media screen and (max-width: 63.9375em) {
      .article-list .ar-banner {
        padding-top: 0.9375rem;
        text-align: center; } }
  .article-list .column:last-child, .article-list .columns:last-child {
    float: left; }
  @media screen and (max-width: 63.9375em) {
    .article-list .jobs-ar-mpu {
      padding-top: 1.25rem;
      text-align: center; } }
  @media screen and (min-width: 48em) {
    .article-list .ar-devider {
      width: 99%;
      margin: 1rem 0; } }

/* Popup Dialogue */
.popup-dialog .popup-content {
  padding: 1.5625rem 1.875rem 1.25rem;
  position: relative; }
  @media screen and (max-width: 63.9375em) {
    .popup-dialog .popup-content {
      padding-left: 0;
      padding-right: 0; } }
  .popup-dialog .popup-content p {
    margin-bottom: 0.9375rem;
    font-size: 1.125rem;
    color: #000; }
    .popup-dialog .popup-content p:first-child {
      font-size: 1.5rem;
      line-height: 1.25;
      margin-bottom: 0.9375rem;
      font-weight: 700; }
  .popup-dialog .popup-content .popup-close {
    padding: 0.625rem;
    font-size: 1rem;
    top: 0;
    right: 0; }
    .popup-dialog .popup-content .popup-close:before {
      color: #000;
      -moz-transition: color 0.3s ease-in;
      -webkit-transition: color 0.3s ease-in;
      transition: color 0.3s ease-in; }
      .popup-dialog .popup-content .popup-close:before:hover {
        -moz-transition: color 0.3s ease-in;
        -webkit-transition: color 0.3s ease-in;
        transition: color 0.3s ease-in; }
    .popup-dialog .popup-content .popup-close:hover:before {
      color: #60cdf6; }

.save-search-dialog .non-login-box form {
  width: 90%;
  margin: auto;
  text-align: left; }
  .save-search-dialog .non-login-box form .row {
    margin: 0; }

.save-search-dialog .non-login-box .button {
  margin-top: 0;
  border-radius: 0.1875rem;
  min-width: 0; }

.save-search-dialog .non-login-box h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  text-align: left; }

.save-search-dialog .non-login-box .column, .save-search-dialog .non-login-box .columns {
  padding: 0 0.625rem 0 0; }

.save-search-dialog .non-login-box .loading {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
  z-index: 1000;
  width: 100%;
  height: 100%; }
  .save-search-dialog .non-login-box .loading img {
    top: 30%;
    width: 0.9375rem;
    position: absolute; }

.save-search-dialog .non-login-box .submit-msg p {
  font-size: 1.25rem;
  line-height: 2rem; }

.save-search-dialog .save-search-icon {
  margin: 0.625rem 0; }
  .save-search-dialog .save-search-icon img {
    max-width: 10%; }

@media screen and (min-width: 48em) {
  .autos-card-wrap {
    min-height: 28rem;
    max-height: 28rem; }
    .autos-card-wrap .badges-with-logo {
      min-height: 2.8125rem; } }

@media screen and (min-width: 48em) {
  .list .autos-card-wrap {
    min-height: 0;
    max-height: none; }
    .list .autos-card-wrap .badges-with-logo {
      min-height: 0; }
      .list .autos-card-wrap .badges-with-logo .column, .list .autos-card-wrap .badges-with-logo .columns {
        width: auto; }
    .list .autos-card-wrap .hit-wrap .btn-fav, .list .autos-card-wrap .hit-wrap .jobs-card-wrap .jobs-card a .seeker-btn-fav, .jobs-card-wrap .jobs-card a .list .autos-card-wrap .hit-wrap .seeker-btn-fav {
      right: 16% !important; } }

#send-email {
  width: 100%;
  height: 1000px;
  z-index: 8000;
  position: absolute;
  top: 0;
  left: 0; }
  #send-email .popup-shade {
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0.8;
    top: 0;
    left: 0;
    position: absolute;
    background: #000; }
  #send-email .animate-elem {
    height: 0px;
    width: 18.125rem;
    position: absolute;
    right: 0.9375rem;
    z-index: 200;
    bottom: 0.9375rem;
    overflow: hidden; }
  #send-email .popup-wrap {
    background: #453269;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0; }
  #send-email .email-ad {
    padding: 0.625rem;
    background: #fff; }
  #send-email .email-form {
    padding: 1.25rem;
    position: relative; }
    #send-email .email-form .loading {
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(255, 255, 255, 0.55);
      text-align: center;
      z-index: 1000;
      width: 100%;
      height: 100%; }
      #send-email .email-form .loading img {
        top: 30%;
        width: 0.9375rem;
        position: absolute; }
    #send-email .email-form .md-textfield {
      margin: 0.3125rem 0 0.3125rem;
      padding: 0; }
      #send-email .email-form .md-textfield.is-dirty .md-textfield-label,
      #send-email .email-form .md-textfield.is-focused .md-textfield-label {
        display: none; }
      #send-email .email-form .md-textfield .md-textfield-label {
        bottom: auto;
        top: 0.3125rem;
        left: 0.625rem;
        font-size: remc-acl(12px); }
        #send-email .email-form .md-textfield .md-textfield-label:before {
          display: none; }
        #send-email .email-form .md-textfield .md-textfield-label span {
          color: #cc0000;
          font-size: 0.625rem; }
      #send-email .email-form .md-textfield .md-textfield-input {
        border: 0;
        padding: 0 0.625rem 0 0.625rem;
        font-size: 0.75rem;
        background: #fff; }
        #send-email .email-form .md-textfield .md-textfield-input.is-invalid-input {
          border: 2px solid #cc0000; }
      #send-email .email-form .md-textfield textarea {
        padding: 0.625rem !important;
        height: 6.875rem; }
      #send-email .email-form .md-textfield .md-textfield-error {
        padding: 0.3125rem 0 0;
        margin: 0;
        color: #d3d0cf; }
      #send-email .email-form .md-textfield .lbl-count {
        display: block;
        text-align: right;
        font-size: 0.75rem;
        color: #fff;
        padding: 0.3125rem 0 0; }
    #send-email .email-form .actions .btn-message {
      border-radius: 0.4375rem !important;
      margin: 0.625rem 0 0;
      padding: 0.625rem 1.875rem;
      float: right; }
    #send-email .email-form .actions .cancel {
      display: inline-block;
      font-size: 0.875rem;
      color: #fff;
      margin: 15px 0px 0px; }
    #send-email .email-form p {
      color: #fff; }
  #send-email .card {
    overflow: hidden;
    margin: 0;
    position: relative;
    padding-left: 0;
    padding-right: 0; }
    #send-email .card .title {
      line-height: 1.5rem;
      font-size: 1.125rem;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      font-weight: 300;
      color: #000; }
      @media screen and (min-width: 64em) {
        #send-email .card .title {
          font-size: 1.0625rem; } }
    #send-email .card .content {
      padding-top: 0.625rem;
      padding-bottom: 0.625rem;
      line-height: 1.125rem;
      font-weight: 300;
      border-radius: 0 0 2px 2px; }
      @media screen and (min-width: 64em) {
        #send-email .card .content {
          padding: 0.75rem;
          overflow: hidden; } }
    #send-email .card .mileage:before {
      content: "\2022";
      font-size: 1.375rem;
      line-height: 1.3125rem;
      vertical-align: bottom;
      color: #8e8e93;
      margin: 0 0.3125rem; }
    #send-email .card .dot:before {
      content: "\2022";
      font-size: 1.375rem;
      line-height: 1.3125rem;
      vertical-align: bottom;
      color: #8e8e93;
      margin: 0 0.3125rem; }
    #send-email .card .location,
    #send-email .card .specs {
      color: #8e8e93;
      font-size: 0.875rem;
      line-height: 1.3125rem; }
      @media screen and (max-width: 63.9375em) {
        #send-email .card .location,
        #send-email .card .specs {
          font-size: 0.75rem; } }
    #send-email .card p {
      margin: 0; }
    #send-email .card .price {
      padding: 0.125rem 0;
      font-size: 1.5rem;
      font-weight: 600;
      color: #000; }
      @media screen and (min-width: 64em) {
        #send-email .card .price {
          font-size: 1.1875rem; } }
    #send-email .card .image {
      position: relative; }
      #send-email .card .image img {
        border-radius: 2px 2px 0 0;
        width: 100%; }
      @media screen and (max-width: 63.9375em) {
        #send-email .card .image {
          display: none; } }

body.overlay-open {
  overflow: hidden; }

.inPage-filter {
  margin-top: 1.25rem;
  margin-bottom: 0; }
  @media screen and (max-width: 63.9375em) {
    .inPage-filter {
      padding: 0px 0px 0px 0.9375rem; } }
  .inPage-filter .type-section {
    text-align: center; }
    @media screen and (min-width: 48em) {
      .inPage-filter .type-section {
        text-align: left; } }
  .inPage-filter .inPage-filter-inner {
    display: inline-block;
    width: 100%; }
  .inPage-filter .browse-type {
    color: #aaaaaa;
    font-size: 0.8125rem;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    padding: 0; }
    @media screen and (max-width: 63.9375em) {
      .inPage-filter .browse-type {
        margin: 0px 0px 1.25rem 0; } }
  .inPage-filter .section-title {
    color: #aaaaaa;
    padding-bottom: .5rem; }
  .inPage-filter ul.filter-links, .inPage-filter ul.filter-showall-links {
    margin: 0;
    overflow: hidden;
    width: 100%;
    -webkit-transition: height 5s;
    /* For Safari 3.1 to 6.0 */
    transition: height 2s; }
    .inPage-filter ul.filter-links ul, .inPage-filter ul.filter-showall-links ul {
      margin-left: 0; }
    .inPage-filter ul.filter-links > li, .inPage-filter ul.filter-showall-links > li {
      width: 33.33%;
      padding-right: 0;
      float: left; }
    .inPage-filter ul.filter-links li, .inPage-filter ul.filter-showall-links li {
      display: inline-block;
      padding-left: 0.3125rem;
      padding-bottom: 0.3125rem;
      font-size: 0.875rem;
      width: 100%; }
      .inPage-filter ul.filter-links li span, .inPage-filter ul.filter-showall-links li span {
        display: inline-block;
        padding-left: 0.3125rem;
        color: #7f3f98;
        font-weight: 400; }
      .inPage-filter ul.filter-links li a, .inPage-filter ul.filter-showall-links li a {
        color: #359acb;
        font-weight: 400;
        padding: 0 0 0.125rem;
        display: block; }
        .inPage-filter ul.filter-links li a:hover, .inPage-filter ul.filter-showall-links li a:hover {
          border-color: #7f3f98; }
          .inPage-filter ul.filter-links li a:hover span, .inPage-filter ul.filter-showall-links li a:hover span {
            color: #453269; }
    @media screen and (min-width: 48em) {
      .inPage-filter ul.filter-links li, .inPage-filter ul.filter-showall-links li {
        padding-bottom: 0;
        padding-left: 0; }
        .inPage-filter ul.filter-links li a, .inPage-filter ul.filter-showall-links li a {
          display: inline-block;
          text-align: center;
          font-size: 0.8125rem; } }
    @media screen and (min-width: 64em) {
      .inPage-filter ul.filter-links > li, .inPage-filter ul.filter-showall-links > li {
        width: 33.33%;
        padding-right: 0;
        float: left; } }
    .inPage-filter ul.filter-links.collapse-section, .inPage-filter ul.filter-showall-links.collapse-section {
      max-height: 7.5rem; }
      @media screen and (max-width: 63.9375em) {
        .inPage-filter ul.filter-links.collapse-section, .inPage-filter ul.filter-showall-links.collapse-section {
          max-height: 14.5rem; } }
  .inPage-filter .more-btn-sec {
    padding-top: 0.1875rem;
    text-align: right; }
  .inPage-filter .show-more {
    color: #3fa5d7;
    font-size: 0.8125rem;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding: 0.625rem 0 0.625rem 1.125rem;
    display: none; }
    .inPage-filter .show-more:before {
      font-size: 0.9375rem;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%); }
  .inPage-filter hr {
    border-color: #e8e6e6;
    margin-bottom: 0; }
  @media only screen and (min-width: 1024px) and (max-width: 1120px) {
    .inPage-filter .inPage-head {
      width: 100%; }
    .inPage-filter .inPage-link {
      width: 100%; } }

.jobs-inpage-filter ul.filter-links > li {
  width: 100%; }
  .jobs-inpage-filter ul.filter-links > li a {
    width: auto;
    display: inline-block; }

.jobs-inpage-filter .row .column:last-child, .jobs-inpage-filter .row .columns:last-child {
  float: left; }

@media screen and (max-width: 63.9375em) {
  .inPage-head {
    display: none; }
  .inPage-filter .column, .inPage-filter .columns {
    padding-right: 0.625rem; }
  .Classifieds .inPage-filter ul.filter-links > li, .Jobs .inPage-filter ul.filter-links > li, .Employers .inPage-filter ul.filter-links > li {
    width: 50%;
    font-size: 0.75rem;
    padding-left: 0; }
  .Classifieds .inPage-filter .column, .Classifieds .inPage-filter .columns {
    padding-left: 0; }
  .Jobs .inPage-filter-inner {
    padding-top: 0.625rem; } }

.browse-links {
  margin: 0;
  overflow: hidden;
  width: 100%; }
  .browse-links ul {
    margin-left: 0; }
  .browse-links > li {
    width: 33.33%;
    padding-right: 0;
    float: left;
    text-align: left; }
  .browse-links li {
    display: inline-block;
    padding-left: 0.3125rem;
    padding-bottom: 0.3125rem;
    font-size: 0.875rem;
    width: 100%; }
    .browse-links li span {
      display: inline-block;
      padding-left: 0.3125rem;
      color: #7f3f98;
      font-weight: 400; }
    .browse-links li a {
      color: #359acb;
      font-weight: 400;
      padding: 0 0 0.125rem;
      display: block; }
      .browse-links li a:hover {
        border-color: #7f3f98; }
        .browse-links li a:hover span {
          color: #453269; }
  @media screen and (min-width: 48em) {
    .browse-links li {
      padding-bottom: 0;
      padding-left: 0; }
      .browse-links li a {
        display: inline-block;
        text-align: center;
        font-size: 0.8125rem; } }
  @media screen and (min-width: 64em) {
    .browse-links > li {
      width: 33.33%;
      padding-right: 0;
      float: left; } }

.social-share {
  display: block;
  width: 100%;
  border-bottom: 1px solid #ceced2;
  clear: both;
  margin-bottom: 1.25rem; }
  .social-share .short-url {
    width: 70%;
    border: 0;
    background: transparent;
    box-shadow: none !important;
    margin: 0;
    height: 30px;
    display: inline-block; }
  .social-share .copy-url-container {
    border: 1px solid #ceced2;
    width: 100%;
    padding-top: 2px;
    padding-right: 2px !important;
    display: inline-block;
    height: 36px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px; }
  .social-share .copy-to-clipboard {
    width: 70px;
    border-radius: 5px;
    height: 30px;
    line-height: 30px;
    padding-top: 0;
    text-transform: uppercase;
    font-size: 12px;
    float: right;
    margin: 0; }
  .social-share .share-label {
    text-transform: uppercase;
    font-weight: 600;
    line-height: 2.8125rem;
    font-size: 0.9375rem; }
    @media screen and (min-width: 64em) {
      .social-share .share-label {
        line-height: 3.4375rem; } }
  .social-share .social-links {
    text-align: right; }
  .social-share a {
    display: inline-block;
    font-size: 2.1875rem; }
    @media screen and (min-width: 64em) {
      .social-share a {
        font-size: 2.5rem; } }
    .social-share a:not(:last-child) {
      margin-right: 0.625rem; }
    @media screen and (min-width: 48em) {
      .social-share a.gt-icon-whatsapp {
        display: none; } }
    .social-share a:before {
      color: #60cdf6;
      font-size: 2.1875rem;
      -moz-transition: color 0.3s ease-in;
      -webkit-transition: color 0.3s ease-in;
      transition: color 0.3s ease-in; }
      .social-share a:before:hover {
        -moz-transition: color 0.3s ease-in;
        -webkit-transition: color 0.3s ease-in;
        transition: color 0.3s ease-in; }
    .social-share a:hover:before {
      color: #555555;
      -moz-transition: color 0.3s ease-in;
      -webkit-transition: color 0.3s ease-in;
      transition: color 0.3s ease-in; }
      .social-share a:hover:before:hover {
        -moz-transition: color 0.3s ease-in;
        -webkit-transition: color 0.3s ease-in;
        transition: color 0.3s ease-in; }

.ad-element {
  background-color: #e9e9e9;
  text-align: center;
  padding: 1rem; }
  .ad-element > .most-popular2 {
    padding: 0.9375rem 0 0.9375rem 0; }

.article-ad-element {
  background-color: #e9e9e9;
  text-align: center;
  padding: 1rem !important;
  display: inline-block;
  margin-right: 0.625rem; }

.home-floating-ad {
  text-align: center;
  padding: 0;
  position: relative; }
  @media screen and (min-width: 48em) {
    .home-floating-ad {
      position: relative; } }
  @media screen and (min-width: 64em) {
    .home-floating-ad {
      position: absolute;
      left: 0;
      z-index: 4;
      top: 250px; } }
  @media screen and (min-width: 75em) {
    .home-floating-ad {
      top: 450px; } }

.ad-element-top {
  text-align: center;
  padding: 0; }
  @media screen and (min-width: 48em) {
    .ad-element-top {
      padding: 1rem 0; } }
  @media screen and (min-width: 64em) {
    .ad-element-top {
      padding: 2rem 0; } }

/* Close Button */
[class*='close-'] {
  color: #fff;
  font: 14px/100% arial, sans-serif;
  position: absolute;
  text-decoration: none; }
  @media screen and (min-width: 64em) {
    [class*='close-'] {
      z-index: 4; } }
  [class*='close-']:hover {
    color: red; }

.close-thik:before {
  content: '\2716';
  /* UTF-8 symbol */
  left: -13px;
  position: absolute;
  font: 14px/100% arial,sans-serif;
  position: absolute;
  text-decoration: none;
  background: #232323;
  padding: 2px;
  top: 0; }

@media screen and (min-width: 64em) {
  .wallpaper-ad-slot .search-sec,
  .jobs-search-sec.wallpaper-ad-slot .search-sec {
    min-height: 30rem !important; }
    .wallpaper-ad-slot .search-sec .search-head,
    .jobs-search-sec.wallpaper-ad-slot .search-sec .search-head {
      padding-top: 6.25rem;
      margin: 0 auto 0.9375rem; }
      .wallpaper-ad-slot .search-sec .search-head h2,
      .jobs-search-sec.wallpaper-ad-slot .search-sec .search-head h2 {
        color: white;
        font-size: 2.1875rem;
        font-weight: 400;
        line-height: 3.125rem;
        text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.3); }
        .wallpaper-ad-slot .search-sec .search-head h2 span,
        .jobs-search-sec.wallpaper-ad-slot .search-sec .search-head h2 span {
          display: none; } }
  @media screen and (min-width: 64em) and (min-width: 64.0625em) {
    .wallpaper-ad-slot .search-sec .search-bar,
    .jobs-search-sec.wallpaper-ad-slot .search-sec .search-bar {
      max-width: 59.375rem;
      position: absolute;
      transform: translate(-50%, 0%);
      left: 50%; } }

@media screen and (min-width: 64em) {
  .jobs-search-sec.wallpaper-ad-slot .search-sec .search-head {
    padding-top: 0.625rem; } }

#refine-search {
  background: white; }
  @media screen and (min-width: 48em) {
    #refine-search {
      width: 47.5rem; } }
  #refine-search.reveal {
    padding: 0; }
  #refine-search .refine-search {
    padding: 1rem; }
    @media screen and (min-width: 48em) {
      #refine-search .refine-search {
        padding: 1.875rem; } }
    #refine-search .refine-search .select2 span.select2-selection__clear {
      display: none; }
  #refine-search.collapsed .item-more {
    display: none; }
  #refine-search .no-padding {
    padding: 0; }
  #refine-search .select2-container {
    width: 99% !important; }
  #refine-search .filter-group .button {
    font-size: .75rem;
    min-width: 4rem;
    margin-right: 0.3125rem;
    text-transform: capitalize;
    margin-bottom: 0.625rem; }
    @media screen and (min-width: 48em) {
      #refine-search .filter-group .button {
        margin-bottom: 0.9375rem;
        min-width: 5rem;
        margin-right: 0.375rem;
        font-size: .80rem; } }
  #refine-search .filter-group .button.empty {
    background-color: transparent;
    border-color: #ceced2;
    color: gray; }
  #refine-search .filter-group .btn-color {
    width: 3.25rem; }
  #refine-search .show-more {
    line-height: 1.625rem; }
    #refine-search .show-more .text-less {
      display: none; }
    #refine-search .show-more .expanded .text-more {
      display: none; }
    #refine-search .show-more .expanded .text-less {
      display: block; }
    #refine-search .show-more .btn-show-more {
      cursor: pointer;
      color: #60cdf6;
      text-transform: uppercase; }
    #refine-search .show-more .btn-show-more span {
      font-size: 0.8125rem; }
    #refine-search .show-more .btn-show-more span:before {
      font-size: 0.8125rem;
      padding-right: 0.1875rem; }
    #refine-search .show-more .text-more:before {
      content: '+'; }
    #refine-search .show-more .text-less:before {
      content: '-'; }
  #refine-search .btn-toggle-view {
    color: #60cdf6;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    cursor: pointer; }
    #refine-search .btn-toggle-view .gt-icon-arrowright,
    #refine-search .btn-toggle-view .gt-icon-arrowdown {
      position: absolute;
      top: 50%;
      transform: translateY(-40%); }
      #refine-search .btn-toggle-view .gt-icon-arrowright:before,
      #refine-search .btn-toggle-view .gt-icon-arrowdown:before {
        color: #60cdf6; }
  #refine-search ul {
    padding: 0;
    list-style-type: none;
    margin: 0; }
  #refine-search li {
    list-style-type: none;
    line-height: 0.9375rem;
    float: left;
    margin-right: 1rem;
    padding-top: 0.625rem;
    cursor: pointer;
    cursor: hand;
    margin-left: 2px;
    margin-bottom: 2px; }
  #refine-search .row {
    padding-bottom: 15px;
    padding-top: 15px; }
  #refine-search select {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    padding-right: 20px;
    width: 48%;
    padding-top: 0;
    padding-bottom: 0;
    height: 25px;
    padding-left: 0; }
  #refine-search label.columns {
    padding: 0; }
  #refine-search .label {
    font-size: smaller;
    padding-left: 0; }
    #refine-search .label:last-child {
      padding-left: 6px; }
  #refine-search .checkmark {
    display: inline-block;
    width: 1.125rem;
    height: 1rem;
    -ms-transform: rotate(45deg);
    /* IE 9 */
    -webkit-transform: rotate(45deg);
    /* Chrome, Safari, Opera */
    transform: rotate(45deg); }
  #refine-search .checkmark_circle {
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #002441;
    border-radius: 0.6875rem;
    left: 0;
    top: 0; }
  #refine-search .checkmark_stem {
    position: absolute;
    width: 0.125rem;
    height: 0.6875rem;
    background-color: #fff;
    left: 0.6875rem;
    top: 0.25rem; }
  #refine-search .checkmark_kick {
    position: absolute;
    width: 0.375rem;
    height: 0.125rem;
    background-color: #fff;
    left: 0.4375rem;
    top: 0.8125rem; }
  #refine-search .empty .checkmark_circle {
    background-color: #FFF;
    border: 0.0625rem solid #919196;
    width: 1.125rem;
    height: 1.125rem; }
  #refine-search .empty .checkmark_kick, #refine-search .empty .checkmark_stem {
    display: none; }
  #refine-search .select2-selection--single {
    border-top: 0;
    border-left: 0;
    border-radius: 0;
    border-right: 0; }
  #refine-search .btn-refine {
    cursor: pointer;
    padding: 0.625rem 2.1875rem;
    font-size: 1.0625rem; }
    #refine-search .btn-refine.secondary {
      background: #ceced2; }
      #refine-search .btn-refine.secondary:hover {
        background-color: #f8f8f8; }
    @media screen and (min-width: 48em) {
      #refine-search .btn-refine {
        margin: 0 0.3125rem; } }
  @media screen and (min-width: 48em) {
    #refine-search .refine-actions {
      text-align: center; } }
  #refine-search .title-label {
    margin-bottom: 0.3125rem; }
    @media screen and (min-width: 64em) {
      #refine-search .title-label {
        font-size: 1rem; } }
  #refine-search .title-label, #refine-search h3 {
    text-transform: uppercase;
    font-weight: 600; }
  #refine-search .close-button {
    position: absolute;
    color: #000;
    right: 1rem;
    top: 1rem;
    font-size: 1.2em;
    cursor: pointer; }
    @media screen and (min-width: 64em) {
      #refine-search .close-button {
        right: 1.5rem;
        top: 1.5rem;
        font-size: 1.2rem; } }

.filter-overlay {
  position: fixed;
  bottom: 5rem;
  width: 100%;
  text-align: center; }
  .filter-overlay .button {
    padding-left: 40%;
    padding-right: 40%;
    margin-bottom: 0; }

.details-wrapper {
  max-width: 83.4375rem; }

.badges {
  margin-top: 0.625rem; }
  .badges .icon-badge {
    font-size: 0.875rem;
    margin-bottom: 10px;
    padding-left: 0; }
    .badges .icon-badge:before {
      color: #f8981d;
      font-size: 26px;
      margin-right: 5px;
      vertical-align: middle; }
      @media screen and (max-width: 63.9375em) {
        .badges .icon-badge:before {
          font-size: 2rem; } }
    .badges .icon-badge span {
      vertical-align: middle; }
  .badges .tbl-row > div:nth-of-type(2) {
    padding-left: 0.625rem; }

.advDetails {
  min-height: 60vh; }
  .advDetails .date {
    font-size: 0.75rem;
    color: #8e8e93;
    line-height: 1.25rem; }
    @media screen and (min-width: 64em) {
      .advDetails .date {
        font-size: 0.875rem; } }
    .advDetails .date i.btn-fav, .advDetails .date .jobs-card-wrap .jobs-card a i.seeker-btn-fav, .jobs-card-wrap .jobs-card a .advDetails .date i.seeker-btn-fav {
      font-size: 2.1875rem;
      float: right;
      cursor: pointer;
      margin-top: -0.625rem; }
      .advDetails .date i.btn-fav:before, .advDetails .date .jobs-card-wrap .jobs-card a i.seeker-btn-fav:before, .jobs-card-wrap .jobs-card a .advDetails .date i.seeker-btn-fav:before {
        color: #60cdf6; }
  .advDetails .callout {
    background-color: #e1ffe7;
    border-left: 26px solid #4cda64; }
    .advDetails .callout p {
      margin: 0; }
  .advDetails .title {
    font-weight: 400;
    margin: 0.3125rem 0 0;
    word-wrap: break-word;
    line-height: 1.375rem;
    font-size: 1.125rem; }
    @media screen and (min-width: 64em) {
      .advDetails .title {
        margin: 0 0 0.3125rem;
        line-height: 2.1875rem;
        font-size: 1.875rem; } }
    .advDetails .title.include-fav {
      padding-right: 10%; }
  .advDetails .price {
    font-weight: 700;
    line-height: 1.375rem;
    font-size: 1.375rem;
    margin-top: 0.3125rem;
    padding: 0.125rem 0;
    display: inline-block; }
    @media screen and (min-width: 64em) {
      .advDetails .price {
        margin-top: 0.625rem;
        margin-bottom: 0.3125rem;
        font-size: 1.5625rem;
        line-height: 1.5625rem; } }
  .advDetails h4 {
    color: #333333;
    text-transform: uppercase;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.9375rem; }
  .advDetails .actions {
    margin-top: 1.25rem; }
    .advDetails .actions .button-group {
      position: relative; }
      .advDetails .actions .button-group .button {
        padding: 1rem 0.625rem;
        font-size: 1.125rem;
        font-weight: 700;
        line-height: 1.1;
        text-transform: uppercase;
        border-radius: 0;
        box-sizing: border-box; }
        .advDetails .actions .button-group .button:not(:last-child) {
          border-right: 0.0625rem white solid; }
        .advDetails .actions .button-group .button:before {
          color: #fff;
          font-size: 1.1875rem;
          line-height: 1.2;
          margin: 0 0.625rem 0 0;
          vertical-align: middle; }
        @media screen and (max-width: 63.9375em) {
          .advDetails .actions .button-group .button {
            width: calc(33.33333%) !important;
            line-height: 1.4375rem;
            font-size: 0.875rem;
            padding: 0.75rem 0.625rem; }
            .advDetails .actions .button-group .button:before {
              font-size: 1.25rem; } }
      @media screen and (min-width: 64em) {
        .advDetails .actions .button-group .button {
          width: calc(50%); } }
      @media screen and (max-width: 74.9375em) {
        .advDetails .actions .button-group .button {
          width: calc(33.33333%) !important; } }
      @media screen and (max-width: 63.9375em) {
        .advDetails .actions .button-group.group-2 .button {
          width: calc(50%); }
          .advDetails .actions .button-group.group-2 .button.btn-sms {
            display: none !important; } }
      .advDetails .actions .button-group .show-number {
        top: 0;
        left: 0;
        width: 0;
        display: none; }
      @media screen and (min-width: 64em) {
        .advDetails .actions .button-group .show-number {
          position: absolute;
          z-index: 1500;
          background: #00AEEF;
          height: 100%;
          width: 0;
          visibility: hidden;
          text-align: left;
          line-height: 3.75rem;
          padding-left: 0.9375rem;
          transition-duration: 0.2s;
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
          .advDetails .actions .button-group .show-number.show {
            display: block;
            width: 100%;
            visibility: visible; }
          .advDetails .actions .button-group .show-number .number {
            color: white;
            font-size: 1.25rem;
            font-weight: 600; }
            .advDetails .actions .button-group .show-number .number:before {
              color: white;
              font-size: 1.25rem;
              margin-right: 0.625rem; }
          .advDetails .actions .button-group .show-number .btn-number-close {
            position: absolute;
            background-color: #3fa5d7;
            height: 100%;
            width: 3.125rem;
            right: 0;
            text-align: center;
            cursor: pointer;
            line-height: 2.8125rem; }
            .advDetails .actions .button-group .show-number .btn-number-close:hover {
              background-color: #2991c4; }
            .advDetails .actions .button-group .show-number .btn-number-close:before {
              color: white;
              line-height: 3.75rem;
              font-size: 1.125rem; } }
    .advDetails .actions.has-profile {
      margin-top: 0; }
  .advDetails .payment-mode {
    font-size: 0.9375rem;
    font-weight: 400; }
  .advDetails .title-info {
    margin-bottom: 1.5625rem; }
  .advDetails .listing-summary {
    font-size: 0.875rem;
    color: #555555;
    font-weight: 700;
    margin: 0.375rem 0; }
    @media screen and (min-width: 64em) {
      .advDetails .listing-summary {
        font-size: 1rem; } }
    .advDetails .listing-summary .make-model-year {
      display: inline-block;
      vertical-align: middle; }
    .advDetails .listing-summary .mileage {
      padding: 0 0.9375rem 0 0;
      font-size: 0.875rem;
      display: inline-flex;
      vertical-align: middle;
      align-items: center;
      line-height: 1; }
      .advDetails .listing-summary .mileage i {
        margin-right: 0.3125rem;
        display: inline-block;
        vertical-align: middle; }
        .advDetails .listing-summary .mileage i:before {
          color: #b4b4b4;
          font-size: 1.1875rem; }
      .advDetails .listing-summary .mileage:before {
        content: '';
        display: inline-block;
        width: 10px;
        height: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        background-color: #919191;
        margin: 0 0.3125rem 0 0.625rem; }
    .advDetails .listing-summary .type-wrap {
      display: block;
      margin-top: 0.3125rem; }
      @media screen and (min-width: 64em) {
        .advDetails .listing-summary .type-wrap {
          display: inline-block;
          margin-top: 0; } }
    .advDetails .listing-summary .type {
      color: white;
      background: #803e96;
      font-size: 0.6875rem;
      display: inline-block;
      padding: 0.1875rem 0.9375rem;
      border-radius: 0.9375rem;
      text-transform: capitalize; }
    .advDetails .listing-summary .prop-detail {
      padding: 0 0.9375rem 0 0;
      font-size: 0.875rem;
      display: inline-flex;
      vertical-align: middle;
      align-items: center;
      line-height: 1; }
      .advDetails .listing-summary .prop-detail i {
        margin-right: 0.3125rem;
        display: inline-block;
        vertical-align: middle; }
        .advDetails .listing-summary .prop-detail i:before {
          color: #b4b4b4;
          font-size: 1.1875rem; }
  .advDetails .price-drop-check {
    position: relative;
    z-index: 0; }
    .advDetails .price-drop-check .md-checkbox-outline {
      border-radius: 3px;
      border-color: #62ccf5; }
    .advDetails .price-drop-check .md-checkbox.is-checked .md-checkbox-tick-outline {
      background-color: #62ccf5; }
  .advDetails .location {
    font-size: 0.875rem;
    color: #555555;
    margin-top: 0.4375rem;
    margin-bottom: 0.4375rem; }
    @media screen and (min-width: 64em) {
      .advDetails .location {
        font-size: 0.8125rem; } }
  .advDetails .gt-badges .icon:before {
    font-size: 2.625rem; }
  .advDetails .gt-badges .badge-name {
    font-size: 0.6875rem;
    display: inline-block;
    line-height: 2.375rem;
    vertical-align: top;
    font-weight: 400; }
    @media screen and (min-width: 64em) {
      .advDetails .gt-badges .badge-name {
        font-size: 0.8125rem; } }
  .advDetails .dealers-info {
    margin-top: 0.9375rem; }
    .advDetails .dealers-info a {
      padding: 0.9375rem;
      display: block;
      border: 1px #ceced2 solid;
      border-bottom: 0;
      font-weight: 600;
      font-size: 0.875rem;
      color: #555555; }
      @media screen and (min-width: 64em) {
        .advDetails .dealers-info a {
          font-size: 1rem; } }
    .advDetails .dealers-info .dealer-logo {
      vertical-align: middle;
      text-align: center; }
      .advDetails .dealers-info .dealer-logo img {
        width: auto;
        height: 2.5rem; }
    .advDetails .dealers-info .dealer-name {
      vertical-align: middle;
      line-height: 1.375rem; }
  .advDetails .report-ad {
    border-bottom: 1px solid #ceced2;
    margin-bottom: 1.875rem; }
    .advDetails .report-ad .gt-icon-flag:before {
      font-size: 20px;
      padding-right: 10px;
      vertical-align: text-bottom;
      color: #484848; }
    .advDetails .report-ad ul {
      padding: 0;
      list-style-type: none;
      margin: 0;
      display: inline-block; }
    .advDetails .report-ad li {
      list-style-type: none;
      line-height: 1.1875rem;
      padding-top: 0.625rem;
      font-size: 0.875rem;
      cursor: pointer;
      cursor: hand;
      margin-left: 2px;
      margin-bottom: 2px; }
    .advDetails .report-ad .report-label {
      text-transform: uppercase;
      font-weight: 600;
      padding: 1.25rem 0;
      font-size: 0.9375rem;
      border-bottom: 1px #ceced2 solid; }
      .advDetails .report-ad .report-label:hover {
        cursor: pointer; }
      .advDetails .report-ad .report-label .gt-icon-arrowdown:before, .advDetails .report-ad .report-label .gt-icon-arrowup:before {
        font-size: 1rem;
        line-height: 1.75rem;
        color: #60cdf6; }
    .advDetails .report-ad .report-body {
      max-height: 0;
      overflow: hidden;
      transition: 0.6s ease-in-out;
      opacity: 0;
      margin-top: -0.0625rem; }
      .advDetails .report-ad .report-body.show {
        padding: 1.25rem 0 1.875rem;
        opacity: 1;
        max-height: 500px;
        /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */ }
    .advDetails .report-ad .report-accordion {
      position: relative; }
    .advDetails .report-ad textarea {
      margin: 20px 0 20px; }
    .advDetails .report-ad .button {
      text-transform: uppercase;
      margin-bottom: 0; }
      .advDetails .report-ad .button.invert {
        border: 1px solid #60cdf6;
        background-color: white;
        color: #60cdf6; }
        .advDetails .report-ad .button.invert:hover {
          border-color: #227aa5;
          color: #227aa5; }
    .advDetails .report-ad .recaptcha_element {
      margin-bottom: 0.9375rem; }
  .advDetails .advert-element {
    padding: 20px;
    border: 1px #ceced2 solid;
    margin: 0.625rem 0 1.875rem;
    text-align: center; }
  .advDetails .outofpage {
    height: 1px;
    overflow: hidden; }
  .advDetails .productSpecs {
    font-size: 0.8125rem;
    color: #555555; }
    .advDetails .productSpecs .type {
      font-weight: 700; }
    .advDetails .productSpecs .desc {
      font-weight: 400; }
    .advDetails .productSpecs .row {
      margin-bottom: 0.625rem; }
  .advDetails .descriptions.wrapper {
    padding-top: 0.9375rem; }
    .advDetails .descriptions.wrapper:last-child {
      border-bottom: 0;
      padding-bottom: 0; }
    .advDetails .descriptions.wrapper > div {
      max-height: 110px;
      overflow: hidden;
      margin-bottom: 1rem; }
    .advDetails .descriptions.wrapper .expanded {
      max-height: none;
      margin-bottom: 0; }
    .advDetails .descriptions.wrapper p, .advDetails .descriptions.wrapper ul {
      color: #555555;
      font-size: 0.875rem; }
      @media screen and (max-width: 63.9375em) {
        .advDetails .descriptions.wrapper p, .advDetails .descriptions.wrapper ul {
          font-size: 0.8125rem;
          line-height: 1.3125rem; } }
  .advDetails.content {
    width: 100%;
    float: left;
    padding-left: 0.625rem;
    padding-right: 0.625rem; }
    @media screen and (min-width: 48em) {
      .advDetails.content {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } }
    .advDetails.content:last-child:not(:first-child) {
      float: right; }
  .advDetails .calc-wrapper:hover {
    cursor: pointer; }
  @media screen and (min-width: 64em) {
    .advDetails .calc-wrapper {
      min-height: 6.3125rem;
      position: relative;
      z-index: 50; }
      .advDetails .calc-wrapper .emi-calc {
        float: left; } }
  .advDetails .gallery {
    position: relative;
    margin: 15px 0; }
    .advDetails .gallery img {
      width: 100%; }
    .advDetails .gallery .thump-wrap {
      width: 100%;
      overflow: hidden;
      position: relative; }
      .advDetails .gallery .thump-wrap ul {
        margin: 0;
        padding: 0; }
        .advDetails .gallery .thump-wrap ul li {
          width: 25%;
          float: left;
          list-style-type: none;
          margin-top: 3px; }
          .advDetails .gallery .thump-wrap ul li:nth-child(4n) img {
            padding-right: 0px; }
          .advDetails .gallery .thump-wrap ul li:nth-child(1n+5) {
            display: none; }
          .advDetails .gallery .thump-wrap ul li img {
            width: 100%;
            cursor: pointer;
            padding: 0px 3px 0px 0px; }
    .advDetails .gallery .overlay-container {
      position: relative;
      margin: -2.5625rem 0 0 0;
      bottom: 0;
      width: 100%;
      bottom: 10px;
      color: #fff; }
    .advDetails .gallery .button-navigation {
      border: 1px solid #fff;
      padding: 12px 18px 13px;
      border-radius: 4px;
      background-color: #fff;
      text-align: center;
      font-weight: 700;
      background-color: transparent;
      text-shadow: 0 0 10px #2d383f; }
      .advDetails .gallery .button-navigation.button-navigation-small {
        padding: 6px 14px 7px;
        font-size: small; }
    .advDetails .gallery .overlay-controls {
      margin: 4px 3% 0;
      text-shadow: 0 0 10px #2d383f;
      color: #fff;
      padding-top: 10px; }
    .advDetails .gallery .slick-initialized .slick-slide {
      zoom: 1;
      width: 100%; }
  .advDetails .view-more {
    font-weight: bold;
    font-size: smaller;
    text-transform: uppercase;
    color: #000; }
    .advDetails .view-more .text-icon {
      color: #999;
      font-size: 1.25rem; }
  .advDetails .slider-outr .slick-slide {
    width: 100%; }
    .advDetails .slider-outr .slick-slide img {
      margin: 0 auto; }
    @media screen and (max-width: 74.9375em) {
      .advDetails .slider-outr .slick-slide:only-child {
        padding-bottom: 0.9375rem; } }
  @media screen and (max-width: 74.9375em) {
    .advDetails .slider-thumbnails {
      display: none; } }
  .advDetails .slider-thumbnails .slick-list {
    width: calc(100% - 90px);
    overflow: hidden;
    display: inline-block;
    vertical-align: middle; }
    .advDetails .slider-thumbnails .slick-list:first-child {
      display: block;
      margin: 0 auto; }
  .advDetails .slider-thumbnails .slick-slider {
    padding: 1.25rem 0 0.9375rem;
    margin-top: -0.3125rem;
    border: 1px solid #ceced2;
    cursor: pointer;
    border-top: 0; }
  .advDetails .slider-thumbnails .slick-slide {
    padding: 0.125rem;
    box-sizing: border-box;
    outline: none; }
    .advDetails .slider-thumbnails .slick-slide.slick-current.slick-active {
      background: #f1f1f1; }
    .advDetails .slider-thumbnails .slick-slide:hover {
      background: #f0eff5; }
    .advDetails .slider-thumbnails .slick-slide img {
      padding: 0.3125rem 0 0; }
  .advDetails .slider-thumbnails .slick-prev, .advDetails .slider-thumbnails .slick-next {
    white-space: nowrap;
    text-indent: 100%;
    overflow: hidden;
    width: 2.1875rem;
    height: 2.1875rem;
    border: 1px #ceced2 solid;
    border-radius: 50%;
    position: relative;
    margin: 0.3125rem; }
    .advDetails .slider-thumbnails .slick-prev:hover, .advDetails .slider-thumbnails .slick-next:hover {
      border-color: #60cdf6; }
    .advDetails .slider-thumbnails .slick-prev:before, .advDetails .slider-thumbnails .slick-prev:after, .advDetails .slider-thumbnails .slick-next:before, .advDetails .slider-thumbnails .slick-next:after {
      content: '';
      width: 0;
      height: 0;
      border: inset 9px;
      position: absolute;
      top: 50%;
      transform: translate(-50%, -50%);
      display: inline-block; }
  .advDetails .slider-thumbnails .slick-prev:before {
    border-color: transparent #ceced2 transparent;
    border-right-style: solid;
    border-left-width: 0;
    left: 48%; }
  .advDetails .slider-thumbnails .slick-prev:after {
    border-color: transparent white transparent;
    border-right-style: solid;
    border-left-width: 0;
    left: 52%; }
  .advDetails .slider-thumbnails .slick-prev:hover:before {
    border-right-color: #60cdf6; }
  .advDetails .slider-thumbnails .slick-prev:hover:after {
    border-right-color: white; }
  .advDetails .slider-thumbnails .slick-next:before {
    border-color: transparent #ceced2;
    border-left-style: solid;
    border-right-width: 0;
    left: 52%; }
  .advDetails .slider-thumbnails .slick-next:after {
    border-color: transparent white;
    border-left-style: solid;
    border-right-width: 0;
    left: 48%; }
  .advDetails .slider-thumbnails .slick-next:hover:before {
    border-left-color: #60cdf6; }
  .advDetails .slider-thumbnails .slick-next:hover:after {
    border-left-color: white; }
  .advDetails .favourite-sec {
    position: relative; }
  .advDetails .features-data {
    padding: 0 0 1.25rem 0;
    width: 100%;
    float: left; }
    .advDetails .features-data .feature-tab {
      width: 100%; }
      .advDetails .features-data .feature-tab ul {
        float: left;
        margin: 0;
        border-radius: 0.3125rem;
        border: 1px solid #ceced2; }
        .advDetails .features-data .feature-tab ul li {
          display: inline-block;
          border-right: 1px solid #ceced2;
          font-size: 0.8125rem;
          line-height: 0.8125rem;
          list-style-type: none;
          font-weight: 600;
          white-space: nowrap; }
          .advDetails .features-data .feature-tab ul li:last-child {
            border-radius: 0;
            border: 0; }
          .advDetails .features-data .feature-tab ul li a {
            padding: 0.875rem 0.625rem;
            color: #60cdf6;
            width: 100%;
            text-align: center;
            display: inline-block;
            text-transform: uppercase;
            transition: background-color 0.4s ease;
            -webkit-transition: background-color 0.4s ease; }
            .advDetails .features-data .feature-tab ul li a:hover {
              background: #eeeeee;
              color: #555555;
              transition: background-color 0.4s ease;
              -webkit-transition: background-color 0.4s ease; }
            .advDetails .features-data .feature-tab ul li a.active {
              background: #eeeeee;
              color: #555555; }
    .advDetails .features-data .feature-wrap .info {
      display: none;
      color: #555555;
      padding: 0.625rem 0 0;
      font-size: 0.875rem;
      float: left;
      width: 100%; }
      .advDetails .features-data .feature-wrap .info ul {
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 0;
        display: inline-block;
        width: 100%; }
        .advDetails .features-data .feature-wrap .info ul li {
          width: 33%;
          float: left;
          padding: 0.5% 3.5% 0.5% 0;
          color: #888888; }
          .advDetails .features-data .feature-wrap .info ul li span {
            color: #555555; }
      @media screen and (max-width: 63.9375em) {
        .advDetails .features-data .feature-wrap .info {
          font-size: 0.8125rem;
          line-height: 1.3125rem; } }
    @media screen and (max-width: 63.9375em) {
      .advDetails .features-data .feature-wrap {
        padding-top: 1.25rem; }
        .advDetails .features-data .feature-wrap .info {
          display: inline-block;
          width: 100%;
          padding: 0;
          margin: 0 0 0.625rem 0; }
          .advDetails .features-data .feature-wrap .info ul {
            width: 100%;
            margin-top: 0;
            padding-top: 0; }
            .advDetails .features-data .feature-wrap .info ul li {
              width: 49%;
              padding: 0.5% 3.5% 0.5% 0; }
          .advDetails .features-data .feature-wrap .info .slidelink {
            padding: 0.9375rem;
            display: block;
            text-decoration: none;
            font-size: 0.875rem;
            color: #fff;
            border: 1px solid #ceced2;
            width: 100%;
            font-weight: 600;
            color: #000;
            border-radius: 0.3125rem; }
            .advDetails .features-data .feature-wrap .info .slidelink:before {
              padding: 0;
              margin: 0;
              position: absolute;
              right: 1.25rem;
              font-size: 1.25rem; }
          .advDetails .features-data .feature-wrap .info .slide-div {
            display: none;
            padding: 0.9375rem 0.9375rem 0 0.9375rem;
            width: 100%; }
      .advDetails .features-data .feature-tab {
        display: none; } }
    @media screen and (min-width: 48em) {
      .advDetails .features-data .slidelink {
        display: none; } }
  .advDetails .checkmark {
    display: inline-block;
    width: 1.125rem;
    height: 1rem;
    -ms-transform: rotate(45deg);
    /* IE 9 */
    -webkit-transform: rotate(45deg);
    /* Chrome, Safari, Opera */
    transform: rotate(45deg);
    float: left;
    margin-right: 0.4375rem; }
  .advDetails .checkmark_circle {
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    background-color: #002441;
    border-radius: 0.6875rem;
    left: 0;
    top: 0; }
  .advDetails .checkmark_stem {
    position: absolute;
    width: 0.125rem;
    height: 0.6875rem;
    background-color: #fff;
    left: 0.6875rem;
    top: 0.25rem; }
  .advDetails .checkmark_kick {
    position: absolute;
    width: 0.375rem;
    height: 0.125rem;
    background-color: #fff;
    left: 0.4375rem;
    top: 0.8125rem; }
  .advDetails .empty .checkmark_circle {
    background-color: #fff;
    border: 0.0625rem solid #919196;
    width: 1.125rem;
    height: 1.125rem; }
  .advDetails .empty .checkmark_kick,
  .advDetails .empty .checkmark_stem {
    display: none; }
  .advDetails .amenities-wrapper {
    padding-top: 0.9375rem; }
  .advDetails .amenities-list {
    padding: 0; }
    .advDetails .amenities-list .amenities {
      color: #888888;
      width: 50%;
      float: left; }
      @media screen and (min-width: 64em) {
        .advDetails .amenities-list .amenities {
          width: 33.33%; } }
      .advDetails .amenities-list .amenities span {
        color: #555555;
        font-size: 0.8125rem; }
  .advDetails .column:last-child:not(:first-child), .advDetails .columns:last-child:not(:first-child),
  .advDetails .columns:last-child:not(:first-child) {
    float: left; }

.gt-badge-details {
  overflow: hidden;
  margin-top: 0.9375rem;
  margin-bottom: 0.9375rem; }
  .gt-badge-details:empty {
    display: none; }
  @media screen and (min-width: 64em) {
    .gt-badge-details {
      margin-top: 0.3125rem; } }
  .gt-badge-details > div {
    width: 50%;
    float: left;
    padding: 0.375rem 0; }
    @media screen and (min-width: 64em) {
      .gt-badge-details > div.jobs-badge {
        width: auto;
        display: inline-block;
        margin-right: 5%; } }
  .gt-badge-details .gt-icon-badge .icon {
    float: left; }
  .gt-badge-details .gt-icon-badge .badge-name {
    display: inline-block;
    padding: 0.3125rem 0 0.3125rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.6;
    width: auto; }
    @media screen and (min-width: 64em) {
      .gt-badge-details .gt-icon-badge .badge-name {
        font-size: 0.875rem; } }

.w3w .w3w-embed {
  display: inline-block;
  position: relative;
  background: url("../img/generic/w3word-icon.png") no-repeat 0 center;
  padding: 0.1875rem 0 0.1875rem 1.875rem;
  font-size: 0.875rem;
  font-weight: 400;
  width: 100%; }
  .w3w .w3w-embed .w3w-popup {
    display: none;
    position: absolute;
    background: transparent;
    left: 0;
    bottom: 20px;
    color: #FFF;
    width: 100%;
    font-size: 10px;
    box-sizing: border-box; }
    .w3w .w3w-embed .w3w-popup:before {
      position: absolute;
      content: '';
      display: block;
      left: calc(20px);
      bottom: 1px;
      width: 0;
      height: 0;
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-top: 10px solid #cecdd2; }
    .w3w .w3w-embed .w3w-popup:after {
      position: absolute;
      content: '';
      display: block;
      left: calc(20px);
      bottom: 3px;
      width: 0;
      height: 0;
      border-left: 9px solid transparent;
      border-right: 9px solid transparent;
      border-top: 9px solid #eae2f7; }
    .w3w .w3w-embed .w3w-popup .w3w-popup-inner {
      background: #eae2f7;
      padding: 10px;
      border-radius: 5px;
      margin-bottom: 10px;
      font-weight: 400;
      text-align: left;
      line-height: 16px;
      color: #484848;
      box-shadow: none;
      font-size: 13px;
      border: 1px solid #cecdd2; }
      .w3w .w3w-embed .w3w-popup .w3w-popup-inner a {
        color: #359acb !important;
        text-decoration: underline; }
  .w3w .w3w-embed:hover .w3w-popup {
    display: block; }

.breadcrumb {
  margin: 25px 0px 20px; }
  .breadcrumb a, .breadcrumb span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin: 0px 7px 0px 0px;
    overflow: hidden; }
    .breadcrumb a:before, .breadcrumb span:before {
      padding-right: 7px;
      vertical-align: text-bottom;
      font-size: 0.625rem;
      line-height: 1.125rem; }
    @media screen and (max-width: 63.9375em) {
      .breadcrumb a.b-title, .breadcrumb span.b-title {
        max-width: 60%;
        margin: 0;
        text-overflow: ellipsis;
        white-space: nowrap; } }
  .breadcrumb a {
    color: #000;
    transition: color 0.4s ease; }
    .breadcrumb a:hover {
      color: #60cdf6; }
  .breadcrumb span {
    color: #359acb; }

.listing-img-slider {
  padding-bottom: 0.9375rem; }
  .listing-img-slider .slider-outr {
    position: relative;
    overflow: hidden; }
    .listing-img-slider .slider-outr:hover .slide-previous, .listing-img-slider .slider-outr:hover .slide-next {
      display: inline-block; }
    .listing-img-slider .slider-outr ul.orbit-container {
      width: 100%;
      height: auto !important;
      margin: 0;
      list-style-type: none; }
      @media screen and (min-width: 64em) {
        .listing-img-slider .slider-outr ul.orbit-container {
          min-height: 18.75rem; } }
      .listing-img-slider .slider-outr ul.orbit-container li {
        width: 100%; }
        .listing-img-slider .slider-outr ul.orbit-container li img {
          width: 100% !important; }
    .listing-img-slider .slider-outr .slide-previous, .listing-img-slider .slider-outr .slide-next {
      top: 50%;
      transform: translate(0, -50%);
      background: rgba(0, 0, 0, 0.5);
      padding: 10px;
      color: white;
      display: none; }
    .listing-img-slider .slider-outr .slide-previous {
      position: absolute;
      z-index: 2;
      left: 0;
      border-radius: 0 0.375rem 0.375rem 0; }
    .listing-img-slider .slider-outr .slide-next {
      position: absolute;
      z-index: 1000;
      right: 0;
      border-radius: 0.375rem 0 0 0.375rem; }
  .listing-img-slider .slider-nav nav.orbit-bullets {
    position: relative; }
    .listing-img-slider .slider-nav nav.orbit-bullets button {
      width: 24%;
      padding-right: 0.125rem;
      padding-top: 0.125rem; }
      @media screen and (min-width: 64em) {
        .listing-img-slider .slider-nav nav.orbit-bullets button {
          width: 24.35%; } }
      .listing-img-slider .slider-nav nav.orbit-bullets button:nth-child(4) {
        padding-right: 0; }
      .listing-img-slider .slider-nav nav.orbit-bullets button:nth-child(n+5) {
        display: none; }
    .listing-img-slider .slider-nav nav.orbit-bullets .show-all {
      position: absolute;
      right: 0px;
      font-size: 0.8125rem;
      font-weight: bold;
      color: #fff;
      top: 0;
      width: 25%;
      height: 100%;
      text-align: center; }
      .listing-img-slider .slider-nav nav.orbit-bullets .show-all span {
        margin-top: 17%;
        display: block;
        position: relative;
        z-index: 30;
        line-height: 0.9375rem;
        cursor: pointer; }
        @media screen and (max-width: 63.9375em) {
          .listing-img-slider .slider-nav nav.orbit-bullets .show-all span {
            margin-top: 13%; } }
      .listing-img-slider .slider-nav nav.orbit-bullets .show-all span.layer {
        position: absolute;
        margin: 0px;
        width: 100%;
        background: #000;
        opacity: 0.5;
        height: 100%;
        top: 1px;
        z-index: 0; }
  .listing-img-slider .more-images {
    display: none; }
    .listing-img-slider .more-images .button {
      padding-top: 10px;
      margin-top: 0.625rem; }
    .listing-img-slider .more-images .more-image-wrapper {
      background: #fff url("../img/generic/loader-image.gif") no-repeat 50% 50%;
      margin-bottom: 0.625rem; }
    .listing-img-slider .more-images img {
      width: 100%; }
  .listing-img-slider .dealers-info {
    background: #f7f7f7;
    position: relative;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem; }
    .listing-img-slider .dealers-info > a {
      padding: 0.9375rem;
      display: inline-block;
      color: #484848;
      width: 100%; }
    .listing-img-slider .dealers-info .dealer-logo {
      padding-right: 1.25rem;
      vertical-align: middle; }
      .listing-img-slider .dealers-info .dealer-logo img {
        width: auto;
        height: 2.5rem; }
    .listing-img-slider .dealers-info .descpn {
      margin: 0;
      padding: 0;
      vertical-align: top;
      line-height: 1.1; }
      .listing-img-slider .dealers-info .descpn span {
        margin: 0;
        color: #00AEEF;
        font-size: 0.75rem;
        text-transform: uppercase;
        font-weight: 600; }
      .listing-img-slider .dealers-info .descpn h3 {
        margin: 0 0 3px 0;
        font-size: 1.0625rem;
        line-height: 1.1;
        font-weight: bold;
        color: #000; }
  .listing-img-slider .dealers-info.bg {
    background: #E7F1FE; }

.single-item img {
  margin: 0 auto; }

.gn-fade-line {
  margin: 25px 0;
  height: 1px;
  background: black;
  background: -webkit-gradient(linear, 0 0, 100% 0, from(white), to(white), color-stop(50%, black)); }

ul.list-style-none {
  list-style: none; }

.button.flat {
  border-radius: 0; }

i.favorite-details {
  float: right;
  cursor: pointer; }

.component-padding {
  padding: 25px 0 0; }

div.related-ads.border-none {
  border: none; }

.Autos .car-list-summary .mileage {
  font-size: 0.8125rem;
  line-height: 0.85;
  display: inline-block; }
  @media screen and (min-width: 64em) {
    .Autos .car-list-summary .mileage {
      font-size: 1.125rem; } }
  .Autos .car-list-summary .mileage:before {
    content: "\2022";
    font-size: 2rem;
    line-height: 0.55;
    vertical-align: bottom;
    margin: 0 0.3125rem; }

.rent-property .advDetails .car-list-summary .mileage, .buy-property .advDetails .car-list-summary .mileage {
  padding: 0 0.9375rem 0 0; }
  .rent-property .advDetails .car-list-summary .mileage:before, .buy-property .advDetails .car-list-summary .mileage:before {
    display: none; }
  .rent-property .advDetails .car-list-summary .mileage:after, .buy-property .advDetails .car-list-summary .mileage:after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background-color: #8e8e93;
    margin: 0 0 0 15px; }

.rent-property .advDetails .car-list-summary .tbl-data:last-child .mileage:after, .buy-property .advDetails .car-list-summary .tbl-data:last-child .mileage:after {
  display: none; }

@media screen and (max-width: 63.9375em) {
  .rent-property .tbl-wide .tbl-data, .buy-property .tbl-wide .tbl-data {
    display: inline-block; } }

.slick-dots {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  position: absolute;
  bottom: 0.9375rem; }
  @media screen and (min-width: 64em) {
    .advDetails .slick-dots {
      display: none !important; } }
  .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      font-size: 0;
      line-height: 0;
      display: block;
      width: 20px;
      height: 20px;
      padding: 5px;
      cursor: pointer;
      color: transparent;
      border: 0;
      outline: none;
      background: transparent; }
      .slick-dots li button:before, .slick-dots li button:after {
        font-family: 'slick';
        line-height: 20px;
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        content: '\2022';
        text-align: center;
        -webkit-font-smoothing: antialiased; }
      .slick-dots li button:before {
        font-size: 4.0625rem;
        color: white; }
      .slick-dots li button:after {
        font-size: 3.125rem;
        color: #555555;
        opacity: .45;
        left: 0.0625rem; }
    .slick-dots li.slick-active button:after {
      opacity: 1; }

@media screen and (max-width: 63.9375em) {
  .related-ads {
    margin-bottom: 0.9375rem; } }

@media screen and (min-width: 64em) {
  .related-ads {
    margin-bottom: 1.5625rem; } }

.related-ads h3 {
  text-transform: uppercase; }

.related-ads .head {
  overflow: hidden;
  clear: both;
  margin-top: 0.9375rem; }
  .related-ads .head .button {
    background-color: #fff;
    cursor: pointer;
    padding: 0; }
    .related-ads .head .button i:before {
      color: #00AEEF;
      color: #60CDF6;
      font-size: 2.1875rem;
      padding-left: 0.3125rem;
      -moz-transition: color 0.2s ease-in;
      -webkit-transition: color 0.2s ease-in;
      transition: color 0.2s ease-in; }
      .related-ads .head .button i:before:hover {
        -moz-transition: color 0.2s ease-in;
        -webkit-transition: color 0.2s ease-in;
        transition: color 0.2s ease-in; }
    .related-ads .head .button i:hover:before {
      color: #555555; }
  .related-ads .head h3 {
    font-weight: 300;
    color: #000;
    font-size: 1.5rem; }

.related-ads .card > a {
  display: block;
  color: #000;
  zoom: 1; }
  @media screen and (min-width: 64em) {
    .related-ads .card > a {
      margin-right: 0.5rem; } }

.related-ads .card .image {
  min-height: 9.375rem;
  background: #e7f2f6; }

.related-ads .card .price {
  padding: 0.125rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000; }
  @media screen and (min-width: 64em) {
    .related-ads .card .price {
      font-size: 1.1875rem; } }

.related-ads .card .title {
  font-size: 1.125rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #000;
  font-weight: 300; }
  @media screen and (min-width: 64em) {
    .related-ads .card .title {
      font-size: 1.0625rem; } }

.related-ads .card .specs {
  font-weight: 400; }
  .related-ads .card .specs .specs-info {
    font-size: 0.75rem;
    line-height: 0.9;
    color: #000;
    display: inline-flex;
    align-items: center;
    margin-right: 1.25rem;
    vertical-align: middle; }
    .related-ads .card .specs .specs-info i {
      margin-right: 0.3125rem; }
      .related-ads .card .specs .specs-info i:before {
        color: #b4b4b4;
        font-size: 1.1875rem; }

.related-ads .card .location {
  color: #8e8e93;
  font-size: 0.75rem;
  font-weight: 300; }

.related-ads .card .mileage {
  color: #8e8e93;
  line-height: 1.125rem;
  font-size: 0.75rem; }

.related-ads .card .card-info {
  padding: 0.9375rem;
  border: 1px solid #ceced2;
  -webkit-border-radius: 0px 0px 2px 2px;
  -moz-border-radius: 0px 0px 2px 2px;
  border-radius: 0px 0px 2px 2px; }

.related-ads .slick-track {
  margin: 0; }

.emi-calc {
  display: block;
  width: 100%;
  border: 1px solid #ceced2;
  font-size: 0.8125rem; }
  .emi-calc .calc-header {
    padding: 20px;
    position: relative; }
  .emi-calc .calculator {
    border-top: 1px solid #ceced2;
    max-height: 0;
    overflow: hidden;
    transition: 0.6s ease-in-out;
    opacity: 0;
    padding: 0px 15px !important; }
    .emi-calc .calculator.show {
      opacity: 1;
      max-height: 600px;
      /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */
      padding: 15px !important; }
  .emi-calc sub {
    vertical-align: sub;
    font-size: smaller; }
  .emi-calc span {
    text-transform: uppercase;
    font-size: 12px;
    color: grey;
    padding-left: 7px; }
  .emi-calc input,
  .emi-calc input:focus {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
    background-color: transparent;
    margin-bottom: 10px;
    font-weight: bold;
    padding-top: 0;
    height: 30px; }
  .emi-calc h5 {
    margin: 0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold; }
  .emi-calc p {
    line-height: 20px;
    margin: 0;
    font-size: 17px;
    color: #000; }
    .emi-calc p strong {
      color: #000; }
  .emi-calc .clac-icon {
    width: 40px;
    display: inline-block;
    vertical-align: top;
    margin-top: 3px; }
  .emi-calc .calc {
    width: 80%;
    margin-left: 5px;
    display: inline-block; }
    .emi-calc .calc h5 {
      font-weight: 600;
      font-size: 0.75rem;
      color: #000000; }
  .emi-calc .gt-icon-arrowup,
  .emi-calc .gt-icon-arrowdown {
    font-size: 1.875rem;
    width: 1px;
    height: 1px;
    color: #60cdf6; }
    .emi-calc .gt-icon-arrowup:before,
    .emi-calc .gt-icon-arrowdown:before {
      color: #60cdf6;
      padding: 0;
      margin: 0;
      position: absolute;
      top: 40%;
      right: 0.625rem;
      font-size: 1rem; }
  .emi-calc .result {
    margin: 10px 0; }
    .emi-calc .result span {
      display: block;
      line-height: 16px;
      color: grey; }
    .emi-calc .result img {
      width: 20px;
      margin-right: 5px; }
    .emi-calc .result h5 {
      text-transform: none; }
    .emi-calc .result strong {
      font-size: 24px; }
      .emi-calc .result strong em {
        font-style: normal;
        font-size: 0.875rem; }
    .emi-calc .result label {
      margin-top: 10px; }
    .emi-calc .result .result-wrap {
      background: #eefafe;
      padding: 0.9375rem 0px 0.9375rem; }

.profile-overlay {
  padding: 60px 0;
  overflow: hidden; }
  @media screen and (max-width: 47.9375em) {
    .profile-overlay {
      width: 90%;
      margin: 20px 5% !important;
      top: 10px !important;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px;
      overflow: hidden;
      overflow-y: scroll;
      height: 90vh;
      min-height: 90vh;
      padding: 40px 0; } }
  .profile-overlay .overlay-close {
    position: absolute;
    right: 0.3125rem;
    top: 0.3125rem;
    padding: 0.625rem;
    font-size: 0.9375rem;
    -moz-transition: color 0.2s ease-in;
    -webkit-transition: color 0.2s ease-in;
    transition: color 0.2s ease-in; }
    .profile-overlay .overlay-close:hover {
      -moz-transition: color 0.2s ease-in;
      -webkit-transition: color 0.2s ease-in;
      transition: color 0.2s ease-in; }
    .profile-overlay .overlay-close:hover:before {
      color: #60cdf6; }
  .profile-overlay .profile-card {
    margin-bottom: 20px;
    text-align: center;
    margin-right: 40px; }
    @media screen and (min-width: 48em) {
      .profile-overlay .profile-card {
        border-right: 1px #ddd solid;
        margin-bottom: 0; } }
    .profile-overlay .profile-card h5 {
      margin: 0; }
    .profile-overlay .profile-card .email {
      color: #9c9c9c;
      margin-bottom: 10px; }
    .profile-overlay .profile-card a {
      font-size: smaller; }
  @media screen and (min-width: 48em) and (max-width: 63.9375em) and (orientation: portrait) {
    .profile-overlay .profile-features {
      text-align: center; } }
  @media only screen and (min-width: 760px) and (max-width: 1024px) {
    .profile-overlay .profile-nav {
      min-height: 5.625rem !important;
      text-align: center; } }
  @media screen and (min-width: 64em) {
    .profile-overlay .profile-nav {
      min-height: 5.625rem !important;
      text-align: left; } }
  .profile-overlay .signout-btn {
    width: auto;
    margin: 1.0625rem 1rem 0;
    padding: 0.625rem 2.1875rem;
    font-size: 1.0625rem;
    text-transform: uppercase; }
  .profile-overlay .feature {
    padding: .8rem 1rem;
    margin-bottom: 1rem;
    display: block;
    color: black;
    transition: background-color 0.25s ease-out, color 0.25s ease-out; }
    .profile-overlay .feature:hover {
      background: #EDF5F7; }
    .profile-overlay .feature h5 {
      margin: 0; }
    .profile-overlay .feature .byline {
      font-size: smaller; }
      .profile-overlay .feature .byline span {
        color: #60cdf6; }
  .profile-overlay .image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    width: 130px;
    background: #E7F1FE;
    margin: 0 auto;
    height: 130px;
    margin-bottom: 25px; }
    @media screen and (max-width: 47.9375em) {
      .profile-overlay .image-container {
        width: 100px;
        height: 100px;
        margin-bottom: 5px; } }
  .profile-overlay .avatar {
    width: 100%; }
  .profile-overlay .button.invert {
    border: 1px solid #60CDF6;
    background-color: #fff;
    color: #60CDF6; }
  .profile-overlay .button:before {
    box-shadow: 0px 0px 1px 0px #CCD;
    border-radius: 50%;
    height: 30px;
    width: 30px; }

.callout {
  margin: 0.9375rem 0 0; }
  @media screen and (max-width: 63.9375em) {
    .callout {
      padding-right: 2.5rem; } }
  .callout .close-button {
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.375rem; }
  .callout.web-info-msg {
    font-size: 0.8125rem;
    padding-left: 40px;
    margin: 0;
    color: #333333; }
    @media screen and (max-width: 63.9375em) {
      .callout.web-info-msg {
        margin-top: 10px; } }
    .callout.web-info-msg a {
      color: #333333;
      text-decoration: underline; }
    .callout.web-info-msg .info-icon {
      position: absolute;
      left: -19px;
      top: 3px; }
      .callout.web-info-msg .info-icon:before {
        font-weight: bold !important;
        color: #ed8700; }
    .callout.web-info-msg .msg-wrap {
      position: relative;
      text-align: center; }
      @media screen and (min-width: 64em) {
        .callout.web-info-msg .msg-wrap {
          width: 840px;
          margin: auto; }
          .callout.web-info-msg .msg-wrap .inner {
            position: relative;
            display: inline-block; } }
    .callout.web-info-msg.bg-blue {
      background: #405973;
      color: #EDFBF1;
      padding: 10px 0; }
      .callout.web-info-msg.bg-blue a {
        color: #EDFBF1;
        text-decoration: underline; }

.gt-spinner {
  margin: 80px auto;
  width: 80px;
  text-align: center; }
  .gt-spinner > div {
    width: 20px;
    height: 20px;
    background-color: #60cdf6;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: anim-bouncedelay 1.4s infinite ease-in-out both;
    animation: anim-bouncedelay 1.4s infinite ease-in-out both; }
  .gt-spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s; }
  .gt-spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s; }

@-webkit-keyframes anim-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0); }
  40% {
    -webkit-transform: scale(1); } }

@keyframes anim-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0); }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.dashboard-head {
  width: 100%;
  border-top: 1px #ceced2 solid; }
  .dashboard-head nav {
    margin: 1rem 0 0; }
  .dashboard-head .menu-text {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 20px;
    padding: .5rem 1rem .5rem .5rem; }
    .dashboard-head .menu-text:first-child {
      padding-left: 0; }
  .dashboard-head .selected {
    padding: 0; }
  .dashboard-head .button {
    color: #28ace2;
    border-color: #60cdf6;
    border-radius: 0.25rem;
    background-color: #fff;
    min-width: 140px;
    text-align: left;
    text-transform: capitalize;
    min-height: 2.5rem;
    font-size: 0.8125rem; }
    .dashboard-head .button.dropdown:after {
      display: none; }
    .dashboard-head .button.dropdown:before {
      font-family: "gt";
      right: 0.5rem;
      color: #60cdf6;
      font-size: 0.875rem;
      line-height: 0.875rem;
      float: right; }
  .dashboard-head .menu {
    min-width: 8.75rem; }
    .dashboard-head .menu .is-dropdown-submenu-parent {
      opacity: 0; }
    .dashboard-head .menu .is-dropdown-submenu {
      z-index: 1004;
      box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
      border: 1px solid #eeeeee;
      border-radius: 0 0 0.1875rem 0.1875rem; }
      .dashboard-head .menu .is-dropdown-submenu li {
        border-bottom: 1px solid #eeeeee; }
        .dashboard-head .menu .is-dropdown-submenu li a {
          -moz-transition: background-color 0.4s ease-out;
          -webkit-transition: background-color 0.4s ease-out;
          transition: background-color 0.4s ease-out; }
          .dashboard-head .menu .is-dropdown-submenu li a:hover {
            -moz-transition: background-color 0.4s ease-out;
            -webkit-transition: background-color 0.4s ease-out;
            transition: background-color 0.4s ease-out; }
          .dashboard-head .menu .is-dropdown-submenu li a:hover {
            background-color: #eeeeee; }
        .dashboard-head .menu .is-dropdown-submenu li:last-child {
          border-bottom: none; }
      .dashboard-head .menu .is-dropdown-submenu a {
        color: #28ace2;
        padding: 1rem;
        font-size: 0.8125rem;
        font-weight: 400;
        display: block;
        text-transform: capitalize; }
  .dashboard-head .notify-callout {
    border-left: 26px solid #62ccf5;
    padding: 1.25rem 3.4375rem 1.25rem 2.1875rem;
    background: #e0f5fd;
    font-size: 0.875rem; }
    @media screen and (min-width: 64em) {
      .dashboard-head .notify-callout p {
        font-size: 1rem; } }
    .dashboard-head .notify-callout button {
      background: #c7d6dd;
      padding: 0.4375rem;
      border-radius: 50%;
      top: 1rem; }
      .dashboard-head .notify-callout button:before {
        color: #e0f5fd;
        font-weight: 800;
        font-size: 17px; }

.dashboard-wrapper .ais-SortBy__root {
  box-shadow: none;
  position: relative;
  border-color: #60cdf6;
  width: 100%;
  background-color: white;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 400;
  cursor: pointer;
  min-height: 2.5rem;
  background-image: url("../img/generic/arrow-down-icon-blue.svg");
  background-size: 1rem;
  outline: none; }

.dashboard-wrapper .dashboard-content {
  display: none;
  opacity: 0; }

.dashboard-wrapper > .container {
  min-height: 60vh; }

.dashboard-wrapper .dashboard {
  margin-bottom: 0.9375rem; }
  @media screen and (min-width: 64em) {
    .dashboard-wrapper .dashboard {
      margin-bottom: 1.875rem; } }
  .dashboard-wrapper .dashboard .gt-spinner {
    margin: 120px auto; }
  .dashboard-wrapper .dashboard .popup-title {
    font-size: 18px;
    font-weight: bold;
    color: #000; }
  .dashboard-wrapper .dashboard .popup-description {
    font-size: 14px;
    color: #000; }
  .dashboard-wrapper .dashboard .popup-content .actions .button {
    margin: 0px; }
  .dashboard-wrapper .dashboard .success-callout,
  .dashboard-wrapper .dashboard .error-callout,
  .dashboard-wrapper .dashboard .warning-callout {
    font-size: 0.875rem;
    padding: 1rem 3rem 1rem 1rem;
    position: relative;
    top: 0;
    box-sizing: border-box;
    display: block;
    z-index: 99; }
    .dashboard-wrapper .dashboard .success-callout .message p,
    .dashboard-wrapper .dashboard .error-callout .message p,
    .dashboard-wrapper .dashboard .warning-callout .message p {
      margin-bottom: 0; }
    @media screen and (min-width: 64em) {
      .dashboard-wrapper .dashboard .success-callout,
      .dashboard-wrapper .dashboard .error-callout,
      .dashboard-wrapper .dashboard .warning-callout {
        padding-right: 35px; }
        .dashboard-wrapper .dashboard .success-callout p,
        .dashboard-wrapper .dashboard .error-callout p,
        .dashboard-wrapper .dashboard .warning-callout p {
          font-size: 1rem; } }
    .dashboard-wrapper .dashboard .success-callout button,
    .dashboard-wrapper .dashboard .error-callout button,
    .dashboard-wrapper .dashboard .warning-callout button {
      background: rgba(142, 142, 147, 0.3);
      padding: 0.4375rem;
      border-radius: 50%;
      top: 1.5625rem;
      right: 0.5rem;
      width: 32px;
      height: 32px; }
      .dashboard-wrapper .dashboard .success-callout button:before,
      .dashboard-wrapper .dashboard .error-callout button:before,
      .dashboard-wrapper .dashboard .warning-callout button:before {
        color: #e0f5fd;
        font-weight: 800;
        font-size: 17px; }
  .dashboard-wrapper .dashboard .success-callout {
    background-color: #e1ffe7;
    border-left: 26px solid #4cda64; }
  .dashboard-wrapper .dashboard .error-callout {
    background-color: #ffefe1;
    border-left: 26px solid #f16d4a; }
  .dashboard-wrapper .dashboard .warning-callout {
    background-color: #fffae1;
    border-left: 26px solid #f1d84a; }
  .dashboard-wrapper .dashboard .skills .tag {
    background-color: #e0f5fd;
    color: #002542;
    position: relative;
    font-size: 0.875rem;
    padding: 0 1rem;
    display: inline-block;
    line-height: 1.875rem;
    margin: 0.375rem 0.375rem 0.5rem 0;
    border-radius: 3.125rem; }
    .dashboard-wrapper .dashboard .skills .tag span {
      padding-right: 1rem;
      font-size: 0.8125rem; }
  .dashboard-wrapper .dashboard .skills .gt-icon-close {
    position: relative;
    top: 0.1875rem;
    cursor: pointer; }
    .dashboard-wrapper .dashboard .skills .gt-icon-close:before {
      color: #002542; }
  .dashboard-wrapper .dashboard #dashboard-content {
    padding-top: 1.25rem;
    min-height: 60vh;
    position: relative;
    /*.loading {
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.95);
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 1000;
                display: none;
                img {
                    top: rem-calc(100);
                    position: absolute;
                }
            }*/ }
    @media screen and (min-width: 64em) {
      .dashboard-wrapper .dashboard #dashboard-content {
        padding: 1.25rem 0 1.25rem; } }
    .dashboard-wrapper .dashboard #dashboard-content .dashboard-title {
      font-weight: 400;
      margin-top: 1.5625rem; }
  .dashboard-wrapper .dashboard .wizard {
    min-height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out; }
  .dashboard-wrapper .dashboard .large-2 {
    width: 145px;
    padding-left: 0; }
  .dashboard-wrapper .dashboard .row.border {
    border: 1px solid #cecdd2; }
    @media screen and (max-width: 47.9375em) {
      .dashboard-wrapper .dashboard .row.border {
        padding: 10px; } }
  .dashboard-wrapper .dashboard h1 {
    text-transform: uppercase; }
  .dashboard-wrapper .dashboard .user-profile form label {
    color: #6f6f6f; }
  .dashboard-wrapper .dashboard .user-profile form select {
    margin-top: 10px; }
  .dashboard-wrapper .dashboard .user-profile form progress {
    display: none; }
  .dashboard-wrapper .dashboard .user-profile form .no-border {
    border: 0; }
  .dashboard-wrapper .dashboard .user-profile form .upload-success {
    display: none;
    color: green; }
  .dashboard-wrapper .dashboard .user-profile form input,
  .dashboard-wrapper .dashboard .user-profile form textarea,
  .dashboard-wrapper .dashboard .user-profile form .select {
    padding-left: 0; }
    .dashboard-wrapper .dashboard .user-profile form input.button,
    .dashboard-wrapper .dashboard .user-profile form textarea.button,
    .dashboard-wrapper .dashboard .user-profile form .select.button {
      color: white;
      font-size: 20px;
      padding-left: 15px; }
    .dashboard-wrapper .dashboard .user-profile form input.cancel,
    .dashboard-wrapper .dashboard .user-profile form textarea.cancel,
    .dashboard-wrapper .dashboard .user-profile form .select.cancel {
      background-color: grey; }
    @media screen and (max-width: 47.9375em) {
      .dashboard-wrapper .dashboard .user-profile form input,
      .dashboard-wrapper .dashboard .user-profile form textarea,
      .dashboard-wrapper .dashboard .user-profile form .select {
        font-weight: normal; } }
    @media screen and (min-width: 48em) and (max-width: 63.9375em) {
      .dashboard-wrapper .dashboard .user-profile form input,
      .dashboard-wrapper .dashboard .user-profile form textarea,
      .dashboard-wrapper .dashboard .user-profile form .select {
        font-weight: normal; } }
    .dashboard-wrapper .dashboard .user-profile form input[readonly],
    .dashboard-wrapper .dashboard .user-profile form textarea[readonly],
    .dashboard-wrapper .dashboard .user-profile form .select[readonly] {
      background: #fff; }
  .dashboard-wrapper .dashboard .user-profile form hr {
    border-bottom: 1px solid #eee; }
  .dashboard-wrapper .dashboard .user-profile form .md-textfield-input,
  .dashboard-wrapper .dashboard .user-profile form .md-textfield-icon,
  .dashboard-wrapper .dashboard .user-profile form .md-textfield-label {
    padding-left: 0; }
  .dashboard-wrapper .dashboard .user-profile form .md-floating-label.is-dirty .md-textfield-label {
    top: -0.625rem; }
  .dashboard-wrapper .dashboard .user-profile form .md-floating-label.is-focused .md-textfield-label,
  .dashboard-wrapper .dashboard .user-profile form .md-floating-label.is-dirty .md-textfield-label {
    color: rgba(0, 0, 0, 0.36);
    font-size: 11px; }
  .dashboard-wrapper .dashboard .user-profile form .md-textfield.md-floating-label.md-textfield-icon {
    margin-top: 10px; }
  .dashboard-wrapper .dashboard .user-profile form .md-textfield .md-textfield-input.md-textfield-multiline {
    height: 7.1875rem;
    padding: 0.5rem; }
  .dashboard-wrapper .dashboard .user-profile form .md-textfield-input.md-textfield-multiline + .lbl-txtarea {
    padding-left: 0.625rem; }
  .dashboard-wrapper .dashboard .user-profile form a.change-password {
    font-size: 12px;
    text-transform: uppercase; }
  .dashboard-wrapper .dashboard .user-profile form .md-checkbox-label {
    color: black;
    font-size: 14px; }
  .dashboard-wrapper .dashboard .user-profile form .buttons-pan {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    text-align: center; }
    .dashboard-wrapper .dashboard .user-profile form .buttons-pan .button {
      padding: 0.625rem 2.1875rem;
      margin-right: 1rem;
      font-size: 1rem; }
      .dashboard-wrapper .dashboard .user-profile form .buttons-pan .button.secondary {
        background: #ceced2; }
        .dashboard-wrapper .dashboard .user-profile form .buttons-pan .button.secondary:hover {
          background-color: #f8f8f8; }
  .dashboard-wrapper .dashboard .user-profile form .right-floating-label {
    position: absolute;
    right: 0;
    top: 20px;
    text-transform: uppercase;
    font-size: 14px; }
  .dashboard-wrapper .dashboard .user-profile form a.show-password {
    color: #ccc; }
  .dashboard-wrapper .dashboard .user-profile form .verified {
    color: #00b415;
    font-weight: bold; }
    .dashboard-wrapper .dashboard .user-profile form .verified .info-icon:before {
      color: #00b415 !important; }
  .dashboard-wrapper .dashboard .user-profile form .not.verified {
    color: #f16623; }
  .dashboard-wrapper .dashboard .user-profile form .relative {
    position: relative; }
  .dashboard-wrapper .dashboard .user-profile form .gt-icon-arrowdown {
    position: absolute;
    right: 20px;
    color: #ccc;
    top: 0;
    font-size: 40px; }
    .dashboard-wrapper .dashboard .user-profile form .gt-icon-arrowdown:before {
      color: #ccc; }
  .dashboard-wrapper .dashboard .user-profile form .info-icon {
    position: absolute;
    top: -0.625rem;
    left: 6.25rem; }
    .dashboard-wrapper .dashboard .user-profile form .info-icon:before {
      color: #60cdf6;
      font-size: 1.125rem; }
  .dashboard-wrapper .dashboard .user-profile form .icon-wrapper .info-icon {
    top: 0;
    left: auto;
    right: -28px;
    cursor: pointer; }
    .dashboard-wrapper .dashboard .user-profile form .icon-wrapper .info-icon:before {
      color: #f16623; }
  .dashboard-wrapper .dashboard .user-profile form .info {
    background-color: #60cdf6;
    color: white;
    border-radius: 50%;
    display: inline-block;
    width: 20px;
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    vertical-align: center;
    padding: 0; }
  .dashboard-wrapper .dashboard .user-profile form input:disabled {
    background-color: white; }
  .dashboard-wrapper .dashboard .user-profile form input.button:disabled {
    background-color: #60cdf6; }
  .dashboard-wrapper .dashboard .user-profile form .upload {
    overflow: hidden;
    border-radius: 4px;
    border-color: #DDDDDD;
    background-color: #fff;
    color: black;
    text-transform: uppercase;
    margin-top: 1.25rem;
    cursor: pointer; }
    .dashboard-wrapper .dashboard .user-profile form .upload span {
      font-size: 12px;
      color: #555555;
      text-transform: none; }
    .dashboard-wrapper .dashboard .user-profile form .upload input.fupload {
      position: absolute;
      top: 0 !important;
      margin: 0;
      padding: 0;
      height: 40px;
      width: 130px;
      z-index: 999;
      display: block;
      cursor: pointer;
      opacity: 0;
      filter: alpha(opacity=0); }
    .dashboard-wrapper .dashboard .user-profile form .upload.is-focused #licUpload,
    .dashboard-wrapper .dashboard .user-profile form .upload.is-focused #cvUploadID {
      top: 50%; }
  .dashboard-wrapper .dashboard .user-profile form .cv-upload .upload input.fupload {
    top: 50px  !important; }
  .dashboard-wrapper .dashboard .user-profile form .cover-letter .upload input.fupload {
    top: 90px !important; }
  .dashboard-wrapper .dashboard .user-profile form .custom-tool-tip-text {
    position: absolute;
    right: 0;
    width: 32.5rem;
    background: #f5f5f5;
    z-index: 500;
    font-size: 12px;
    line-height: 20px;
    top: -2.5625rem;
    display: none;
    text-transform: none;
    padding: 15px;
    color: #444;
    font-weight: normal; }
  .dashboard-wrapper .dashboard .user-profile form .custom-tooltip {
    background: #fff; }
    .dashboard-wrapper .dashboard .user-profile form .custom-tooltip:hover + .custom-tool-tip-text, .dashboard-wrapper .dashboard .user-profile form .custom-tooltip:active + .custom-tool-tip-text {
      display: block; }
  .dashboard-wrapper .dashboard .profile-card {
    margin-bottom: 20px;
    text-align: center;
    text-align: center;
    width: 100%;
    margin-right: 40px; }
    .dashboard-wrapper .dashboard .profile-card .avatar {
      width: 100%; }
      .dashboard-wrapper .dashboard .profile-card .avatar.flat {
        border-radius: 0; }
    .dashboard-wrapper .dashboard .profile-card h5 {
      margin: 0; }
    .dashboard-wrapper .dashboard .profile-card a {
      font-size: smaller; }
    .dashboard-wrapper .dashboard .profile-card .upload {
      position: relative;
      overflow: hidden;
      clear: both;
      display: inline-block;
      margin-left: 20%;
      margin-right: 20%;
      margin-top: 15px;
      border-radius: 5px;
      font-size: 12px;
      cursor: pointer; }
      .dashboard-wrapper .dashboard .profile-card .upload input.fupload {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        padding: 0;
        z-index: 999;
        display: block;
        cursor: pointer;
        opacity: 0;
        filter: alpha(opacity=0); }
    .dashboard-wrapper .dashboard .profile-card p {
      font-size: 14px;
      color: #bbb;
      text-transform: uppercase; }
    .dashboard-wrapper .dashboard .profile-card .image-container {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      overflow: hidden;
      width: 130px;
      background: #e7f1fe;
      margin: 0 auto;
      height: 130px; }
      @media screen and (max-width: 47.9375em) {
        .dashboard-wrapper .dashboard .profile-card .image-container {
          width: 100px;
          height: 100px; } }
      .dashboard-wrapper .dashboard .profile-card .image-container .remove-image {
        position: absolute;
        left: 50%;
        margin-left: -15px;
        bottom: 5px;
        font-size: 30px;
        box-shadow: 0px 0px 0px 1px #ccd;
        border-radius: 50%;
        height: 30px;
        width: 30px; }
        .dashboard-wrapper .dashboard .profile-card .image-container .remove-image:before {
          color: #5f5f5f;
          position: absolute;
          display: inline-block;
          left: 0;
          top: 0;
          font-size: 1.625rem;
          padding: 0.125rem;
          opacity: 0.8;
          -moz-transition: opacity 0.2s ease-in;
          -webkit-transition: opacity 0.2s ease-in;
          transition: opacity 0.2s ease-in; }
          .dashboard-wrapper .dashboard .profile-card .image-container .remove-image:before:hover {
            -moz-transition: opacity 0.2s ease-in;
            -webkit-transition: opacity 0.2s ease-in;
            transition: opacity 0.2s ease-in; }
        .dashboard-wrapper .dashboard .profile-card .image-container .remove-image:hover:before {
          opacity: 0.5; }
  @media screen and (max-width: 47.9375em) {
    .dashboard-wrapper .dashboard .user-profile-section,
    .dashboard-wrapper .dashboard .company-profile-section {
      display: flex;
      flex-direction: column-reverse; } }
  @media screen and (min-width: 48em) and (max-width: 63.9375em) {
    .dashboard-wrapper .dashboard .user-profile-section,
    .dashboard-wrapper .dashboard .company-profile-section {
      display: flex;
      flex-direction: column-reverse; } }
  .dashboard-wrapper .dashboard .user-profile-section .lbl-count,
  .dashboard-wrapper .dashboard .company-profile-section .lbl-count {
    position: absolute;
    right: 0;
    top: 0.75rem;
    font-size: 12px;
    color: #8E8E93; }
  .dashboard-wrapper .dashboard .user-profile-section .md-textfield-error,
  .dashboard-wrapper .dashboard .company-profile-section .md-textfield-error {
    margin-top: 0.3125rem; }
  .dashboard-wrapper .dashboard .company-profile-section .textbox-with-button .large-2 {
    width: 16.66667%; }
    .dashboard-wrapper .dashboard .company-profile-section .textbox-with-button .large-2 .button {
      width: 100%;
      border-radius: 0; }
  .dashboard-wrapper .dashboard .company-profile-section .note {
    text-transform: none; }
  .dashboard-wrapper .dashboard .company-profile-section .md-textfield-input[required] ~ .md-textfield-label:not(.is-invalid-label):before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 10px;
    height: 1px;
    width: 25px;
    border-bottom: 1px solid #ff0000;
    display: block; }
  .dashboard-wrapper .dashboard .company-profile-section .is-dirty .md-textfield-input[required] ~ .md-textfield-label:not(.is-invalid-label):before {
    display: none; }
  .dashboard-wrapper .dashboard .company-profile-section .upload-container .md-textfield-input[required] ~ .md-textfield-label:not(.is-invalid-label):before {
    content: "";
    position: absolute;
    left: 0;
    top: 33px;
    height: 1px;
    width: 25px;
    border-bottom: 1px solid #ff0000;
    display: block; }
  .dashboard-wrapper .dashboard .company-profile-section .upload-container.is-dirty .md-textfield-input[required] ~ .md-textfield-label:not(.is-invalid-label):before, .dashboard-wrapper .dashboard .company-profile-section .upload-container.is-focused .md-textfield-input[required] ~ .md-textfield-label:not(.is-invalid-label):before {
    top: 58px; }
  .dashboard-wrapper .dashboard .company-profile-section .upload-container.is-focused #licUpload,
  .dashboard-wrapper .dashboard .company-profile-section .upload-container.is-focused .fupload,
  .dashboard-wrapper .dashboard .company-profile-section .upload-container.is-focused #cvUploadID {
    top: 50%; }
  .dashboard-wrapper .dashboard .company-profile-section .upload-container.cv-upload .md-textfield-input[required] ~ .md-textfield-label:not(.is-invalid-label):before {
    top: 2.0625rem; }
  .dashboard-wrapper .dashboard .company-profile-section .upload-container.rera-upload .md-textfield-input[required] ~ .md-textfield-label:not(.is-invalid-label):before {
    top: 2.0625rem; }
  .dashboard-wrapper .dashboard .company-profile-section .upload-container.rera-upload .info-icon {
    top: 1.25rem;
    left: 8.4375rem; }
  .dashboard-wrapper .dashboard .company-profile-section .upload-container.rera-upload input.fupload {
    top: -2.5rem;
    min-height: 5.625rem; }
  .dashboard-wrapper .dashboard .company-profile-section .upload-container.is-dirty .info-icon {
    top: -0.5rem;
    left: 6.25rem; }
  .dashboard-wrapper .dashboard .company-profile-section .upload-container.is-dirty .md-textfield-input[required] ~ .md-textfield-label:not(.is-invalid-label):before {
    display: none; }
  .dashboard-wrapper .dashboard .company-profile-section .required-field .algolia-autocomplete:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0.0625rem;
    width: 1.5625rem;
    border-bottom: 1px solid #ff0000;
    z-index: 100; }
  .dashboard-wrapper .dashboard .company-profile-section .required-field.is-dirty .algolia-autocomplete:before, .dashboard-wrapper .dashboard .company-profile-section .required-field.skill-is-dirty .algolia-autocomplete:before {
    display: none; }
  .dashboard-wrapper .dashboard .company-profile-section .is-invalid-autocomplete.autocomplete-field.required-field .algolia-autocomplete:before {
    border: none; }
  .dashboard-wrapper .dashboard .breadcrumb {
    background: #fff;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    color: #666;
    float: left;
    font: 14px/30px sans-serif;
    list-style: none;
    margin-bottom: 0;
    margin-top: 20px;
    padding: 0; }
    @media screen and (min-width: 64em) {
      .dashboard-wrapper .dashboard .breadcrumb {
        margin-left: 50px; } }
    .dashboard-wrapper .dashboard .breadcrumb .gt-icon-arrowdown:before {
      color: white;
      font-size: 16px;
      line-height: 13px;
      vertical-align: middle;
      padding-left: 5px; }
    .dashboard-wrapper .dashboard .breadcrumb li {
      float: right; }
    .dashboard-wrapper .dashboard .breadcrumb a {
      background: #e6e6e6;
      -webkit-border-radius: 20px;
      -moz-border-radius: 20px;
      border-radius: 20px;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: bold;
      color: #666;
      display: block;
      margin: -1px -1px -1px -30px;
      padding: 5px 24px 5px 24px;
      position: relative;
      text-decoration: none; }
    .dashboard-wrapper .dashboard .breadcrumb li.active a {
      color: white;
      background-color: #002542;
      font-weight: normal;
      padding-left: 60px; }
  .dashboard-wrapper .dashboard .secondary-header {
    font-size: 1.5rem;
    font-weight: 300;
    text-align: left;
    margin-bottom: 2.5rem; }
    @media screen and (min-width: 64em) {
      .dashboard-wrapper .dashboard .secondary-header {
        font-size: 1.9375rem;
        margin-bottom: 2rem; } }
  .dashboard-wrapper .dashboard .my-saved-searches h2 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.125rem; }
  .dashboard-wrapper .dashboard .msg-no-results {
    margin: 1.5rem auto 0; }
    .dashboard-wrapper .dashboard .msg-no-results .img-no-results {
      width: 75px;
      margin-bottom: 10px; }
      @media screen and (min-width: 64em) {
        .dashboard-wrapper .dashboard .msg-no-results .img-no-results {
          width: 100px;
          margin-bottom: 1.25rem; } }
    .dashboard-wrapper .dashboard .msg-no-results p {
      font-size: 16px;
      font-weight: 300; }
      @media screen and (min-width: 64em) {
        .dashboard-wrapper .dashboard .msg-no-results p {
          font-size: 24px;
          width: 60%;
          margin: 0 auto 1rem; } }
      .dashboard-wrapper .dashboard .msg-no-results p.logo-container {
        margin-top: 3.75rem; }
        @media screen and (min-width: 64em) {
          .dashboard-wrapper .dashboard .msg-no-results p.logo-container {
            margin-top: 6.875rem; } }
    .dashboard-wrapper .dashboard .msg-no-results a {
      font-size: 14px;
      font-weight: 500; }
      @media screen and (min-width: 64em) {
        .dashboard-wrapper .dashboard .msg-no-results a {
          font-size: 18px; } }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.loading-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  display: none; }
  .loading-layer .loading {
    margin: 0 auto;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    border: 0.25rem solid #e9e9e9;
    border-top-color: #62ccf5;
    animation: spin 1s infinite linear;
    position: absolute;
    top: 8.125rem;
    left: 50%;
    margin-left: -1.25rem; }

.my-ads-dashboard #dashboard-content .loading {
  display: flex; }

.my-ads-dashboard.is-reveal-open {
  overflow: auto; }

.my-ads-dashboard .sidebar {
  border: 1px solid #ceced2;
  top: 29.6% !important;
  width: 18.75rem;
  left: auto !important;
  right: 0;
  border-radius: 0;
  z-index: 1200; }
  @media screen and (min-width: 64em) {
    .my-ads-dashboard .sidebar {
      top: 25.6% !important;
      max-width: 43.75rem;
      width: 100%;
      left: calc(100% - 700px) !important;
      right: auto; } }
  @media screen and (min-width: 90em) {
    .my-ads-dashboard .sidebar {
      left: 49% !important; } }
  .my-ads-dashboard .sidebar.reveal.without-overlay {
    position: absolute; }
  @media screen and (max-width: 63.9375em) {
    .my-ads-dashboard .sidebar.reveal.without-overlay {
      position: fixed;
      top: 30px !important; } }
  .my-ads-dashboard .sidebar .sidebarContent {
    vertical-align: top;
    width: 84%;
    margin: 0 auto;
    position: relative; }
    @media screen and (min-width: 64em) {
      .my-ads-dashboard .sidebar .sidebarContent {
        margin-bottom: 2.1875rem; } }
  @media screen and (min-width: 64em) {
    .my-ads-dashboard .sidebar li {
      -webkit-column-break-inside: avoid;
      page-break-inside: avoid;
      break-inside: avoid; }
    .my-ads-dashboard .sidebar .accordion-custom {
      column-count: 2;
      column-gap: 80px; } }
  .my-ads-dashboard .sidebar .accordion-custom {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    position: relative; }
    @media screen and (min-width: 64em) {
      .my-ads-dashboard .sidebar .accordion-custom:before {
        content: "";
        display: inline-block;
        position: absolute;
        top: 0;
        height: 100%;
        width: 0.0625rem;
        border-left: 1px solid #ceced2;
        left: 50%; } }
  .my-ads-dashboard .sidebar .close-button {
    background: white;
    color: #60cdf6;
    left: 1rem;
    top: 2.8125rem;
    padding: 0.3125rem 0.625rem;
    border-radius: 3px; }
    @media screen and (min-width: 64em) {
      .my-ads-dashboard .sidebar .close-button {
        top: 1rem; } }
    .my-ads-dashboard .sidebar .close-button i {
      font-size: 1rem;
      height: 1.125rem;
      display: inline-block;
      vertical-align: middle; }
  .my-ads-dashboard .sidebar .sidebarHeader {
    display: block;
    height: 5rem; }
  .my-ads-dashboard .sidebar .btn-filter-close {
    margin: 4.375rem auto 0;
    display: block;
    width: 12.5rem; }
    @media screen and (min-width: 64em) {
      .my-ads-dashboard .sidebar .btn-filter-close {
        margin: 0 3.125rem 2.1875rem 0;
        float: right; } }

.verticals-wrapper .category-links a,
.verticals-wrapper .category-links .button {
  padding: 1.25rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  background: none;
  border: 2px #ceced2 solid;
  color: #000;
  margin-bottom: 1.5625rem;
  text-transform: uppercase; }
  .verticals-wrapper .category-links a:hover,
  .verticals-wrapper .category-links .button:hover {
    background: #60cdf6;
    color: white;
    border: 2px #60cdf6 solid; }

@media screen and (min-width: 64em) {
  .verticals-wrapper .category-links {
    max-width: 27.625rem;
    margin: 1.5625rem auto; } }

.jobs-card-wrap {
  overflow: hidden;
  margin: 0;
  position: relative;
  border-left: 1px solid #ceced2; }
  .seeker-card .jobs-card-wrap {
    border-color: #BFEBFB; }
  .jobs-card-wrap .jobs-card {
    border: 1px #ceced2 solid;
    border-left: 0;
    overflow: hidden; }
    .seeker-card .jobs-card-wrap .jobs-card {
      border-color: #BFEBFB; }
    @media screen and (min-width: 64em) {
      .jobs-card-wrap .jobs-card {
        min-height: 15.625rem; } }
    .jobs-card-wrap .jobs-card a .all-listings {
      line-height: 5rem;
      text-align: left;
      font-weight: 600; }
      @media screen and (min-width: 64em) {
        .jobs-card-wrap .jobs-card a .all-listings {
          line-height: 15.625rem;
          text-align: center; } }
      .jobs-card-wrap .jobs-card a .all-listings span {
        color: #484848; }
        .jobs-card-wrap .jobs-card a .all-listings span .plus-icon {
          border: 2px #484848 solid;
          border-radius: 50%;
          position: relative;
          width: 2.1875rem;
          height: 2.1875rem;
          display: inline-block;
          margin-right: 0.625rem;
          margin-bottom: -0.625rem;
          font-weight: 600; }
          .jobs-card-wrap .jobs-card a .all-listings span .plus-icon:before {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            font-weight: 600 !important; }
    .jobs-card-wrap .jobs-card a .btn-fav, .jobs-card-wrap .jobs-card a .seeker-btn-fav {
      position: absolute;
      right: 0.75rem;
      top: 0.75rem; }
      .jobs-card-wrap .jobs-card a .btn-fav:before, .jobs-card-wrap .jobs-card a .seeker-btn-fav:before {
        font-size: 1.625rem;
        color: #60cdf6; }
    .jobs-card-wrap .jobs-card a .seeker-btn-fav {
      right: 0.625rem;
      top: 0.625rem;
      z-index: 100;
      padding: 10px !important; }
      .jobs-card-wrap .jobs-card a .seeker-btn-fav:before {
        font-size: 1.625rem; }
    .jobs-card-wrap .jobs-card a .content {
      padding: 0.625rem 0.9375rem 1.875rem; }
      .jobs-card-wrap .jobs-card a .content .column, .jobs-card-wrap .jobs-card a .content .columns {
        padding: 0; }
      .jobs-card-wrap .jobs-card a .content .featured-title {
        font-size: 0.875rem;
        color: #7f3f98;
        font-weight: 700;
        text-transform: uppercase; }
        @media screen and (min-width: 64em) {
          .jobs-card-wrap .jobs-card a .content .featured-title {
            min-height: 1.875rem; } }
      .jobs-card-wrap .jobs-card a .content .job-date {
        color: #919191;
        font-size: 0.6875rem; }
      .jobs-card-wrap .jobs-card a .content .job-last-active {
        color: #555555;
        font-size: 12px; }
        .jobs-card-wrap .jobs-card a .content .job-last-active span {
          color: #7F3F98;
          font-weight: bold;
          padding-left: 5px; }
      .jobs-card-wrap .jobs-card a .content .job-title, .jobs-card-wrap .jobs-card a .content .seeker-recent-title {
        font-size: 1.125rem;
        font-weight: 700;
        color: #000;
        line-height: 1.4375rem;
        margin-bottom: 0.3125rem;
        position: relative;
        max-height: 3.0625rem;
        overflow: hidden;
        /*
          &:after{
            content: "\02026";
            box-sizing: content-box;
            -webkit-box-sizing: content-box;
            -moz-box-sizing: content-box;
            float: right;
            position: absolute;
            top: 25px;
            left: 94%;
          }*/ }
      .jobs-card-wrap .jobs-card a .content .seeker-recent-title {
        height: 2.8125rem;
        max-width: 100%;
        font-weight: 600;
        font-size: 12px;
        padding: 5px 14% 0 15px;
        line-height: 17px;
        border-bottom: 1px solid #DDDDDD; }
        .jobs-card-wrap .jobs-card a .content .seeker-recent-title.lt-blue-bg {
          background: #EFFAFE;
          border-color: #EFFAFE; }
      .jobs-card-wrap .jobs-card a .content .list-with-lbl {
        position: relative;
        padding: 0px 0 0px 50px;
        color: #00AEEF;
        font-size: 12px;
        margin-bottom: 12px; }
        @media screen and (min-width: 64em) {
          .jobs-card-wrap .jobs-card a .content .list-with-lbl {
            height: 54px;
            overflow: hidden; } }
        .jobs-card-wrap .jobs-card a .content .list-with-lbl label {
          position: absolute;
          font-size: 12px;
          left: 0px;
          top: 0px;
          color: #555555; }
        .jobs-card-wrap .jobs-card a .content .list-with-lbl span {
          display: inline-block;
          padding: 0 5px 0 0; }
          .jobs-card-wrap .jobs-card a .content .list-with-lbl span:after {
            content: ","; }
          .jobs-card-wrap .jobs-card a .content .list-with-lbl span:last-child:after {
            display: none; }
      .jobs-card-wrap .jobs-card a .content .seeker-full-name {
        font-size: 14px;
        color: #000000;
        font-weight: 600;
        display: inline-block;
        line-height: 1.25rem; }
      .jobs-card-wrap .jobs-card a .content .job-company {
        font-size: 0.875rem;
        color: #484848;
        line-height: 1.3;
        margin-bottom: 0.3125rem; }
      .jobs-card-wrap .jobs-card a .content .job-location {
        color: #919191;
        font-size: 0.75rem; }
      .jobs-card-wrap .jobs-card a .content .job-desc {
        color: #484848;
        font-size: 0.875rem;
        padding-top: 0.3125rem;
        line-height: 1.125rem;
        font-weight: 300; }
      .jobs-card-wrap .jobs-card a .content .jobs-badge-sec {
        padding-top: 0.625rem; }
      .jobs-card-wrap .jobs-card a .content .job-field {
        font-size: 1rem;
        color: #484848;
        font-weight: 600; }
    .jobs-card-wrap .jobs-card a .job-listing-details {
      padding: 0.625rem 0.9375rem 0.9375rem;
      min-height: 12.1875rem; }
    .jobs-card-wrap .jobs-card a .job-seeker-details {
      padding: 0;
      min-height: 12.1875rem; }
      .jobs-card-wrap .jobs-card a .job-seeker-details .details-wraper {
        padding: 0.3125rem 0.9375rem 0.3125rem; }
      .jobs-card-wrap .jobs-card a .job-seeker-details .job-title, .jobs-card-wrap .jobs-card a .job-seeker-details .content .seeker-recent-title, .jobs-card-wrap .jobs-card a .content .job-seeker-details .seeker-recent-title {
        padding-bottom: 0.625rem;
        margin-bottom: 0.75rem;
        color: #484848;
        max-width: 90%; }
      .jobs-card-wrap .jobs-card a .job-seeker-details .seeker-title {
        font-size: 0.875rem;
        color: #555555;
        line-height: 1.25rem; }
      .jobs-card-wrap .jobs-card a .job-seeker-details .jobs-badges {
        margin-top: 0.9375rem; }
    .jobs-card-wrap .jobs-card .gt-badges {
      min-height: 2.5rem;
      margin-right: 0.3125rem; }
    .jobs-card-wrap .jobs-card .details-summery-1 {
      padding: 0 0 10px 0 !important; }
      .jobs-card-wrap .jobs-card .details-summery-1 label {
        line-height: 20px;
        font-size: 12px;
        font-weight: 600;
        color: #000; }
        .jobs-card-wrap .jobs-card .details-summery-1 label span {
          font-weight: normal;
          min-width: 125px;
          display: inline-block; }
  .jobs-card-wrap .badges-with-logo {
    padding-right: 6px;
    padding-left: 6px;
    margin-top: 0; }
  .jobs-card-wrap.upload-cv-card {
    background: #60cdf6;
    border-color: #60cdf6;
    position: relative;
    overflow: visible; }
    .jobs-card-wrap.upload-cv-card a .upload-cv {
      padding: 0.9375rem 1.25rem; }
      .jobs-card-wrap.upload-cv-card a .upload-cv img {
        width: 20%;
        margin: 0.625rem 0 0.9375rem; }
      .jobs-card-wrap.upload-cv-card a .upload-cv p {
        font-size: 1rem;
        color: white;
        margin: 0.625rem 0;
        font-weight: 300; }
      .jobs-card-wrap.upload-cv-card a .upload-cv h4 {
        font-size: 1.75rem;
        color: white;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 1.5625rem; }
      .jobs-card-wrap.upload-cv-card a .upload-cv .sammys-slot {
        width: 5rem;
        height: 5rem;
        position: absolute;
        bottom: -0.125rem;
        right: 0.3125rem; }
        .jobs-card-wrap.upload-cv-card a .upload-cv .sammys-slot img {
          margin: 0;
          width: 100%; }
    .jobs-card-wrap.upload-cv-card .jobs-card {
      border-color: #60cdf6; }

.featured-jobcard {
  border-left: 6px solid #7f3f98 !important; }

.ln-view-all {
  text-transform: uppercase;
  line-height: 0.875rem;
  display: block; }

.Jobs .search-result .card-wrap .native-ad, .Employers .search-result .card-wrap .native-ad {
  min-height: 15.625rem; }
  @media screen and (min-width: 64em) {
    .Jobs .search-result .card-wrap .native-ad, .Employers .search-result .card-wrap .native-ad {
      max-height: 15.625rem; } }

.jobs-search-sec .link-container {
  background-color: transparent; }
  .jobs-search-sec .link-container .btn-for-emp {
    background: #2E4C64;
    color: white;
    border-radius: 1px;
    float: right;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    font-size: 0.8125rem; }

.jobs-search-sec .search-sec .search-head {
  display: none; }

@media screen and (min-width: 64em) {
  .jobs-search-sec .search-sec {
    background: url("../img/contents/panel-jobseeker.jpg") no-repeat center 0px;
    min-height: 30.625rem;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem; }
    .jobs-search-sec .search-sec .search-bar {
      background: none;
      padding: 0.0625rem; }
      .jobs-search-sec .search-sec .search-bar.content:last-child:not(:first-child) {
        float: none; }
    .jobs-search-sec .search-sec .search-head {
      display: block;
      margin: 0 auto 2.5rem;
      padding-top: 0; } }

.recent-jobs-module .landing-page-listing,
.recent-jobseeker-module .landing-page-listing {
  height: auto;
  min-height: 12.5rem; }
  .recent-jobs-module .landing-page-listing .card-wrap .native-ad,
  .recent-jobseeker-module .landing-page-listing .card-wrap .native-ad {
    min-height: 15.625rem; }
    @media screen and (min-width: 64em) {
      .recent-jobs-module .landing-page-listing .card-wrap .native-ad,
      .recent-jobseeker-module .landing-page-listing .card-wrap .native-ad {
        max-height: 15.625rem; } }

.Jobs .search-with-filters .search-wrap, .Employers .search-with-filters .search-wrap {
  width: 100%; }
  @media screen and (min-width: 64em) {
    .Jobs .search-with-filters .search-wrap, .Employers .search-with-filters .search-wrap {
      width: 79%; } }

.Jobs .search-with-filters .dropdown.button,
.Jobs .search-with-filters .linkList, .Employers .search-with-filters .dropdown.button,
.Employers .search-with-filters .linkList {
  width: 100%; }
  @media screen and (min-width: 64em) {
    .Jobs .search-with-filters .dropdown.button,
    .Jobs .search-with-filters .linkList, .Employers .search-with-filters .dropdown.button,
    .Employers .search-with-filters .linkList {
      width: 10.375rem; } }

.jobs-search-bar .jobs-switching-nav {
  max-width: 52.5rem;
  margin: 0 auto;
  padding: 0 0 0 0.5rem; }
  @media screen and (min-width: 64em) {
    .jobs-search-bar .jobs-switching-nav {
      padding: 0 1.25rem; } }
  .jobs-search-bar .jobs-switching-nav a {
    display: inline-block;
    border-radius: 0.25rem 0.25rem 0 0;
    padding: 0.625rem 0.9375rem 0.3125rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-weight: 700;
    color: white;
    -moz-transition: background 0.2s ease-in;
    -webkit-transition: background 0.2s ease-in;
    transition: background 0.2s ease-in; }
    @media screen and (min-width: 64em) {
      .jobs-search-bar .jobs-switching-nav a {
        font-size: 1rem;
        padding: 0.9375rem 1.25rem 0.3125rem; } }
    .jobs-search-bar .jobs-switching-nav a.active-page {
      background: rgba(255, 255, 255, 0.6);
      color: #000; }
    .jobs-search-bar .jobs-switching-nav a:hover {
      background: rgba(255, 255, 255, 0.3); }

.jobs-search-bar .jobs-search-box {
  max-width: 57.8125rem;
  margin: 0 auto;
  border-radius: 0.25rem; }
  @media screen and (min-width: 64em) {
    .jobs-search-bar .jobs-search-box {
      background: white;
      -webkit-box-shadow: 17px 51px 100px -23px black;
      -moz-box-shadow: 17px 51px 100px -23px black;
      box-shadow: 17px 51px 100px -23px black;
      padding: 0.9375rem; } }
  .jobs-search-bar .jobs-search-box .search-wrap {
    width: calc(100% - 95px);
    height: 2.1875rem; }
    @media screen and (min-width: 64em) {
      .jobs-search-bar .jobs-search-box .search-wrap {
        width: 68%; } }
    .jobs-search-bar .jobs-search-box .search-wrap:only-child {
      width: 100%; }

.jobs-search-bar.search-bar .linkList,
.jobs-search-bar.search-bar .job-segment {
  width: 100%; }
  @media screen and (min-width: 64em) {
    .jobs-search-bar.search-bar .linkList,
    .jobs-search-bar.search-bar .job-segment {
      width: 10.3125rem; } }

.jobs-search-bar.search-bar .btn-search {
  width: 5.625rem; }

.jobs-search-bar .select {
  width: 100%;
  font-size: 0.8125rem;
  border-radius: 3px;
  display: inline-block;
  position: relative; }
  .jobs-search-bar .select:before {
    content: "";
    border-top: 7px solid white;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    width: 0;
    display: block;
    height: 0;
    position: absolute;
    right: 11px;
    top: 33%;
    z-index: 9; }
  .jobs-search-bar .select:after {
    content: "";
    border-top: 7px solid #60cdf6;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    width: 0;
    display: block;
    height: 0;
    position: absolute;
    right: 11px;
    top: 42%; }
  .jobs-search-bar .select select {
    padding: 0.4375rem 1.75rem 0.4375rem 0.625rem;
    height: auto;
    border-radius: 5px;
    line-height: 1.4; }

@media screen and (min-width: 64em) {
  .jobs-search-bar .job-segment {
    width: inherit;
    min-width: 10.3125rem; } }

.jobs-search-bar.searchControlOnly .jobs-search-box {
  background: none;
  padding: 0; }

.jobs-search-bar.jobsOnly .jobs-search-box .search-wrap {
  width: 100%; }
  @media screen and (min-width: 64em) {
    .jobs-search-bar.jobsOnly .jobs-search-box .search-wrap {
      width: 50%; } }

.jobs-search-bar.jobsOnly .location-filter {
  width: calc(100% - 95px); }
  @media screen and (min-width: 64em) {
    .jobs-search-bar.jobsOnly .location-filter {
      width: 9.75rem; } }

.search-bar .jobs-search-box .search-selection {
  height: 2.1875rem; }

@media screen and (max-width: 63.9375em) {
  .Jobs .advDetails.jobslist .date, .Employers .advDetails.jobslist .date {
    margin-top: 0.625rem; }
  .Jobs .advDetails.jobslist h1.title, .Employers .advDetails.jobslist h1.title {
    font-size: 1.6875rem;
    line-height: 1.2; }
  .Jobs .advDetails.jobslist .btn-apply,
  .Jobs .advDetails.jobslist .btn-submit, .Employers .advDetails.jobslist .btn-apply,
  .Employers .advDetails.jobslist .btn-submit {
    padding: 1.125rem;
    font-size: 0.875rem; } }
  @media screen and (max-width: 63.9375em) and (min-width: 64em) {
    .Jobs .advDetails.jobslist .btn-apply,
    .Jobs .advDetails.jobslist .btn-submit, .Employers .advDetails.jobslist .btn-apply,
    .Employers .advDetails.jobslist .btn-submit {
      margin-top: 1.25rem; } }

.Jobs .advDetails .apply-sec .btn-apply, .Employers .advDetails .apply-sec .btn-apply {
  background: #60cdf6;
  font-weight: 600; }
  .Jobs .advDetails .apply-sec .btn-apply:hover, .Employers .advDetails .apply-sec .btn-apply:hover {
    background: #359acb; }

.Jobs .advDetails .jobs-company-details, .Employers .advDetails .jobs-company-details {
  margin: 0.625rem 0; }
  .Jobs .advDetails .jobs-company-details .company-logo, .Employers .advDetails .jobs-company-details .company-logo {
    width: auto;
    overflow: hidden;
    margin-right: 0.375rem;
    display: inline-block; }
    .Jobs .advDetails .jobs-company-details .company-logo img, .Employers .advDetails .jobs-company-details .company-logo img {
      max-width: 6.25rem;
      max-height: 2.8125rem; }
  .Jobs .advDetails .jobs-company-details .company, .Employers .advDetails .jobs-company-details .company {
    display: inline-block;
    vertical-align: top; }
    .Jobs .advDetails .jobs-company-details .company .company-name, .Employers .advDetails .jobs-company-details .company .company-name {
      font-size: 1.125rem;
      display: block;
      font-weight: 400;
      line-height: 2.8125rem; }

.Jobs .advDetails .company-details, .Employers .advDetails .company-details {
  display: block;
  margin-top: 1.875rem;
  margin-bottom: 2.5rem;
  width: 100%; }
  @media screen and (min-width: 48em) {
    .Jobs .advDetails .company-details, .Employers .advDetails .company-details {
      display: flex;
      align-items: center;
      justify-content: space-between; }
      .Jobs .advDetails .company-details .logo:not(:empty), .Employers .advDetails .company-details .logo:not(:empty) {
        width: 45%;
        padding-right: 1.25rem; }
      .Jobs .advDetails .company-details .company, .Employers .advDetails .company-details .company {
        width: 55%; } }
  .Jobs .advDetails .company-details .logo:not(:empty),
  .Jobs .advDetails .company-details .company, .Employers .advDetails .company-details .logo:not(:empty),
  .Employers .advDetails .company-details .company {
    display: inline-block;
    width: 100%; }
  .Jobs .advDetails .company-details .name, .Employers .advDetails .company-details .name {
    font-size: 2rem; }
  .Jobs .advDetails .company-details .name,
  .Jobs .advDetails .company-details .location, .Employers .advDetails .company-details .name,
  .Employers .advDetails .company-details .location {
    display: block; }

.Jobs .advDetails i.favorite-details, .Employers .advDetails i.favorite-details {
  font-size: 2.1875rem; }
  .Jobs .advDetails i.favorite-details:before, .Employers .advDetails i.favorite-details:before {
    color: #60cdf6; }

.Jobs .advDetails .btn-apply, .Employers .advDetails .btn-apply {
  text-transform: uppercase;
  background-color: #60cdf6;
  font-weight: 600;
  float: left;
  border-radius: 0;
  padding: 0.9375rem; }
  @media screen and (min-width: 48em) {
    .Jobs .advDetails .btn-apply, .Employers .advDetails .btn-apply {
      font-size: 1.125rem;
      border-radius: 1.875rem;
      width: 50%; } }
  .Jobs .advDetails .btn-apply.clicked, .Employers .advDetails .btn-apply.clicked {
    background-color: #5f5f5f;
    position: relative;
    margin-bottom: 1.25rem; }
    .Jobs .advDetails .btn-apply.clicked:after, .Employers .advDetails .btn-apply.clicked:after {
      content: "";
      width: 0;
      height: 0;
      clear: both;
      position: absolute;
      left: 50%;
      transform: translate(-50%, 0%);
      bottom: -0.625rem;
      border-left: 1.25rem solid transparent;
      border-right: 1.25rem solid transparent;
      border-top: 1.25rem solid #5f5f5f; }
      @media screen and (min-width: 64em) {
        .Jobs .advDetails .btn-apply.clicked:after, .Employers .advDetails .btn-apply.clicked:after {
          bottom: -1.25rem; } }

.Jobs .advDetails .application-count, .Employers .advDetails .application-count {
  float: left; }

.Jobs .advDetails .application-count,
.Jobs .advDetails .cv-views-count, .Employers .advDetails .application-count,
.Employers .advDetails .cv-views-count {
  font-size: 0.75rem;
  color: grey;
  text-align: center;
  display: block;
  text-transform: lowercase;
  width: 50%;
  line-height: 0.625rem;
  margin-top: -0.625rem;
  clear: left; }
  @media screen and (max-width: 74.9375em) {
    .Jobs .advDetails .application-count,
    .Jobs .advDetails .cv-views-count, .Employers .advDetails .application-count,
    .Employers .advDetails .cv-views-count {
      width: 100%; } }

.Jobs .advDetails .btn-submit, .Employers .advDetails .btn-submit {
  text-transform: uppercase;
  font-size: 1.2rem;
  background-color: #60cdf6;
  border-radius: 5px;
  font-weight: bold;
  padding: 1.2rem; }

.Jobs .advDetails .wrapper, .Employers .advDetails .wrapper {
  border-bottom: none; }

.Jobs .advDetails .panel, .Employers .advDetails .panel {
  border: 1px solid #ceced2;
  margin-bottom: 1.25rem; }
  .Jobs .advDetails .panel .title, .Employers .advDetails .panel .title {
    padding: 0.5rem 1rem 0; }
    .Jobs .advDetails .panel .title p, .Employers .advDetails .panel .title p {
      margin-bottom: 0;
      font-size: 0.875rem;
      text-align: center; }
    @media screen and (min-width: 64em) {
      .Jobs .advDetails .panel .title, .Employers .advDetails .panel .title {
        padding: 1rem 1rem 0; }
        .Jobs .advDetails .panel .title p, .Employers .advDetails .panel .title p {
          font-size: 1.5rem;
          text-align: left; } }
  @media screen and (max-width: 63.9375em) {
    .Jobs .advDetails .panel hr, .Employers .advDetails .panel hr {
      margin-top: 0.625rem; } }
  .Jobs .advDetails .panel .profile .row, .Employers .advDetails .panel .profile .row {
    margin-left: 0;
    margin-right: 0; }
  .Jobs .advDetails .panel .profile .profile-title, .Employers .advDetails .panel .profile .profile-title {
    font-size: 0.875rem;
    line-height: 1.3; }
    @media screen and (min-width: 64em) {
      .Jobs .advDetails .panel .profile .profile-title, .Employers .advDetails .panel .profile .profile-title {
        font-size: 1.2rem; } }
    .Jobs .advDetails .panel .profile .profile-title span, .Employers .advDetails .panel .profile .profile-title span {
      font-size: 0.8rem; }
  .Jobs .advDetails .panel .profile .designation, .Employers .advDetails .panel .profile .designation {
    font-size: 0.9rem; }
  .Jobs .advDetails .panel .profile .excerpt, .Employers .advDetails .panel .profile .excerpt {
    font-size: 0.75rem;
    margin-top: 0.625rem; }
    @media screen and (min-width: 64em) {
      .Jobs .advDetails .panel .profile .excerpt, .Employers .advDetails .panel .profile .excerpt {
        font-size: 0.8rem;
        margin-top: 1.25rem; } }
  .Jobs .advDetails .panel .profile .profile-title,
  .Jobs .advDetails .panel .profile .designation,
  .Jobs .advDetails .panel .profile .excerpt, .Employers .advDetails .panel .profile .profile-title,
  .Employers .advDetails .panel .profile .designation,
  .Employers .advDetails .panel .profile .excerpt {
    display: block; }
  .Jobs .advDetails .panel .profile .summary, .Employers .advDetails .panel .profile .summary {
    padding-top: 1.25rem;
    text-align: center; }
    .Jobs .advDetails .panel .profile .summary .thumbnail img, .Employers .advDetails .panel .profile .summary .thumbnail img {
      max-width: 4.6875rem;
      border-radius: 50%;
      height: 4.6875rem;
      margin-bottom: 5px; }
  .Jobs .advDetails .panel .profile .resume, .Employers .advDetails .panel .profile .resume {
    padding-top: 1.875rem;
    text-align: center; }
    @media screen and (min-width: 48em) {
      .Jobs .advDetails .panel .profile .resume, .Employers .advDetails .panel .profile .resume {
        padding-top: 1.25rem;
        text-align: left; } }
  .Jobs .advDetails .panel .profile .cover-letter, .Employers .advDetails .panel .profile .cover-letter {
    padding-top: 1.875rem;
    text-align: center; }
    @media screen and (min-width: 48em) {
      .Jobs .advDetails .panel .profile .cover-letter, .Employers .advDetails .panel .profile .cover-letter {
        padding-top: 1.25rem;
        text-align: left; } }
    .Jobs .advDetails .panel .profile .cover-letter .md-checkbox-label, .Employers .advDetails .panel .profile .cover-letter .md-checkbox-label {
      font-size: 12px;
      color: #000; }
  .Jobs .advDetails .panel .profile-footer .row, .Employers .advDetails .panel .profile-footer .row {
    margin-left: 0;
    margin-right: 0; }
  .Jobs .advDetails .panel .recaptcha_element, .Employers .advDetails .panel .recaptcha_element {
    margin-bottom: 1rem; }
    @media screen and (min-width: 48em) {
      .Jobs .advDetails .panel .recaptcha_element, .Employers .advDetails .panel .recaptcha_element {
        justify-content: center;
        display: flex; } }

.Jobs .advDetails .cv__dragndrop,
.Jobs .advDetails .cv__uploading,
.Jobs .advDetails .cv__success,
.Jobs .advDetails .cv__error, .Employers .advDetails .cv__dragndrop,
.Employers .advDetails .cv__uploading,
.Employers .advDetails .cv__success,
.Employers .advDetails .cv__error {
  display: none; }

.Jobs .advDetails .cv__error, .Employers .advDetails .cv__error {
  color: #ff0000;
  padding: 0.625rem; }

.Jobs .advDetails .coverletter__dragndrop,
.Jobs .advDetails .coverletter__uploading,
.Jobs .advDetails .coverletter__success,
.Jobs .advDetails .coverletter__error, .Employers .advDetails .coverletter__dragndrop,
.Employers .advDetails .coverletter__uploading,
.Employers .advDetails .coverletter__success,
.Employers .advDetails .coverletter__error {
  display: none; }

.Jobs .advDetails .coverletter__error, .Employers .advDetails .coverletter__error {
  color: #ff0000;
  padding: 0.625rem; }

.Jobs .advDetails .coverletter, .Employers .advDetails .coverletter {
  background-color: white;
  outline: 1px dashed #60cdf6;
  outline-offset: -3px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 10px 5px; }
  .Jobs .advDetails .coverletter .coverletter__dragndrop, .Employers .advDetails .coverletter .coverletter__dragndrop {
    display: inline;
    text-align: center; }
    .Jobs .advDetails .coverletter .coverletter__dragndrop:before, .Employers .advDetails .coverletter .coverletter__dragndrop:before {
      background: url(/img/generic/color-uploadcv.svg) no-repeat 0 0/40px 40px;
      content: "";
      width: 40px;
      height: 40px;
      display: block;
      margin: 0 auto; }
  .Jobs .advDetails .coverletter.is-uploading .cv__input, .Employers .advDetails .coverletter.is-uploading .cv__input {
    visibility: none; }
  .Jobs .advDetails .coverletter.is-uploading .cv__uploading, .Employers .advDetails .coverletter.is-uploading .cv__uploading {
    display: block; }
  .Jobs .advDetails .coverletter .coverletter-input label, .Employers .advDetails .coverletter .coverletter-input label {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    text-align: center;
    font-size: 0.75rem; }
    @media screen and (min-width: 64em) {
      .Jobs .advDetails .coverletter .coverletter-input label, .Employers .advDetails .coverletter .coverletter-input label {
        font-size: 0.875rem; } }
    .Jobs .advDetails .coverletter .coverletter-input label strong, .Employers .advDetails .coverletter .coverletter-input label strong {
      color: #fff;
      background-color: #60cdf6;
      padding: 5px 20px;
      font-weight: normal; }
    .Jobs .advDetails .coverletter .coverletter-input label small, .Employers .advDetails .coverletter .coverletter-input label small {
      display: block;
      color: #ceced2; }
  .Jobs .advDetails .coverletter.is-dragover, .Employers .advDetails .coverletter.is-dragover {
    background-color: #ceced2; }
  .Jobs .advDetails .coverletter .coverletter__success, .Employers .advDetails .coverletter .coverletter__success {
    text-align: center;
    padding: 0 5px;
    font-weight: bold;
    font-size: 11px; }

.Jobs .advDetails .cv, .Employers .advDetails .cv {
  background-color: white;
  outline: 1px dashed #60cdf6;
  outline-offset: -3px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 10px 5px; }
  .Jobs .advDetails .cv .cv__dragndrop, .Employers .advDetails .cv .cv__dragndrop {
    display: inline;
    text-align: center; }
    .Jobs .advDetails .cv .cv__dragndrop:before, .Employers .advDetails .cv .cv__dragndrop:before {
      background: url(/img/generic/color-uploadcv.svg) no-repeat 0 0/40px 40px;
      content: "";
      width: 40px;
      height: 40px;
      display: block;
      margin: 0 auto; }
  .Jobs .advDetails .cv.is-uploading .cv__input, .Employers .advDetails .cv.is-uploading .cv__input {
    visibility: none; }
  .Jobs .advDetails .cv.is-uploading .cv__uploading, .Employers .advDetails .cv.is-uploading .cv__uploading {
    display: block; }
  .Jobs .advDetails .cv .cv-input label, .Employers .advDetails .cv .cv-input label {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    text-align: center;
    font-size: 0.75rem; }
    @media screen and (min-width: 64em) {
      .Jobs .advDetails .cv .cv-input label, .Employers .advDetails .cv .cv-input label {
        font-size: 0.875rem; } }
    .Jobs .advDetails .cv .cv-input label strong, .Employers .advDetails .cv .cv-input label strong {
      color: #fff;
      background-color: #60cdf6;
      padding: 5px 20px;
      font-weight: normal; }
    .Jobs .advDetails .cv .cv-input label small, .Employers .advDetails .cv .cv-input label small {
      display: block;
      color: #ceced2; }
  .Jobs .advDetails .cv.is-dragover, .Employers .advDetails .cv.is-dragover {
    background-color: #ceced2; }
  .Jobs .advDetails .cv .cv__success, .Employers .advDetails .cv .cv__success {
    text-align: center;
    padding: 0 5px;
    font-weight: bold;
    font-size: 11px; }

.Jobs .advDetails .cv__file, .Employers .advDetails .cv__file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1; }

.Jobs .advDetails .interview-details, .Employers .advDetails .interview-details {
  border: 1px #ceced2 solid;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  margin-bottom: 1.875rem;
  display: none; }
  .Jobs .advDetails .interview-details p, .Employers .advDetails .interview-details p {
    font-size: 0.875rem; }
  .Jobs .advDetails .interview-details h3, .Employers .advDetails .interview-details h3 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.375rem;
    margin-bottom: 0.9375rem; }
  .Jobs .advDetails .interview-details h6, .Employers .advDetails .interview-details h6 {
    margin-bottom: 0.125rem;
    font-weight: 400;
    color: #7e7e7e; }
  .Jobs .advDetails .interview-details ul, .Employers .advDetails .interview-details ul {
    margin: 0 0 0.625rem 0;
    list-style-type: none; }
    .Jobs .advDetails .interview-details ul li, .Employers .advDetails .interview-details ul li {
      font-size: 0.875rem;
      margin-bottom: 0.3125rem; }

.Jobs .advDetails .map-canvas, .Employers .advDetails .map-canvas {
  width: 100%;
  min-height: 18.75rem;
  height: 100%; }

.Jobs .advDetails .job-last-active, .Employers .advDetails .job-last-active {
  color: #555555;
  font-size: 12px; }
  .Jobs .advDetails .job-last-active span, .Employers .advDetails .job-last-active span {
    color: #7F3F98;
    font-weight: bold;
    padding-left: 5px; }

.Jobs .advDetails .seeker-full-name, .Employers .advDetails .seeker-full-name {
  font-weight: 600;
  display: inline-block;
  line-height: 1.25rem; }

.Jobs .jobseeker-details-sec, .Employers .jobseeker-details-sec {
  /*h1.title {
      margin-top: rem-calc(20px);
      @include breakpoint(large up) {
        margin-top: rem-calc(0);
        margin-bottom: rem-calc(20px);
      }
    }*/ }
  .Jobs .jobseeker-details-sec .sticky-container, .Employers .jobseeker-details-sec .sticky-container {
    z-index: 100 !important; }
  @media screen and (max-width: 63.9375em) {
    .Jobs .jobseeker-details-sec h1.title, .Employers .jobseeker-details-sec h1.title {
      font-weight: 600;
      font-size: 1.25rem; }
    .Jobs .jobseeker-details-sec .seeker-full-name, .Employers .jobseeker-details-sec .seeker-full-name {
      font-size: 0.875rem; } }
  .Jobs .jobseeker-details-sec h3, .Employers .jobseeker-details-sec h3 {
    margin-bottom: 0.625rem; }
  .Jobs .jobseeker-details-sec .seeker-title h2, .Employers .jobseeker-details-sec .seeker-title h2 {
    text-align: center;
    font-weight: 300;
    font-size: 1.5rem;
    margin: 0.625rem 0 1.25rem;
    overflow: hidden; }
    @media screen and (min-width: 64em) {
      .Jobs .jobseeker-details-sec .seeker-title h2, .Employers .jobseeker-details-sec .seeker-title h2 {
        font-size: 1.875rem;
        max-height: 5.3125rem; } }
  .Jobs .jobseeker-details-sec .with-favourite, .Employers .jobseeker-details-sec .with-favourite {
    padding-right: 10%;
    position: relative; }
    .Jobs .jobseeker-details-sec .with-favourite .favorite-details, .Employers .jobseeker-details-sec .with-favourite .favorite-details {
      position: absolute;
      top: 0;
      right: 0.625rem; }
      @media screen and (max-width: 74.9375em) {
        .Jobs .jobseeker-details-sec .with-favourite .favorite-details .title, .Employers .jobseeker-details-sec .with-favourite .favorite-details .title {
          text-align: center; } }
  .Jobs .jobseeker-details-sec .favourite-outr, .Employers .jobseeker-details-sec .favourite-outr {
    position: relative; }
    .Jobs .jobseeker-details-sec .favourite-outr .favorite-details, .Employers .jobseeker-details-sec .favourite-outr .favorite-details {
      position: absolute;
      top: 0;
      right: 0.625rem; }
  .Jobs .jobseeker-details-sec .seeker-profile-pic, .Employers .jobseeker-details-sec .seeker-profile-pic {
    text-align: center; }
    .Jobs .jobseeker-details-sec .seeker-profile-pic .seeker-avatar, .Employers .jobseeker-details-sec .seeker-profile-pic .seeker-avatar {
      width: 12.5rem;
      height: 12.5rem;
      border-radius: 50%;
      -webkit-box-shadow: 0px 6px 0px 0px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0px 6px 0px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 6px 0px 0px rgba(0, 0, 0, 0.1);
      margin: 0 auto 17px; }
  .Jobs .jobseeker-details-sec .seeker-cv-download, .Employers .jobseeker-details-sec .seeker-cv-download {
    float: left; }
  .Jobs .jobseeker-details-sec .expand-details-btn, .Employers .jobseeker-details-sec .expand-details-btn {
    padding: 0.9375rem 0;
    font-weight: 700;
    text-transform: uppercase; }
    .Jobs .jobseeker-details-sec .expand-details-btn .plus-icon,
    .Jobs .jobseeker-details-sec .expand-details-btn .minus-icon, .Employers .jobseeker-details-sec .expand-details-btn .plus-icon,
    .Employers .jobseeker-details-sec .expand-details-btn .minus-icon {
      font-size: 1.625rem;
      color: #919191;
      line-height: 0px;
      height: 30px; }
    .Jobs .jobseeker-details-sec .expand-details-btn .expand-txt, .Employers .jobseeker-details-sec .expand-details-btn .expand-txt {
      line-height: 1.875rem;
      display: inline-block;
      padding-left: 0.3125rem;
      color: #000;
      height: 30px;
      vertical-align: bottom;
      font-size: 0.875rem; }
  .Jobs .jobseeker-details-sec .seeker-profile-details, .Employers .jobseeker-details-sec .seeker-profile-details {
    position: relative; }
    .Jobs .jobseeker-details-sec .seeker-profile-details.collapsed-details, .Employers .jobseeker-details-sec .seeker-profile-details.collapsed-details {
      max-height: 500px;
      overflow: hidden; }
    .Jobs .jobseeker-details-sec .seeker-profile-details .mask-layer, .Employers .jobseeker-details-sec .seeker-profile-details .mask-layer {
      width: 100%;
      height: 2.5rem;
      position: absolute;
      bottom: 0px;
      background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.19) 11%, white 58%, white 100%);
      background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.19) 11%, white 58%, white 100%);
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.19) 11%, white 58%, white 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff", GradientType=0 ); }
  .Jobs .jobseeker-details-sec .sticky, .Employers .jobseeker-details-sec .sticky {
    width: 100%; }
  .Jobs .jobseeker-details-sec .gt-badge-details .column, .Jobs .jobseeker-details-sec .gt-badge-details .columns, .Employers .jobseeker-details-sec .gt-badge-details .column, .Employers .jobseeker-details-sec .gt-badge-details .columns {
    float: left;
    margin-bottom: 0.625rem; }
  .Jobs .jobseeker-details-sec .gt-badge-details .badge-sec, .Employers .jobseeker-details-sec .gt-badge-details .badge-sec {
    width: 100%; }
  .Jobs .jobseeker-details-sec .gt-badge-details .gt-icon-badge .badge-name, .Employers .jobseeker-details-sec .gt-badge-details .gt-icon-badge .badge-name {
    line-height: 1.3;
    width: calc(100% - 60px); }

@media screen and (max-width: 74.9375em) {
  .Jobs .jobs-listing-badges .gt-badge-details .jobs-badge .badge-name, .Employers .jobs-listing-badges .gt-badge-details .jobs-badge .badge-name {
    max-width: 70%;
    line-height: 0.875rem; } }

@media screen and (min-width: 64em) {
  .Jobs .jobs-listing-badges .gt-badge-details, .Employers .jobs-listing-badges .gt-badge-details {
    margin-bottom: 0;
    margin-top: 1.25rem; } }

.Jobs .jobs-individual-details, .Employers .jobs-individual-details {
  font-size: 0.8125rem; }
  .Jobs .jobs-individual-details .detail-type, .Employers .jobs-individual-details .detail-type {
    font-weight: 600; }
  .Jobs .jobs-individual-details .row, .Employers .jobs-individual-details .row {
    margin-bottom: 0.5rem; }

@media screen and (min-width: 64em) {
  .Jobs .jobs-title-info, .Employers .jobs-title-info {
    padding-bottom: 3.125rem;
    position: relative;
    min-height: 14.625rem; }
    .Jobs .jobs-title-info .apply-elm-btn, .Employers .jobs-title-info .apply-elm-btn {
      position: absolute;
      bottom: 0;
      width: 100%; }
      .Jobs .jobs-title-info .apply-elm-btn .button, .Employers .jobs-title-info .apply-elm-btn .button {
        margin: 0; } }

.ad-unit-300x250 .advert-element {
  padding: 0.9375rem; }

.msg-410 {
  margin: 1.25rem 0.9375rem; }

.search-stats + .related-ads-search {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem; }
  @media screen and (min-width: 64em) {
    .search-stats + .related-ads-search {
      margin-top: 7.5rem; } }

.apply-walk-in .interview-title {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1.875rem;
  color: #7e7e7e; }

.apply-walk-in .add-appointment-sec {
  margin-top: -1.25rem;
  margin-bottom: 2.5rem; }
  .apply-walk-in .add-appointment-sec .add-appointment {
    text-transform: uppercase;
    font-size: 0.875rem;
    color: #60cdf6;
    position: relative;
    padding: 0.3125rem 0 0.3125rem 1.5625rem; }
    .apply-walk-in .add-appointment-sec .add-appointment :before {
      color: #60cdf6;
      position: absolute;
      top: 0.3125rem;
      left: 0;
      font-size: 1.25rem; }
    .apply-walk-in .add-appointment-sec .add-appointment:hover {
      color: #227aa5; }
      .apply-walk-in .add-appointment-sec .add-appointment:hover :before {
        color: #227aa5; }

.apply-walk-in .interview-timings .appointment-time {
  position: relative; }

.apply-walk-in .interview-timings .remove-appointment {
  display: inline-block;
  position: absolute;
  right: 0.625rem;
  top: -1.25rem; }
  .apply-walk-in .interview-timings .remove-appointment i:before {
    color: #bde7f8;
    font-size: 1.875rem; }
  @media screen and (min-width: 64em) {
    .apply-walk-in .interview-timings .remove-appointment {
      top: 1.25rem;
      right: -1.875rem; }
      .apply-walk-in .interview-timings .remove-appointment i:before {
        font-size: 1.375rem; } }

.my-ads-edit .apply-walk-in .select2-container {
  width: 100% !important; }

.my-ads-edit .interview-timings .remove-appointment {
  top: 0.9375rem;
  right: 1.25rem; }
  .my-ads-edit .interview-timings .remove-appointment i:before {
    font-size: 1.875rem; }

.user-profile .skills .tag {
  background-color: #e0f5fd;
  color: #002542;
  position: relative;
  font-size: 0.875rem;
  padding: 0 1rem;
  display: inline-block;
  line-height: 1.875rem;
  margin: 0.375rem 0.375rem 0.5rem 0;
  border-radius: 3.125rem; }
  .user-profile .skills .tag span {
    padding-right: 1rem;
    font-size: 0.8125rem; }

.user-profile .skills .gt-icon-close {
  position: relative;
  top: 0.1875rem;
  cursor: pointer; }
  .user-profile .skills .gt-icon-close:before {
    color: #002542; }

.user-profile .dobInputField {
  top: -20px; }

.user-profile .titleSec h4 {
  color: #F9FBFD;
  padding: 0.3125rem 0 0.1875rem 0.375rem;
  text-transform: uppercase;
  background: #002244;
  font-size: 0.9375rem;
  font-weight: 600; }

.user-profile .profileVisibility {
  background: #F5F5F5;
  padding: 5px; }

.user-profile .cv-upload {
  background: #fff;
  padding: 20px  !important;
  margin-top: 0 !important;
  text-align: center; }
  .user-profile .cv-upload .md-textfield-label {
    padding: 5px 20px !important;
    top: 0 !important; }
  .user-profile .cv-upload .fileUpload input {
    min-height: 6.875rem; }
  .user-profile .cv-upload .form-error {
    display: block; }
  .user-profile .cv-upload .lbl-updated {
    font-size: 0.6875rem;
    text-align: left; }

.user-profile .cover-letter {
  background: #fff;
  padding: 20px !important;
  text-align: center;
  margin-top: 20px; }
  .user-profile .cover-letter .md-textfield-label {
    padding: 5px 20px !important;
    top: 0 !important; }
  .user-profile .cover-letter .upload input.fupload {
    top: 70px !important; }
  .user-profile .cover-letter .lbl-updated {
    font-size: 0.6875rem;
    text-align: left; }

.user-profile .profile-upload {
  margin-top: 21px;
  background: #F5F5F5;
  padding: 20px; }

.related-ads .jobs-card-wrap {
  margin: 0.3125rem; }

.job-seeker-similar-listing .card-wrap {
  margin: 0;
  padding: 0; }
  .job-seeker-similar-listing .card-wrap .jobs-card-wrap .jobs-card {
    min-height: 17.8125rem; }
    .job-seeker-similar-listing .card-wrap .jobs-card-wrap .jobs-card a .seeker-btn-fav {
      position: absolute; }

@media screen and (min-width: 64em) {
  .jobs-inpage-filter.row {
    max-width: 81.25rem; } }

@media screen and (min-width: 90em) {
  .jobs-inpage-filter.row {
    max-width: 85.9375rem !important; } }

@media screen and (min-width: 64em) {
  .jobs-grid {
    /*.column, .columns{
      padding-left:rem-calc(6px);
      padding-right:rem-calc(6px);
  } */ }
    .jobs-grid .sidebar {
      padding-right: 1.25rem; }
    .jobs-grid .card-wrap {
      margin-bottom: 2.5rem !important; }
      .jobs-grid .card-wrap.seeker-card {
        margin-bottom: 1.875rem !important;
        padding-left: 0.625rem !important;
        padding-right: 0.625rem !important; }
      .jobs-grid .card-wrap .native-ad {
        min-height: 15.625rem !important; }
      .jobs-grid .card-wrap .jobs-card-wrap .jobs-card {
        min-height: 15.625rem !important; }
        .jobs-grid .card-wrap .jobs-card-wrap .jobs-card .jobs-badge-sec {
          padding-top: 0.3125rem; }
      .jobs-grid .card-wrap.seeker-card .jobs-card-wrap .jobs-card {
        min-height: 22.5rem !important; } }

.jobs-grid.list .seeker-card .jobs-card-wrap .jobs-card {
  min-height: 0 !important; }
  .jobs-grid.list .seeker-card .jobs-card-wrap .jobs-card .details-wraper {
    padding: 8px 0 0 90px;
    position: relative; }
    .jobs-grid.list .seeker-card .jobs-card-wrap .jobs-card .details-wraper .profile-picture {
      padding: 0 0 0px 0px;
      min-height: 0;
      position: static; }
      .jobs-grid.list .seeker-card .jobs-card-wrap .jobs-card .details-wraper .profile-picture .seeker-card-avatar {
        left: 15px;
        top: 5px; }
    .jobs-grid.list .seeker-card .jobs-card-wrap .jobs-card .details-wraper .list-with-lbl {
      margin-top: 12px;
      height: auto; }
  .jobs-grid.list .seeker-card .jobs-card-wrap .jobs-card .job-seeker-details {
    min-height: 0; }

.recent-jobseeker-module .jobs-grid {
  border-bottom: 1px solid #ceced2;
  padding-bottom: 1.875rem;
  margin-bottom: 0; }

.apply-sec-wrapper p {
  font-size: 0.75rem;
  color: #8e8e93; }

.form-myads-edit .apply-sec-wrapper p {
  font-size: 1rem;
  margin-top: -30px; }

.package-long-title {
  font-size: 1.375rem;
  margin: 1.25rem 0 0.75rem;
  letter-spacing: -0.5px; }

.seeker-profile-details {
  font-size: 0.8125rem; }
  .seeker-profile-details .detail-type {
    font-weight: 600; }
  .seeker-profile-details .row {
    margin-bottom: 0.5rem; }

/* Common */
.profile-picture {
  position: relative;
  padding: 8px 0 7px 70px;
  min-height: 75px; }
  .profile-picture .seeker-card-avatar {
    border: 1px solid #DDDDDD;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0; }

@media screen and (min-width: 48em) {
  .property-card-wrap .card {
    min-height: 29.375rem;
    max-height: 29.375rem; } }

@media screen and (min-width: 64em) {
  .property-card-wrap .card {
    min-height: 28.4375rem;
    max-height: 28.4375rem; } }

@media screen and (min-width: 64em) {
  .property-card-wrap .card a .link-wrap .hit-wrap {
    min-height: 20.9375rem; } }

.property-card-wrap .card a .link-wrap .hit-wrap .title {
  word-wrap: break-word; }

.property-card-wrap .card a .link-wrap .hit-wrap .price {
  margin: 0.3125rem 0; }

@media screen and (min-width: 64em) {
  .property-card-wrap .card a .link-wrap .hit-wrap .content {
    min-height: 8.125rem;
    max-height: 8.125rem; } }

.property-card-wrap .card a .link-wrap .hit-wrap .content .specs {
  font-weight: 400; }
  .property-card-wrap .card a .link-wrap .hit-wrap .content .specs span.dot:last-child {
    display: none; }
  .property-card-wrap .card a .link-wrap .hit-wrap .content .specs .specs-info {
    font-size: 0.75rem;
    line-height: 0.9;
    color: #000;
    display: inline-flex;
    align-items: center;
    margin-right: 1.25rem;
    vertical-align: middle; }
    .property-card-wrap .card a .link-wrap .hit-wrap .content .specs .specs-info:first-child {
      text-transform: capitalize; }
    .property-card-wrap .card a .link-wrap .hit-wrap .content .specs .specs-info i {
      margin-right: 0.3125rem; }
      .property-card-wrap .card a .link-wrap .hit-wrap .content .specs .specs-info i:before {
        color: #b4b4b4;
        font-size: 1.1875rem; }

.property-card-wrap .card a .link-wrap .hit-wrap .content .location {
  font-size: 0.75rem; }

@media screen and (min-width: 64em) {
  .list .property-card-wrap .card {
    min-height: 26.5625rem; } }

@media screen and (min-width: 64em) {
  .list .property-card-wrap .card a .link-wrap .hit-wrap {
    min-height: 10.625rem; } }

@media screen and (min-width: 64em) {
  .list .property-card-wrap .card a .link-wrap .hit-wrap .content {
    min-height: 5rem;
    max-height: 8.125rem; } }

.list .property-card-wrap .card a .link-wrap .hit-wrap .specs .specs-info:first-child {
  text-transform: capitalize; }

.property-details-sec i.favorite-details {
  font-size: 2.1875rem; }
  .property-details-sec i.favorite-details:before {
    color: #60cdf6; }

.property-details-sec .gt-badge-details .gt-icon-badge .badge-name {
  width: auto;
  vertical-align: middle;
  line-height: 1.7; }

.property-details-sec .property-map-sec {
  margin-top: 1.25rem; }
  .property-details-sec .property-map-sec .location-gutter {
    margin-bottom: 0.625rem; }
    @media screen and (min-width: 64em) {
      .property-details-sec .property-map-sec .location-gutter {
        margin-bottom: 0.9375rem; } }
  .property-details-sec .property-map-sec .map-filters {
    padding-right: 0; }
    .property-details-sec .property-map-sec .map-filters ul {
      list-style-type: none;
      margin: 0; }
      @media screen and (max-width: 63.9375em) {
        .property-details-sec .property-map-sec .map-filters ul {
          margin: 0px 0.3125rem 0.625rem; } }
      .property-details-sec .property-map-sec .map-filters ul li {
        background-size: 1.25rem;
        padding: 1rem 0.3125rem 1rem 0.9375rem;
        cursor: pointer;
        margin-bottom: 0.625rem;
        border: 1px #ceced2 solid;
        font-size: 0.875rem;
        transition: background-color 0.4s ease; }
        .property-details-sec .property-map-sec .map-filters ul li svg {
          width: 1.25rem;
          height: 1.375rem;
          display: inline-block;
          float: left; }
        .property-details-sec .property-map-sec .map-filters ul li span {
          display: inline-block;
          padding-left: 0.625rem; }
        .property-details-sec .property-map-sec .map-filters ul li:hover {
          background-color: #60cdf6;
          border-color: #60cdf6;
          transition: background-color 0.4s ease;
          color: white; }
          .property-details-sec .property-map-sec .map-filters ul li:hover svg {
            fill: white; }
        .property-details-sec .property-map-sec .map-filters ul li.active-filter {
          background-color: #60cdf6;
          color: white;
          border-color: #60cdf6; }
          .property-details-sec .property-map-sec .map-filters ul li.active-filter svg {
            fill: white; }
        @media screen and (max-width: 63.9375em) {
          .property-details-sec .property-map-sec .map-filters ul li {
            width: 46%;
            margin: 1%;
            display: inline-block; } }
  .property-details-sec .property-map-sec .filter-metro {
    background: url("../img/generic/icon_metro.svg") no-repeat 5% 50%; }
  .property-details-sec .property-map-sec .filter-mosque {
    background: url("../img/generic/icon_mosques.svg") no-repeat 5% 50%; }
  .property-details-sec .property-map-sec .filter-hospital {
    background: url("../img/generic/icon_hospital.svg") no-repeat 5% 50%; }
  .property-details-sec .property-map-sec .filter-nightlife {
    background: url("../img/generic/icon_nightlife.svg") no-repeat 5% 50%; }
  .property-details-sec .property-map-sec .filter-school {
    background: url("../img/generic/icon_schools.svg") no-repeat 5% 50%; }
  .property-details-sec .property-map-sec .filter-shoppingmall {
    background: url("../img/generic/icon_shoppingmalls.svg") no-repeat 5% 50%; }
  .property-details-sec .property-map-sec .filter-restaurant {
    background: url("../img/generic/icon_restaurants.svg") no-repeat 5% 50%; }

@media screen and (min-width: 64em) {
  .property-banner .search-sec {
    background: url("../img/contents/panel-propertyforrent.jpg") no-repeat 50% 100%;
    min-height: 30rem; }
    .property-for-sale .property-banner .search-sec {
      background: url("../img/contents/panel-propertyforsale.jpg") no-repeat 50% 100%; } }

.property-refine-search > .column, .property-refine-search > .columns {
  padding: 0; }

.property-refine-search .filter-item {
  margin-bottom: 1.25rem; }

.classifieds-container {
  background: url("../img/generic/classifieds-bg-pattern.jpg");
  min-height: 60vh; }
  .classifieds-container .row {
    background: transparent; }
  .classifieds-container .prelaunch-sec {
    max-width: 55rem; }
    @media screen and (min-width: 64em) {
      .classifieds-container .prelaunch-sec .prelaunch-txt {
        padding-left: 2.1875rem; } }
    .classifieds-container .prelaunch-sec h1, .classifieds-container .prelaunch-sec h2 {
      font-weight: 900;
      color: #1b344a;
      text-transform: lowercase; }
    .classifieds-container .prelaunch-sec h1 {
      font-size: 3.75rem;
      padding-bottom: 0.9375rem;
      margin: 1.5625rem 0 0.625rem;
      line-height: 1.875rem; }
      @media screen and (min-width: 64em) {
        .classifieds-container .prelaunch-sec h1 {
          margin: 7.8125rem 0 1.25rem;
          font-size: 5.625rem; } }
    .classifieds-container .prelaunch-sec h2 {
      font-size: 1.5625rem;
      line-height: 1.5625rem;
      margin-bottom: 1.5625rem; }
      @media screen and (min-width: 64em) {
        .classifieds-container .prelaunch-sec h2 {
          font-size: 1.875rem;
          line-height: 1.875rem; } }
      .classifieds-container .prelaunch-sec h2 span {
        color: #3fa5d7; }
    .classifieds-container .prelaunch-sec h3 {
      font-size: 1.125rem;
      font-weight: 300;
      color: #919191; }
      @media screen and (min-width: 64em) {
        .classifieds-container .prelaunch-sec h3 {
          margin-top: 0.9375rem; } }
    .classifieds-container .prelaunch-sec .form-wrapper {
      background: rgba(65, 165, 215, 0.25);
      max-width: 34.375rem;
      padding: 0.9375rem;
      position: relative;
      margin-bottom: 60px; }
      .classifieds-container .prelaunch-sec .form-wrapper span.error {
        display: none; }
      .classifieds-container .prelaunch-sec .form-wrapper .emailField {
        border-radius: 30px;
        padding: 8px 16px;
        width: 100%;
        border: none;
        outline: none;
        font-size: 16px;
        box-shadow: none;
        margin: 0; }
        .classifieds-container .prelaunch-sec .form-wrapper .emailField:focus {
          border: none;
          box-shadow: none; }
      .classifieds-container .prelaunch-sec .form-wrapper .submitBtn {
        background: #f8981d;
        border-radius: 30px;
        font-size: 16px;
        border: none;
        color: #ffffff;
        transition: background 0.5s ease;
        outline: none;
        position: absolute;
        right: 15px;
        top: 15px;
        -webkit-appearance: none;
        padding: 0.5rem 0.9375rem; }
        @media screen and (min-width: 64em) {
          .classifieds-container .prelaunch-sec .form-wrapper .submitBtn {
            padding: 0.5625rem 1.25rem; } }
        .classifieds-container .prelaunch-sec .form-wrapper .submitBtn:hover {
          cursor: pointer;
          background: #df8d24; }
    .classifieds-container .prelaunch-sec .sami-check-sec {
      text-align: center; }
      .classifieds-container .prelaunch-sec .sami-check-sec img {
        width: 50%; }
      @media screen and (min-width: 64em) {
        .classifieds-container .prelaunch-sec .sami-check-sec {
          text-align: left;
          margin: 3.75rem 0 4.375rem; }
          .classifieds-container .prelaunch-sec .sami-check-sec img {
            width: 70%; } }

.classifieds-outr .recent-search-module .landing-page-listing {
  height: auto; }

.classifieds-outr .result-count {
  margin: 0;
  text-align: center; }
  @media screen and (min-width: 48em) {
    .classifieds-outr .result-count {
      text-align: left; } }

.classifiedsDetailsOutr .details-lt-column {
  position: relative;
  padding-right: 1.875rem; }

.classifiedsDetailsOutr .sticky-container {
  z-index: 1000;
  background: none; }

@media screen and (max-width: 63.9375em) {
  .classifiedsDetailsOutr .sticky {
    position: relative; } }

.classifiedsDetailsOutr .descriptions h4 {
  font-size: 0.9375rem; }

@media screen and (min-width: 64em) {
  .classifiedsDetailsOutr .listing-img-slider .slider-outr ul.orbit-container {
    min-height: 14.0625rem; } }

.classifiedsDetailsOutr .listing-img-slider .slider-nav nav.orbit-bullets button {
  width: 24%; }
  .classifiedsDetailsOutr .listing-img-slider .slider-nav nav.orbit-bullets button:nth-child(3) {
    padding-right: 0; }
  .classifiedsDetailsOutr .listing-img-slider .slider-nav nav.orbit-bullets button:nth-child(1n+5) {
    display: none; }

.classifiedsDetailsOutr i.favorite-details {
  position: absolute;
  right: 0.625rem;
  top: -0.9375rem;
  font-size: 2.1875rem; }
  @media screen and (min-width: 64em) {
    .classifiedsDetailsOutr i.favorite-details {
      right: 1.25rem;
      top: 0; } }
  .classifiedsDetailsOutr i.favorite-details:before {
    color: #60cdf6; }

.classifiedsDetailsOutr .main-title {
  position: relative; }
  @media screen and (min-width: 64em) {
    .classifiedsDetailsOutr .main-title {
      margin-bottom: 1.25rem; } }
  .classifiedsDetailsOutr .main-title h1.title {
    font-size: 1.5625rem;
    padding-bottom: 0.625rem;
    max-width: 90%;
    line-height: 1.875rem; }
    @media screen and (min-width: 64em) {
      .classifiedsDetailsOutr .main-title h1.title {
        font-size: 1.875rem;
        max-width: 96%;
        line-height: 2.1875rem; } }

.classifiedsDetailsOutr .date {
  text-transform: capitalize; }

.classifiedsDetailsOutr .list-type {
  font-size: 0.875rem;
  color: #7f3f98;
  font-weight: 600;
  margin-bottom: 0.375rem; }

.classifiedsDetailsOutr .price {
  font-size: 1.875rem;
  margin-bottom: 0.625rem;
  font-weight: 700; }

.classifiedsDetailsOutr .ad-tag {
  display: inline-block;
  color: white;
  padding: 0.125rem 0.625rem;
  text-transform: capitalize;
  border-radius: 0.9375rem;
  font-size: 0.75rem;
  transform: translate(10%, -25%);
  background: #7f3f98; }

.classifiedsDetailsOutr .category-sec {
  color: #484848;
  font-size: 0.875rem; }
  .classifiedsDetailsOutr .category-sec div {
    padding-bottom: 0.3125rem; }
    @media screen and (min-width: 64em) {
      .classifiedsDetailsOutr .category-sec div {
        padding-bottom: 0.625rem; } }
    .classifiedsDetailsOutr .category-sec div .category-head {
      font-weight: 600;
      min-width: 30%;
      display: inline-block; }

.classifiedsDetailsOutr .actions .button-group.expanded .button {
  border: 0 !important; }
  @media screen and (max-width: 74.9375em) {
    .classifiedsDetailsOutr .actions .button-group.expanded .button {
      font-size: 0;
      line-height: 40px; }
      .classifiedsDetailsOutr .actions .button-group.expanded .button.btn-sms:before, .classifiedsDetailsOutr .actions .button-group.expanded .button.btn-chat:before {
        font-size: 1.875rem;
        margin: 0; } }

.classifiedsDetailsOutr .actions .button-group.expanded .button {
  width: calc(33.3% - 2px) !important; }
  @media screen and (min-width: 64em) {
    .classifiedsDetailsOutr .actions .button-group.expanded .button {
      width: calc(50% - 1px) !important; } }

.classifiedsDetailsOutr .actions .button-group.expanded .button:not(:last-child) {
  margin-right: 1px !important; }

.classifiedsDetailsOutr .actions .button-group.expanded .button:last-child {
  margin-right: 0 !important; }

.classifiedsDetailsOutr .showing-number.actions .button-group.expanded.group-3 .button {
  width: 100% !important; }

.classifiedsDetailsOutr .contacts {
  margin-top: 0; }

.classifiedsDetailsOutr .agency-info {
  width: 100%;
  margin-bottom: 1.25rem; }
  .classifiedsDetailsOutr .agency-info .agency-logo {
    max-width: 27%;
    margin-right: 3%;
    float: left; }
  .classifiedsDetailsOutr .agency-info .agency-desc {
    float: left;
    max-width: 100%; }
    .classifiedsDetailsOutr .agency-info .agency-desc h3 {
      font-size: 1.125rem;
      font-weight: 400;
      line-height: 1.375rem;
      margin-top: 0.625rem; }
    .classifiedsDetailsOutr .agency-info .agency-desc.short-width {
      max-width: 70%; }

.classifiedsDetailsOutr .ad-unit-300x250 {
  margin-top: 1.25rem; }

.classifiedsDetailsOutr .contacts.showing-number .button-group .btn-email, .classifiedsDetailsOutr .contacts.showing-number .button-group .btn-sms, .classifiedsDetailsOutr .contacts.showing-number .button-group .btn-chat {
  display: none !important; }

.classifiedsDetailsOutr .contacts.showing-number .button-group .btn-call {
  width: 100% !important;
  border-radius: 0.25rem !important; }

.featured-classifieds {
  border-left: 6px solid #7f3f98 !important; }

.onload-filter .classifieds-search-bar .search-wrap {
  width: 100%; }
  @media screen and (min-width: 64em) {
    .onload-filter .classifieds-search-bar .search-wrap {
      width: 80%; } }

.classifieds-search-bar {
  background: #60cdf6 url("../img/generic/largeimage-landingpage-classifieds.jpg") no-repeat 50% 100% !important; }
  .classifieds-search-bar .classifieds-switching-nav {
    max-width: 52.5rem;
    margin: 0 auto;
    padding: 0 0 0 0.5rem; }
    @media screen and (min-width: 64em) {
      .classifieds-search-bar .classifieds-switching-nav {
        padding: 0 1.25rem; } }
    .classifieds-search-bar .classifieds-switching-nav a {
      display: inline-block;
      border-radius: 0.25rem 0.25rem 0 0;
      padding: 0.625rem 0.9375rem 0.3125rem;
      font-size: 0.875rem;
      text-transform: uppercase;
      font-weight: 700;
      color: white;
      -moz-transition: background .2s ease-in;
      -webkit-transition: background .2s ease-in;
      transition: background .2s ease-in; }
      @media screen and (min-width: 64em) {
        .classifieds-search-bar .classifieds-switching-nav a {
          font-size: 1rem;
          padding: 0.9375rem 1.25rem 0.3125rem; } }
      .classifieds-search-bar .classifieds-switching-nav a.active-page {
        background: rgba(255, 255, 255, 0.6);
        color: #000; }
      .classifieds-search-bar .classifieds-switching-nav a:hover {
        background: rgba(255, 255, 255, 0.3); }
  .classifieds-search-bar .select {
    width: 100%;
    font-size: 0.8125rem;
    border-radius: 3px;
    display: inline-block;
    position: relative; }
    .classifieds-search-bar .select:before {
      content: '';
      border-top: 7px solid white;
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      width: 0;
      display: block;
      height: 0;
      position: absolute;
      right: 11px;
      top: 33%;
      z-index: 9; }
    .classifieds-search-bar .select:after {
      content: '';
      border-top: 7px solid #60cdf6;
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      width: 0;
      display: block;
      height: 0;
      position: absolute;
      right: 11px;
      top: 42%; }
    .classifieds-search-bar .select select {
      padding: 0.4375rem 0 0.4375rem 0.625rem;
      height: auto;
      border-radius: 5px;
      line-height: 1.4; }
  @media screen and (min-width: 64em) {
    .classifieds-search-bar .classifield-segment {
      width: 10.3125rem;
      min-width: 10.3125rem; } }
  .classifieds-search-bar .classifieds-search-box {
    max-width: 57.8125rem;
    margin: 0 auto;
    border-radius: 0.25rem; }
    @media screen and (min-width: 64em) {
      .classifieds-search-bar .classifieds-search-box {
        padding: 0.9375rem;
        background: white;
        -webkit-box-shadow: 17px 51px 100px -23px black;
        -moz-box-shadow: 17px 51px 100px -23px black;
        box-shadow: 17px 51px 100px -23px black; } }
    .classifieds-search-bar .classifieds-search-box .dropdown.button,
    .classifieds-search-bar .classifieds-search-box .linkList {
      width: 100%; }
      @media screen and (min-width: 64em) {
        .classifieds-search-bar .classifieds-search-box .dropdown.button,
        .classifieds-search-bar .classifieds-search-box .linkList {
          width: 10.375rem; } }
    .classifieds-search-bar .classifieds-search-box .search-classifieds {
      border: none;
      box-shadow: none;
      background-color: transparent;
      margin-bottom: 0;
      padding-left: 0;
      padding-right: 0;
      text-overflow: ellipsis;
      min-width: 12.5rem;
      height: 100%;
      display: inline-flex;
      align-items: center;
      color: #8e8e93; }
      .classifieds-search-bar .classifieds-search-box .search-classifieds:focus {
        outline: none;
        border: none;
        box-shadow: none; }
      @media screen and (min-width: 64em) {
        .classifieds-search-bar .classifieds-search-box .search-classifieds {
          margin-left: 0;
          min-width: 12.5rem; } }
    @media screen and (max-width: 63.9375em) {
      .classifieds-search-bar .classifieds-search-box .btn-search {
        width: 5.625rem; } }
    .classifieds-search-bar .classifieds-search-box .search-wrap {
      width: calc(100% -  95px); }
      @media screen and (min-width: 64em) {
        .classifieds-search-bar .classifieds-search-box .search-wrap {
          width: 68%; } }
      .classifieds-search-bar .classifieds-search-box .search-wrap .search-gap-fit {
        width: 1.125rem;
        height: 2.5rem;
        float: left;
        margin-left: -0.625rem;
        background: #f8f8f8; }
        @media screen and (min-width: 64em) {
          .classifieds-search-bar .classifieds-search-box .search-wrap .search-gap-fit {
            width: 1.875rem;
            height: 3.75rem; } }
      .classifieds-search-bar .classifieds-search-box .search-wrap .select2-container {
        width: 138px !important;
        z-index: 1000 !important;
        float: left;
        margin-right: 5px; }
        @media screen and (min-width: 64em) {
          .classifieds-search-bar .classifieds-search-box .search-wrap .select2-container {
            width: 150px !important; } }
        .classifieds-search-bar .classifieds-search-box .search-wrap .select2-container .select2-selection__arrow {
          font-family: "gt" !important;
          position: absolute;
          top: 0.5rem;
          right: 0.3125rem;
          font-size: 1.125rem;
          color: #60cdf6; }
          @media screen and (min-width: 64em) {
            .classifieds-search-bar .classifieds-search-box .search-wrap .select2-container .select2-selection__arrow {
              top: 1.125rem;
              right: 0.375rem; } }
          .classifieds-search-bar .classifieds-search-box .search-wrap .select2-container .select2-selection__arrow:before {
            content: "q"; }
        .classifieds-search-bar .classifieds-search-box .search-wrap .select2-container.select2-container--open .select2-selection__arrow:before {
          content: "r"; }
        .classifieds-search-bar .classifieds-search-box .search-wrap .select2-container .selection {
          font-size: 0.875rem;
          font-weight: 600; }
          .classifieds-search-bar .classifieds-search-box .search-wrap .select2-container .selection .select2-selection {
            border: none;
            border-radius: 0;
            padding: 0.625rem 0;
            min-height: 2.5rem;
            background: #f8f8f8;
            border-right: 1px #ceced2 solid; }
            @media screen and (min-width: 64em) {
              .classifieds-search-bar .classifieds-search-box .search-wrap .select2-container .selection .select2-selection {
                min-height: 3.75rem;
                padding: 1.25rem 0; } }
      .classifieds-search-bar .classifieds-search-box .search-wrap .finder-icon {
        width: 1.25rem; }
        .classifieds-search-bar .classifieds-search-box .search-wrap .finder-icon .gt-icon-search {
          right: 0px; }

.select2-container--gt-dropdown .select2-results {
  border: none;
  -webkit-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, 0.18);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px; }
  .select2-container--gt-dropdown .select2-results .select2-results__options .select2-results__option {
    border-top: 1px #ceced2 solid;
    text-align: center;
    padding: 0.3125rem 0.625rem;
    font-size: 0.875rem;
    font-weight: 400; }
    @media screen and (min-width: 64em) {
      .select2-container--gt-dropdown .select2-results .select2-results__options .select2-results__option {
        padding: 0.9375rem 1.25rem; } }
    .select2-container--gt-dropdown .select2-results .select2-results__options .select2-results__option.select2-results__option--highlighted {
      background: #e8e8e8; }

.services-grid {
  max-width: 77.875rem !important; }
  @media screen and (min-width: 64em) {
    .services-grid .column, .services-grid .columns, .services-grid .columns {
      padding-left: 0.375rem;
      padding-right: 0.375rem; }
    .services-grid .card-wrap {
      margin-bottom: 0.9375rem !important; } }

.classifieds-card .date, .classifieds-card .type, .classifieds-card .location {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.classifieds-card .title {
  padding: 0.3125rem 0; }

.classifieds-card .price {
  padding: 0.625rem 0; }

.classifieds-card .category {
  font-size: 0.75rem;
  text-transform: capitalize;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }
  .classifieds-card .category span {
    display: inline-block;
    padding: 0 3px;
    vertical-align: middle; }

.classifieds-card .type {
  font-weight: 600;
  font-size: 0.75rem;
  color: #7f3f98;
  text-align: right; }

.services-card-wrap .card {
  min-height: 18.4375rem; }
  .services-card-wrap .card.native-ad {
    max-height: 18.4375rem;
    min-height: 18.4375rem; }
  .services-card-wrap .card .hit-wrap {
    min-height: 12.5rem; }
    .services-card-wrap .card .hit-wrap .content {
      min-height: 10.625rem;
      max-height: 10.625rem; }
      .services-card-wrap .card .hit-wrap .content .category {
        padding: 0.1875rem 0 0.3125rem;
        color: #000; }
        .services-card-wrap .card .hit-wrap .content .category span {
          display: inline-block;
          padding: 0 3px; }
      .services-card-wrap .card .hit-wrap .content .featured-title {
        font-size: 0.875rem;
        color: #7f3f98;
        font-weight: 700;
        text-transform: uppercase; }
        @media screen and (min-width: 64em) {
          .services-card-wrap .card .hit-wrap .content .featured-title {
            min-height: 1.5625rem; } }
      .services-card-wrap .card .hit-wrap .content .date {
        margin-top: 10px; }
      .services-card-wrap .card .hit-wrap .content .title {
        font-weight: 700; }
      .services-card-wrap .card .hit-wrap .content .location {
        padding-top: 0.25rem; }
  .services-card-wrap .card .badges-with-logo {
    margin-top: 0.3125rem; }
  .services-card-wrap .card .actions .show-number {
    border: 1px white solid; }
    .services-card-wrap .card .actions .show-number .number {
      line-height: 2.8125rem;
      font-size: 1.25rem; }

.services-card-wrap .listing-type-info {
  margin: 0.9375rem 0.5rem 0.5rem;
  padding: 0.3125rem 0 0;
  overflow: hidden;
  max-height: 65px;
  text-align: right;
  font-weight: 600;
  font-size: 0.75rem;
  color: #7f3f98; }

.services-card-wrap .agent-info {
  border-top: 1px #ceced2 solid;
  margin: 0 0.5rem 0.5rem;
  padding: 0.3125rem 0 0;
  overflow: hidden;
  max-height: 65px; }
  .services-card-wrap .agent-info .agent-logo {
    min-height: 2.1875rem;
    max-height: 2.1875rem; }
  .services-card-wrap .agent-info .agent-desc {
    font-size: 0.6875rem;
    line-height: 1rem;
    color: #000;
    padding-top: 0.1875rem; }

.items-card-wrap .card {
  min-height: 28.125rem; }
  .items-card-wrap .card.native-ad {
    max-height: 28.125rem; }
  .items-card-wrap .card .content {
    min-height: 9.375rem;
    max-height: 9.375rem; }
    .items-card-wrap .card .content .featured-title {
      font-size: 0.875rem;
      color: #7f3f98;
      font-weight: 700;
      text-transform: uppercase; }
      @media screen and (min-width: 64em) {
        .items-card-wrap .card .content .featured-title {
          min-height: 1.5625rem; } }

.items-card-wrap .category {
  padding: 0;
  line-height: 1rem; }

.items-card-wrap .badges-with-logo {
  margin-top: 0; }

.classifiedsDetailsOutr .related-ads .head h3 {
  margin-bottom: 1rem; }

.classifiedsDetailsOutr .similar-listing-card-wrap.service-similar-listing .card-details {
  padding: 1.875rem 0.9375rem 3.75rem;
  border-radius: 0; }

.classifiedsDetailsOutr .similar-listing-card-wrap .image {
  min-height: 9.625rem;
  min-height: 9.625rem;
  overflow: hidden; }

.classifiedsDetailsOutr .similar-listing-card-wrap .card-details {
  padding: 0.9375rem;
  border: 1px solid #ceced2;
  -webkit-border-radius: 0px 0px 2px 2px;
  -moz-border-radius: 0px 0px 2px 2px;
  border-radius: 0px 0px 2px 2px;
  min-height: 9.6875rem;
  max-height: 9.6875rem;
  overflow: hidden;
  display: inline-block;
  width: 100%; }
  .classifiedsDetailsOutr .similar-listing-card-wrap .card-details .date {
    font-size: 0.75rem;
    color: #919191;
    font-weight: 300; }
  .classifiedsDetailsOutr .similar-listing-card-wrap .card-details .title {
    font-weight: 300; }
  .classifiedsDetailsOutr .similar-listing-card-wrap .card-details .price {
    margin: 0;
    font-weight: 700;
    padding: 0; }
  .classifiedsDetailsOutr .similar-listing-card-wrap .card-details .location {
    font-size: 0.75rem;
    font-weight: 300;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }
  .classifiedsDetailsOutr .similar-listing-card-wrap .card-details .category {
    font-size: 0.75rem;
    font-weight: 300;
    color: #919191;
    text-transform: capitalize; }

.classifieds-banner .search-sec {
  min-height: 0; }
  @media screen and (min-width: 64em) {
    .classifieds-banner .search-sec {
      background: url("../img/contents/panel-classifieds.jpg") no-repeat 50% 0;
      min-height: 30rem; }
      .classifieds-banner .search-sec .classifieds-search-bar {
        background: none !important; } }

.classifieds-banner.wallpaper-ad-slot .search-sec {
  min-height: 28.125rem; }
  .classifieds-banner.wallpaper-ad-slot .search-sec .search-bar {
    max-width: 60rem;
    background: none !important; }

.gt-badges div {
  display: inline-block;
  margin-right: 0.1875rem; }
  .gt-badges div:last-child {
    margin-right: 0; }
  .gt-badges div:hover {
    opacity: 0.8; }

.gt-icon-badge {
  outline: none;
  line-height: 0;
  cursor: pointer; }
  .gt-icon-badge .icon {
    width: 37px;
    height: 34px;
    display: inline-block; }
    .gt-icon-badge .icon:hover {
      cursor: pointer; }
    @media screen and (min-width: 64em) {
      .gt-icon-badge .icon {
        width: 34px;
        height: 34px; } }

.badge-negotiable .icon {
  background: url("/img/generic/badges-negotiable.svg") no-repeat 65% 75%/cover; }

.badge-default .icon {
  background: url("/img/generic/badges-default.svg") no-repeat 50% 50%/contain; }

.badge-under-warranty .icon {
  background: url("/img/generic/badges-fullwarranty.svg") no-repeat 50% 50%/cover; }

.badge-full-service-history .icon {
  background: url("/img/generic/badges-fullservicehistory.svg") no-repeat 50% 50%/cover; }

.badge-urgent-sale .icon {
  background: url("/img/generic/badges-urgentsale.svg") no-repeat 50% 100%/cover;
  background-size: 47px 37px; }

.badge-urgent .icon {
  background: url("/img/generic/badges-urgentsale.svg") no-repeat 50% 50%/cover;
  background-size: 47px 37px; }

.badge-direct-from-owner .icon {
  background: url("/img/generic/badges-directfromowner.svg") no-repeat 50% 50%/cover; }

.badge-ready-to-move .icon {
  background: url("/img/generic/badges-readytomovein.svg") no-repeat 100% 50%/contain;
  width: 43px; }

.badge-closer-to-metro .icon {
  background: url("/img/generic/badges-closetometro.svg") no-repeat 50% 75%/cover; }

.badge-uae-license .icon {
  background: url("/img/generic/badges-uaedrivinglicense.svg") no-repeat 50% 50%/cover;
  background-size: 47px 37px;
  width: 47px; }

.badge-uae-experience .icon {
  background: url("/img/generic/badges-uaeexperienced.svg") no-repeat 50% 50%/cover;
  background-size: 47px 37px;
  width: 47px; }

.badge-immediate-join .icon {
  background: url("/img/generic/badges-immediatelyavailable.svg") no-repeat 50% 50%/cover; }

.badge-immediate-hiring .icon {
  background: url("/img/generic/badges-immediatehiring.svg") no-repeat 50% 50%/cover; }

.badge-attractive-package .icon {
  background: url("/img/generic/badges-attracktivepackage.svg") no-repeat 50% 50%/cover; }

@media only screen and (max-width: 1100px) and (min-width: 1024px) {
  .gt-icon-badge .icon {
    width: 24px;
    height: 24px; }
  .badge-ready-to-move .icon {
    width: 31px; }
  .badge-urgent-sale .icon {
    background-size: 35px 23px; }
  .badge-urgent .icon {
    background-size: 35px 23px; }
  .badge-uae-license .icon {
    background-size: 33px 25px;
    width: 32px; }
  .badge-uae-experience .icon {
    background-size: 35px 23px;
    width: 35px; } }

/* Ion.RangeSlider
// css version 2.0.3
// © 2013-2014 Denis Ineshin | IonDen.com
// ===================================================================================================================*/
/* =====================================================================================================================
// RangeSlider */
.irs {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.irs-line {
  position: relative;
  display: block;
  overflow: hidden;
  outline: none !important; }

.irs-line-left, .irs-line-mid, .irs-line-right {
  position: absolute;
  display: block;
  top: 0; }

.irs-line-left {
  left: 0;
  width: 11%; }

.irs-line-mid {
  left: 9%;
  width: 82%; }

.irs-line-right {
  right: 0;
  width: 11%; }

.irs-bar {
  position: absolute;
  display: block;
  left: 0;
  width: 0; }

.irs-bar-edge {
  position: absolute;
  display: block;
  top: 0;
  left: 0; }

.irs-shadow {
  position: absolute;
  display: none;
  left: 0;
  width: 0; }

.irs-slider {
  position: absolute;
  display: block;
  cursor: default;
  z-index: 1; }

.irs-slider.type_last {
  z-index: 2; }

.irs-min {
  position: absolute;
  display: block;
  left: 0;
  cursor: default; }

.irs-max {
  position: absolute;
  display: block;
  right: 0;
  cursor: default; }

.irs-from, .irs-to, .irs-single {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  cursor: default;
  white-space: nowrap; }

.irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px; }

.irs-with-grid .irs-grid {
  display: block; }

.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #000; }

.irs-grid-pol.small {
  height: 4px; }

.irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #000; }

.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2; }

.irs-disabled {
  opacity: 0.4; }

.lt-ie9 .irs-disabled {
  filter: alpha(opacity=40); }

.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
  z-index: -9999 !important;
  background: none !important;
  border-style: solid !important;
  border-color: transparent !important; }

/* Ion.RangeSlider, Flat UI Skin
// css version 2.0.3
// © Denis Ineshin, 2014    https://github.com/IonDen
// ===================================================================================================================*/
/* =====================================================================================================================
// Skin details */
.irs-line-mid,
.irs-line-left,
.irs-line-right,
.irs-bar,
.irs-bar-edge,
.irs-slider {
  background: url(/img/generic/sprite-skin-flat.png) repeat-x; }

.irs {
  height: 2.75rem; }
  @media screen and (max-width: 74.9375em) {
    .irs {
      height: 3.4375rem; } }

.irs-with-grid {
  height: 3.75rem; }

.irs-line {
  height: 0.5rem;
  top: 27px; }
  @media screen and (max-width: 74.9375em) {
    .irs-line {
      top: 30px; } }

.irs-line-left {
  height: 0.5rem;
  background-position: 0 -30px; }

.irs-line-mid {
  height: 0.5rem;
  background-position: 0 0; }

.irs-line-right {
  height: 0.5rem;
  background-position: 100% -30px; }

.irs-bar {
  height: 0.5rem;
  top: 27px;
  background-position: 0 -60px; }
  @media screen and (max-width: 74.9375em) {
    .irs-bar {
      top: 30px; } }

.irs-bar-edge {
  top: 25px;
  height: 0.75rem;
  width: 0.5625rem;
  background-position: 0 -90px; }

.irs-shadow {
  height: 0.1875rem;
  top: 34px;
  background: #000;
  opacity: 0.25; }

.lt-ie9 .irs-shadow {
  filter: alpha(opacity=25); }

.irs-slider {
  width: 1.375rem;
  height: 1.75rem;
  top: 22px;
  cursor: pointer;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NkY3OTJDQ0E0RjVFMTFFNzlCRTc4ODJEMzA5OUQ1NjAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NkY3OTJDQ0I0RjVFMTFFNzlCRTc4ODJEMzA5OUQ1NjAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2Rjc5MkNDODRGNUUxMUU3OUJFNzg4MkQzMDk5RDU2MCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2Rjc5MkNDOTRGNUUxMUU3OUJFNzg4MkQzMDk5RDU2MCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnWU5m8AAAEJSURBVHjaYkw685UBC2AD4gAotgRiKSD+BcRPgPg8EK8H4o1QMRTAgsWwQCDuAmIVLJZoQHEkEN8B4nIgXoesiAmJzQzEnVAFKgyEAUjNWqgeZmwubAPiMgbSAUxPObILQ8g0DNnQEJiBoLDpZ6AcTACZBTIwFIhlqGCgNBCHMUGTBrVAAMhAUyoaaAIyUIKKBkoyYUvtlACQgc+paN5zkIGXqGjgGZCBG6ho4AaQgauhpQil4CnILFikFFHBwEIg/gnLyyBXdlNgWDfUDJTiqxKIp5Bh2FSoXozy8C8Q50JLjTtEGHQHWg7kQPXiLLFBheZmqGJQ6W0MzfiwgD8LrQJWY8sUAAEGAIMMMU+H5OjoAAAAAElFTkSuQmCC");
  background-repeat: no-repeat; }
  @media screen and (max-width: 74.9375em) {
    .irs-slider {
      width: 2.1875rem;
      height: 2.5rem;
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzZENUMwMUE0RjYyMTFFN0IzQTVEQjNCOUUyNDUzOUEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzZENUMwMUI0RjYyMTFFN0IzQTVEQjNCOUUyNDUzOUEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDNkQ1QzAxODRGNjIxMUU3QjNBNURCM0I5RTI0NTM5QSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDNkQ1QzAxOTRGNjIxMUU3QjNBNURCM0I5RTI0NTM5QSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pmvv7gwAAAFzSURBVHjavJbPSgJRGMWv11q5iPIJyiLcCQb9oRa1LJFWbSIwe4h6g3oHoXY9gTG0KwpMkdZa1hsUBLYR0s4Xx7BovDN25x74rWbu+SGM9/tixfq7MiQG1kAOrIBZMMlnr+AR3IEyuAG9oWVDhBoUwRFIqWB5AifgFHT9Sv+KCGqgFELWP1fi2VRQ4QaogqwaPVl2rJuEeXAJkur/SbIr7ydMg3MwpuxlnJ3p38I4HySU/STYHR8UHoCMii4ZOr6Emp9+1DkUl+aXNO1AOCMuEW4pd9kU4ZJD4bLm3egqc9rSnzxoprTpdrcdzRHjKi8ibDkUtkRYcSisiPDCobAswivw7EAmjmvNVeDYgVAc3f60OAP3EcrqdHyPpw+wC9oRyKRzj44fE78BdkDHoqzDzobfTuOBbUu/tM0uz7S1yQsLXPVGTY0dXtC9tCmjBBTAQwiRvLvPs82wm/fgqr/KQb0I5sEEn72xuMoL5NY0DD4FGACnL0uQizwcnQAAAABJRU5ErkJggg=="); } }

.irs-slider.state_hover, .irs-slider:hover {
  height: 1.375rem;
  width: 1.75rem;
  top: 20px;
  background-repeat: no-repeat;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTg1QjQ3REE0RjVGMTFFN0I0QTBGMDA4NjJBNkM2Q0MiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTg1QjQ3REI0RjVGMTFFN0I0QTBGMDA4NjJBNkM2Q0MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5ODVCNDdEODRGNUYxMUU3QjRBMEYwMDg2MkE2QzZDQyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5ODVCNDdEOTRGNUYxMUU3QjRBMEYwMDg2MkE2QzZDQyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PjNkigMAAAE6SURBVHjatJW7TgJBFIaHDQVUgg2SbOEDEKSBioQSLaHDp4AGTaw1IRTwEkBHC9R2WnlJjImJFqKh4VIRrfh/cjATslyEmT/5mp053+wms+f4M40XtSJhUABnIA6OwC/4BG+gA1pg5FXs8xAHQAmUQUitzxhUQQ1M9QVnaeMxuAc3W0iV7LkGd1LrKXbBLYip/ycmte6ymJ/f1hd2iCuOoC4ugqTaP0lxzcWH4FKZywWdjlypA4NiugoUZ5X5nFKcsCA+oThiQRyh+MeCeH4rvi14BxS/WhA/UNyzIO460vomBqV0tSgegopBMV3DRa+ogycD0mdx/TUhNuk8+NpD2ge5RcPX+zHHTVpO3eVN0+LwnCDvIAWuZOxsylj2suZj08zTh+k5G4oM06g85w/1yCsFmquG6UyAAQBUGDtgTvEFzgAAAABJRU5ErkJggg=="); }
  @media screen and (max-width: 74.9375em) {
    .irs-slider.state_hover, .irs-slider:hover {
      width: 2.1875rem;
      height: 2.5rem;
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RTg2RTQwOUU0RjYyMTFFN0IwMjVBQkY4MzU2RTM1RkEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RTg2RTQwOUY0RjYyMTFFN0IwMjVBQkY4MzU2RTM1RkEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpFODZFNDA5QzRGNjIxMUU3QjAyNUFCRjgzNTZFMzVGQSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpFODZFNDA5RDRGNjIxMUU3QjAyNUFCRjgzNTZFMzVGQSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PkeuNCEAAAGYSURBVHjaxJe7SgNBFIY3McYyGvUBFCV9UFsbMWBnoRhsLSRCvNRWPoCoqClsVdTC0mLJG3hpBQXtN8ZbZ2DR/4R/gwl7SXR35oev2p3zscPMzpnY5Mm90UZ6wAyYAmNgCAzw2Qt4BjegDK7AV1DBRMDzPrABCiDt8c4gmeB7r+AQbIM3r8JxH2kePIBNH6lb0hwjYxc7EcssHIHTX9P5l8jYY9ZKBE11F7gAs0Z4WQL9YA7YXl+8F7LUidTc95rqBS6OqLLMddMk7uXXRp1d7pSGeJ1bIuqIY80RJ8GKoS7iSoo4x1WnKuLKiXjaUJ+6OKtBnBXxqAbxiIhTGsQpEX9rENe306cG70ecx5fqPIr4ToP4VsSmBrHpiCsKpRVHXGOPpCriqjmn0w6wFEgtuhrH4jsoKhAX6WrqQM5b25OQc0CHa88lh/RlBFKpuerX3koXOA9KIUpLrGkH9dU2m778PxecxRqFVmnQTeIMZMAWqHYgrHJMhjVcE2vz0tbNFkm6lXEw7HSLvB89gWv+jEz+G3zzI8AAVStMHDnMJSAAAAAASUVORK5CYII="); } }

.irs-min, .irs-max {
  color: #999;
  font-size: 0.625rem;
  line-height: 1.333;
  text-shadow: none;
  top: 0;
  padding: 0.0625rem 0.1875rem;
  background: #e1e4e9;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.irs-from, .irs-to, .irs-single {
  color: #000;
  font-size: 0.625rem;
  line-height: 1.333;
  text-shadow: none;
  padding: 0.0625rem 0.375rem;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.irs-from:after, .irs-to:after, .irs-single:after {
  position: absolute;
  display: block;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -0.1875rem;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #3fa5d7; }

.irs-grid-pol {
  background: #e1e4e9; }

.irs-grid-text {
  color: #999; }

.content-restrict {
  max-width: 75rem; }
  .content-restrict .banner-wrap {
    margin: 20px 0 20px 0;
    text-align: center; }

.content-search-sec .search-sec {
  background: #62cef5 !important; }
  .content-search-sec .search-sec h1 {
    font-size: 1.5625rem;
    margin: 0.625rem 0;
    color: white;
    font-weight: 300; }
    @media screen and (min-width: 64em) {
      .content-search-sec .search-sec h1 {
        margin: 1.25rem 0; } }
  .content-search-sec .search-sec .row {
    background: none; }

.content-search-sec .content-search-bar {
  background-image: none; }
  .content-search-sec .content-search-bar.search-bar {
    overflow: hidden; }
    .content-search-sec .content-search-bar.search-bar .search-selection {
      width: calc(100% - 50px);
      float: left; }
    .content-search-sec .content-search-bar.search-bar .finder-icon {
      float: left; }
    .content-search-sec .content-search-bar.search-bar.gt-icon-search {
      right: 15px; }
  .content-search-sec .content-search-bar .content-search-box .content-search {
    border: none;
    box-shadow: none;
    background-color: transparent;
    text-overflow: ellipsis;
    min-width: 12.5rem;
    max-width: 18.75rem;
    height: 100%;
    color: #8e8e93; }
    .content-search-sec .content-search-bar .content-search-box .content-search:focus {
      outline: none;
      border: none;
      box-shadow: none; }
    @media screen and (min-width: 64em) {
      .content-search-sec .content-search-bar .content-search-box .content-search {
        margin-left: 0;
        min-width: 12.5rem; } }

.content-head a {
  /*text-transform: capitalize;*/
  color: white;
  font-size: 1.25rem; }
  @media screen and (min-width: 64em) {
    .content-head a {
      font-size: 1.5625rem; } }
  .content-head a:hover {
    color: #bde7f8; }
  .content-head a:last-child {
    font-weight: 600; }

.content-details .content-search-sec .search-sec h1 {
  margin: 0 0 0.625rem;
  font-size: 1.125rem; }
  @media screen and (min-width: 64em) {
    .content-details .content-search-sec .search-sec h1 {
      font-size: 1.5625rem; } }

.content-sub-nav {
  padding: 0.625rem 0;
  border-bottom: 1px #e9e9e9 solid;
  margin-bottom: 1.25rem;
  text-align: center; }
  @media screen and (min-width: 64em) {
    .content-sub-nav {
      text-align: left; } }
  .content-sub-nav a {
    font-size: 1rem;
    font-weight: 400; }
  .content-sub-nav span {
    display: inline;
    font-size: 0.875rem;
    color: #e9e9e9;
    padding: 0 0.625rem; }
  .content-sub-nav .checklist {
    margin: 0;
    padding: 0; }
    .content-sub-nav .checklist .count {
      display: none; }
    .content-sub-nav .checklist li {
      padding: 0.1875rem 0;
      list-style: none;
      line-height: 1.5;
      display: inline-block;
      font-size: 0.875rem; }
      @media screen and (min-width: 48em) {
        .content-sub-nav .checklist li {
          font-size: 1rem; } }
      .content-sub-nav .checklist li input[type="checkbox"] {
        display: none; }
      .content-sub-nav .checklist li label, .content-sub-nav .checklist li .facet-link {
        margin: 0;
        position: relative;
        text-transform: capitalize;
        padding-left: 1.125rem;
        padding-right: 0.625rem;
        line-height: 1.2;
        width: 100%;
        display: inline-block;
        color: #484848; }
        @media screen and (min-width: 48em) {
          .content-sub-nav .checklist li label, .content-sub-nav .checklist li .facet-link {
            padding-left: 1.3125rem;
            padding-right: 1.875rem; } }
        .content-sub-nav .checklist li label:before, .content-sub-nav .checklist li .facet-link:before {
          content: '';
          width: 14px;
          height: 14px;
          border: 1px solid #ceced2;
          display: inline-flex;
          margin-right: 7px;
          position: absolute;
          left: 0;
          top: 2px; }
      .content-sub-nav .checklist li input[type="checkbox"]:checked + label, .content-sub-nav .checklist li .facet-refined {
        color: #7f3f98; }
        .content-sub-nav .checklist li input[type="checkbox"]:checked + label:before, .content-sub-nav .checklist li .facet-refined:before {
          border-color: #7f3f98;
          background: #7f3f98; }
        .content-sub-nav .checklist li input[type="checkbox"]:checked + label:after, .content-sub-nav .checklist li .facet-refined:after {
          content: '';
          width: 8px;
          height: 4px;
          border-left: white 2px solid;
          border-bottom: white 2px solid;
          display: inline-flex;
          position: absolute;
          left: 3px;
          top: 6px;
          transform: rotate(-43deg);
          -webkit-transform: rotate(-43deg);
          -moz-transform: rotate(-43deg);
          -o-transform: rotate(-43deg); }
  .content-sub-nav .facets-sec a.cat-list {
    padding: 0 0.625rem;
    border-right: 1px #ceced2 solid; }
    .content-sub-nav .facets-sec a.cat-list:last-child {
      border-right: 0; }
    .content-sub-nav .facets-sec a.cat-list:first-child {
      padding-left: 0; }
  .content-sub-nav .search-result-count {
    padding: 0.9375rem 0 0.625rem 0;
    color: #666666;
    display: block; }

.content-listing-left {
  border-right: 2px #e9e9e9 dotted; }

.content-intro {
  padding-bottom: 1.5625rem;
  margin: 0 0 1.5625rem;
  border-bottom: 2px #e9e9e9 dotted; }
  @media screen and (min-width: 64em) {
    .content-intro {
      background: url("../img/generic/sami-hello.png") no-repeat 100% 50%;
      padding-right: 5rem; } }
  .content-intro h2 {
    font-size: 1.5rem;
    font-weight: 700; }

.content-list-sec ul.content-card-wrap {
  list-style-type: none;
  margin: 0; }
  .content-list-sec ul.content-card-wrap li {
    float: left;
    margin-bottom: 0.9375rem; }
    .content-list-sec ul.content-card-wrap li .content-image {
      max-height: 16.25rem;
      overflow: hidden; }
      .content-list-sec ul.content-card-wrap li .content-image img {
        width: 100%; }
    .content-list-sec ul.content-card-wrap li .content-details .content-category {
      font-size: 0.875rem;
      font-weight: 600;
      color: #3fa5d7;
      /*text-transform: uppercase;*/ }
    .content-list-sec ul.content-card-wrap li .content-details .title {
      color: #333333;
      font-weight: 900; }
    .content-list-sec ul.content-card-wrap li .content-details .vertical {
      color: #7e7e7e;
      font-size: 0.8125rem;
      font-family: "Georgia", 'Times New Roman', serif;
      font-style: italic;
      font-weight: 400;
      padding: 0.5rem 0; }
    .content-list-sec ul.content-card-wrap li .content-details .excerpt {
      color: #484848; }
    .content-list-sec ul.content-card-wrap li:nth-child(2n) {
      margin-right: 1%; }
    .content-list-sec ul.content-card-wrap li:nth-child(2n+1) {
      margin-left: 1%; }
    .content-list-sec ul.content-card-wrap li:first-child {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
      margin-bottom: 2.5rem; }
      .content-list-sec ul.content-card-wrap li:first-child .content-image {
        width: 100%;
        float: left; }
        @media screen and (min-width: 64em) {
          .content-list-sec ul.content-card-wrap li:first-child .content-image {
            width: 49%;
            margin-right: 1%; } }
      .content-list-sec ul.content-card-wrap li:first-child .content-details {
        float: left; }
        @media screen and (min-width: 64em) {
          .content-list-sec ul.content-card-wrap li:first-child .content-details {
            width: 49%;
            margin-left: 1%; } }
        .content-list-sec ul.content-card-wrap li:first-child .content-details .title {
          font-size: 1.5625rem;
          line-height: 1.875rem; }
        .content-list-sec ul.content-card-wrap li:first-child .content-details .excerpt {
          font-size: 0.875rem; }
    .content-list-sec ul.content-card-wrap li:nth-child(n+2) {
      width: 49%; }
      .content-list-sec ul.content-card-wrap li:nth-child(n+2) .excerpt {
        display: none; }
      .content-list-sec ul.content-card-wrap li:nth-child(n+2) .title {
        line-height: 1.375rem; }
      .content-list-sec ul.content-card-wrap li:nth-child(n+2) .content-category {
        padding: 0.625rem 0 0.3125rem; }
    .content-list-sec ul.content-card-wrap li:nth-child(n+6) {
      width: 100%;
      margin-left: 0;
      margin-right: 0; }
      .content-list-sec ul.content-card-wrap li:nth-child(n+6) .content-image {
        width: 20%;
        float: left; }
      .content-list-sec ul.content-card-wrap li:nth-child(n+6) .content-details {
        width: 78%;
        margin-left: 2%;
        float: left; }
      .content-list-sec ul.content-card-wrap li:nth-child(n+6) .content-category {
        padding: 0 0 0.3125rem; }
    .content-list-sec ul.content-card-wrap li:nth-child(2), .content-list-sec ul.content-card-wrap li:nth-child(3), .content-list-sec ul.content-card-wrap li:nth-child(4), .content-list-sec ul.content-card-wrap li:nth-child(5) {
      min-height: 18.75rem; }
      @media screen and (min-width: 64em) {
        .content-list-sec ul.content-card-wrap li:nth-child(2), .content-list-sec ul.content-card-wrap li:nth-child(3), .content-list-sec ul.content-card-wrap li:nth-child(4), .content-list-sec ul.content-card-wrap li:nth-child(5) {
          min-height: 22.5rem; } }
    .content-list-sec ul.content-card-wrap li:nth-child(6) {
      border-top: 2px #e9e9e9 dotted;
      margin-top: 0.3125rem;
      padding-top: 1.5625rem; }

.search-result-page {
  min-height: 37.5rem; }
  .search-result-page .content-listing-left {
    border: 0; }
  .search-result-page .content-list-sec ul.content-card-wrap li:nth-child(n) {
    width: 100%;
    margin: 0.3125rem 0 1.875rem 0;
    min-height: 0; }
    .search-result-page .content-list-sec ul.content-card-wrap li:nth-child(n) .content-image {
      width: 100%;
      float: left; }
      @media screen and (min-width: 64em) {
        .search-result-page .content-list-sec ul.content-card-wrap li:nth-child(n) .content-image {
          width: 22%;
          margin-right: 1%; } }
    .search-result-page .content-list-sec ul.content-card-wrap li:nth-child(n) .content-details {
      float: left; }
      @media screen and (min-width: 64em) {
        .search-result-page .content-list-sec ul.content-card-wrap li:nth-child(n) .content-details {
          width: 76%;
          margin-left: 1%; } }
      .search-result-page .content-list-sec ul.content-card-wrap li:nth-child(n) .content-details .title {
        font-size: 1.25rem;
        line-height: 1.5625rem; }
        @media screen and (min-width: 64em) {
          .search-result-page .content-list-sec ul.content-card-wrap li:nth-child(n) .content-details .title {
            font-size: 1.5rem;
            line-height: 1.75rem; } }
      .search-result-page .content-list-sec ul.content-card-wrap li:nth-child(n) .content-details .excerpt {
        font-size: 0.875rem; }
        @media screen and (min-width: 64em) {
          .search-result-page .content-list-sec ul.content-card-wrap li:nth-child(n) .content-details .excerpt {
            display: inline-block; } }

.search-content .content-stats {
  margin-bottom: 1.25rem;
  color: #919191;
  font-size: 0.875rem; }

.search-content .pagination {
  text-align: center;
  float: none;
  display: inline-block;
  width: 100%; }
  .search-content .pagination ul {
    margin-left: 0; }
  @media screen and (min-width: 64em) {
    .search-content .pagination {
      margin: 3rem 0 4rem; } }
  .search-content .pagination a:hover {
    background: none; }
  .search-content .pagination li {
    list-style: none;
    display: inline-block; }
  .search-content .pagination .go-to-page {
    text-align: center;
    display: inline-block;
    width: 2.1875rem;
    height: 2.1875rem;
    font-size: 0.75rem;
    border: 1px solid #60cdf6;
    text-transform: uppercase;
    border-radius: 50%;
    color: #60cdf6;
    padding: 0.25rem 0 0; }
    @media screen and (min-width: 64em) {
      .search-content .pagination .go-to-page {
        font-size: 1rem; } }
    .search-content .pagination .go-to-page.single-btn {
      border-radius: 25px;
      padding: 0.625rem 1.875rem;
      width: auto;
      line-height: 0.9375rem; }
    .search-content .pagination .go-to-page:before {
      color: white;
      font-size: 1.75rem;
      line-height: 2.5rem; }
      @media screen and (min-width: 64em) {
        .search-content .pagination .go-to-page:before {
          font-size: 2rem;
          line-height: 3rem; } }
  .search-content .pagination .active .go-to-page {
    background: #60cdf6;
    color: white; }
  .search-content .pagination .disabled {
    padding: 0;
    margin: 0; }
    .search-content .pagination .disabled.page-change a {
      width: 2.1875rem;
      height: 2.1875rem;
      border: 1px solid #ceced2;
      border-radius: 50%;
      color: #ceced2;
      padding: 0.25rem 0 0;
      cursor: not-allowed;
      font-size: 0.75rem; }
      @media screen and (min-width: 64em) {
        .search-content .pagination .disabled.page-change a {
          font-size: 1rem; } }

.essential-reads h2 {
  color: #3fa5d7;
  font-size: 1.25rem; }

.essential-reads .essential-sec .essential-head {
  border-bottom: 2px #3fa5d7 solid;
  position: relative;
  padding-bottom: 1.25rem;
  margin-bottom: 1.875rem; }
  .essential-reads .essential-sec .essential-head span {
    position: absolute;
    left: 0.625rem;
    width: 2.8125rem;
    height: 2.8125rem;
    border-radius: 50%;
    border: 2px #3fa5d7 solid;
    background-size: 1.5625rem !important; }
    .essential-reads .essential-sec .essential-head span.icon-autos {
      background: white url("../img/generic/global-icon-motors.svg") no-repeat 50% 50%; }
    .essential-reads .essential-sec .essential-head span.icon-property {
      background: white url("../img/generic/global-icon-forrent.svg") no-repeat 50% 50%; }
    .essential-reads .essential-sec .essential-head span.icon-jobs {
      background: white url("../img/generic/global-icon-jobs.svg") no-repeat 50% 50%; }

.essential-reads .essential-sec .essential-content ul {
  list-style-type: none;
  margin: 0 0 1.875rem; }
  .essential-reads .essential-sec .essential-content ul li {
    margin-bottom: 0.625rem; }

.essential-reads .essential-sec .essential-content a h3 {
  color: #333333;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.375rem;
  margin: 0; }

.essential-reads .essential-sec .essential-content a .vertical {
  color: #7e7e7e;
  font-size: 0.8125rem;
  font-family: "Georgia", 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  padding: 0.5rem 0; }

.content-details .content-heading h1 {
  font-size: 1.5625rem;
  line-height: 1.875rem;
  font-weight: 900;
  color: #484848;
  margin: 1.5625rem 0 0.9375rem; }
  @media screen and (min-width: 64em) {
    .content-details .content-heading h1 {
      font-size: 2.1875rem;
      line-height: 2.5rem; } }

.content-details .content-heading h2 {
  font-size: 0.875rem;
  font-weight: 400;
  color: #484848; }
  @media screen and (min-width: 64em) {
    .content-details .content-heading h2 {
      font-size: 1.125rem; } }
  .content-details .content-heading h2 .best-for {
    color: #3fa5d7;
    font-weight: 600; }

.content-details .guides-ar-content .advert-dfp {
  text-align: center; }

.content-details .sponsored-sec {
  border-bottom: 5px #ceced2 solid;
  position: relative;
  margin: 1.25rem 0 1.875rem; }
  .content-details .sponsored-sec span {
    position: absolute;
    right: 0;
    color: #7e7e7e;
    font-size: 0.8125rem;
    font-family: "Georgia", 'Times New Roman', serif;
    font-style: italic;
    top: 50%;
    transform: translate(0, -50%);
    padding: 0.625rem 0 0.9375rem 1.25rem;
    background: white; }
    .content-details .sponsored-sec span .sponsor-logo {
      max-height: 2.375rem;
      max-width: 6.25rem;
      margin-right: 0.625rem; }

.content-details .no-sponsor {
  margin-top: 1.25rem; }

.content-details .top-image {
  max-height: 42.8125rem;
  overflow: hidden;
  margin-bottom: 1.25rem; }
  .content-details .top-image img {
    width: 100%; }
  @media screen and (min-width: 64em) {
    .content-details .top-image {
      margin-bottom: 2.5rem; } }

.content-details .contents hr {
  clear: none; }
  @media screen and (min-width: 64em) {
    .content-details .contents hr {
      margin-bottom: 2.1875rem; } }

.content-details .contents .author {
  border: 1px #ceced2 solid;
  padding: 0.9375rem;
  width: 100%;
  overflow: hidden; }
  @media screen and (min-width: 48em) {
    .content-details .contents .author {
      padding: 1.5625rem;
      margin-bottom: 0.9375rem; } }
  .content-details .contents .author .author-image {
    width: 4.6875rem;
    height: 4.6875rem;
    border-radius: 50%; }
    @media screen and (min-width: 48em) {
      .content-details .contents .author .author-image {
        margin: 0 auto;
        float: none; } }
  .content-details .contents .author .author-details {
    text-align: left;
    font-size: 0.875rem;
    color: #484848; }
    @media screen and (min-width: 48em) {
      .content-details .contents .author .author-details {
        text-align: center; } }
    .content-details .contents .author .author-details span {
      font-size: 0.75rem; }

.content-details .contents .share-sec.social-share {
  border: none; }
  .content-details .contents .share-sec.social-share a {
    width: auto; }

.content-details .contents .share-sec .share-txt {
  color: #484848;
  font-size: 1rem;
  text-transform: uppercase;
  margin-right: 0.625rem;
  font-weight: 600;
  display: block;
  vertical-align: top; }
  @media screen and (min-width: 64em) {
    .content-details .contents .share-sec .share-txt {
      font-size: 1.25rem;
      display: inline-block;
      line-height: 3.25rem; } }

.content-details .contents .share-sec .social-links {
  margin-top: 0;
  display: inline-block; }
  .content-details .contents .share-sec .social-links a {
    font-size: 2.1875rem;
    margin-right: 0.375rem;
    margin-top: 0.375rem;
    display: inline-block; }
    @media screen and (min-width: 64em) {
      .content-details .contents .share-sec .social-links a.icon-whatsapp {
        display: none;
        margin-top: 0; } }
  .content-details .contents .share-sec .social-links .icon-whatsapp:before {
    color: #25D366; }
  .content-details .contents .share-sec .social-links .icon-email:before {
    color: #1b344a; }
  .content-details .contents .share-sec .social-links .icon-fb:before {
    color: #1072ba; }
  .content-details .contents .share-sec .social-links .icon-twitter:before {
    color: #6dcff6; }

.content-details .contents .article .orbit {
  width: 100%; }
  @media screen and (min-width: 64em) {
    .content-details .contents .article .orbit {
      width: 90%;
      margin: 0.625rem auto 3.125rem; } }
  .content-details .contents .article .orbit .orbit-wrapper {
    position: relative; }
    .content-details .contents .article .orbit .orbit-wrapper .orbit-controls .orbit-previous {
      position: absolute;
      top: 50%;
      left: -10px;
      transform: translate(0, -50%);
      background: #3fa5d7 url("../img/generic/gt-gallery-left.svg") no-repeat 50% 50%;
      width: 3.125rem;
      height: 6.25rem;
      z-index: 1000; }
      @media screen and (min-width: 64em) {
        .content-details .contents .article .orbit .orbit-wrapper .orbit-controls .orbit-previous {
          left: -50px; } }
    .content-details .contents .article .orbit .orbit-wrapper .orbit-controls .orbit-next {
      position: absolute;
      top: 50%;
      right: -10px;
      transform: translate(0, -50%);
      background: #3fa5d7 url("../img/generic/gt-gallery-right.svg") no-repeat 50% 50%;
      width: 3.125rem;
      height: 6.25rem;
      z-index: 1001; }
      @media screen and (min-width: 64em) {
        .content-details .contents .article .orbit .orbit-wrapper .orbit-controls .orbit-next {
          right: -50px; } }
    .content-details .contents .article .orbit .orbit-wrapper .orbit-container {
      margin: 0;
      list-style-type: none; }
      .content-details .contents .article .orbit .orbit-wrapper .orbit-container .orbit-slide {
        margin: 0; }
        .content-details .contents .article .orbit .orbit-wrapper .orbit-container .orbit-slide img {
          width: 100%; }
        .content-details .contents .article .orbit .orbit-wrapper .orbit-container .orbit-slide figcaption {
          position: absolute;
          width: 100%;
          bottom: 0;
          padding: 0.9375rem;
          background: rgba(0, 0, 0, 0.4);
          color: white; }

.content-details .contents .article .property-pre.content-like, .content-details .contents .article .property-pre.content-dislike {
  border: 3px #ceced2 solid;
  text-align: center;
  padding: 3.125rem 1.875rem 1.875rem;
  width: 100%;
  float: left;
  margin-top: 2.5rem; }
  @media screen and (min-width: 64em) {
    .content-details .contents .article .property-pre.content-like, .content-details .contents .article .property-pre.content-dislike {
      width: 48%; } }
  .content-details .contents .article .property-pre.content-like span, .content-details .contents .article .property-pre.content-dislike span {
    font-weight: 700;
    font-size: 1.5rem;
    display: block; }
  .content-details .contents .article .property-pre.content-like:before, .content-details .contents .article .property-pre.content-dislike:before {
    content: "";
    width: 5rem;
    height: 5rem;
    display: block;
    margin: -5.625rem auto 0;
    border: 2px #62ccf5 solid;
    border-radius: 50%; }

@media screen and (min-width: 64em) {
  .content-details .contents .article .property-pre.content-like {
    margin-right: 2%; } }

.content-details .contents .article .property-pre.content-like:before {
  background: #62ccf5 url("/img/generic/icon_thumbup.png") no-repeat 50% 50%;
  background-size: 60%; }

@media screen and (min-width: 64em) {
  .content-details .contents .article .property-pre.content-dislike {
    margin-left: 2%; } }

.content-details .contents .article .property-pre.content-dislike:before {
  background: white url("/img/generic/icon_thumbdown.png") no-repeat 50% 50%;
  background-size: 60%; }

.content-details .contents .article .autos-pre.content-like, .content-details .contents .article .autos-pre.content-dislike {
  padding: 1.25rem 0 1.25rem 3.125rem;
  width: 100%;
  float: left;
  position: relative; }
  @media screen and (min-width: 64em) {
    .content-details .contents .article .autos-pre.content-like, .content-details .contents .article .autos-pre.content-dislike {
      padding: 1.25rem 0 1.25rem 6.25rem; } }
  .content-details .contents .article .autos-pre.content-like span, .content-details .contents .article .autos-pre.content-dislike span {
    font-weight: 700;
    font-size: 1.5rem;
    display: block; }
  .content-details .contents .article .autos-pre.content-like:before, .content-details .contents .article .autos-pre.content-dislike:before {
    content: "";
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    left: 0;
    top: 12%;
    display: block;
    border: 2px #62ccf5 solid;
    border-radius: 50%;
    transform: translate(0, -50%); }
    @media screen and (min-width: 64em) {
      .content-details .contents .article .autos-pre.content-like:before, .content-details .contents .article .autos-pre.content-dislike:before {
        width: 5rem;
        height: 5rem;
        top: 50%; } }

.content-details .contents .article .autos-pre.content-like:before {
  background: #62ccf5 url("/img/generic/icon_thumbup.png") no-repeat 50% 50%;
  background-size: 60%; }

.content-details .contents .article .autos-pre.content-dislike:before {
  background: white url("/img/generic/icon_thumbdown.png") no-repeat 50% 50%;
  background-size: 60%; }

.content-details .contents .article blockquote {
  border: 0;
  font-family: "Georgia", 'Times New Roman', serif;
  color: #000;
  position: relative;
  float: right;
  margin: 0;
  padding: 0.625rem 3.125rem;
  width: 100%;
  font-size: 1.875rem;
  line-height: 2.1875rem; }
  @media screen and (min-width: 48em) {
    .content-details .contents .article blockquote {
      width: 50%;
      margin: 1.25rem 1.25rem 1.875rem 2.5rem;
      font-size: 1.875rem; } }
  .content-details .contents .article blockquote p {
    font-size: 1.5625rem;
    color: #000;
    line-height: 2.1875rem; }
    @media screen and (min-width: 48em) {
      .content-details .contents .article blockquote p {
        font-size: 1.875rem;
        line-height: 2.5rem; } }
  .content-details .contents .article blockquote:before, .content-details .contents .article blockquote:after {
    color: #3fa5d7;
    position: absolute; }
  .content-details .contents .article blockquote:before {
    content: '\201C';
    font-size: 7.5rem;
    left: 0;
    top: 2.1875rem; }
  .content-details .contents .article blockquote:after {
    content: '\201D';
    font-size: 5rem;
    right: 0;
    bottom: 0; }

.content-details .contents .article img.alignleft {
  float: left;
  margin: 1.25rem 1.25rem 1.25rem 0; }

.content-details .contents .article img.alignright {
  float: right;
  margin: 1.25rem 0 1.25rem 1.25rem; }

.content-details .contents .article img.aligncenter {
  width: 100%;
  margin: 1.25rem 0; }

.content-details .contents .article .rating {
  width: 100%;
  float: left;
  margin: 1.25rem 0 2.5rem; }
  .content-details .contents .article .rating table {
    margin: 0 auto;
    min-width: 60%;
    border: 0px; }
    .content-details .contents .article .rating table tbody {
      border: 0px; }
      .content-details .contents .article .rating table tbody tr {
        border: 0px; }
        .content-details .contents .article .rating table tbody tr td {
          padding: 0.5rem;
          border: 0px; }
          .content-details .contents .article .rating table tbody tr td img {
            max-width: 1.25rem; }
            @media screen and (min-width: 48em) {
              .content-details .contents .article .rating table tbody tr td img {
                max-width: 2.5rem; } }
      .content-details .contents .article .rating table tbody strong {
        font-size: 0.9375rem;
        font-weight: 600; }
        @media screen and (min-width: 48em) {
          .content-details .contents .article .rating table tbody strong {
            font-size: 1.5rem;
            font-weight: 700; } }

.content-details .contents .article .content-map-sec {
  padding-top: 1.25rem; }
  .content-details .contents .article .content-map-sec .map-filters {
    padding-right: 0; }
    .content-details .contents .article .content-map-sec .map-filters ul {
      list-style-type: none;
      margin: 0; }
      @media screen and (max-width: 63.9375em) {
        .content-details .contents .article .content-map-sec .map-filters ul {
          margin: 0px 0.3125rem 0.625rem; } }
      .content-details .contents .article .content-map-sec .map-filters ul li {
        background-size: 1.25rem;
        padding: 1rem 0.3125rem 1rem 0.9375rem;
        cursor: pointer;
        margin-bottom: 0.625rem;
        border: 1px #ceced2 solid;
        font-size: 0.875rem;
        transition: background-color 0.4s ease;
        background-color: white; }
        .content-details .contents .article .content-map-sec .map-filters ul li svg {
          width: 1.25rem;
          height: 1.375rem;
          display: inline-block;
          float: left; }
        .content-details .contents .article .content-map-sec .map-filters ul li span {
          display: inline-block;
          padding-left: 0.625rem; }
        .content-details .contents .article .content-map-sec .map-filters ul li:hover {
          background-color: #60cdf6;
          border-color: #60cdf6;
          transition: background-color 0.4s ease;
          color: white; }
          .content-details .contents .article .content-map-sec .map-filters ul li:hover svg {
            fill: white; }
        .content-details .contents .article .content-map-sec .map-filters ul li.active-filter {
          background-color: #60cdf6;
          color: white;
          border-color: #60cdf6; }
          .content-details .contents .article .content-map-sec .map-filters ul li.active-filter svg {
            fill: white; }
        @media screen and (max-width: 63.9375em) {
          .content-details .contents .article .content-map-sec .map-filters ul li {
            width: 46%;
            margin: 1%;
            display: inline-block; } }
  .content-details .contents .article .content-map-sec .filter-metro {
    background: url("../img/generic/icon_metro.svg") no-repeat 5% 50%; }
  .content-details .contents .article .content-map-sec .filter-mosque {
    background: url("../img/generic/icon_mosques.svg") no-repeat 5% 50%; }
  .content-details .contents .article .content-map-sec .filter-hospital {
    background: url("../img/generic/icon_hospital.svg") no-repeat 5% 50%; }
  .content-details .contents .article .content-map-sec .filter-nightlife {
    background: url("../img/generic/icon_nightlife.svg") no-repeat 5% 50%; }
  .content-details .contents .article .content-map-sec .filter-school {
    background: url("../img/generic/icon_schools.svg") no-repeat 5% 50%; }
  .content-details .contents .article .content-map-sec .filter-shoppingmall {
    background: url("../img/generic/icon_shoppingmalls.svg") no-repeat 5% 50%; }
  .content-details .contents .article .content-map-sec .filter-restaurant {
    background: url("../img/generic/icon_restaurants.svg") no-repeat 5% 50%; }

.content-details .contents .article .get-in-out {
  margin: 1.25rem 0 2.5rem; }

.content-details .contents .article P iframe {
  display: block;
  margin: 0 auto; }

.content-details .contents .article h1, .content-details .contents .article h2, .content-details .contents .article h3, .content-details .contents .article h4, .content-details .contents .article h5, .content-details .contents .article h6 {
  font-weight: 700; }

.content-grey-bg {
  margin-bottom: 1.25rem; }
  .content-grey-bg.row, .content-grey-bg .row {
    background: #f8f8f8; }
  .content-grey-bg .contents {
    margin-top: 0; }

.content-search-sec .search-sec {
  min-height: 0; }
  .content-search-sec .search-sec .search-bar {
    padding: 0 0 0.625rem; }
    @media screen and (min-width: 64em) {
      .content-search-sec .search-sec .search-bar {
        padding: 1.25rem 0; } }

.content-search-sec.wallpaper-ad-slot .search-sec {
  min-height: 28.125rem; }
  .content-search-sec.wallpaper-ad-slot .search-sec .search-bar {
    max-width: 60rem;
    top: 9.375rem;
    background: none !important; }

.usage-view {
  position: relative; }
  .usage-view .search-result {
    font-size: 0.875rem;
    line-height: 1.2; }
  .usage-view .main-title {
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    border-bottom: 1px dotted #60cdf6; }
  .usage-view .large-text {
    font-size: 1.125rem;
    float: left; }
  .usage-view .select-sort-by {
    border-color: #60cdf6;
    margin-top: -10px; }
  .usage-view .has-tip {
    cursor: pointer; }
    .usage-view .has-tip:before {
      color: #60cdf6; }
  .usage-view .profile-view-count {
    font-size: 0.8125rem;
    color: #453269;
    margin-bottom: 1.25rem; }
    .usage-view .profile-view-count .count-list {
      list-style: none;
      padding: 0;
      margin: 0; }
      .usage-view .profile-view-count .count-list li {
        width: 18.75rem;
        line-height: 1.3;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 1.25rem; }
        .usage-view .profile-view-count .count-list li:first-child {
          margin-top: 0; }
        @media screen and (min-width: 64em) {
          .usage-view .profile-view-count .count-list li {
            margin-left: 3.125rem;
            margin-top: 0; }
            .usage-view .profile-view-count .count-list li:first-child {
              margin-left: 0; } }
    .usage-view .profile-view-count .count-item-icons {
      width: 1.875rem;
      height: 1.875rem;
      margin-right: 0.3125rem;
      display: inline-block;
      vertical-align: middle; }
      .usage-view .profile-view-count .count-item-icons svg {
        width: 1.875rem;
        height: 1.875rem; }
    .usage-view .profile-view-count .label {
      width: 11.5625rem; }
    .usage-view .profile-view-count .strong-text {
      font-size: 2.5rem;
      font-weight: 600; }
    @media screen and (min-width: 64em) {
      .usage-view .profile-view-count {
        float: right;
        right: 0;
        margin-bottom: 0; } }
  @media screen and (min-width: 64em) {
    .usage-view .count {
      color: #453269;
      font-size: 1.875rem;
      font-weight: 300; } }
  .usage-view .image {
    width: 6.25rem; }
    @media screen and (min-width: 64em) {
      .usage-view .image {
        width: 6.25rem; } }
  .usage-view .action-bar {
    width: 12.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem; }
    @media screen and (min-width: 64em) {
      .usage-view .action-bar {
        text-align: right;
        width: 100%;
        margin-bottom: 10px; } }
    .usage-view .action-bar a {
      font-size: 15px;
      text-transform: uppercase;
      font-weight: bold; }
  .usage-view .text-col {
    width: 8.125rem;
    display: table-cell;
    text-align: right;
    padding-right: 0.3125rem; }
  .usage-view .table-label-cell {
    display: table; }
  .usage-view table th:first-child {
    width: 25rem; }
  .usage-view .pagination {
    text-align: center; }
    .usage-view .pagination li {
      display: inline-block; }
    .usage-view .pagination .go-to-page, .usage-view .pagination .disabled a {
      text-align: center;
      display: inline-block;
      width: 2.1875rem;
      height: 2.1875rem;
      font-size: 0.75rem;
      border: 1px solid #60cdf6;
      text-transform: uppercase;
      border-radius: 50%;
      color: #60cdf6;
      padding: 0.25rem 0 0; }
      @media screen and (min-width: 64em) {
        .usage-view .pagination .go-to-page, .usage-view .pagination .disabled a {
          font-size: 1rem; } }
      .usage-view .pagination .go-to-page.single-btn, .usage-view .pagination .disabled a.single-btn {
        border-radius: 25px;
        padding: 0.625rem 1.875rem;
        width: auto;
        line-height: 0.9375rem; }
      .usage-view .pagination .go-to-page:hover, .usage-view .pagination .disabled a:hover {
        background: none; }
    .usage-view .pagination .page-change.disabled {
      padding: 0; }
      .usage-view .pagination .page-change.disabled a {
        text-align: center;
        border-radius: 50%;
        border: 1px solid #ceced2;
        width: 2.1875rem;
        height: 2.1875rem;
        color: #ceced2;
        font-size: 0.75rem;
        padding: 0.25rem 0 0; }
        @media screen and (min-width: 64em) {
          .usage-view .pagination .page-change.disabled a {
            font-size: 1rem; } }
  .usage-view .msg-no-results p {
    line-height: 1.6; }

.large-tooltip-text {
  max-width: 31.25rem !important; }

.featured-company {
  border-top: 1px solid #CECED2;
  min-height: 15.9375rem;
  margin: 2rem 0 0; }
  @media screen and (min-width: 64em) {
    .featured-company .row {
      max-width: 81.25rem; } }
  @media screen and (min-width: 90em) {
    .featured-company .row {
      max-width: 85.9375rem !important; } }
  .featured-company .featured-card {
    border: 1px #ceced2 solid;
    border-left: 6px solid #65CCED;
    display: inline-block;
    padding: 1.25rem 0.625rem 1.25rem 1.25rem;
    width: 100%;
    box-sizing: border-box; }
  .featured-company .img-wrapper {
    width: 6.25rem;
    float: left;
    height: 6.25rem;
    line-height: 6rem;
    text-align: center;
    overflow: hidden;
    border: 1px solid #dddddd; }
    .featured-company .img-wrapper img {
      max-height: 90%;
      max-width: 90%;
      vertical-align: middle; }
  .featured-company .meta-wrapper {
    float: left;
    padding-left: .75rem;
    width: 8.8125rem; }
  .featured-company .featured-title {
    color: #8E8E93;
    line-height: 1.3;
    margin-bottom: 0.3125rem; }
  .featured-company .listing-count {
    font-size: 0.875rem;
    color: black; }
  @media screen and (min-width: 1024px) and (max-width: 1280px) {
    .featured-company .featured-card {
      min-height: 8.25rem;
      padding: 10px; }
    .featured-company .img-wrapper {
      width: 4.375rem;
      height: 4.375rem;
      line-height: 4.375rem; }
    .featured-company .meta-wrapper {
      padding-left: 0.3125rem;
      width: 7.4375rem; } }

.wickedpicker {
  z-index: 1000;
  box-shadow: none;
  border: 1px #ceced2 solid;
  border-bottom-width: 0.25rem;
  height: 10rem; }
  .wickedpicker .wickedpicker__title {
    background: none;
    border: none;
    padding: 1.5rem; }
  .wickedpicker .wickedpicker__close {
    position: absolute;
    right: 0.625rem;
    top: 0.625rem;
    font-size: 1.25rem; }
    .wickedpicker .wickedpicker__close:before {
      content: 'ok';
      padding: 6px 20px;
      font-size: 12px;
      text-transform: uppercase;
      background-color: #60cdf6;
      color: white;
      border-radius: 2px;
      border-bottom: 2px #0f7eb1 solid; }
    .wickedpicker .wickedpicker__close:hover:before {
      background-color: #0f7eb1;
      border-bottom: 2px #227aa5 solid; }
  .wickedpicker .wickedpicker__controls .wickedpicker__controls__control {
    width: 30%; }
    .wickedpicker .wickedpicker__controls .wickedpicker__controls__control > span {
      display: block;
      outline: 0; }
    .wickedpicker .wickedpicker__controls .wickedpicker__controls__control .wickedpicker__controls__control--minutes,
    .wickedpicker .wickedpicker__controls .wickedpicker__controls__control .wickedpicker__controls__control--hours,
    .wickedpicker .wickedpicker__controls .wickedpicker__controls__control .wickedpicker__controls__control--meridiem {
      font-size: 0.875rem;
      color: #7e7e7e; }
  .wickedpicker .gt-icon-arrowup:before, .wickedpicker .gt-icon-arrowdown:before {
    font-size: 1.875rem;
    color: #60cdf6; }
  .wickedpicker .gt-icon-arrowup:hover, .wickedpicker .gt-icon-arrowdown:hover {
    cursor: pointer; }
    .wickedpicker .gt-icon-arrowup:hover:before, .wickedpicker .gt-icon-arrowdown:hover:before {
      color: #359acb; }

.clearable-picker > [data-clear-picker] {
  top: 40%;
  font-size: 1.25rem;
  font-weight: 400;
  padding: 0; }

.time-picker {
  border: none;
  border-bottom: 1px #ceced2 solid;
  box-shadow: none;
  padding-left: 0;
  margin: 0;
  background: url("../img/generic/arrow-down-icon.svg") no-repeat 100% 50%;
  background-size: 15px; }
  .time-picker:focus {
    border: none;
    border-bottom: 1px #ceced2 solid;
    box-shadow: none; }

.time-field .md-focus-hr {
  top: 2.9375rem !important; }

.my-ads-edit .time-field {
  max-width: 80% !important; }

.profile-menu,
.db-filter-menu {
  z-index: 1499;
  position: fixed;
  opacity: 0;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid #eeeeee;
  border-radius: 0 0 0.1875rem 0.1875rem;
  overflow: hidden;
  max-width: 18.75rem; }
  @media screen and (max-width: 500px) {
    .profile-menu,
    .db-filter-menu {
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
      height: 100% !important;
      max-width: none; } }
  .profile-menu .menu,
  .db-filter-menu .menu {
    display: none; }
    .profile-menu .menu li,
    .db-filter-menu .menu li {
      border-bottom: 1px solid #eeeeee; }
      .profile-menu .menu li:last-child,
      .db-filter-menu .menu li:last-child {
        border-bottom: none; }
    .profile-menu .menu a,
    .db-filter-menu .menu a {
      color: #484848;
      font-size: 0.8125rem;
      padding: 1rem;
      font-weight: 400;
      display: block;
      text-transform: none;
      background-color: white;
      -moz-transition: background-color 0.4s ease-out;
      -webkit-transition: background-color 0.4s ease-out;
      transition: background-color 0.4s ease-out; }
      .profile-menu .menu a:hover,
      .db-filter-menu .menu a:hover {
        -moz-transition: background-color 0.4s ease-out;
        -webkit-transition: background-color 0.4s ease-out;
        transition: background-color 0.4s ease-out; }
      .profile-menu .menu a:hover,
      .db-filter-menu .menu a:hover {
        background-color: #eeeeee; }
      .profile-menu .menu a.new-feature,
      .db-filter-menu .menu a.new-feature {
        position: relative; }
        .profile-menu .menu a.new-feature:before,
        .db-filter-menu .menu a.new-feature:before {
          content: 'New';
          position: absolute;
          top: 1.375rem;
          left: 6.3125rem;
          background: #7f3f98;
          color: white;
          font-size: 0.625rem;
          padding: 0.125rem 0.1875rem 0.1875rem;
          font-weight: 600;
          border-radius: 0.1875rem; }

.db-filter-menu {
  opacity: 1;
  position: absolute; }
  .db-filter-menu .menu {
    display: block; }

.profile-menu .menu a {
  padding: 1.5rem 2rem; }

.profile-menu .menu .new-feature-2 {
  border: none;
  background: #7F3F98;
  display: inline-block;
  color: white;
  border-radius: 3px;
  padding: 2px 3px;
  font-size: .8em;
  font-weight: 600;
  margin: 0 0 0 1px; }

.profile-menu .menu li.new-feature a:before {
  content: 'Now with call support option';
  position: absolute;
  left: 8.4375rem;
  background: #7f3f98;
  color: white;
  font-size: 0.625rem;
  padding: 0.125rem 0.1875rem 0.1875rem;
  font-weight: 600;
  border-radius: 0.1875rem; }

.db-seeker-avatar .seeker-card-avatar {
  width: 5.25rem;
  height: 5.3125rem; }

.db-seeker-avatar .menu i {
  color: #60cdf6; }
  .db-seeker-avatar .menu i:before {
    font-size: 1.25rem;
    color: #359acb; }

.db-seeker-avatar .menu li {
  position: relative;
  border-right: 1px solid #e6e6e6;
  padding-right: 0.5rem; }
  .db-seeker-avatar .menu li a {
    font-size: 0.8125rem; }
  .db-seeker-avatar .menu li .show-mob {
    position: absolute;
    padding: 0.625rem 1.875rem 0.625rem 0.9375rem;
    color: #fff;
    background: #359acb;
    left: 1.875rem;
    top: -0.3125rem;
    min-width: 7.8125rem; }
    .db-seeker-avatar .menu li .show-mob .close {
      position: absolute;
      right: 7px;
      top: 6px;
      font-weight: bold;
      cursor: pointer;
      padding: 5px;
      display: inline-block; }
  .db-seeker-avatar .menu li:last-child {
    border-right: 0;
    padding-right: 0; }

.db-seeker-avatar .menu.simple li {
  margin-right: 0.5rem; }

.db-seeker-avatar .main-section {
  vertical-align: middle; }

.db-seeker-details table {
  border: none; }
  .db-seeker-details table th, .db-seeker-details table td {
    text-align: left; }
  .db-seeker-details table tbody, .db-seeker-details table tr {
    border: none; }
  .db-seeker-details table th {
    width: 45%;
    color: #555; }
    @media screen and (min-width: 64em) {
      .db-seeker-details table th {
        width: 30%; } }
  .db-seeker-details table tbody td,
  .db-seeker-details table tbody th {
    padding: 0 0.625rem 0.9375rem 0; }
  .db-seeker-details table th, .db-seeker-details table td {
    font-size: 0.8125rem; }
    @media screen and (max-width: 63.9375em) {
      .db-seeker-details table th, .db-seeker-details table td {
        font-size: 0.9375rem; } }

.db-seeker-desc p {
  font-size: 0.8125rem; }

.seeker-profile-view {
  padding-top: 1.25rem;
  border-left: 1px solid #e6e6e6; }
  .seeker-profile-view h5 {
    text-transform: uppercase;
    font-size: 0.9375rem; }
    .seeker-profile-view h5 a {
      color: #62ccf5; }
  .seeker-profile-view h4 {
    text-transform: capitalize;
    font-size: 1.125rem; }
  .seeker-profile-view .action-mob {
    display: none; }

@media screen and (min-width: 48em) {
  .applied-in {
    padding-top: 1.25rem;
    padding-right: 0; }
    .applied-in .row {
      margin-right: 0; } }

@media screen and (min-width: 48em) {
  .db-seeker-detail-outr {
    height: 28.125rem;
    overflow-y: scroll; }
    .db-seeker-detail-outr::-webkit-scrollbar-track {
      border-radius: 0.1875rem;
      background-color: #f8f8f8; }
    .db-seeker-detail-outr::-webkit-scrollbar {
      width: 0.375rem;
      background-color: #f8f8f8; }
    .db-seeker-detail-outr::-webkit-scrollbar-thumb {
      border-radius: 0.1875rem;
      background-color: #ceced2; } }

.db-filter-nav {
  position: relative; }
  .db-filter-nav .button {
    width: 100%;
    font-weight: 400;
    border: 1px solid #00AEEF;
    border-radius: 3px;
    background-color: #fff;
    text-align: left;
    text-transform: capitalize;
    margin: 0;
    color: #484848;
    position: relative; }
    .db-filter-nav .button:before {
      position: absolute;
      right: 0.9375rem;
      font-size: 0.625rem;
      font-weight: bold;
      color: #60cdf6; }
    .db-filter-nav .button:after {
      display: none; }
  .db-filter-nav .db-filter-menu {
    width: 100%;
    min-height: 11.5625rem; }

@media screen and (max-width: 63.9375em) {
  .no-applicants {
    padding-top: 0.9375rem; }
    .no-applicants .list-title {
      padding: 0 0 0.3125rem 0;
      font-weight: 500;
      font-size: 1.125rem; } }

.no-applicants hr {
  display: none; }

#dashboard-app {
  border-top: 1px solid #e6e6e6; }
  @media screen and (min-width: 48em) {
    #dashboard-app .ais-InstantSearch__root {
      border-right: 1px solid #e6e6e6; }
    #dashboard-app #myads-tab-1 .ais-InstantSearch__root {
      border-right: 0; } }
  #dashboard-app .success-callout .close-button {
    top: 1.75rem; }

.back-to-link {
  color: #28ace2 !important;
  text-transform: none !important; }
  .back-to-link span {
    font-weight: bold; }
    .back-to-link span:before {
      font-size: 10px;
      color: #28ace2 !important;
      font-weight: bolder;
      padding-right: 0.3125rem; }

.db-search-box .ais-SearchBox__root {
  display: inline-block;
  position: relative;
  max-width: 100%;
  width: 100%;
  height: 2.5rem;
  white-space: nowrap;
  box-sizing: border-box;
  font-size: 16px;
  margin-bottom: 1rem; }

.db-search-box .ais-SearchBox__wrapper {
  width: 100%;
  height: 100%; }

.db-search-box .ais-SearchBox__input {
  border-radius: 3px;
  background-color: #ffffff;
  border: solid 1px #60cdf6;
  appearance: none;
  display: inline-block;
  transition: box-shadow 0.4s ease, background 0.4s ease;
  box-sizing: border-box;
  padding: 0;
  padding-right: 48px;
  padding-left: 60px;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  white-space: normal;
  font-size: inherit;
  appearance: none; }
  .db-search-box .ais-SearchBox__input::-webkit-search-decoration, .db-search-box .ais-SearchBox__input::-webkit-search-cancel-button, .db-search-box .ais-SearchBox__input::-webkit-search-results-button, .db-search-box .ais-SearchBox__input::-webkit-search-results-decoration {
    display: none; }
  .db-search-box .ais-SearchBox__input:hover, .db-search-box .ais-SearchBox__input:active, .db-search-box .ais-SearchBox__input:focus {
    box-shadow: none;
    outline: 0; }
  .db-search-box .ais-SearchBox__input::placeholder {
    color: #dddddd; }

.db-search-box .ais-SearchBox__submit {
  position: absolute;
  top: 0;
  right: inherit;
  left: 0;
  margin: 0;
  border: 0;
  padding: 0;
  width: 48px;
  height: 100%;
  vertical-align: middle;
  text-align: center;
  font-size: inherit;
  user-select: none; }
  .db-search-box .ais-SearchBox__submit::before {
    display: inline-block;
    margin-right: -4px;
    height: 100%;
    vertical-align: middle;
    content: ""; }
  .db-search-box .ais-SearchBox__submit:hover, .db-search-box .ais-SearchBox__submit:active {
    cursor: pointer; }
  .db-search-box .ais-SearchBox__submit:focus {
    outline: 0; }
  .db-search-box .ais-SearchBox__submit svg {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    fill: #ddd; }

.db-search-box .ais-SearchBox__reset {
  display: none;
  position: absolute;
  top: 8px;
  right: 8px;
  margin: 0;
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  user-select: none;
  fill: #ddd; }
  .db-search-box .ais-SearchBox__reset:focus {
    outline: 0; }
  .db-search-box .ais-SearchBox__reset svg {
    display: block;
    margin: 4px;
    width: 16px;
    height: 16px; }

.db-search-box .ais-SearchBox__input:valid ~ .db-search-box .ais-SearchBox__reset {
  display: block;
  animation-name: sbx-reset-in;
  animation-duration: 250ms; }

@keyframes sbx-reset-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@media screen and (min-width: 48em) {
  .db-search-box {
    padding-top: 1.25rem; } }

.db-search-box .filter-button {
  border-color: #62ccf5;
  color: #28ace2;
  width: 100%;
  background-color: white;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 400;
  min-height: 2.5rem; }

.db-search-box .ais-SearchBox__input {
  box-shadow: none; }
  .db-search-box .ais-SearchBox__input::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #8E8E93;
    font-size: 0.875rem; }
  .db-search-box .ais-SearchBox__input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #8E8E93;
    font-size: 0.875rem; }
  .db-search-box .ais-SearchBox__input::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #8E8E93;
    font-size: 0.875rem; }

@media screen and (max-width: 63.9375em) {
  .db-search-box .col-sort, .db-search-box .col-search {
    padding-right: 0; }
  .db-search-box .db-search-wrapper {
    float: none;
    display: block;
    width: 100%;
    padding: 0 !important; }
  .db-search-box .ads-count {
    padding: 0.625rem 0 0.625rem;
    color: #aaaaaa;
    width: 100%; }
  .db-search-box .ais-SearchBox__input {
    padding: 0 0 0 2.1875rem; }
  .db-search-box .sort-items {
    position: relative; }
    .db-search-box .sort-items #sort-profile {
      width: 11.25rem !important;
      left: auto !important;
      right: 0 !important;
      top: 2.625rem !important; }
      .db-search-box .sort-items #sort-profile .menu {
        padding: 0.3125rem; }
        .db-search-box .sort-items #sort-profile .menu li {
          width: 100%;
          display: block; } }

.db-filter .callout {
  padding: 1.5rem 0.75rem; }

.db-filter .close-button {
  border-radius: 50%;
  background: #c3c3ca;
  right: 0;
  top: 1rem;
  height: 30px;
  width: 30px; }
  .db-filter .close-button span {
    font-size: 28px;
    line-height: 30px; }
  .db-filter .close-button:hover {
    color: #8E8E93; }

.applied-list {
  background: none !important; }
  .applied-list .db-search-box {
    padding-top: 0; }
  .applied-list .label {
    border-radius: 3px; }
  .applied-list tr.selected {
    background-color: #f1f1f1; }
  .applied-list .count {
    color: #8E8E93;
    font-size: 80%; }
  .applied-list .list-title {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    color: #333333; }
  .applied-list hr {
    margin: 1.25rem 0;
    border-color: #e6e6e6; }
  .applied-list th {
    color: #000;
    font-size: 0.8125rem; }
  .applied-list td a {
    display: block;
    width: 100%; }
  .applied-list th a.sort-by {
    color: #000;
    padding-right: 18px;
    position: relative; }
  .applied-list a.sort-by:before,
  .applied-list a.sort-by:after {
    border: 4px solid transparent;
    content: "";
    display: block;
    height: 0;
    right: 5px;
    top: 50%;
    position: absolute;
    width: 0; }
  .applied-list a.sort-by:before {
    border-bottom-color: #000;
    margin-top: -9px; }
  .applied-list a.sort-by:after {
    border-top-color: #000;
    margin-top: 1px; }
  .applied-list .divider {
    padding-right: 0; }
  @media screen and (max-width: 63.9375em) {
    .applied-list {
      position: relative;
      padding-top: 0.9375rem; }
      .applied-list .profile-actions {
        padding: 0 0 1.25rem 0;
        display: inline-block;
        width: 100%; }
        .applied-list .profile-actions .button {
          width: 33.333%;
          margin: 0;
          border-radius: 0;
          background: #62ccf5;
          border-color: #fff;
          color: #fff;
          padding: 1.25rem;
          font-size: 1.125rem;
          border-top: 0;
          border-bottom: 0;
          float: left; }
      .applied-list .list-title {
        padding: 0 0 5px 0;
        font-weight: 500;
        font-size: 1.125rem; }
      .applied-list .count {
        padding: 0.3125rem 0 0.9375rem;
        display: block; }
      .applied-list hr {
        border-color: transparent;
        margin: 8px 0 8px; }
      .applied-list.hide-profile .seeker-profile-view {
        display: none; }
      .applied-list.hide-profile .applied-in {
        display: block; }
      .applied-list.view-profile {
        padding-top: 0; }
        .applied-list.view-profile .seeker-profile-view {
          display: block; }
        .applied-list.view-profile .applied-in {
          display: none; }
      .applied-list .seeker-profile-view {
        padding-top: 0; }
        .applied-list .seeker-profile-view .db-seeker-actions {
          width: 100%;
          display: inline-block;
          margin-bottom: 1.5625rem;
          border-bottom: 1px solid #62ccf5; }
          .applied-list .seeker-profile-view .db-seeker-actions .backtoList {
            width: 10%;
            display: inline-block;
            padding: 1.125rem 0 1.125rem 0.3125rem;
            line-height: 1.25rem; }
            .applied-list .seeker-profile-view .db-seeker-actions .backtoList:before {
              font-weight: 900 !important;
              color: #28ace2; }
          .applied-list .seeker-profile-view .db-seeker-actions .button-group {
            width: 90%;
            margin: 0; }
            .applied-list .seeker-profile-view .db-seeker-actions .button-group .button {
              width: 50%;
              margin: 0;
              border-radius: 0;
              background: #62ccf5;
              border-color: #fff;
              color: #fff;
              padding: 1.25rem;
              font-size: 1.125rem;
              border-top: 0;
              border-bottom: 0; }
              .applied-list .seeker-profile-view .db-seeker-actions .button-group .button:last-child {
                border: 0; }
        .applied-list .seeker-profile-view .db-seeker-avatar .media-object-section {
          width: 100%;
          display: inline-block;
          text-align: center;
          padding: 0; }
          .applied-list .seeker-profile-view .db-seeker-avatar .media-object-section .seeker-card-avatar {
            margin: auto;
            width: 8rem;
            height: 7.8125rem; }
          .applied-list .seeker-profile-view .db-seeker-avatar .media-object-section .menu li {
            margin: 0;
            border-right: 1px solid #62ccf5;
            padding: 5px;
            background: #fff;
            line-height: 1.875rem;
            text-align: center;
            background: #62ccf5;
            margin: 5px; }
            .applied-list .seeker-profile-view .db-seeker-avatar .media-object-section .menu li:last-child {
              border: 0; }
            .applied-list .seeker-profile-view .db-seeker-avatar .media-object-section .menu li a {
              font-size: 0.875rem;
              color: #fff; }
        .applied-list .seeker-profile-view .db-seeker-avatar .main-section {
          padding: 1.25rem 0 0; }
        .applied-list .seeker-profile-view h4 {
          padding: 0 0 1.25rem;
          font-size: 1.25rem;
          font-weight: 500;
          color: #000;
          margin: 0; }
        .applied-list .seeker-profile-view h5 {
          padding-bottom: 0.9375rem;
          font-size: 1.125rem;
          margin: 0;
          color: #333;
          font-weight: 700; }
        .applied-list .seeker-profile-view .action-mob {
          display: block; }
          .applied-list .seeker-profile-view .action-mob .db-seeker-actions {
            margin: 1.5625rem 0 0 0; }
      .applied-list .applied-candidates {
        height: auto; }
        .applied-list .applied-candidates thead {
          display: none; }
        .applied-list .applied-candidates tr {
          display: list-item;
          position: relative;
          padding: 0.625rem 0 3.125rem 0; }
          .applied-list .applied-candidates tr .lbl-status {
            position: absolute;
            bottom: 12px; }
            .applied-list .applied-candidates tr .lbl-status .shortlisted, .applied-list .applied-candidates tr .lbl-status .discarded {
              padding: 0.625rem; }
          .applied-list .applied-candidates tr th {
            display: none;
            display: list-item;
            width: 100%; }
          .applied-list .applied-candidates tr td {
            display: list-item;
            width: 100%;
            padding: 0 1.25rem 0.125rem 2.375rem;
            font-size: 0.9375rem;
            color: #888888; }
            .applied-list .applied-candidates tr td .md-checkbox {
              margin-left: -23px; }
          .applied-list .applied-candidates tr.selected {
            background-color: #fff; } }

.applied-candidates {
  height: 28.125rem;
  overflow-y: auto; }
  .applied-candidates thead, .applied-candidates tbody, .applied-candidates tfoot {
    border: 0; }
  .applied-candidates td {
    font-size: 0.8125rem;
    vertical-align: top; }
  @media screen and (min-width: 48em) {
    .applied-candidates tr {
      border-right: 0 !important; }
    .applied-candidates .lbl-status {
      padding: 0.3125rem 0 0 1.25rem; } }
  .applied-candidates::-webkit-scrollbar-track {
    border-radius: 0.1875rem;
    background-color: #f8f8f8; }
  .applied-candidates::-webkit-scrollbar {
    width: 0.375rem;
    background-color: #f8f8f8; }
  .applied-candidates::-webkit-scrollbar-thumb {
    border-radius: 0.1875rem;
    background-color: #ceced2; }
  .applied-candidates .list-paging {
    text-align: center; }
    .applied-candidates .list-paging .list-wrap {
      padding-top: 0.625rem;
      margin: auto; }
      @media screen and (max-width: 63.9375em) {
        .applied-candidates .list-paging .list-wrap {
          padding-top: 0;
          width: 100%; }
          .applied-candidates .list-paging .list-wrap .ais-Pagination__root {
            margin-left: 0;
            width: 100%; }
            .applied-candidates .list-paging .list-wrap .ais-Pagination__root a, .applied-candidates .list-paging .list-wrap .ais-Pagination__root span {
              font-size: 0.9375rem; } }

.button-sticky .applied-candidates {
  padding-bottom: 1.875rem; }

.button-sticky .profile-actions {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 16000002;
  padding: 0; }

.db-seeker-actions .backtoList {
  display: none; }

.db-seeker-actions .button-group {
  float: right; }
  @media screen and (min-width: 48em) {
    .db-seeker-actions .button-group {
      padding-right: 1.25rem; } }
  .db-seeker-actions .button-group .button {
    margin-left: .5rem;
    border-color: #60cdf6;
    min-width: 90px;
    color: #60cdf6;
    background-color: #fff; }
    .db-seeker-actions .button-group .button:first-child {
      margin-left: 0; }

/* Agent Page styles
// css version 2.0.3
// © 2013-2014 Denis Ineshin | IonDen.com
// ===================================================================================================================*/
.agent-section .breadcrumb {
  margin: 0;
  padding: 0.9375rem 0; }
  .agent-section .breadcrumb span {
    color: #aaaaaa; }

.agent-section .items .item:after {
  content: ", "; }

.agent-section .items .item:last-child:after {
  content: ""; }

.agent-profile .search-stats .lbl {
  text-transform: uppercase;
  padding: 0 1.25rem 0 0; }

.agent-profile .featured-title {
  font-size: 0.75rem;
  color: #7f3f98;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 0 0.3125rem 0; }

.agent-profile h3 {
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #000;
  padding: 0 0 0.5rem 0; }

.agent-profile .grey-box {
  background: #f6f7f9; }
  .agent-profile .grey-box .narrow-grid {
    position: relative; }
  .agent-profile .grey-box .row {
    background: #f6f7f9; }

.agent-profile .agent-info {
  position: relative;
  padding: 2.1875rem 0 2.1875rem 16.875rem;
  font-size: 0.8125rem;
  height: 14.6875rem;
  overflow: hidden; }
  .agent-profile .agent-info label {
    font-size: 0.8125rem; }
  .agent-profile .agent-info ul {
    margin: 0;
    list-style-type: none; }
    .agent-profile .agent-info ul li {
      padding: 0 0 0.3125rem 0;
      width: 100%;
      display: inline-block; }
      .agent-profile .agent-info ul li label {
        display: inline-block;
        float: left; }
      .agent-profile .agent-info ul li .attr-name {
        width: 8.125rem; }
      .agent-profile .agent-info ul li .attr-val {
        width: 8.4375rem; }
        .agent-profile .agent-info ul li .attr-val a {
          cursor: default; }
  .agent-profile .agent-info .attr-name {
    color: #828385; }
  .agent-profile .agent-info .attr-val {
    text-transform: uppercase; }
  .agent-profile .agent-info .lbl-contact {
    text-transform: uppercase;
    color: #828385;
    font-size: 0.75rem;
    margin: 0 0 0.75rem; }
  .agent-profile .agent-info .column, .agent-profile .agent-info .columns {
    padding-right: 0; }
    .agent-profile .agent-info .column:first-child, .agent-profile .agent-info .columns:first-child {
      border-right: 1px solid #dddddd; }
    .agent-profile .agent-info .column:last-child, .agent-profile .agent-info .columns:last-child {
      border-left: 0.9375rem; }
  .agent-profile .agent-info .agent-pic {
    width: 16.875rem;
    max-width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%; }

.agent-profile .agent-company {
  position: absolute;
  right: 0;
  background: #fff;
  top: -5.3125rem;
  padding: 2.5rem;
  -webkit-box-shadow: 0px 5px 35px -9px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 5px 35px -9px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 5px 35px -9px rgba(0, 0, 0, 0.75);
  width: 19.6875rem;
  font-size: 0.8125rem; }
  .agent-profile .agent-company .icon-triangle {
    width: 0;
    height: 0;
    border-bottom: 75px solid #e3e4e6;
    border-left: 20px solid transparent;
    border-right: 0px solid transparent;
    position: absolute;
    left: -20px;
    top: -1px;
    position: absolute; }
  .agent-profile .agent-company .img-hold {
    position: relative;
    text-align: center;
    border: 1px solid #dddddd;
    min-width: 13.625rem;
    min-height: 7.625rem;
    text-align: center;
    padding: 0 0 0.9375rem 0;
    margin: 0 0 0.625rem; }
  .agent-profile .agent-company img {
    max-width: 9.6875rem;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 7.625rem; }
  .agent-profile .agent-company .view-more {
    text-transform: uppercase; }

.agent-profile .agent-description {
  padding: 1.25rem 21.875rem 1.25rem 0;
  position: relative;
  min-height: 15.3125rem; }
  .agent-profile .agent-description p {
    font-size: 0.875rem; }
  .agent-profile .agent-description hr {
    border-bottom: 1px solid #dddddd; }

.agent-profile .lead-actions {
  position: relative;
  width: 19.6875rem;
  float: right; }
  .agent-profile .lead-actions .button {
    padding: 0.875rem 0 !important; }
  .agent-profile .lead-actions .show-number {
    bottom: 0;
    border: 0; }
    .agent-profile .lead-actions .show-number.show {
      height: 3.375rem; }

.agent-profile .company-logo-small, .agent-profile .short-title {
  display: none; }

@media screen and (min-width: 64em) {
  .agent-profile .outer-wrapper {
    min-height: 18.75rem;
    overflow: hidden; }
    .agent-profile .outer-wrapper .row-fixed {
      border-top: 1px solid #dddddd;
      width: 100%;
      overflow: hidden; }
  .agent-profile.profile-short .agent-info {
    height: 6.375rem;
    padding: 1.5625rem 0 1.5625rem 0; }
    .agent-profile.profile-short .agent-info .column:not(:last-child), .agent-profile.profile-short .agent-info .columns:not(:last-child) {
      opacity: 0; }
    .agent-profile.profile-short .agent-info .agent-pic {
      width: 3.4375rem;
      height: 3.75rem;
      border-radius: 1.25rem;
      position: static;
      float: left;
      border: 1px solid #dedee0; }
    .agent-profile.profile-short .agent-info .info-short {
      top: 50%;
      margin-top: -1.6875rem;
      position: absolute;
      left: 0; }
    .agent-profile.profile-short .agent-info .lead-actions {
      float: right;
      width: 16.875rem; }
    .agent-profile.profile-short .agent-info .company-logo-small {
      display: block;
      float: right;
      width: 6.125rem;
      height: 3.3125rem;
      border: 1px solid #dedee0;
      margin-left: 20px;
      background: #fff;
      position: relative; }
      .agent-profile.profile-short .agent-info .company-logo-small img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto; }
  .agent-profile.profile-short .agent-description, .agent-profile.profile-short .lbl-contact {
    display: none; }
  .agent-profile.profile-short .short-title {
    float: left;
    text-transform: none;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    padding: 0.625rem 0 0 1.25rem;
    display: block;
    color: #333; }
  .agent-profile.profile-short .row-fixed {
    height: 12.5rem;
    z-index: 1000; } }

@media screen and (max-width: 74.9375em) {
  .agent-profile {
    padding: 0 0.9375rem; }
    .agent-profile .search-stats {
      padding-left: 0;
      padding-right: 0; }
      .agent-profile .search-stats .lbl {
        padding: 0; }
      .agent-profile .search-stats .result-count {
        text-align: left;
        margin: 0 0 0.9375rem 0; }
        .agent-profile .search-stats .result-count span {
          display: block; }
    .agent-profile .columns {
      padding: 0; }
    .agent-profile .agent-info {
      height: auto;
      padding: 0;
      width: 100%;
      text-align: center;
      padding: 0.625rem 0 0.625rem 0;
      border-bottom: 1px solid #ddd; }
      .agent-profile .agent-info .column, .agent-profile .agent-info .columns {
        border: 0 !important;
        padding: 0; }
      .agent-profile .agent-info ul {
        padding: 0 0.9375rem;
        text-align: left;
        width: 20.625rem;
        margin: auto; }
      .agent-profile .agent-info .agent-pic {
        position: static;
        height: 13.75rem;
        width: 18.75rem;
        margin: 0 auto 0.9375rem auto; }
      .agent-profile .agent-info .lead-actions {
        float: none;
        width: 100%; }
        .agent-profile .agent-info .lead-actions .lbl-contact {
          display: none; }
    .agent-profile .agent-description {
      padding: 1.25rem 0 0 0; }
    .agent-profile .agent-company {
      position: static;
      width: 100%;
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none;
      padding: 0 0 1.25rem 0;
      border-bottom: 1px solid #ddd; }
      .agent-profile .agent-company .icon-triangle {
        display: none; } }

.agent-listing h2 {
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  color: #000;
  padding: 0 0 0.625rem 0; }

.agent-listing.no-results h2 {
  display: none; }

.agent-listing .card-wrap .card {
  border: 0;
  border-radius: 0;
  min-height: 30.625rem; }

.agent-listing .card-wrap .featured-title {
  font-size: 0.75rem;
  color: #7f3f98;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 0 0.3125rem 0; }

.agent-listing .card-wrap .image {
  height: 11.25rem;
  overflow: hidden; }

.agent-listing .card-wrap .title {
  padding: 0 0 0.5rem 0;
  font-size: 1.375rem;
  font-weight: 500;
  color: #000; }

.agent-listing .card-wrap .content {
  min-height: 16.25rem;
  max-height: 16.25rem;
  border-left: 1px solid #ceced2;
  border-right: 1px solid #ceced2;
  border-radius: 0; }

.agent-listing .card-wrap .companylogo {
  width: 5rem;
  height: 2.8125rem;
  border: 1px solid #dfdfdf;
  margin: 10px 0px 0px 0px; }

.agent-listing .card-wrap.featured-agent-card .content {
  border-left: 6px solid #7f3f98; }

.agent-listing .card-wrap ul {
  list-style-type: none;
  margin: 0; }
  .agent-listing .card-wrap ul li {
    color: #828385;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0 0 0.125rem 0; }
    .agent-listing .card-wrap ul li span {
      color: #444; }

.agent-listing .card-wrap .lead-actions {
  position: relative; }
  .agent-listing .card-wrap .lead-actions .button {
    border-top: 0 !important;
    padding: 0.75rem 0; }

@media screen and (max-width: 63.9375em) {
  .agent-listing .card-wrap .card {
    padding-bottom: 0; }
    .agent-listing .card-wrap .card .content {
      background: #f5f5f5; }
  .agent-listing .card-wrap .featured-title {
    font-size: 0.6875rem; }
  .agent-listing .card-wrap.featured-agent-card .content {
    border-width: 2px; }
  .agent-listing .card-wrap .image {
    min-height: 245px;
    overflow: hidden; }
  .agent-listing .card-wrap .show-number {
    display: none; }
  .agent-listing .card-wrap ul li span {
    font-weight: 600; } }

.page-loading {
  position: absolute;
  width: 100%;
  height: 100vh;
  text-align: center;
  z-index: 10000;
  background: #fff;
  opacity: 0.3; }
  .page-loading img {
    position: absolute;
    margin: auto;
    top: 4.375rem;
    width: 1.875rem; }

.lead-actions {
  width: 100%; }
  .lead-actions.contacts .btn-contact {
    padding: 0.625rem 0;
    color: white; }
    .lead-actions.contacts .btn-contact i:before {
      font-size: 1.375rem;
      color: white; }
  .lead-actions.contacts .button-sms {
    background: #3fa5d7;
    border-right: 0; }
    .lead-actions.contacts .button-sms:hover {
      background: #339ccf; }
    .lead-actions.contacts .button-sms i:before {
      font-size: 1.875rem !important;
      line-height: 1.5rem;
      vertical-align: middle; }
  .lead-actions.contacts .button-email {
    background: #62ccf5;
    border-right: 1px white solid; }
    .lead-actions.contacts .button-email:hover {
      background: #4fb7e9; }
  .lead-actions.contacts .button-call {
    background: #3fa5d7;
    border-left: 0; }
    .lead-actions.contacts .button-call:hover {
      background: #339ccf; }
  .lead-actions.contacts .button-chat {
    background: #62ccf5;
    line-height: 1.3125rem; }
    .lead-actions.contacts .button-chat:hover {
      background: #4fb7e9; }
    .lead-actions.contacts .button-chat i:before {
      font-size: 1.875rem !important;
      line-height: 1.5rem;
      vertical-align: middle; }
  .lead-actions .show-number {
    visibility: hidden; }
  @media screen and (min-width: 64em) {
    .lead-actions {
      width: 100%; }
      .lead-actions .show-number {
        position: absolute;
        background: #00AEEF;
        height: 100%;
        width: 0;
        visibility: hidden;
        text-align: left;
        line-height: 2.5rem;
        transition-duration: 0.2s;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        left: 0;
        box-sizing: border-box;
        border: 1px solid #fff; }
        .lead-actions .show-number.show {
          width: 100%;
          visibility: visible; }
        .lead-actions .show-number .number {
          color: white;
          font-size: 1.125rem;
          line-height: 2.875rem;
          font-weight: 600;
          padding-left: 18%; }
          .lead-actions .show-number .number:before {
            color: white;
            margin-right: 0.3125rem;
            font-size: 1.375rem;
            position: absolute;
            top: 50%;
            left: 5%;
            transform: translateY(-50%); }
        .lead-actions .show-number .btn-number-close {
          position: absolute;
          background-color: #3fa5d7;
          height: 100%;
          width: 2.5rem;
          right: 0;
          top: 0;
          text-align: center;
          cursor: pointer;
          line-height: 2.8125rem; }
          .lead-actions .show-number .btn-number-close:hover {
            background-color: #2991c4; }
          .lead-actions .show-number .btn-number-close:before {
            color: white;
            font-size: 0.875rem;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%); } }
  .lead-actions .button-group {
    margin-bottom: 0; }
  .lead-actions .button {
    border-right: 1px solid #ceced2;
    border-top: 1px solid #ceced2;
    border-collapse: collapse;
    color: #00AEEF;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.875rem; }
    @media screen and (min-width: 64em) {
      .lead-actions .button {
        font-size: 0.8125rem; } }
    .lead-actions .button:last-child {
      border-right: none; }
    .lead-actions .button:hover {
      background: #00AEEF;
      color: #fff; }

.custom-popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8000;
  width: 100%;
  height: 100%; }
  .custom-popup .popup-shade {
    background: #000;
    z-index: 900;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.5; }
  .custom-popup .popup-wrap {
    width: 100%;
    text-align: center;
    z-index: 999;
    position: absolute;
    top: 90px; }
  .custom-popup .popup-content {
    background: #fff;
    color: #ccc;
    margin: auto; }
    .custom-popup .popup-content.onesignal-subscribe {
      width: 500px;
      min-height: 225px;
      padding: 20px; }
      .custom-popup .popup-content.onesignal-subscribe .site-logo {
        margin: 0 0 20px; }
      .custom-popup .popup-content.onesignal-subscribe p {
        color: #444; }
        .custom-popup .popup-content.onesignal-subscribe p.small {
          font-size: 14px; }
      .custom-popup .popup-content.onesignal-subscribe .skip-popup {
        display: block;
        font-size: 12px; }
      .custom-popup .popup-content.onesignal-subscribe .title {
        font-size: 16px;
        font-weight: bold;
        color: #444;
        padding: 0 0 10px; }
      .custom-popup .popup-content.onesignal-subscribe span {
        color: #7F3F98; }
    .custom-popup .popup-content.form-content-1 {
      border: 3px solid #565656;
      width: 390px;
      min-height: 225px;
      position: relative;
      padding: 20px;
      display: inline-block;
      text-align: left; }
      .custom-popup .popup-content.form-content-1 .actions {
        text-align: right; }
      .custom-popup .popup-content.form-content-1 .button {
        float: none;
        border-radius: 60px;
        background-color: #00AEEF;
        color: white;
        box-shadow: none; }
      .custom-popup .popup-content.form-content-1 .cancel-close_ad {
        display: inline-block;
        margin: 0 20px 0 0; }
      .custom-popup .popup-content.form-content-1 .question {
        color: #444;
        font-size: 14px;
        font-weight: bold; }
      .custom-popup .popup-content.form-content-1 .loading {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000; }
        .custom-popup .popup-content.form-content-1 .loading img {
          top: 6.25rem;
          position: absolute;
          width: 40px; }
      .custom-popup .popup-content.form-content-1 .error {
        color: #ff0000;
        font-size: 11px; }
    @media screen and (max-width: 63.9375em) {
      .custom-popup .popup-content {
        width: 90% !important; } }

.form-radio-list {
  margin: 0;
  list-style-type: none; }
  .form-radio-list li {
    text-align: left;
    padding: 0 0 5px 0; }
    .form-radio-list li label {
      padding: 0 0 2px 20px; }
      .form-radio-list li label input[type="radio"] {
        position: absolute;
        left: 0;
        top: 7px; }
      .form-radio-list li label span {
        color: #444;
        font-size: 14px; }

.gt-cookies-warning {
  position: fixed;
  width: 100%;
  border: none;
  min-height: 50px;
  z-index: 99999;
  background-color: #7F3F98;
  color: #ffffff;
  bottom: 0;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 35px 10px 18px; }
  .gt-cookies-warning .close-btn {
    height: 20px;
    right: 10px;
    top: 50%;
    margin-top: -16px;
    position: absolute;
    text-align: center;
    width: 20px;
    background-color: #ffffff;
    padding: 3px; }
    @media screen and (max-width: 63.9375em) {
      .gt-cookies-warning .close-btn {
        top: 30px; } }
  .gt-cookies-warning .button {
    margin: 8px 0 0 0;
    padding: 5px 15px; }

.property-widget {
  background: #ece9f0 !important;
  padding: 15px 0 15px;
  margin: 0 0 20px 0; }
  .property-widget .row {
    background: transparent !important; }
  .property-widget .widget-tab {
    padding: 0 0 10px 0; }
    .property-widget .widget-tab .tab {
      padding: 10px 15px;
      color: #7F3F98;
      border: 1px solid #decfe4;
      background: #f2ebf3;
      display: inline-block;
      margin: 0;
      font-weight: 700; }
      @media screen and (max-width: 63.9375em) {
        .property-widget .widget-tab .tab {
          width: 49%; } }
      .property-widget .widget-tab .tab.active {
        background: #7F3F98;
        color: #fff; }
  .property-widget h2 {
    color: #7F3F98;
    font-size: 16px;
    font-weight: 700;
    margin: 0px 0px 10px;
    line-height: 20px; }
  .property-widget .item {
    width: 100%;
    margin: 0px 0px 7px 0px;
    display: inline-block;
    text-align: left;
    position: relative; }
    .property-widget .item a {
      text-decoration: none;
      display: block;
      padding: 0 !important;
      margin: 0 !important; }
  .property-widget .item-wrap {
    width: 100%;
    padding: 10px 0px 0px 120px;
    float: left;
    position: relative;
    background: #fff;
    min-height: 76px;
    text-align: left; }
  .property-widget .media {
    padding: 0px;
    float: left;
    position: absolute;
    left: 8px;
    top: 8px;
    width: 102px; }
    .property-widget .media img {
      padding: 0px;
      min-height: 60px;
      float: left;
      width: 100%; }
  .property-widget .time {
    color: #898989;
    font-size: 10px; }
  .property-widget .title {
    font-size: 12px;
    font-weight: 300;
    padding: 0px 0px 3px;
    color: #020202;
    line-height: 14px; }
  .property-widget .price {
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    color: #020202; }
  .property-widget .location {
    font-size: 10px;
    color: #898989;
    padding: 0px 0 0;
    display: inline-block;
    width: 142px;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis; }
  .property-widget .broker-details {
    background: #fff;
    padding: 15px; }
    .property-widget .broker-details a.logo-link {
      padding: 0;
      margin: 0 0 15px; }
    .property-widget .broker-details .viewmore {
      font-size: 14px;
      color: #00AEEF;
      font-weight: 600;
      padding: 0;
      margin: 0; }
    .property-widget .broker-details img {
      max-height: 40px;
      max-width: 160px; }
    .property-widget .broker-details a.agent-title {
      font-size: 14px;
      font-weight: 600;
      padding: 0px 0px 3px;
      color: #333333;
      line-height: 14px;
      margin: 0 0 5px; }

.lbl-rnd-corner {
  border: 1px solid #00AEEF;
  box-sizing: border-box;
  color: #00AEEF;
  font-size: 9px;
  padding: 0px 2px;
  margin: 0 0 0 7px;
  border-radius: 3px;
  display: inline-block; }

.candidate-home .search-bar {
  background: none; }

.candidate-home h2 {
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -0.01em;
  color: #405973;
  font-weight: 800;
  margin: 0 0 15px 0px; }
  @media screen and (max-width: 63.9375em) {
    .candidate-home h2 {
      font-size: 24px;
      line-height: 32px; } }

.candidate-home .jobs-search-box {
  background: white;
  padding: 20px 15px 25px;
  position: relative;
  margin: 0 auto -60px;
  -webkit-box-shadow: 20px 3px 75px -35px black;
  -moz-box-shadow: 20px 3px 75px -35px black;
  box-shadow: 20px 3px 75px -35px black; }
  .candidate-home .jobs-search-box .dropdown {
    border-color: #ccc; }
    .candidate-home .jobs-search-box .dropdown:before {
      color: #555555; }
  .candidate-home .jobs-search-box .search-wrap {
    border: 1px solid #ccc; }
  @media screen and (max-width: 63.9375em) {
    .candidate-home .jobs-search-box {
      margin: 0 auto -125px; }
      .candidate-home .jobs-search-box .search-wrap {
        width: 100%; }
      .candidate-home .jobs-search-box .btn-search {
        width: 100%; }
      .candidate-home .jobs-search-box .aa-dropdown-menu {
        top: 72% !important; } }

@media screen and (min-width: 48em) {
  .expanded-slider {
    width: 920px;
    margin: auto; }
    .expanded-slider .slide-wrap {
      width: 100%;
      display: inline-block;
      position: relative;
      min-height: 360px; }
      .expanded-slider .slide-wrap img {
        position: absolute;
        right: 0;
        top: 45px;
        max-width: 50%; }
    .expanded-slider .cnt-text {
      width: 50%;
      padding: 70px 0px 0px 0px; } }

.expanded-slider .slick-dots {
  bottom: 75px;
  width: auto;
  left: -6px; }
  .expanded-slider .slick-dots li button:before {
    font-size: 4.0625rem;
    color: #60cdf6;
    width: 23px;
    height: 23px; }
  .expanded-slider .slick-dots li button:after {
    width: 21px;
    height: 21px;
    font-size: 3.125rem;
    color: white;
    opacity: 1;
    left: 0.0625rem; }
  @media screen and (max-width: 63.9375em) {
    .expanded-slider .slick-dots li button:before {
      font-size: 6.25rem; }
    .expanded-slider .slick-dots li button:after {
      left: 0.1875rem;
      top: 0;
      font-size: 5.0625rem; } }
  .expanded-slider .slick-dots li.slick-active button:before {
    color: #60cdf6; }
  .expanded-slider .slick-dots li.slick-active button:after {
    color: #60cdf6; }

@media screen and (max-width: 63.9375em) {
  .expanded-slider {
    margin: 0 0 60px 0; }
    .expanded-slider .slick-dots {
      bottom: -35px;
      width: 100%; }
      .expanded-slider .slick-dots li {
        margin: 0 10px; }
    .expanded-slider .slide-wrap {
      padding: 20px 0 20px; }
      .expanded-slider .slide-wrap img {
        width: 80%;
        margin: auto; } }

.lt-blue-shade {
  background: linear-gradient(177.29deg, #F4F9FD 13.04%, #E3F3FE 70.7%, #CDE3F7 91%); }
  .lt-blue-shade .narrow-grid {
    background: none; }

.row-small {
  width: 70%;
  margin: auto;
  display: inline-block; }
  .row-small > .column, .row-small > .columns {
    position: relative; }
  @media screen and (max-width: 63.9375em) {
    .row-small {
      width: 90% !important; } }

.spacing-t1 {
  padding-top: 70px; }

.spacing-t2 {
  padding-top: 100px !important; }

.img-text-horiz-1 {
  background: #F2EBF4 !important;
  padding: 20px 0; }
  .img-text-horiz-1 .row {
    background: transparent; }
  .img-text-horiz-1 .v-b {
    position: absolute;
    right: 0px;
    height: 100%;
    width: 2px;
    top: 0;
    right: 15px;
    background: url("/img/generic/line.png") right top repeat-y; }
  .img-text-horiz-1 .item {
    width: 250px;
    padding: 0 20px;
    display: inline-block;
    min-height: 140px; }
    .img-text-horiz-1 .item .cnt-text {
      width: 60%; }
    .img-text-horiz-1 .item img {
      float: right; }
    .img-text-horiz-1 .item h3 {
      color: #7F90A1;
      font-size: 20px; }
    .img-text-horiz-1 .item span {
      color: #453269;
      font-size: 11px;
      font-weight: 700; }
      .img-text-horiz-1 .item span em {
        font-style: normal;
        color: #7F90A1; }
      .img-text-horiz-1 .item span.arrow:after {
        content: "j";
        font-family: "gt" !important;
        color: #453269;
        font-weight: 900;
        font-size: 8px;
        margin: 0 0 0 2px; }
    .img-text-horiz-1 .item:first-child {
      padding: 0; }
    .img-text-horiz-1 .item:last-child {
      border: 0; }
  @media screen and (max-width: 63.9375em) {
    .img-text-horiz-1 .v-b {
      background: url("/img/generic/line-horiz.png") right top repeat-x;
      height: 2px;
      width: 100%;
      position: relative; }
    .img-text-horiz-1.spacing-t2 {
      padding-top: 150px !important; }
    .img-text-horiz-1 .item {
      width: 100%;
      min-height: 0;
      padding: 20px 0 !important; } }

.sec-employer {
  padding: 30px 0; }
  .sec-employer h3 {
    font-size: 20px;
    color: #405973;
    font-weight: 800; }
  .sec-employer .semi-bold-title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.01em;
    color: #405973;
    font-weight: 600;
    text-align: center;
    margin: 0 0 15px 0; }

.horiz-logos {
  padding: 15px 0 30px; }
  .horiz-logos area {
    cursor: default; }

.line-horiz {
  background: url("/img/generic/line-horiz.png") center bottom no-repeat;
  width: 100%;
  display: inline-block;
  height: 2px; }

.quotes-elem {
  padding: 30px 0 0 55px;
  position: relative; }
  .quotes-elem:before {
    content: "";
    background: url("/img/generic/quotes.svg") no-repeat;
    width: 48px;
    height: 48px;
    margin: 0 20px 0px 0px;
    background-size: 40px;
    position: absolute;
    left: 0; }
  .quotes-elem p {
    font-size: 18px;
    color: #405973;
    padding: 0 0 10px 0px; }
  .quotes-elem .author {
    color: #7F3F98;
    font-size: 12px; }

.raw-testimonials .expanded-slider .slide-wrap {
  min-height: 280px; }

.raw-testimonials .expanded-slider .slick-dots {
  width: 100%;
  bottom: 0;
  left: auto; }
  .raw-testimonials .expanded-slider .slick-dots li button:before {
    color: #9F6FB2; }
  .raw-testimonials .expanded-slider .slick-dots li.slick-active button:before {
    color: #9F6FB2; }
  .raw-testimonials .expanded-slider .slick-dots li.slick-active button:after {
    color: #9F6FB2; }

@media screen and (max-width: 63.9375em) {
  .raw-testimonials .expanded-slider {
    margin: 0 0 60px 0; }
    .raw-testimonials .expanded-slider .slick-dots {
      bottom: -35px; }
    .raw-testimonials .expanded-slider .slide-wrap {
      padding: 0px 0 20px; } }

.img-text-horiz-2 {
  background: #EEF4F9 !important;
  padding: 20px 0; }
  .img-text-horiz-2 .row {
    background: transparent; }
  .img-text-horiz-2 .row-small {
    width: 70%;
    margin: auto; }
  .img-text-horiz-2 .item {
    display: inline-block;
    min-height: 140px;
    width: 100%; }
    .img-text-horiz-2 .item .cnt-text {
      width: 60%; }
    .img-text-horiz-2 .item img {
      float: right; }
    .img-text-horiz-2 .item h3 {
      color: #405973;
      font-size: 45px;
      font-weight: 800; }
    .img-text-horiz-2 .item h4 {
      color: #7F90A1;
      font-size: 16px; }

.sec-two-col {
  padding: 30px 0 30px; }
  .sec-two-col .cnt-text {
    padding: 30px;
    margin: auto; }
    .sec-two-col .cnt-text h4 {
      font-size: 22px;
      color: #555;
      font-weight: 500; }
  .sec-two-col .more-link {
    color: #00AEEF;
    text-decoration: underline;
    font-size: 14px; }
  .sec-two-col .vcenter-1 {
    margin-top: 20px; }
  @media screen and (max-width: 63.9375em) {
    .sec-two-col .cnt-text {
      padding: 0; }
      .sec-two-col .cnt-text h4 {
        font-size: 16px; }
    .sec-two-col.vcenter-1 {
      margin: 0; } }

.header-text {
  padding: 0 0 70px 0; }
  .header-text h2 {
    color: #405973;
    font-size: 25px;
    font-weight: 700; }
  .header-text h4 {
    color: #555;
    font-size: 19px;
    font-weight: 500; }

.icon-tick {
  background: url("../img/generic/icon-tick.png") no-repeat 0 15px/30px;
  padding: 10px 0 10px 38px; }

.tilted-border {
  border-bottom: 1px solid #AAA;
  position: relative;
  width: 100%;
  height: 2px;
  display: block;
  margin: 20px 0 20px; }
  .tilted-border:after {
    content: "";
    border: solid #AAA;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 7px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    position: absolute;
    left: 37px;
    bottom: -8px;
    background: #fff; }

.img-with-label {
  position: relative;
  padding-left: 180px; }
  .img-with-label img {
    width: 970px; }
  .img-with-label .caption {
    color: #AAAAAA;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    position: absolute;
    left: 0;
    width: 180px; }
  @media screen and (max-width: 63.9375em) {
    .img-with-label {
      padding: 0; }
      .img-with-label .caption {
        position: static;
        text-align: center;
        display: block;
        width: 100%; } }

.home-intro-sec h2 {
  color: #002244;
  font-size: 27px;
  font-weight: 800;
  line-height: 35px;
  margin: 0 0 30px 0; }
  @media screen and (max-width: 63.9375em) {
    .home-intro-sec h2 {
      margin: 0 0 30px 0; } }
  .home-intro-sec h2 span {
    color: #00AEEF; }

.home-intro-sec .expanded-slider {
  position: static;
  width: 100%; }
  .home-intro-sec .expanded-slider .slide-wrap {
    min-height: 0px;
    font-size: 30px;
    font-weight: 600; }
    .home-intro-sec .expanded-slider .slide-wrap p {
      color: #555; }
  .home-intro-sec .expanded-slider .slick-dots {
    bottom: 30px;
    left: auto;
    right: 0;
    color: #AAAAAA; }
    .home-intro-sec .expanded-slider .slick-dots li {
      width: 17px; }
      .home-intro-sec .expanded-slider .slick-dots li button:after {
        font-size: 45px;
        color: #CCCCCC; }
      .home-intro-sec .expanded-slider .slick-dots li button:before {
        font-size: 40px;
        color: transparent; }
      .home-intro-sec .expanded-slider .slick-dots li.slick-active button:after {
        color: #002244; }
  @media screen and (max-width: 63.9375em) {
    .home-intro-sec .expanded-slider {
      margin: 0 0 0px 0; }
      .home-intro-sec .expanded-slider .slick-dots {
        bottom: 15px; }
      .home-intro-sec .expanded-slider .slide-wrap {
        padding: 0; } }

.home-intro-sec .cv-intro-left {
  position: relative;
  padding: 30px 0px; }
  .home-intro-sec .cv-intro-left p {
    color: #AAAAAA;
    font-size: 14px;
    font-weight: 600; }
  .home-intro-sec .cv-intro-left .icon-tick {
    font-size: 18px; }
  @media screen and (max-width: 63.9375em) {
    .home-intro-sec .cv-intro-left {
      padding: 50px 0px; } }

.lt-grey-shade {
  background: #F6F8FA; }
  .lt-grey-shade .narrow-grid, .lt-grey-shade .row {
    background: none; }

.cv-service-products .loading {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000; }
  .cv-service-products .loading img {
    top: 6.25rem;
    position: absolute;
    width: 40px; }

@media screen and (max-width: 63.9375em) {
  .mob-center {
    text-align: center; } }

@media screen and (max-width: 63.9375em) {
  .mob-m-auto {
    margin: auto; } }

.spacing-t2 {
  padding-top: 50px; }

.spacing-t3 {
  padding-top: 30px; }

.spacing-b2 {
  padding-bottom: 50px; }

.spacing-b3 {
  padding-bottom: 30px; }

.spacing-b1 {
  padding-bottom: 70px; }

.spacing-t4 {
  padding-top: 15px; }

.spacing-b4 {
  padding-bottom: 15px; }

.spacing-tb-1 {
  padding-top: 15px;
  padding-bottom: 15px; }

.border-top {
  border: 1px solid #ECEAF0; }

.top-space-1 {
  margin: 60px 0 0 0; }
  @media screen and (max-width: 63.9375em) {
    .top-space-1 {
      margin: 30px 0 0 0; } }

.landing-img-text {
  padding: 30px 0 30px; }

.img-mobile {
  display: none; }

@media screen and (max-width: 63.9375em) {
  .img-desktop {
    display: none; }
  .img-mobile {
    display: block; } }

.button.bold {
  font-weight: 700; }

.btn-holder {
  text-align: center;
  display: inline-block; }
  .btn-holder .button {
    margin: 0px 0 5px; }
  .btn-holder .offer-text {
    color: #7F3F98;
    font-size: 10px;
    display: block; }

.btn-purple {
  color: #fff;
  background: #7F3F98;
  border: 1px solid #7F3F98;
  text-transform: uppercase;
  margin: 0;
  font-weight: 600; }
  .btn-purple:hover, .btn-purple:focus {
    background: #7F3F98; }
  .btn-purple.width-90 {
    width: 90%; }
  .btn-purple.type-2 {
    color: #7F3F98;
    background: #F2EBF4; }

.btn-disable {
  opacity: 0.5;
  cursor: default; }

.secure-transations {
  color: #453269;
  margin: 30px 0 30px;
  font-size: 13px;
  background: #ECEAF0;
  padding: 10px 0; }
  .secure-transations .row {
    background: none; }
  .secure-transations ul {
    display: inline-block;
    margin: 0;
    list-style-type: none; }
    .secure-transations ul li {
      display: inline-block;
      padding: 5px 0 5px 10px; }
  @media screen and (max-width: 63.9375em) {
    .secure-transations {
      margin: 30px 0 0 0; } }

.support-details-2 {
  padding: 40px 0; }
  .support-details-2 .row-small {
    width: 100% !important; }
  .support-details-2 h3 {
    color: #333333;
    font-weight: 600;
    font-size: 24px; }
  .support-details-2 label {
    color: #AAAAAA;
    font-size: 15px;
    position: relative;
    font-weight: 600;
    line-height: 22px;
    padding: 0 0 0 45px; }
    .support-details-2 label span {
      color: #7F3F98;
      font-size: 18px;
      display: block;
      font-weight: 700; }
    .support-details-2 label:before {
      position: absolute;
      left: 0;
      top: 7px;
      font-size: 28px;
      color: #D0CCD9;
      font-weight: 800 !important; }

.expanded-img-row {
  background: #432e69;
  background: linear-gradient(170deg, #432e69 0%, rgba(89, 55, 118, 0.912202) 54%, rgba(105, 61, 127, 0.749737) 100%); }
  .expanded-img-row .row {
    background: none; }
  .expanded-img-row .info-text {
    text-align: right; }
    .expanded-img-row .info-text p {
      color: #fff;
      font-size: 14px;
      width: 220px;
      display: inline-block; }
  .expanded-img-row img {
    margin: auto; }
  @media screen and (max-width: 63.9375em) {
    .expanded-img-row .info-text {
      width: 295px;
      margin: 30px auto 0; }
      .expanded-img-row .info-text p {
        width: 100%; } }

.steps-lt-blue {
  padding: 40px 0 40px;
  background: #EFFAFE; }
  .steps-lt-blue .row {
    background-color: transparent; }

.cnt-boxes-wt {
  width: 100%;
  list-style-type: none;
  text-align: center;
  margin: 0; }
  .cnt-boxes-wt > li {
    background: white;
    width: 27%;
    padding: 20px;
    float: left;
    font-size: 16px;
    margin: 0 115px 0px 0;
    min-height: 195px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    text-align: left; }
    .cnt-boxes-wt > li p {
      color: #555555; }
    .cnt-boxes-wt > li:after {
      content: "";
      background: url(../img/generic/rounded-arrow-blue.png);
      background-repeat: no-repeat;
      background-position: center right;
      width: 64px;
      height: 64px;
      position: absolute;
      right: -88px;
      top: 30%; }
    .cnt-boxes-wt > li:last-child {
      margin: 0; }
      .cnt-boxes-wt > li:last-child:after {
        display: none; }
  @media screen and (max-width: 63.9375em) {
    .cnt-boxes-wt > li {
      width: 100%;
      margin: 0 0 115px 0;
      min-height: 0; }
      .cnt-boxes-wt > li:after {
        background: url(../img/generic/rounded-arrow-blue-down.png);
        background-repeat: no-repeat;
        background-position: center right;
        bottom: -90px;
        top: auto;
        right: auto;
        left: 50%;
        margin-left: -23px; } }

.splitted li {
  width: 50%;
  float: left; }

.testimonials-wrapper {
  padding: 0; }
  @media screen and (max-width: 63.9375em) {
    .testimonials-wrapper {
      height: 280px; } }

.video-wrapper-testimonials {
  width: 644px;
  height: 352px;
  position: relative; }
  @media screen and (max-width: 63.9375em) {
    .video-wrapper-testimonials {
      width: 100%;
      height: 207px; }
      .video-wrapper-testimonials a {
        background-size: 100% auto !important; } }
  .video-wrapper-testimonials video {
    width: 100%;
    height: 362px;
    outline: none; }
    @media screen and (max-width: 63.9375em) {
      .video-wrapper-testimonials video {
        height: 100%; } }
  .video-wrapper-testimonials .testimonials-text {
    text-align: left;
    color: #1F313D; }
    @media screen and (max-width: 63.9375em) {
      .video-wrapper-testimonials .testimonials-text {
        padding: 0 10px; } }
  .video-wrapper-testimonials a {
    width: 100%;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background: url("../img/generic/promo_video_placeholder_female.jpg") no-repeat 0 0; }

#video-wrapper {
  position: relative;
  width: 960px;
  height: 540px;
  margin: auto; }
  @media screen and (max-width: 63.9375em) {
    #video-wrapper {
      width: 100%;
      height: auto; }
      #video-wrapper a {
        background-size: 100% auto !important; } }
  #video-wrapper video {
    width: 100%;
    height: 100%; }
  #video-wrapper a {
    width: 100%;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background: url("../img/contents/video-area.png") no-repeat 0 0; }

.cv-evaluation-service {
  width: 100%; }
  .cv-evaluation-service .upload-cntrl {
    background: #F2EBF4;
    padding: 15px;
    margin: 0 0 5px 0;
    line-height: 18px;
    font-size: 10px;
    color: #000;
    font-weight: 600; }
    .cv-evaluation-service .upload-cntrl .cv__success {
      margin: 5px 0 0; }
  .cv-evaluation-service .note {
    color: #AAAAAA;
    font-size: 11px;
    text-align: center;
    display: block; }
  .cv-evaluation-service .cv__dragndrop {
    display: inline;
    text-align: center; }
    .cv-evaluation-service .cv__dragndrop:before {
      background: url(/img/generic/color-uploadcv.svg) no-repeat 0 0/40px 40px;
      content: "";
      width: 40px;
      height: 40px;
      display: block;
      margin: 0 auto; }
  .cv-evaluation-service .cv__uploading,
  .cv-evaluation-service .cv__success,
  .cv-evaluation-service .cv__error {
    display: none; }
  .cv-evaluation-service .cv__error {
    font-size: 11px;
    color: #ff0000;
    padding: 0px 0 2px; }
  .cv-evaluation-service .input-text {
    color: #00AEEF;
    font-size: 12px; }

.get-free-cv-product {
  position: absolute;
  left: 50%;
  width: 290px;
  bottom: -16px;
  margin-left: -145px; }

.cnt-boxes-wt-2 {
  width: 100%;
  list-style-type: none;
  margin: 0; }
  .cnt-boxes-wt-2 > li {
    background: white;
    width: 27%;
    padding: 35px 25px 25px 25px;
    float: left;
    font-size: 16px;
    margin: 0 115px 0px 0;
    min-height: 250px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 20px; }
    .cnt-boxes-wt-2 > li h4 {
      color: #453269;
      font-size: 16px;
      font-weight: 700;
      margin: 0 0 15px 0; }
    .cnt-boxes-wt-2 > li p {
      color: #555555; }
    .cnt-boxes-wt-2 > li:after {
      content: "";
      background: url(../img/generic/arrow-right.png);
      background-repeat: no-repeat;
      background-position: center right;
      width: 64px;
      height: 64px;
      position: absolute;
      right: -70px;
      top: 30%; }
    .cnt-boxes-wt-2 > li:last-child {
      margin: 0; }
      .cnt-boxes-wt-2 > li:last-child:after {
        display: none; }
  .cnt-boxes-wt-2 .list-no {
    background: #7F3F98;
    color: #fff;
    font-weight: 700;
    border-radius: 15px;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 50%;
    top: -10px;
    margin: 0 0 0 -10px;
    padding: 10px 0px 0px 10px;
    display: inline-block;
    font-size: 14px;
    line-height: 10px;
    text-align: left; }
  @media screen and (max-width: 63.9375em) {
    .cnt-boxes-wt-2 > li {
      width: 100%;
      margin: 0 0 30px 0;
      min-height: 0; }
      .cnt-boxes-wt-2 > li:after {
        display: none; } }

.link-row {
  border-top: 1px solid #F2EBF4;
  border-bottom: 1px solid #F2EBF4;
  padding: 40px 0 40px;
  color: #333;
  font-size: 18px;
  font-weight: 600; }

.right-img {
  float: right; }

.sec-title-1 {
  color: #000000;
  font-weight: 500;
  position: relative;
  margin: 0 0px 50px; }
  .sec-title-1:after {
    content: '';
    position: absolute;
    bottom: 0px;
    height: 2px;
    background: #AAA;
    width: 120px;
    left: 50%;
    bottom: -20px;
    margin-left: -60px; }

.title-short {
  font-weight: 700;
  color: #453269;
  font-size: 24px; }

.sec-title-white-1 {
  color: #fff;
  font-weight: 500; }

.sec-title-2 {
  color: #333333;
  font-weight: 500;
  font-size: 24px; }

.para-style-1 {
  font-size: 15px;
  color: #333333;
  font-weight: bold; }

.line-solid {
  border-top: 1px solid #F2EBF4;
  width: 100%;
  padding: 30px 0;
  display: inline-block; }

.para-style-2 {
  font-size: 14px;
  color: #555555;
  font-weight: 600; }

.para-style-3 {
  font-size: 14px;
  color: #7F3F98;
  font-weight: 600; }

.landing-img-text h2 {
  color: #111;
  font-weight: 700; }

.landing-img-text p {
  font-size: 14px; }

.text-wrapper {
  width: 90%;
  margin: auto;
  text-align: left;
  padding: 15px 0 0; }
  @media screen and (max-width: 63.9375em) {
    .text-wrapper {
      width: 100%;
      padding: 15px 10px 0; } }

.highlights ul {
  margin: 0; }

.highlights li {
  list-style: none;
  font-weight: normal;
  font-size: 14px;
  line-height: 26px;
  background: url(../img/generic/featured.png);
  background-repeat: no-repeat;
  background-position: left 6px;
  padding-left: 20px; }

@media screen and (max-width: 63.9375em) {
  .highlights li {
    padding-bottom: 5px; } }

.tab-intro p {
  font-size: 18px;
  color: #333333; }

.products-tab .tab {
  line-height: 50px;
  background: #F2EBF4;
  color: #000000;
  display: inline-block;
  width: 100%;
  text-align: center; }
  .products-tab .tab.active {
    background: #7F3F98;
    color: #fff; }
  @media screen and (max-width: 63.9375em) {
    .products-tab .tab {
      line-height: 20px;
      padding: 10px 5px; }
      .products-tab .tab span {
        display: block; } }

.products-tab-cnt .intro {
  padding: 30px 0 45px; }

.products-tab-cnt h3 {
  color: #453269;
  font-size: 16px;
  font-weight: 700; }

.products-tab-cnt .video {
  float: right;
  margin: 0px 0 50px 30px;
  width: 500px; }
  @media screen and (max-width: 63.9375em) {
    .products-tab-cnt .video {
      width: 100%;
      margin: 0px 0 15px 0px; } }

.product-item {
  width: 19%;
  float: left;
  position: relative;
  margin: 0 10px 0 0;
  border: 1px solid #ECEAF0;
  border-radius: 10px; }
  .product-item .line-solid {
    margin: 10px 0 0;
    padding: 15px 0px 0; }
  .product-item fieldset {
    border: 0;
    padding: 20px 15px 25px; }
  .product-item .highlights {
    min-height: 295px;
    padding: 0 0 10px; }
    .product-item .highlights li {
      font-size: 13px;
      padding-bottom: 2px;
      line-height: 20px; }
    @media screen and (max-width: 63.9375em) {
      .product-item .highlights {
        min-height: 0; } }
  .product-item .row {
    background: none; }
  .product-item:hover {
    border-color: #7F3F98; }
  .product-item h2 {
    color: #453269;
    font-size: 16px;
    font-weight: 700;
    min-height: 45px; }
  .product-item h3 {
    color: #7F3F98;
    font-weight: 700;
    font-size: 0.875rem; }
    .product-item h3 .old-price {
      color: #c4c4c4;
      text-decoration: line-through; }
  .product-item .pdt-info {
    color: #888888;
    font-size: 13px; }
  .product-item .view-sample {
    font-size: 12px;
    color: #60cdf6;
    display: block;
    text-decoration: underline;
    cursor: pointer; }
  .product-item .add-upsell span {
    font-size: 13px;
    color: #555555;
    line-height: 20px;
    display: block; }
  .product-item .btm-space_1 {
    margin-bottom: 10px; }
  .product-item.opted-pdt {
    border-color: #7F3F98; }
  .product-item .toggle-details {
    font-size: 11px;
    display: inline-block;
    width: 100%;
    text-align: center;
    text-decoration: underline;
    margin: 10px 0 0; }
  .product-item .price-table {
    color: #555555;
    border: 0; }
    .product-item .price-table tbody {
      border: 0; }
    .product-item .price-table tr {
      border: 0px; }
      .product-item .price-table tr td {
        padding: 7px 0 5px 0;
        font-size: 11px;
        border: 0;
        vertical-align: top; }
        .product-item .price-table tr td span {
          font-weight: bold; }
      .product-item .price-table tr.border-top {
        border-top: 1px solid #ECEAF0; }
      .product-item .price-table tr.grand-total td {
        font-size: 15px; }
        .product-item .price-table tr.grand-total td span {
          color: #7F3F98; }
    .product-item .price-table .title-hight {
      min-height: 35px; }
  .product-item .toggle-details {
    display: none; }
    @media screen and (max-width: 74.9375em) {
      .product-item .toggle-details {
        display: block; } }
  @media screen and (max-width: 74.9375em) {
    .product-item .more-pdt-info.toggle-hide {
      display: none; } }
  @media screen and (max-width: 63.9375em) {
    .product-item {
      width: 100%;
      min-height: 0;
      margin: 0 0 20px 0; } }
  .product-item.limited-time {
    background: url("../img/generic/limited-time.svg") no-repeat right 0; }
  .product-item .pdt-lbl-image {
    position: absolute;
    top: -22px;
    left: -1px; }
  .product-item .terms {
    font-size: 11px;
    color: #555;
    text-align: left; }
  .product-item .gt-icon-info:before {
    color: #60cdf6;
    font-weight: 800 !important; }

.custom-popup .cv-sample-subscribe {
  width: 900px;
  height: 650px;
  padding: 40px 20px 20px 20px;
  overflow: auto;
  position: relative;
  overflow-x: hidden; }
  @media screen and (max-width: 63.9375em) {
    .custom-popup .cv-sample-subscribe {
      height: 575px; } }
  .custom-popup .cv-sample-subscribe .skip-popup {
    position: absolute;
    right: -5px;
    background: url(../img/generic/gt-icon-close.svg) no-repeat;
    width: 40px;
    height: 44px;
    top: 5px; }

.faq-content-2 {
  margin: 40px 0 0 0; }
  .faq-content-2 h3 {
    color: #333333;
    font-size: 24px; }
  .faq-content-2 .accordion-item .accordion-title {
    background: #FAFAFA;
    color: #333333;
    font-size: 18px;
    border-color: #F5F5F5;
    font-weight: 600; }
    .faq-content-2 .accordion-item .accordion-title:before {
      content: "";
      background: url("../img/generic/arrow-down.png") no-repeat 0 0;
      width: 18px;
      height: 12px; }
      .is-active .faq-content-2 .accordion-item .accordion-title:before {
        background: url("../img/generic/arrow-up.png") no-repeat 0 0; }
  .faq-content-2 .accordion-item .accordion-content {
    color: #555555;
    font-size: 14px; }
  .faq-content-2 .accordion-item.is-active .accordion-title:before {
    content: "";
    background: url("../img/generic/arrow-up.png") no-repeat 0 0; }

.gt-spinner {
  display: none; }

.dashboard-content {
  display: inline !important;
  opacity: 1 !important; }

.pell {
  border: 1px solid rgba(10, 10, 10, 0.1); }

.pell,
.pell-content {
  box-sizing: border-box; }

.pell-content {
  height: 300px;
  outline: 0;
  overflow-y: auto;
  padding: 10px; }

.pell-actionbar {
  background-color: #fff;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1); }

.pell-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  height: 30px;
  outline: 0;
  width: 30px;
  vertical-align: bottom; }

.pell-button-selected {
  background-color: #f0f0f0; }

.border-box {
  border: 1px solid #DDDDDD;
  padding: 15px 20px;
  display: block;
  background: #fff;
  margin-top: -1px; }
  .border-box .react-rte {
    background-color: transparent;
    border: none; }
    .border-box .react-rte .react-rte-editor {
      font-size: 14px;
      font-family: "Open Sans", sans-serif; }
      .border-box .react-rte .react-rte-editor .public-DraftEditor-content {
        padding: 0px; }
  .border-box:first-child {
    margin: 0; }
  .border-box .row {
    background: transparent; }
  .border-box h4 {
    font-size: 14px;
    color: #555555;
    font-weight: 600;
    margin: 0; }
  .border-box h5 {
    font-size: 12px;
    color: #555555;
    font-weight: 600;
    margin: 0; }
  .border-box .date {
    color: #888888;
    font-size: 12px; }
  .border-box p {
    color: #555555;
    font-size: 14px;
    margin: 0;
    word-wrap: break-word; }
  .border-box.msg-sent {
    background: #F5F5F5;
    width: 90%;
    margin-left: 10%; }
  .border-box .button {
    width: auto;
    margin: 0 5px 0; }
    @media screen and (max-width: 63.9375em) {
      .border-box .button {
        font-size: 13px; } }
  .border-box.status-bar {
    background: #7FD6F7; }
    .border-box.status-bar h4, .border-box.status-bar .date {
      color: #fff; }
      .border-box.status-bar h4 a, .border-box.status-bar .date a {
        color: #FFF;
        text-decoration: underline; }

.cv-head-mob {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding: 10px 0 10px 50px;
  text-align: left; }
  .cv-head-mob .back {
    font-size: 16px;
    color: #00AEEF;
    font-weight: 600;
    position: absolute;
    left: 0px;
    top: 10px; }

.message-box {
  position: relative; }
  .message-box label {
    font-size: 12px;
    color: #000000;
    margin: 0 0 5px; }
  .message-box textarea {
    border: 1px solid #DDDDDD;
    padding: 15px;
    font-size: 13px;
    color: #555;
    box-shadow: none;
    margin: 0 0 15px;
    background: #FAFAFA; }
  .message-box .react-rte .public-DraftEditor-content {
    min-height: 110px; }
  .message-box .lbl-file-input {
    overflow: hidden;
    border-radius: 4px;
    background-color: #fff;
    color: black;
    padding: 10px;
    border: 1px solid #DDDDDD;
    float: left;
    margin: 0 0.625rem 0 0;
    position: relative;
    cursor: pointer; }
  .message-box #file-name {
    font-size: 10px;
    color: #555555;
    text-transform: none; }
  .message-box #file-cancel-btn {
    padding: 3px 10px; }
  .message-box .error {
    color: #ff0000;
    font-size: 11px; }
  .message-box .loader {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; }
    .message-box .loader img {
      top: 6.25rem;
      position: absolute;
      width: 40px; }

.doc-link {
  color: #00AEEF;
  text-decoration: underline;
  background: url("/img/generic/color-uploadcv.svg") no-repeat center center/50px 50px;
  width: 100%;
  height: 40px;
  margin: 0 auto;
  font-size: 14px;
  display: inline-block;
  padding: 65px 0 0 0; }

.list-boxes .product-order {
  border: 1px solid #DDDDDD;
  padding: 15px 20px;
  font-size: 14px;
  display: inline-block;
  color: #000000;
  font-weight: 600;
  width: 100%;
  margin: 0 0 15px 0; }
  .list-boxes .product-order.active {
    background: #F2EBF4; }
  .list-boxes .product-order ul {
    margin: 0px; }
    .list-boxes .product-order ul li {
      list-style-type: none; }
      .list-boxes .product-order ul li.pdt-call-support {
        position: relative;
        padding: 0px 0 0;
        cursor: pointer; }
        .list-boxes .product-order ul li.pdt-call-support .call-details {
          border-left: 1px solid #d2d2d2;
          display: inline-block;
          width: 130px;
          height: 25px;
          position: absolute;
          right: 10px;
          top: 10px;
          padding: 0 0 0 10px; }
          .list-boxes .product-order ul li.pdt-call-support .call-details span {
            display: inline-block;
            margin: 0 4px;
            width: 21px;
            height: 25px;
            cursor: pointer;
            background: url("/img/generic/call-icons.svg?de") no-repeat center center; }
            .list-boxes .product-order ul li.pdt-call-support .call-details span.zoom {
              background-position: 0px center; }
            .list-boxes .product-order ul li.pdt-call-support .call-details span.botim {
              background-position: -30px center; }
            .list-boxes .product-order ul li.pdt-call-support .call-details span.skype {
              background-position: -61px center; }
            .list-boxes .product-order ul li.pdt-call-support .call-details span.google-meet {
              background-position: -91px center; }

.list-boxes .title-info {
  padding: 0 0 10px 0; }

.list-boxes h3 {
  color: #7F3F98;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0; }

.list-boxes label {
  color: #888888;
  font-size: 12px; }

.product-empty h3 {
  font-size: 24px;
  color: #333333;
  font-weight: 500;
  margin: 0 0 10px 0; }

.product-empty p {
  color: #000000;
  font-size: 18px;
  font-weight: 500; }

@media screen and (max-width: 63.9375em) {
  #my-cv-service-app .col-right {
    display: none; }
  #my-cv-service-app .col-left {
    display: block; }
  #my-cv-service-app .open-cv-service .col-right {
    display: block; }
  #my-cv-service-app .open-cv-service .col-left {
    display: none; } }

.my-cv-evaluation {
  min-height: 450px;
  background: #f9fafc;
  /*
	Bar Graph
	*/
  /*Circle Progress*/ }
  @media screen and (max-width: 74.9375em) {
    .my-cv-evaluation {
      margin: 0 20px; } }
  .my-cv-evaluation .clearfix::after {
    display: block;
    clear: both;
    content: ""; }
  .my-cv-evaluation .loader-image {
    text-align: center;
    padding-top: 200px; }
  .my-cv-evaluation .text-yellow {
    color: #f2ac03; }
  .my-cv-evaluation .text-blue {
    color: #0088CC; }
  .my-cv-evaluation .text-green {
    color: #0fe1c9; }
  .my-cv-evaluation .text-purple1 {
    color: #BF9FCB; }
  .my-cv-evaluation .text-purple2 {
    color: #7F3F98; }
  .my-cv-evaluation body {
    background: #f9fafc; }
  .my-cv-evaluation .resume-report-spacer {
    height: 250px;
    background: linear-gradient(to bottom, #60cdf6 0, #3e95b5 100%);
    background-color: #60cdf6;
    width: 100%;
    position: relative;
    text-align: center; }
  .my-cv-evaluation .btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 1px;
    border: 0;
    box-shadow: none;
    font-weight: 700;
    background: #7F3F98;
    color: #fff;
    text-transform: uppercase; }
  .my-cv-evaluation .rr-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto; }
  .my-cv-evaluation .rr-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px; }
  .my-cv-evaluation .no-gutters {
    margin-right: 0;
    margin-left: 0; }
  .my-cv-evaluation .no-gutters > .col,
  .my-cv-evaluation .no-gutters > [class*="rr-col-"] {
    padding-right: 0;
    padding-left: 0; }
  .my-cv-evaluation .rr-col-12 {
    width: 100%; }
  @media (min-width: 992px) {
    .my-cv-evaluation .rr-col-md-3 {
      width: 25%;
      float: left;
      position: relative;
      min-height: 1px;
      padding-right: 15px;
      padding-left: 15px; }
    .my-cv-evaluation .rr-col-md-6 {
      width: 50%;
      float: left;
      position: relative;
      min-height: 1px;
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 1260px) {
    .my-cv-evaluation .rr-container {
      width: 1140px; } }
  .my-cv-evaluation .rr-hero {
    padding: 35px 60px 0;
    background-color: #fff;
    margin-top: -100px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    margin-bottom: 80px;
    min-height: 300px;
    position: relative; }
    @media screen and (max-width: 63.9375em) {
      .my-cv-evaluation .rr-hero {
        padding: 0;
        margin-top: 0; } }
  .my-cv-evaluation .rr-hero_resume-snapshot {
    position: relative;
    bottom: 0;
    background-image: url("/img/resume/resume-snapshot1.svg");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center bottom;
    width: 325px;
    height: 325px;
    background-size: contain;
    float: left; }
  .my-cv-evaluation .rr-hero_resume-snapshot .user-display-name {
    position: absolute;
    text-align: center;
    font-size: 15px;
    color: #999;
    width: 325px;
    margin: 0 auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 90px 65px 0 95px; }
  .my-cv-evaluation .rr-hero_resume-into {
    padding: 20px; }
    @media screen and (min-width: 64em) {
      .my-cv-evaluation .rr-hero_resume-into {
        margin-left: 325px;
        padding: 0; } }
  .my-cv-evaluation .rr-hero_resume-into h1 {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px; }
  .my-cv-evaluation .rr-hero_resume-into p {
    font-size: 16px;
    letter-spacing: .3px;
    color: #000;
    margin: 0 0 20px;
    word-break: break-word; }
  .my-cv-evaluation .rr-hero_resume-into ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  .my-cv-evaluation .rr-hero_resume-into li {
    font-size: 16px;
    letter-spacing: .3px;
    color: #000;
    margin: 0 0 20px;
    word-break: break-word;
    position: relative;
    padding-left: 25px; }
  .my-cv-evaluation .rr-hero_resume-into li::before {
    content: '';
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 3px;
    background: url("/img/generic/featured.png") no-repeat center center;
    background-size: 16px auto; }
  .my-cv-evaluation .rr-analysis {
    max-width: 1030px;
    margin: 0 auto; }
    @media screen and (max-width: 74.9375em) {
      .my-cv-evaluation .rr-analysis {
        padding: 20px; } }
  .my-cv-evaluation .rr-analysis .rr-analysis-left {
    float: left;
    width: 100%; }
    @media screen and (min-width: 64em) {
      .my-cv-evaluation .rr-analysis .rr-analysis-left {
        width: 55%;
        padding-right: 30px; } }
  .my-cv-evaluation .rr-analysis .rr-analysis-right {
    float: left;
    width: 100%; }
    @media screen and (min-width: 64em) {
      .my-cv-evaluation .rr-analysis .rr-analysis-right {
        width: 45%; } }
  .my-cv-evaluation .rr-analysis .rr-analysis-left ul,
  .my-cv-evaluation .rr-analysis .rr-analysis-right ul {
    list-style: none;
    margin: 0; }
  .my-cv-evaluation .rr-analysis .rr-analysis-left ul li {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5em;
    letter-spacing: .3px;
    margin-bottom: 60px; }
  .my-cv-evaluation .rr-analysis .rr-analysis-left ul li h5 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .3px;
    margin-bottom: 13px;
    color: #000; }
  .my-cv-evaluation .css_bar_graph {
    width: 100%;
    position: relative; }
  .my-cv-evaluation .css_bar_graph ul.y_axis {
    width: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
    z-index: 1;
    margin-bottom: 2px; }
  .my-cv-evaluation .css_bar_graph ul.y_axis li {
    width: 100%;
    height: 75px;
    position: relative; }
  .my-cv-evaluation .css_bar_graph ul.y_axis li span {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    border-bottom: 1px solid #ddd;
    display: block;
    text-align: right;
    padding-right: 5px; }
  .my-cv-evaluation .css_bar_graph ul.y_axis .bottom {
    height: 18px; }
  .my-cv-evaluation .css_bar_graph ul.x_axis {
    width: 100%;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 90px;
    text-align: center; }
  .my-cv-evaluation .css_bar_graph ul.x_axis li {
    display: inline; }
  .my-cv-evaluation .css_bar_graph .graph {
    width: 100%;
    height: 100%;
    padding-left: 40px; }
  .my-cv-evaluation .css_bar_graph .bar-grpah-area {
    height: 395px;
    position: relative;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd; }
  .my-cv-evaluation .css_bar_graph .graph li.bar {
    position: relative;
    width: 30%;
    text-align: center;
    float: left;
    height: 100%; }
  .my-cv-evaluation .bar-line {
    width: 30px;
    position: absolute;
    bottom: 0;
    text-align: center;
    transition: all .15s ease-in-out;
    animation: draw 1s ease-in-out;
    left: 50%;
    margin-left: -15px; }
  .my-cv-evaluation .css_bar_graph .graph li.bar span {
    position: relative;
    top: -20px;
    padding: 0;
    color: #000;
    font-weight: 700;
    transition: all .15s ease-in-out; }
  .my-cv-evaluation .css_bar_graph .graph .nr_1 .bar-line {
    background: #BF9FCB; }
  .my-cv-evaluation .css_bar_graph .graph .nr_2 .bar-line {
    background: #7F3F98; }
  .my-cv-evaluation .css_bar_graph .graph .nr_3 .bar-line {
    background: #0088CC; }
  .my-cv-evaluation .css_bar_graph .graph li.bar:hover span {
    top: -30px;
    margin: 0; }

@keyframes draw {
  0% {
    height: 0; } }
  .my-cv-evaluation .x_axis {
    padding-left: 40px; }
  .my-cv-evaluation .x_axis li {
    float: left;
    width: 30%;
    text-align: center;
    font-size: 14px;
    color: #888;
    font-weight: 700; }
  .my-cv-evaluation .rr-contact {
    background: #f9fafc;
    padding: 90px 0; }
  .my-cv-evaluation .rr-contact h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.3px;
    text-align: center;
    margin: 0 0 50px; }
  .my-cv-evaluation .contact-list-items {
    max-width: 900px;
    margin: 0 auto; }
  .my-cv-evaluation .contact-list-items {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    flex-wrap: wrap;
    padding: 20px;
    font-weight: 400; }
    @media screen and (min-width: 64em) {
      .my-cv-evaluation .contact-list-items {
        padding: 0 60px; } }
  .my-cv-evaluation .contact-list-items li {
    align-items: center;
    display: block;
    position: relative;
    word-break: break-word;
    flex-wrap: wrap;
    margin: 10px 0;
    border: 1px solid #c7c8ca;
    border-radius: 10px;
    padding: 20px 50px;
    width: 100%; }
    @media screen and (min-width: 64em) {
      .my-cv-evaluation .contact-list-items li {
        width: 44%; } }
  .my-cv-evaluation .contact-list-items li img {
    margin-right: 5px;
    position: absolute; }
  .my-cv-evaluation .contact-list-items li img {
    left: -18px;
    top: 12px;
    background: #f9fafc;
    width: 43px; }
  .my-cv-evaluation .rr-contact-result {
    max-width: 900px;
    margin: 0 auto; }
  .my-cv-evaluation .rr-contact-result .box {
    background: #f7efca;
    border-radius: 10px;
    padding: 20px;
    margin: 20px; }
  .my-cv-evaluation .rr-contact-result .box h5 {
    font-size: 14px;
    color: #88836e;
    font-weight: 700;
    margin: 0 0 5px; }
  .my-cv-evaluation .rr-contact-result .box p {
    font-size: 14px;
    color: #88836e;
    margin: 0; }
  .my-cv-evaluation .rr-contact-result .box.green-box {
    background: #d6f1ef; }
  .my-cv-evaluation .rr-contact-result .box.green-box p {
    color: #8ab8b4; }
  .my-cv-evaluation .rr-file-information {
    background: #fff;
    padding: 80px 0;
    text-align: center; }
  .my-cv-evaluation .rr-file-information h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    letter-spacing: .3px;
    margin: 0 0 60px; }
  .my-cv-evaluation .rez-page-length-heading {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #000;
    padding-top: 15px; }
  .my-cv-evaluation .file-img {
    background: url("/img/resume/page-length-mask.png") no-repeat top left;
    width: 85px;
    height: 100px;
    padding: 10px 0 0 10px;
    margin: 0 auto 35px;
    background-size: contain; }
  .my-cv-evaluation .file-img img {
    max-height: 100%;
    max-width: 100%;
    opacity: 0;
    transition: all ease-in 2s;
    transition-delay: 0.4s; }
  .my-cv-evaluation .rez-page-length-text {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: #000;
    margin: 10px 0 0; }
  .my-cv-evaluation .file-img img.page-size-show {
    opacity: 1; }
  .my-cv-evaluation .rez-word-count {
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    padding: 0 20px; }
  .my-cv-evaluation .rez-word-count-heading {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #000;
    margin: 0 0 10px; }
  .my-cv-evaluation .rez-word-count-text {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: #000; }
  .my-cv-evaluation .word-graph-outer {
    margin: 0 0 20px; }
  .my-cv-evaluation .word-graph {
    position: relative;
    overflow: hidden; }
  .my-cv-evaluation .word-graph .g-mask {
    position: absolute;
    bottom: 6px;
    z-index: 1; }
  .my-cv-evaluation .word-graph-marker {
    position: absolute;
    width: 3px;
    background: #30baaa;
    height: 100%;
    bottom: -6px;
    margin-left: 1px;
    transition: all 2s ease;
    transition-delay: 0.4s; }
  .my-cv-evaluation .word-graph-ruler {
    margin: 0;
    padding: 0;
    border-top: 1px solid #eee;
    display: flex; }
  .my-cv-evaluation .word-graph-ruler li {
    width: 11.111111%;
    display: inline-block;
    color: #999;
    font-size: 10px;
    text-align: left;
    position: relative;
    padding-top: 15px; }
  .my-cv-evaluation .word-graph-ruler li::before {
    content: '';
    display: inline-block;
    background: #999;
    width: 1px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 0; }
  @media (max-width: 991px) {
    .my-cv-evaluation .rez-word-count {
      border: 0;
      border-top: 1px solid #e5e5e5;
      border-bottom: 1px solid #e5e5e5;
      padding: 25px 0;
      margin: 25px 0; } }
  .my-cv-evaluation .rr-file-information .container-box {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid black; }
  .my-cv-evaluation .rr-file-information .box {
    background-color: pink;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    transition: all 1s ease; }
  .my-cv-evaluation .gauge {
    background: #e7e7e7;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.09), 0 0 35px 5px rgba(255, 255, 255, 0.29);
    width: 150px;
    height: 75px;
    border-radius: 100px 100px 0 0;
    position: relative;
    overflow: hidden;
    margin: 22px auto 45px; }
  .my-cv-evaluation .needle {
    width: 50px;
    height: 14px;
    background: url("/img/resume/speedometer.svg") no-repeat;
    position: absolute;
    bottom: 0;
    left: 25px;
    transform-origin: 100% 7px;
    background-size: auto 14px;
    z-index: 2;
    transition: all ease-in 2s;
    transition-delay: 0.4s; }
  .my-cv-evaluation .gauge-semi-circle::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 2;
    display: block;
    width: 120px;
    height: 60px;
    margin-left: -60px;
    background: #fff;
    border-radius: 50% 50% 50% 50% / 100% 100% 0 0; }
  .my-cv-evaluation .gauge-semi-circle {
    position: relative;
    display: block;
    width: 150px;
    height: 75px;
    background: linear-gradient(to right, #45d997 0%, #ddaf16 50%, #de340e 100%);
    border-radius: 50% 50% 50% 50% / 100% 100% 0 0; }
  .my-cv-evaluation .rez-page-size-heading {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #000;
    margin: 0 0 10px; }
  .my-cv-evaluation .rez-page-size-text {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: #000; }
  .my-cv-evaluation .rr-analyst {
    background: #f9fafc; }
  .my-cv-evaluation .rr-analyst h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.3px;
    text-align: center;
    margin: 0 0 50px;
    padding: 30px 0 0 0; }
  .my-cv-evaluation .pointer-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    left: -40px;
    top: 50px;
    text-align: center; }
  .my-cv-evaluation .pointer-icon img {
    max-width: 100%;
    max-height: 100%;
    display: inline-block; }
  .my-cv-evaluation .pointer-box {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    margin: 40px 0 0 0;
    padding: 50px 50px 50px 100px;
    position: relative;
    background: #fff; }
    @media screen and (min-width: 64em) {
      .my-cv-evaluation .pointer-box {
        margin: 40px 0; } }
  .my-cv-evaluation .pointer-box h4 {
    font-size: 24px;
    color: #000;
    margin: 0 0 20px; }
  .my-cv-evaluation .pointer-box ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  .my-cv-evaluation .pointer-box ul li {
    font-size: 15px;
    color: #333;
    margin: 0 0 40px;
    position: relative;
    padding-left: 20px;
    word-break: break-word; }
  .my-cv-evaluation .pointer-box ul li h5 {
    font-size: 16px;
    margin: 0 0 4px; }
  .my-cv-evaluation .pointer-box ul li:last-child {
    margin: 0; }
  .my-cv-evaluation .pointer-box ul li::before {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    color: #fff;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 3px;
    text-align: center;
    line-height: 15px; }
  .my-cv-evaluation .pointer-box ul .right-tick::before {
    background: #00ac91 url("/img/resume/tick-white.svg") no-repeat center center;
    background-size: 7px auto;
    content: ""; }
  .my-cv-evaluation .pointer-box ul .wrong-tick::before {
    background: #ff4355 url("/img/resume/close-white.svg") no-repeat center center;
    background-size: 7px auto;
    content: ''; }
  @media (max-width: 991px) {
    .my-cv-evaluation .pointer-box {
      padding: 20px;
      margin: 20px; }
    .my-cv-evaluation .pointer-icon {
      position: static;
      width: 40px;
      height: 60px; }
    .my-cv-evaluation .pointer-box ul li {
      margin: 0 0 20px; } }
  .my-cv-evaluation .signature-block p {
    font-size: 14px;
    color: #fff;
    margin: 0;
    display: flex;
    vertical-align: middle;
    text-align: left;
    align-items: center; }
  .my-cv-evaluation .signature-block span {
    border-right: 1px solid #4f97f1;
    margin-right: 15px; }
  .my-cv-evaluation .signature-block span img {
    margin-right: 5px; }
  .my-cv-evaluation .rez-score-custom-row .rez-score-content-bottom {
    float: left;
    width: 55%;
    padding-right: 30px; }
  .my-cv-evaluation .rez-score-custom-row .bar-chart-outer {
    float: left;
    width: 45%; }
  .my-cv-evaluation .rez-percentile {
    background: #fff;
    padding: 75px 0; }
  .my-cv-evaluation .rez-percentile .rez-percentile-score {
    position: relative; }
    @media screen and (min-width: 64em) {
      .my-cv-evaluation .rez-percentile .rez-percentile-score {
        padding-left: 265px; } }
  .my-cv-evaluation .rez-percentile .rez-percentile-score p {
    font-size: 17px;
    font-weight: 300;
    color: #000;
    margin: 0 0 20px; }
    @media screen and (max-width: 63.9375em) {
      .my-cv-evaluation .rez-percentile .rez-percentile-score p {
        padding-top: 100px; } }
  .my-cv-evaluation .rez-percentile h4 {
    text-align: center;
    color: #000;
    margin: 0 0 80px;
    font-size: 30px;
    font-weight: 700;
    line-height: normal; }
    @media screen and (min-width: 64em) {
      .my-cv-evaluation .rez-percentile h4 {
        margin: 0 0 60px;
        font-size: 36px; } }
  .my-cv-evaluation .rez-percentile .rez-circle-score {
    width: 265px;
    left: 0;
    bottom: 0; }
    @media screen and (min-width: 64em) {
      .my-cv-evaluation .rez-percentile .rez-circle-score {
        position: absolute; } }
  .my-cv-evaluation .noindustries {
    text-align: center; }
    .my-cv-evaluation .noindustries img {
      text-align: center; }
    .my-cv-evaluation .noindustries p {
      font-size: 14px;
      font-weight: 300;
      margin-top: 40px;
      letter-spacing: 0.3px;
      color: #8d8d8d;
      line-height: 2em;
      text-align: center; }
  .my-cv-evaluation .rez-percentile .rez-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    background: #fff;
    z-index: 1;
    border-radius: 100%; }
    @media screen and (min-width: 64em) {
      .my-cv-evaluation .rez-percentile .rez-circle {
        bottom: 0; } }
    @media screen and (max-width: 63.9375em) {
      .my-cv-evaluation .rez-percentile .rez-circle {
        top: -70px; } }
    .my-cv-evaluation .rez-percentile .rez-circle svg {
      position: relative;
      width: 150px;
      height: 150px;
      z-index: 1000; }
    .my-cv-evaluation .rez-percentile .rez-circle svg circle {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: #e7ebeb;
      stroke-width: 10px;
      stroke-linecap: round;
      transform: translate(5px, 5px); }
    .my-cv-evaluation .rez-percentile .rez-circle svg circle:nth-child(2) {
      stroke-dasharray: 440;
      stroke: #0088cc; }
  .my-cv-evaluation .rez-percentile .rez-circle-score .rez-percentile-text {
    color: #333;
    font-size: 34px;
    letter-spacing: 0.4px;
    font-weight: 700;
    display: block;
    text-align: center;
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
    padding-top: 20px; }
    .my-cv-evaluation .rez-percentile .rez-circle-score .rez-percentile-text h2 {
      font-weight: 700;
      font-size: 42px; }
      .my-cv-evaluation .rez-percentile .rez-circle-score .rez-percentile-text h2 span {
        font-size: 24px;
        font-weight: 400; }
  .my-cv-evaluation .rez-percentile .rez-circle-score .percentile-score {
    z-index: 1;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.25);
    border-radius: 100%; }
  .my-cv-evaluation .rez-percentile-recommeded {
    background: #FEF4E8;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    position: relative; }
    @media screen and (min-width: 64em) {
      .my-cv-evaluation .rez-percentile-recommeded {
        padding: 55px 120px; } }
    @media screen and (max-width: 63.9375em) {
      .my-cv-evaluation .rez-percentile-recommeded {
        top: 52px; } }
  .my-cv-evaluation .rez-percentile-recommeded .signature-main-box .signature-box p {
    margin: 0;
    display: block; }
  .my-cv-evaluation .rez-percentile-recommeded h5 {
    font-size: 22px;
    line-height: normal;
    font-weight: 700;
    color: #000; }
  .my-cv-evaluation .rez-percentile-recommeded p {
    font-size: 16px;
    color: #000;
    margin: 20px 0; }
  .my-cv-evaluation .rez-analyst-comments {
    background: #f9fafc;
    padding: 75px 0; }
  .my-cv-evaluation .analyst-note {
    background-color: #EFFAFE;
    background-repeat: no-repeat;
    width: 100%;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    display: inline-block;
    position: relative; }
    @media screen and (min-width: 64em) {
      .my-cv-evaluation .analyst-note {
        padding: 80px 60px 50px; } }
  .my-cv-evaluation .analyst-note::before {
    background-image: url("/img/resume/top-zig.svg");
    background-repeat: no-repeat;
    width: 100%;
    height: 50px;
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    background-size: cover; }
  .my-cv-evaluation .analyst-note::after {
    background-image: url("/img/resume/bottom-zig.svg");
    background-repeat: no-repeat;
    width: 100%;
    height: 50px;
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    background-size: cover; }
  .my-cv-evaluation .analyst-note img {
    width: 54px; }
  .my-cv-evaluation .analyst-note h2 {
    margin: 30px 0 15px; }
  .my-cv-evaluation .analyst-note p {
    max-width: 830px;
    display: inline-block;
    font-size: 17px;
    margin-bottom: 60px; }
  .my-cv-evaluation .analyst-note .signature-main-box p.query-txt {
    margin-bottom: 0; }
  .my-cv-evaluation .analyst-note .signature-main-box p.query-txt a {
    display: block;
    color: #484848; }
  .my-cv-evaluation .signature-main-box {
    text-align: left; }
  .my-cv-evaluation .analyst-note .signature-box {
    right: 60px;
    text-align: right;
    float: right; }
  .my-cv-evaluation .analyst-note .signature-box img {
    width: 100px;
    display: block; }
  .my-cv-evaluation .analyst-note .signature-box p {
    display: block;
    margin-bottom: 0; }
  .my-cv-evaluation .rr-industries {
    background: #fff;
    padding: 60px 0; }
  .my-cv-evaluation .rr-industries .rr-container {
    max-width: 1030px;
    margin: 0 auto; }
  .my-cv-evaluation .rr-industries h3 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.3px;
    text-align: center;
    margin: 0 0 50px; }
  .my-cv-evaluation .chart-flex-box .item-desc-text {
    font-size: 14px;
    font-weight: 300;
    margin-top: 40px;
    letter-spacing: 0.3px;
    color: #8d8d8d;
    line-height: 2em;
    text-align: center; }
  .my-cv-evaluation .chart-content {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.3px; }
  .my-cv-evaluation .chart-detail-box .chart-content .chart-label-list {
    margin: 30px 0 0;
    align-items: center; }
    @media screen and (min-width: 64em) {
      .my-cv-evaluation .chart-detail-box .chart-content .chart-label-list {
        display: flex; } }
  .my-cv-evaluation .chart-detail-box .chart-content:first-child .chart-label-list {
    margin: 0; }
  .my-cv-evaluation .chart-content .chart-label {
    padding: 5px 8px;
    color: #fff;
    margin-right: 10px;
    font-size: 18px;
    line-height: normal;
    display: inline-block;
    min-width: 85px;
    text-align: center;
    height: 30px;
    align-self: flex-start; }
  .my-cv-evaluation .chart-holder {
    display: flex;
    justify-content: center;
    text-align: left;
    max-width: 700px;
    margin: 70px auto 0;
    align-items: center; }
  .my-cv-evaluation .circle-outer {
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .my-cv-evaluation .circle-chart {
    flex: 1;
    position: relative;
    min-height: 300px; }
  .my-cv-evaluation .chart-detail-box {
    flex: 1; }
  .my-cv-evaluation .progress-1 .circle-progress {
    width: 230px;
    height: auto; }
  .my-cv-evaluation .progress-2 .circle-progress {
    width: 180px;
    height: auto; }
  .my-cv-evaluation .progress-3 .circle-progress {
    width: 130px;
    height: auto; }
  .my-cv-evaluation .progress-1 .circle-progress-value {
    stroke-width: 4px;
    stroke: #1accb8; }
  .my-cv-evaluation .progress-2 .circle-progress-value {
    stroke-width: 4px;
    stroke: #1069e0; }
  .my-cv-evaluation .progress-3 .circle-progress-value {
    stroke-width: 4px;
    stroke: #03c8f8; }
  .my-cv-evaluation .circle-progress-circle {
    stroke-width: 4px;
    stroke: #eeeeee; }

.list-smilies {
  list-style-type: none;
  display: inline-block;
  width: auto;
  margin: 0 auto 20px; }
  .list-smilies li {
    float: left;
    margin: 0  10px; }
    @media screen and (max-width: 63.9375em) {
      .list-smilies li {
        width: 50%;
        margin: 0; } }
  .list-smilies a {
    width: 100px;
    padding: 90px 0 0;
    display: inline-block; }
    .list-smilies a span {
      display: block;
      color: #444;
      font-size: 18px; }
    .list-smilies a.veryhappy {
      background: url("../img/generic/veryhappy.png") no-repeat 0 0; }
      .list-smilies a.veryhappy.selected, .list-smilies a.veryhappy:hover {
        background: url("../img/generic/veryhappy_active.png") no-repeat 0 0; }
    .list-smilies a.satisified {
      background: url("../img/generic/satisified.png") no-repeat 0 0; }
      .list-smilies a.satisified.selected, .list-smilies a.satisified:hover {
        background: url("../img/generic/satisified_active.png") no-repeat 0 0; }
    .list-smilies a.somewhatsatisfied {
      background: url("../img/generic/somewhatsatisfied.png") no-repeat 0 0; }
      .list-smilies a.somewhatsatisfied.selected, .list-smilies a.somewhatsatisfied:hover {
        background: url("../img/generic/somewhatsatisfied_active.png") no-repeat 0 0; }
    .list-smilies a.unhappy {
      background: url("../img/generic/unhappy.png") no-repeat 0 0; }
      .list-smilies a.unhappy.selected, .list-smilies a.unhappy:hover {
        background: url("../img/generic/unhappy_active.png") no-repeat 0 0; }

#form_cv_feedback {
  position: relative; }
  #form_cv_feedback .error {
    font-size: 11px;
    color: #ff0000;
    margin-bottom: 10px;
    display: block; }
  #form_cv_feedback .comment-box textarea {
    margin: 0 0 15px 0; }
  #form_cv_feedback .comment-box label {
    margin: 0 0 10px 0; }
  #form_cv_feedback .comment-box .recaptcha_element {
    margin: 0 0 20px 0;
    float: right; }
  #form_cv_feedback .loading {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; }
    #form_cv_feedback .loading img {
      top: 6.25rem;
      position: absolute;
      width: 40px; }
  #form_cv_feedback .success-msg {
    font-size: 18px;
    color: #444; }

#dialog-box .cv-download-list .message2 {
  padding: 30px 20px;
  text-align: center;
  font-size: 18px; }
  #dialog-box .cv-download-list .message2 p {
    text-transform: uppercase;
    font-weight: 600;
    padding-top: 20px; }
    #dialog-box .cv-download-list .message2 p a {
      padding: 10px 35px;
      font-size: 17px; }

.cv-downloads .rows-small {
  margin: auto; }
  @media screen and (min-width: 64em) {
    .cv-downloads .rows-small {
      width: 70%; } }

.cv-downloads .downloads-top {
  background: linear-gradient(178.99deg, #F4F9FD 13.04%, #E3F3FE 70.7%, #CDE3F7 91%);
  margin-bottom: 120px; }
  @media screen and (min-width: 64em) {
    .cv-downloads .downloads-top {
      margin-bottom: 0px; } }
  .cv-downloads .downloads-top .row {
    background: transparent; }
  .cv-downloads .downloads-top .downloads-top-text {
    padding: 20px 0 140px 0; }
    @media screen and (min-width: 64em) {
      .cv-downloads .downloads-top .downloads-top-text {
        padding: 50px 0; } }
    .cv-downloads .downloads-top .downloads-top-text .title {
      font-size: 24px;
      font-weight: 800;
      color: #405973;
      padding-bottom: 20px; }
      @media screen and (min-width: 64em) {
        .cv-downloads .downloads-top .downloads-top-text .title {
          font-size: 30px; } }
    .cv-downloads .downloads-top .downloads-top-text span {
      font-size: 14px; }
      @media screen and (min-width: 64em) {
        .cv-downloads .downloads-top .downloads-top-text span {
          font-size: 16px; } }
  .cv-downloads .downloads-top .downloads-top-image {
    background: url(/img/generic/downloads-top-image.png);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    min-height: 250px;
    background-size: 70%;
    top: 240px; }
    @media screen and (min-width: 64em) {
      .cv-downloads .downloads-top .downloads-top-image {
        background-position: right;
        top: 100px;
        position: relative;
        min-height: 213px;
        background-size: 80%; } }

.cv-downloads .mid-txt {
  font-size: 14px;
  color: #333333;
  padding: 50px 0; }
  @media screen and (min-width: 64em) {
    .cv-downloads .mid-txt {
      width: 70%; } }

@media screen and (min-width: 64em) {
  .cv-downloads .packages-details {
    width: 70%; } }

.cv-downloads .packages-details .icons {
  text-align: center;
  padding-bottom: 30px; }

.cv-downloads .packages-details span {
  font-size: 14px; }

.cv-downloads .packages-lists {
  margin-top: 100px;
  margin-bottom: 100px;
  background: #F2EBF4;
  padding: 10px; }
  @media screen and (min-width: 64em) {
    .cv-downloads .packages-lists {
      width: 85%; } }
  @media screen and (min-width: 64em) {
    .cv-downloads .packages-lists {
      padding: 30px; } }
  .cv-downloads .packages-lists .title {
    font-weight: bold;
    font-size: 21px;
    padding-top: 25px; }
  .cv-downloads .packages-lists .details-page-list {
    min-height: 450px;
    width: 100% !important; }
    .cv-downloads .packages-lists .details-page-list .cv-download-list {
      padding: 25px 0;
      margin: 0 !important; }
      @media screen and (min-width: 64em) {
        .cv-downloads .packages-lists .details-page-list .cv-download-list .product-cv-download {
          width: 27%;
          margin: 0px 22px; } }
      .cv-downloads .packages-lists .details-page-list .cv-download-list .product-cv-download .row {
        border-radius: 8px; }
      .cv-downloads .packages-lists .details-page-list .cv-download-list .product-cv-download .is-new {
        background-image: url(../img/generic/new.png);
        background-repeat: no-repeat;
        border-radius: 8px; }

.details-page-list {
  margin: 0 auto;
  min-height: 1450px;
  background: #fff !important; }
  @media screen and (min-width: 64em) {
    .details-page-list {
      min-height: 750px;
      width: 760px !important; } }
  .details-page-list .loader-image {
    text-align: center;
    margin-top: 50px;
    padding-top: 50px; }
  .details-page-list .cv-download-list {
    background: #F2EBF4;
    border-radius: 5px;
    margin: 50px 0 !important;
    padding: 25px; }
    .details-page-list .cv-download-list .product-cv-download h2 {
      width: 76% !important; }

#dialog-box2, .details-page-list {
  background: #F2EBF4; }
  #dialog-box2 .close-button, .details-page-list .close-button {
    padding: 5px; }
  @media screen and (min-width: 64em) {
    #dialog-box2, .details-page-list {
      width: 780px; } }
  #dialog-box2 .cv-download-list, .details-page-list .cv-download-list {
    float: left;
    margin: 0 10px; }
    #dialog-box2 .cv-download-list .title-text, .details-page-list .cv-download-list .title-text {
      font-weight: 600;
      font-size: 18px;
      color: #333333;
      padding: 10px 0 20px 8px; }
    #dialog-box2 .cv-download-list .message2, .details-page-list .cv-download-list .message2 {
      padding: 30px 20px; }
      #dialog-box2 .cv-download-list .message2 p, .details-page-list .cv-download-list .message2 p {
        text-align: center;
        font-size: 18px;
        font-weight: 600; }
    #dialog-box2 .cv-download-list .message, .details-page-list .cv-download-list .message {
      padding: 0 0 20px 8px; }
    #dialog-box2 .cv-download-list .product-cv-download, .details-page-list .cv-download-list .product-cv-download {
      float: left;
      width: 100%;
      margin: 0 0 10px 0;
      background: #FFFFFF;
      border: 1px solid #ECEAF0;
      border-radius: 8px; }
      @media screen and (min-width: 64em) {
        #dialog-box2 .cv-download-list .product-cv-download, .details-page-list .cv-download-list .product-cv-download {
          width: 31%;
          margin: 0 8px 20px 8px; } }
      #dialog-box2 .cv-download-list .product-cv-download .line-solid, .details-page-list .cv-download-list .product-cv-download .line-solid {
        margin: 10px 0 0;
        padding: 15px 0px 0;
        border-top: 1px solid #F2EBF4;
        width: 100%;
        display: inline-block; }
      #dialog-box2 .cv-download-list .product-cv-download h2, .details-page-list .cv-download-list .product-cv-download h2 {
        color: #453269;
        font-size: 16px;
        font-weight: 700;
        min-height: 20px;
        padding-top: 15px;
        width: 80%; }
      #dialog-box2 .cv-download-list .product-cv-download img, .details-page-list .cv-download-list .product-cv-download img {
        float: right;
        top: -40px;
        position: relative; }
        @media screen and (min-width: 64em) {
          #dialog-box2 .cv-download-list .product-cv-download img, .details-page-list .cv-download-list .product-cv-download img {
            top: -40px; } }
      #dialog-box2 .cv-download-list .product-cv-download h3, .details-page-list .cv-download-list .product-cv-download h3 {
        color: #7F3F98;
        font-weight: 700;
        font-size: 0.875rem; }
        #dialog-box2 .cv-download-list .product-cv-download h3 .old-price, .details-page-list .cv-download-list .product-cv-download h3 .old-price {
          color: #c4c4c4;
          text-decoration: line-through; }
      #dialog-box2 .cv-download-list .product-cv-download .description-text, .details-page-list .cv-download-list .product-cv-download .description-text {
        min-height: 125px;
        padding: 0 0 10px;
        color: #888888;
        font-size: 13px; }
        #dialog-box2 .cv-download-list .product-cv-download .description-text ul, .details-page-list .cv-download-list .product-cv-download .description-text ul {
          margin: 0; }
          #dialog-box2 .cv-download-list .product-cv-download .description-text ul li, .details-page-list .cv-download-list .product-cv-download .description-text ul li {
            list-style: none;
            font-weight: normal;
            font-size: 14px;
            line-height: 20px;
            background: url(../img/generic/featured.png);
            background-repeat: no-repeat;
            background-position: left 6px;
            padding-left: 20px;
            padding-bottom: 10px; }
        @media screen and (max-width: 63.9375em) {
          #dialog-box2 .cv-download-list .product-cv-download .description-text, .details-page-list .cv-download-list .product-cv-download .description-text {
            min-height: 0; } }
      #dialog-box2 .cv-download-list .product-cv-download .price-table, .details-page-list .cv-download-list .product-cv-download .price-table {
        color: #555555;
        border: 0; }
        #dialog-box2 .cv-download-list .product-cv-download .price-table tbody, .details-page-list .cv-download-list .product-cv-download .price-table tbody {
          border: 0; }
        #dialog-box2 .cv-download-list .product-cv-download .price-table tr, .details-page-list .cv-download-list .product-cv-download .price-table tr {
          border: 0px; }
          #dialog-box2 .cv-download-list .product-cv-download .price-table tr td, .details-page-list .cv-download-list .product-cv-download .price-table tr td {
            padding: 7px 0 5px 0;
            font-size: 11px;
            border: 0;
            vertical-align: top; }
            #dialog-box2 .cv-download-list .product-cv-download .price-table tr td span, .details-page-list .cv-download-list .product-cv-download .price-table tr td span {
              font-weight: bold; }
          #dialog-box2 .cv-download-list .product-cv-download .price-table tr.border-top, .details-page-list .cv-download-list .product-cv-download .price-table tr.border-top {
            border-top: 1px solid #ECEAF0; }
          #dialog-box2 .cv-download-list .product-cv-download .price-table tr.grand-total td, .details-page-list .cv-download-list .product-cv-download .price-table tr.grand-total td {
            font-size: 15px; }
            #dialog-box2 .cv-download-list .product-cv-download .price-table tr.grand-total td span, .details-page-list .cv-download-list .product-cv-download .price-table tr.grand-total td span {
              color: #7F3F98; }
      #dialog-box2 .cv-download-list .product-cv-download .terms, .details-page-list .cv-download-list .product-cv-download .terms {
        font-size: 11px;
        color: #555;
        text-align: left; }
      #dialog-box2 .cv-download-list .product-cv-download .btn-purple, .details-page-list .cv-download-list .product-cv-download .btn-purple {
        color: #fff;
        background: #7F3F98;
        border: 1px solid #7F3F98;
        text-transform: uppercase;
        margin: 0;
        font-weight: 600;
        margin-bottom: 15px; }
        #dialog-box2 .cv-download-list .product-cv-download .btn-purple:hover, #dialog-box2 .cv-download-list .product-cv-download .btn-purple:focus, .details-page-list .cv-download-list .product-cv-download .btn-purple:hover, .details-page-list .cv-download-list .product-cv-download .btn-purple:focus {
          background: #7F3F98; }
        #dialog-box2 .cv-download-list .product-cv-download .btn-purple.width-90, .details-page-list .cv-download-list .product-cv-download .btn-purple.width-90 {
          width: 90%; }
      #dialog-box2 .cv-download-list .product-cv-download .is-new, .details-page-list .cv-download-list .product-cv-download .is-new {
        background-image: url(../img/generic/new.png);
        background-repeat: no-repeat;
        border-radius: 8px; }

#my-packages .title, #my-orders .title {
  padding: 20px 0;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700; }

.my-packages, .my-orders {
  min-height: 300px; }
  .my-packages .loader-image, .my-orders .loader-image {
    text-align: center;
    margin-top: 100px; }
  .my-packages .data-table, .my-orders .data-table {
    text-align: left;
    font-size: 14px; }
    .my-packages .data-table th, .my-orders .data-table th {
      background-color: #d7f2fd; }
    .my-packages .data-table .last-row, .my-orders .data-table .last-row {
      border-top: 1px solid #eee;
      border-bottom: 1px solid #eee; }
    .my-packages .data-table span, .my-orders .data-table span {
      color: #ff0000; }
    .my-packages .data-table .product-name strong, .my-orders .data-table .product-name strong {
      text-transform: capitalize; }
  .my-packages .msg-no-results, .my-orders .msg-no-results {
    font-size: 24px;
    padding: 30px; }

.my-orders .total-result {
  font-size: 14px;
  padding-bottom: 20px; }

.my-orders .pagination {
  text-align: center;
  float: none;
  display: inline-block;
  width: 100%;
  margin: 20px 0 30px 0; }
  .my-orders .pagination .go-to-page {
    text-align: center;
    border: 1px solid #60cdf6;
    text-transform: uppercase;
    border-radius: 20px;
    background-color: #60cdf6;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 60px; }

#my-orders .title {
  float: left; }

#my-orders .list-order-opt {
  float: left;
  padding: 20px 0; }
  @media screen and (min-width: 64em) {
    #my-orders .list-order-opt {
      float: right; } }
  #my-orders .list-order-opt select {
    outline: none;
    background-image: url(/img/generic/arrowdwn.png);
    background-size: 24px; }

.contact-us {
  margin-bottom: 1.25rem; }
  .contact-us ul {
    margin: 0;
    list-style-type: none;
    padding-bottom: 1.25rem;
    border-bottom: solid 0.0625rem #d9d9d9; }
  .contact-us h1, .contact-us h2 {
    font-weight: bold;
    margin-bottom: 0.2rem;
    margin-top: 1rem; }
  .contact-us h1 {
    font-size: 2rem;
    text-transform: capitalize; }
  .contact-us h2 {
    font-size: 1.25rem;
    text-transform: uppercase; }
  .contact-us .no-borders {
    border: 0; }
  .contact-us [class^="icon-"]:before, .contact-us [class*=" icon-"]:before {
    font-size: 0.75rem;
    color: #c2c2c2;
    padding-right: 0.625rem;
    padding-left: 0.9375rem; }
  .contact-us a.large {
    margin-top: 1.5625rem;
    margin-bottom: 1.5625rem;
    display: inline-block;
    color: #000;
    font-weight: bold; }
  .contact-us .large:before {
    font-size: 1.5rem;
    color: #575757;
    vertical-align: bottom; }
  @media screen and (min-width: 64em) {
    .contact-us h1 {
      font-size: 3.5rem;
      text-align: center;
      padding-bottom: 20px; }
    .contact-us h2 {
      font-size: 2.1875rem; }
    .contact-us .sharing {
      margin-top: 2.5rem;
      text-align: center; }
      .contact-us .sharing h2 {
        font-size: 3.5rem;
        text-align: center;
        padding-bottom: 20px; }
    .contact-us ul {
      border: 0; }
    .contact-us li {
      font-size: 1.25rem;
      padding: 0.9375rem 0; }
    .contact-us [class^="icon-"]:before, .contact-us [class*=" icon-"]:before {
      font-size: 1.625rem;
      vertical-align: middle;
      color: #c2c2c2;
      padding-right: 30px; }
    .contact-us a.large {
      font-size: 1.375rem;
      font-weight: normal;
      margin: 1.875rem 3.75rem; }
    .contact-us .large:before {
      font-size: 2.75rem;
      color: #575757;
      padding-right: 10px; } }

.static-page-outr {
  border-top: 1px #ceced2 solid;
  padding-top: 1.25rem;
  margin-bottom: 3.75rem; }

.static-content a {
  text-decoration: none;
  word-wrap: break-word; }

.static-content u {
  text-decoration: none;
  margin-top: 2.1875rem;
  display: block; }

.sitemap-content .wrapper {
  display: table;
  width: 100%;
  margin: 0px 0px 20px 0px; }
  .sitemap-content .wrapper h2 {
    font-size: 1.25rem;
    font-weight: 400; }
    .sitemap-content .wrapper h2 a {
      color: #484848; }
    .sitemap-content .wrapper h2.main-title {
      color: #62ccf5;
      font-size: 1.375rem; }
      .sitemap-content .wrapper h2.main-title a {
        color: #62ccf5; }
  .sitemap-content .wrapper h3.title-link {
    text-transform: capitalize;
    font-weight: 600;
    margin: 0 0 0.625rem;
    font-size: 0.9375rem; }
    .sitemap-content .wrapper h3.title-link a {
      color: #484848; }
  .sitemap-content .wrapper #sitemap {
    margin: 0;
    display: table-row; }
    .sitemap-content .wrapper #sitemap > li {
      width: 30%;
      display: inline-table;
      list-style-type: none;
      margin: 0 3% 0 0; }
      .sitemap-content .wrapper #sitemap > li .title-link {
        text-transform: capitalize;
        font-weight: 600;
        color: #484848;
        margin: 0 0 0.625rem;
        font-size: 0.9375rem; }
      .sitemap-content .wrapper #sitemap > li > ul {
        margin: 0.625rem 0 1.25rem; }
        .sitemap-content .wrapper #sitemap > li > ul li {
          list-style-type: none;
          font-size: 0.875rem; }
          .sitemap-content .wrapper #sitemap > li > ul li .count {
            font-size: 0.6875rem;
            display: none; }
      @media screen and (max-width: 63.9375em) {
        .sitemap-content .wrapper #sitemap > li {
          width: 100%;
          margin: 0; } }
    .sitemap-content .wrapper #sitemap.extended > li {
      width: 100%;
      margin: 0; }
      .sitemap-content .wrapper #sitemap.extended > li li {
        width: 30%;
        margin-right: 3%;
        float: left; }

.sitemap-content .footer-links {
  width: 100%;
  margin: 1.25rem 0 0 1.25rem;
  display: inline-block; }
  .sitemap-content .footer-links li {
    list-style-type: none; }

.faq-content {
  min-height: 40vh; }

.about-us-content {
  min-height: 50vh; }

.contact-us-content {
  min-height: 50vh; }

.aboutus {
  font-size: 1.125rem;
  position: relative; }
  @media screen and (min-width: 64em) {
    .aboutus {
      text-align: center; } }
  .aboutus ul {
    margin: 0;
    list-style-type: none; }
    @media screen and (min-width: 64em) {
      .aboutus ul {
        text-align: center; } }
  .aboutus h1, .aboutus h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.2rem;
    margin-top: 1.5rem;
    text-transform: capitalize; }
  .aboutus .icon-tick {
    line-height: 1.5rem;
    padding-left: 1.875rem;
    margin-bottom: 1.25rem; }
    .aboutus .icon-tick:before {
      color: #1b344a;
      position: absolute;
      left: 0.9375rem;
      margin-top: 0.1875rem; }
      @media screen and (min-width: 64em) {
        .aboutus .icon-tick:before {
          margin-right: 10px;
          font-size: 30px;
          position: relative;
          left: initial;
          vertical-align: text-bottom; } }

.server-error {
  text-align: center;
  color: #838383;
  padding-top: 40px;
  padding-bottom: 50px; }
  @media screen and (min-width: 64em) {
    .server-error {
      padding-top: 100px;
      padding-bottom: 200px; } }
  .server-error .server-error-500-head {
    font-size: 40px;
    color: #f9354b; }
    @media screen and (min-width: 64em) {
      .server-error .server-error-500-head {
        font-size: 80px; } }
  .server-error .server-error-message {
    font-size: 20px; }
    @media screen and (min-width: 64em) {
      .server-error .server-error-message {
        font-size: 40px; } }
  .server-error .server-error-message-contact {
    font-size: 15px; }
    @media screen and (min-width: 64em) {
      .server-error .server-error-message-contact {
        font-size: 25px; } }
  .server-error .button {
    background-color: #838383;
    margin-top: 40px; }

.error-page {
  border-top: 1px solid #ceced2; }
  .error-page .error-info {
    min-height: 31.25rem; }
    .error-page .error-info .box {
      width: 85%;
      background: #fbf1f2;
      border: 1px solid #fe0000;
      margin: 4.375rem auto 3.125rem;
      text-align: center; }
      .error-page .error-info .box .inner {
        width: 70%;
        margin: auto;
        text-align: left;
        padding: 4.375rem 14.375rem 0 1.875rem;
        position: relative;
        min-height: 400px; }
        .error-page .error-info .box .inner h3 {
          color: #000;
          margin: 0 0 1.875rem; }
        .error-page .error-info .box .inner p {
          font-size: 1.125rem;
          margin: 0 0 1.5625rem; }
        .error-page .error-info .box .inner ul {
          margin: 0; }
          .error-page .error-info .box .inner ul li {
            background: url("../img/generic/gt-icon-arrowright-long.svg") no-repeat 0 3px;
            list-style-type: none;
            padding: 0 0 0.625rem 2.1875rem;
            text-align: left; }
            .error-page .error-info .box .inner ul li a {
              color: #000;
              border-bottom: 1px dotted #222; }
              .error-page .error-info .box .inner ul li a:hover {
                border: 0;
                color: #333; }
            .error-page .error-info .box .inner ul li ul {
              margin-top: 10px; }
              .error-page .error-info .box .inner ul li ul li {
                background: none;
                list-style-type: disc;
                padding-left: 0;
                margin-left: 2.1875rem; }
        .error-page .error-info .box .inner img {
          position: absolute;
          right: 0;
          top: 2.1875rem; }
  @media screen and (max-width: 63.9375em) {
    .error-page .error-info .box {
      margin: 1.875rem auto 1.875rem;
      width: 80%; }
      .error-page .error-info .box .inner {
        text-align: center;
        width: 80%;
        padding: 1.875rem 0; }
        .error-page .error-info .box .inner h3 {
          margin: 0 0 0.9375rem; }
        .error-page .error-info .box .inner img {
          position: static;
          margin: 1.25rem 0 1.875rem !important;
          width: 6.25rem;
          margin: auto; } }

.user-login {
  margin-top: 1.5rem; }
  .user-login .login-err-msg {
    padding-left: 0.3125rem; }
  .user-login .text-or {
    color: #8E8E93; }
  .user-login .input-icon:before {
    line-height: 1.875rem; }
  .user-login .gt-icon-lock:before {
    font-size: 0.9375rem; }
  .user-login .is-visible + .input-icon:before {
    color: #ff0000; }
  .user-login .forgot-password {
    position: absolute;
    right: 0;
    top: 15px;
    line-height: 1.875rem; }
  .user-login .login-password {
    padding-right: 44%;
    font-size: 16px; }
  .user-login .btn-login {
    margin-top: 1rem; }
  @media screen and (min-width: 64em) {
    .user-login .form-container {
      padding-left: 11.1875rem;
      padding-right: 11.1875rem; } }
  .user-login.reset-password .msg {
    text-align: center; }
    .user-login.reset-password .msg span {
      display: block; }
    .user-login.reset-password .msg.first-child {
      margin-bottom: 3.125rem; }
  @media screen and (min-width: 64em) {
    .user-login.reset-password .msg span {
      display: inline; } }
  .user-login .login-info {
    margin: 0; }
    .user-login .login-info.message {
      color: #60cdf6;
      font-weight: bold; }

/* Info dialog popup */
.login-message-dialog .content {
  padding: 1rem;
  position: relative;
  text-align: center;
  color: #000; }
  @media screen and (max-width: 63.9375em) {
    .login-message-dialog .content {
      padding-left: 0;
      padding-right: 0;
      top: 50%;
      position: absolute;
      transform: translateY(-50%); } }
  .login-message-dialog .content p {
    margin-bottom: 0.3125rem;
    font-size: 1.125rem; }
    .login-message-dialog .content p:first-child {
      font-size: 1.875rem;
      line-height: 1.25;
      margin-bottom: 2.1875rem;
      font-weight: 700; }

.login-message-dialog .button {
  margin: 0;
  min-width: 7.5rem; }

.popup-login-prompt .prompt-content {
  padding: 1rem;
  position: relative;
  text-align: center;
  color: #000; }
  @media screen and (max-width: 63.9375em) {
    .popup-login-prompt .prompt-content {
      padding-left: 0;
      padding-right: 0;
      top: 50%;
      position: absolute;
      transform: translateY(-50%); } }
  .popup-login-prompt .prompt-content h2 {
    font-size: 1.875rem;
    line-height: 1.25;
    margin-bottom: 0.9375rem;
    font-weight: 700; }
  .popup-login-prompt .prompt-content p {
    margin-bottom: 0.3125rem;
    font-size: 1.125rem; }
  .popup-login-prompt .prompt-content .highlightMessage {
    font-size: 1.375rem;
    margin: 20px; }
  .popup-login-prompt .prompt-content .popup-close {
    font-size: 2rem;
    right: 0;
    top: -4px; }
    .popup-login-prompt .prompt-content .popup-close a {
      color: #333333; }
  .popup-login-prompt .prompt-content .button-next-action {
    margin-top: 15px; }

.popup-login-prompt .button {
  margin: 0;
  min-width: 7.5rem; }

.save-search-dialog .content {
  position: relative; }
  @media screen and (max-width: 63.9375em) {
    .save-search-dialog .content {
      top: 50%;
      position: absolute;
      transform: translateY(-50%); } }

.save-search-dialog .button {
  margin-top: 1.5625rem;
  min-width: 7.5rem;
  font-size: 1.0625rem;
  padding: 0.625rem 2.1875rem; }
  @media screen and (max-width: 63.9375em) {
    .save-search-dialog .button {
      font-size: 0.875rem;
      padding: 0.75rem 0.875rem; } }

.user-signup-employer {
  margin-top: 3.125rem; }
  @media screen and (min-width: 64em) {
    .user-signup-employer {
      margin-top: 6.25rem; }
      .user-signup-employer .p-left {
        padding-right: 30px; }
      .user-signup-employer .p-right {
        padding-left: 40px; } }
  .user-signup-employer .title-text {
    font-weight: bold;
    font-size: 25px;
    line-height: 30px;
    color: #000000; }
    @media screen and (min-width: 64em) {
      .user-signup-employer .title-text {
        font-size: 30px; } }
    .user-signup-employer .title-text span {
      border-bottom: 1px solid #000;
      width: 99px;
      display: block;
      margin: 20px 0; }
  .user-signup-employer .detail-text {
    margin-bottom: 50px; }
    .user-signup-employer .detail-text ul {
      margin: 0; }
      .user-signup-employer .detail-text ul li {
        background: url(../img/generic/featured2.png);
        background-repeat: no-repeat;
        list-style-type: none;
        background-position: left 6px;
        padding-left: 30px;
        font-size: 13px;
        font-weight: 600;
        padding-bottom: 20px; }
        @media screen and (min-width: 64em) {
          .user-signup-employer .detail-text ul li {
            font-size: 17px; } }
  .user-signup-employer .detail-text-2 {
    font-weight: bold;
    font-size: 17px;
    margin-top: 50px; }
  .user-signup-employer .detail-image {
    margin-bottom: 30px;
    margin-top: 30px;
    float: left; }
    .user-signup-employer .detail-image img {
      padding: 0.9375rem 0; }
      @media screen and (min-width: 64em) {
        .user-signup-employer .detail-image img {
          padding: 0.9375rem 0.3125rem; } }
  .user-signup-employer .register-employer-form p, .user-signup-employer .login-employer-form p {
    font-weight: bold;
    font-size: 18px;
    color: #000000;
    padding-top: 10px;
    line-height: normal; }
    @media screen and (min-width: 64em) {
      .user-signup-employer .register-employer-form p, .user-signup-employer .login-employer-form p {
        font-size: 20px; } }
  .user-signup-employer .register-employer-form .signup-title, .user-signup-employer .login-employer-form .signup-title {
    color: #888888;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px; }
  .user-signup-employer .register-employer-form .login-txt, .user-signup-employer .login-employer-form .login-txt {
    font-weight: normal;
    font-size: 13px;
    padding-bottom: 18px; }
  .user-signup-employer .register-employer-form .text-or, .user-signup-employer .login-employer-form .text-or {
    margin-bottom: 20px; }
    .user-signup-employer .register-employer-form .text-or span, .user-signup-employer .login-employer-form .text-or span {
      border-top: 1px solid #DDD;
      position: relative;
      width: 20%;
      top: 15px;
      float: right; }
      @media screen and (min-width: 64em) {
        .user-signup-employer .register-employer-form .text-or span, .user-signup-employer .login-employer-form .text-or span {
          width: 30%; } }
      .user-signup-employer .register-employer-form .text-or span:first-child, .user-signup-employer .login-employer-form .text-or span:first-child {
        float: left; }
  .user-signup-employer .register-employer-form .terms {
    text-align: center;
    color: #AAAAAA;
    font-weight: 600;
    font-size: 15px; }
    .user-signup-employer .register-employer-form .terms a {
      display: block; }
  .user-signup-employer .login-employer-form {
    display: none; }
    .user-signup-employer .login-employer-form .remember-me {
      padding-bottom: 30px;
      margin-bottom: 30px; }
      .user-signup-employer .login-employer-form .remember-me > div {
        float: right;
        text-align: right; }
        .user-signup-employer .login-employer-form .remember-me > div:first-child {
          float: left;
          text-align: left; }
      .user-signup-employer .login-employer-form .remember-me .forgot-password {
        font-weight: 600;
        font-size: 15px; }
  .user-signup-employer .signup-tab {
    width: 100%; }
    .user-signup-employer .signup-tab ul {
      display: inline-block;
      margin: 0;
      width: 100%; }
      .user-signup-employer .signup-tab ul li {
        float: left;
        color: #CCCCCC;
        font-size: 0.875rem;
        line-height: 0.875rem;
        list-style-type: none;
        padding: 12px 20px;
        border-bottom: 1px solid #ddd; }
        .user-signup-employer .signup-tab ul li.active {
          border-bottom: 0;
          border-top: 2px solid #60CDF6;
          border-right: 1px solid #CCCCCC;
          border-left: 1px solid #CCCCCC; }
          .user-signup-employer .signup-tab ul li.active a {
            color: #60CDF6; }
        .user-signup-employer .signup-tab ul li a {
          color: #CCCCCC;
          font-weight: bold;
          font-size: 1.125rem;
          text-transform: uppercase; }
        .user-signup-employer .signup-tab ul li:last-child {
          border-right: 0;
          width: 20%; }
          @media screen and (min-width: 64em) {
            .user-signup-employer .signup-tab ul li:last-child {
              width: 40%; } }
  .user-signup-employer .password-visible {
    position: absolute;
    right: 0;
    top: 15px;
    line-height: 1.875rem;
    font-size: 11px;
    font-weight: 600; }

.reveal-signup h2 {
  color: #00AEEF;
  font-weight: 600;
  font-size: 20px;
  padding: 10px; }
  @media screen and (min-width: 64em) {
    .reveal-signup h2 {
      padding: 20px;
      font-size: 30px; } }

.reveal-signup .close-button {
  margin: 30px 10px; }
  @media screen and (min-width: 64em) {
    .reveal-signup .close-button {
      margin: 47px 20px; } }

.reveal-signup .article-content {
  height: 400px;
  overflow-y: scroll;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 30px; }

.reveal-signup .tnc-footer {
  text-align: center; }
  .reveal-signup .tnc-footer button {
    margin: 20px 0 50px 0;
    color: #00AEEF;
    font-weight: 600;
    font-size: 17px;
    border: 1px solid #40C2F3;
    border-radius: 25px;
    padding: 10px 50px; }

.user-signup {
  margin-top: 1rem; }
  .user-signup .terms {
    color: #8E8E93;
    text-align: center;
    font-size: 1rem; }
  .user-signup .terms a {
    display: block; }
  .user-signup .agree-email .md-checkbox {
    width: 77%; }
  @media screen and (min-width: 64em) {
    .user-signup .form-container {
      padding-left: 11.1875rem;
      padding-right: 11.1875rem; }
    .user-signup .terms {
      text-align: center; } }

.signup-response {
  margin-top: 1rem; }
  .signup-response .msg-signup {
    text-align: center; }
    .signup-response .msg-signup span {
      display: block; }
    .signup-response .msg-signup.first-child {
      margin-bottom: 3.125rem; }
  @media screen and (min-width: 64em) {
    .signup-response .msg-signup span {
      display: inline; } }

.accept-switch {
  overflow: hidden;
  display: inline-block;
  padding: 0 0.625rem 0 0;
  float: left; }
  .accept-switch input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden; }
  .accept-switch label {
    float: left;
    margin: 0;
    display: inline-block;
    color: #919191;
    background-color: #f8f8f8;
    font-size: 12px;
    line-height: 20px;
    font-weight: normal;
    text-align: center;
    text-shadow: none;
    padding: 0.0625rem 0.5rem;
    border: 2px solid #ceced2;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out; }
    .accept-switch label:hover {
      cursor: pointer; }
  .accept-switch input:checked + label {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: white; }
  .accept-switch .accept-email + label {
    border-right: 0; }
  .accept-switch .reject-email + label {
    border-left: 0; }
  .accept-switch .accept-email:checked + label {
    background-color: #1b344a; }
  .accept-switch .reject-email:checked + label {
    background-color: #7f3f98; }
  .accept-switch label:first-of-type {
    border-radius: 45% 0 0 45%; }
  .accept-switch label:last-of-type {
    border-radius: 0 45% 45% 0; }

.agree-email-text {
  font-size: 0.875rem; }

.home-banner {
  width: 100%;
  text-align: center;
  color: #1b344a;
  min-height: 17.8125rem;
  background: #81d3f3 url("../img/generic/gt_m_header_img.jpg") no-repeat 50% 100%;
  background-size: 100%;
  min-height: 12.5rem;
  font-size: 0.875rem; }
  .home-banner .row {
    background: none; }
  .home-banner h1 {
    font-weight: 400; }
    .home-banner h1 span {
      font-weight: 900; }
  .home-banner p {
    margin-bottom: 0.3125rem; }
  .home-banner h1 {
    font-size: 1.375rem;
    margin: 0; }
  .home-banner h2 {
    font-weight: 400;
    font-size: 0.9375rem;
    margin: 0.9375rem 0 0; }
  .home-banner h3 {
    font-weight: 400;
    font-size: 0.9375rem;
    color: #5f7b87; }
  .home-banner p {
    margin-bottom: 0; }
  .home-banner .button {
    font-weight: 600;
    background-color: #7f3f98;
    min-width: 8.75rem;
    padding: 0.625rem 0; }
    .home-banner .button:hover {
      background-color: #453168; }
  .home-banner .welcome-container h1 {
    margin: 1.25rem 0 0; }
  @media screen and (min-width: 64em) {
    .home-banner {
      background: #81d3f3 url("../img/generic/gt_d_header_img.jpg") no-repeat 50% 100%;
      background-size: auto 100%;
      min-height: 20.5625rem;
      font-size: 1.125rem; }
      .home-banner h1 {
        font-size: 2.1875rem;
        margin: 2.1875rem 0 0; }
      .home-banner h2 {
        font-size: 1.5625rem;
        margin: 2.5rem 0 0; }
      .home-banner h3 {
        font-size: 1rem;
        padding-bottom: 0.9375rem; }
      .home-banner p {
        font-weight: 400;
        font-size: 1rem; }
      .home-banner .button {
        padding: 0.9375rem 0;
        min-width: 12.5rem; }
      .home-banner .welcome-container {
        width: 100%;
        background: url("../img/generic/sami-parachute.png") no-repeat 30% 100%;
        margin: 48px auto 0;
        padding: 1.5625rem 0 0.625rem;
        background-size: 80px; }
        .home-banner .welcome-container h1 {
          margin: 2.8125rem 0 0; }
        .home-banner .welcome-container h2 {
          margin: 0; } }

.home-container .states {
  border-bottom: 1px solid #EEE;
  padding-bottom: 30px;
  padding-top: 1.875rem; }
  .home-container .states .column, .home-container .states .columns {
    padding-bottom: 20px; }
    .home-container .states .column .number, .home-container .states .columns .number {
      font-weight: bold;
      font-size: 1.5rem;
      color: #002244;
      text-align: center;
      display: block; }
    .home-container .states .column .title, .home-container .states .columns .title {
      font-weight: normal;
      font-size: 0.6875rem;
      display: block;
      text-align: center;
      text-transform: uppercase;
      color: #555; }
    .home-container .states .column .text, .home-container .states .columns .text {
      text-align: center;
      font-size: 0.75rem;
      color: #00AEEF;
      font-weight: normal;
      display: block;
      padding-top: 12px; }
      .home-container .states .column .text a, .home-container .states .columns .text a {
        text-decoration: underline; }
    @media screen and (min-width: 64em) {
      .home-container .states .column, .home-container .states .columns {
        padding-bottom: 0px; }
        .home-container .states .column div, .home-container .states .columns div {
          border-right: 1px solid #EEE; }
        .home-container .states .column .number, .home-container .states .columns .number {
          font-size: 1.875rem; }
        .home-container .states .column .title, .home-container .states .columns .title {
          font-size: 0.75rem; } }
    .home-container .states .column:last-child div, .home-container .states .columns:last-child div {
      border: 0; }

.home-container .search-container {
  background: linear-gradient(180deg, #E4EEF5 0%, #E9F2F5 0.01%, #DFEEFF 80.21%, #D1E5F8 100%), #C4C4C4; }
  .home-container .search-container .search-sec .search-bar {
    padding-bottom: 50px;
    background: none; }
    @media screen and (max-width: 63.9375em) {
      .home-container .search-container .search-sec .search-bar .algolia-autocomplete .aa-dropdown-menu {
        top: 40% !important; } }
    @media screen and (min-width: 64em) {
      .home-container .search-container .search-sec .search-bar .algolia-autocomplete .aa-dropdown-menu {
        left: 60% !important;
        margin-top: -2.1875rem; } }
    .home-container .search-container .search-sec .search-bar .search-box {
      max-width: 57.8125rem;
      margin: 0 auto;
      border-radius: 0.25rem;
      background: white;
      padding: 0.9375rem; }
      .home-container .search-container .search-sec .search-bar .search-box .job-segment {
        width: 100%; }
        @media screen and (min-width: 64em) {
          .home-container .search-container .search-sec .search-bar .search-box .job-segment {
            width: 10.3125rem; } }
      .home-container .search-container .search-sec .search-bar .search-box .btn-search {
        width: 5.625rem; }
      .home-container .search-container .search-sec .search-bar .search-box .search-wrap {
        width: 100%; }
        @media screen and (min-width: 64em) {
          .home-container .search-container .search-sec .search-bar .search-box .search-wrap {
            width: 50%; } }
      .home-container .search-container .search-sec .search-bar .search-box .auto-budget {
        display: none; }
      .home-container .search-container .search-sec .search-bar .search-box .property-rent {
        display: none;
        min-width: 9.0625rem;
        width: 9.0625rem; }
      .home-container .search-container .search-sec .search-bar .search-box .property-sale {
        display: none;
        min-width: 9.0625rem;
        width: 9.0625rem; }
    .home-container .search-container .search-sec .search-bar .homepage-segment {
      font-size: 0.8125rem;
      border-radius: 3px;
      display: inline-block;
      position: relative;
      width: 100%; }
      .home-container .search-container .search-sec .search-bar .homepage-segment select {
        height: auto;
        line-height: 1.5;
        outline: none;
        background-image: url("/img/generic/arrowdwn.png");
        background-size: 24px; }
      @media screen and (max-width: 63.9375em) {
        .home-container .search-container .search-sec .search-bar .homepage-segment {
          margin-top: 0.5rem; } }
      @media screen and (min-width: 64em) {
        .home-container .search-container .search-sec .search-bar .homepage-segment {
          width: 11.25rem;
          min-width: 11.25rem; } }
      .home-container .search-container .search-sec .search-bar .homepage-segment.location {
        display: inline-block; }
        @media screen and (min-width: 64em) {
          .home-container .search-container .search-sec .search-bar .homepage-segment.location {
            width: 9.125rem;
            min-width: 9.125rem; } }
  .home-container .search-container .search-sec .search-head {
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    color: #002244;
    padding-top: 1.875rem;
    display: block; }

.home-container .home-header {
  margin-top: 1.5625rem; }
  .home-container .home-header h2 {
    font-size: 1.375rem;
    font-weight: 700; }
  .home-container .home-header p {
    line-height: 1.375rem; }
  @media screen and (min-width: 64em) {
    .home-container .home-header h2 {
      font-size: 1.875rem; } }

.home-container .choose-vertical {
  margin-bottom: 0.625rem;
  margin-top: 1.875rem; }
  .home-container .choose-vertical .list-part-1 li {
    min-height: 5rem; }
  .home-container .choose-vertical .list-part-2 li {
    min-height: 50px; }
  .home-container .choose-vertical .bottom-text {
    margin: 1.875rem 0; }
    @media screen and (min-width: 64em) {
      .home-container .choose-vertical .bottom-text {
        margin: 30px 40px; } }
    .home-container .choose-vertical .bottom-text p {
      font-size: 13px; }
  .home-container .choose-vertical a {
    display: block;
    margin: 0.625rem 0; }
    @media screen and (min-width: 64em) {
      .home-container .choose-vertical a {
        padding: 0.3125rem 0.9375rem 1.25rem;
        text-align: center; } }
    .home-container .choose-vertical a span.category-icon {
      transition: background-color 0.5s ease; }
    .home-container .choose-vertical a:hover span.category-icon {
      transition: background-color 0.5s ease; }
  .home-container .choose-vertical .category-title {
    display: inline;
    color: #002244;
    font-size: 1.125rem;
    font-weight: bold; }
    @media screen and (min-width: 64em) {
      .home-container .choose-vertical .category-title {
        display: block;
        text-align: center; } }
    @media screen and (max-width: 63.9375em) {
      .home-container .choose-vertical .category-title {
        position: relative;
        top: -12px; } }
  .home-container .choose-vertical .category-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-block;
    border-radius: 50%;
    margin: 0 auto;
    position: relative; }
    @media screen and (min-width: 64em) {
      .home-container .choose-vertical .category-icon {
        width: 5rem;
        height: 5rem; } }
    .home-container .choose-vertical .category-icon img {
      position: absolute;
      max-width: 120%;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%); }
  .home-container .choose-vertical .view-more-list {
    float: right;
    color: #00AEEF;
    font-weight: 600; }
    .home-container .choose-vertical .view-more-list a {
      padding: 0;
      margin: 0;
      font-size: 0.8125rem; }
  @media screen and (min-width: 64em) {
    .home-container .choose-vertical .list-adv {
      margin: 0 40px; } }
  .home-container .choose-vertical .list-adv .view-more-list {
    float: left;
    font-size: 11px; }
  .home-container .choose-vertical .list-adv .popular-tags {
    border-bottom: 3px solid #C4C4C4;
    margin: 10px 0;
    padding: 10px 0;
    float: left; }
    .home-container .choose-vertical .list-adv .popular-tags .title {
      font-weight: bold;
      font-size: 12px;
      line-height: 120%;
      color: #AAAAAA;
      text-transform: uppercase;
      margin-bottom: 20px; }
    .home-container .choose-vertical .list-adv .popular-tags a {
      display: inline;
      padding: 0;
      margin: 0; }
    .home-container .choose-vertical .list-adv .popular-tags .tage-name {
      border: 1px solid #60CDF6;
      box-sizing: border-box;
      border-radius: 14px;
      padding: 6px 10px;
      font-size: 11px;
      float: left;
      margin-right: 5px;
      margin-bottom: 15px;
      font-weight: 600; }
  .home-container .choose-vertical .list-adv ul {
    list-style-type: none;
    margin: 0; }
    .home-container .choose-vertical .list-adv ul li {
      margin-bottom: 0.3125rem;
      border-bottom: 1px solid #EEE;
      padding-bottom: 0.9375rem; }
      .home-container .choose-vertical .list-adv ul li a {
        padding: 0;
        margin: 0; }
      .home-container .choose-vertical .list-adv ul li .img-warpper {
        padding-bottom: 0.625rem; }
        .home-container .choose-vertical .list-adv ul li .img-warpper img {
          max-width: 100%; }
        @media screen and (max-width: 63.9375em) {
          .home-container .choose-vertical .list-adv ul li .img-warpper {
            width: 35%;
            float: left;
            padding-right: 10px; } }
      .home-container .choose-vertical .list-adv ul li:last-child {
        border: 0; }
      .home-container .choose-vertical .list-adv ul li .title {
        font-size: 0.8125rem;
        color: #333333;
        text-align: left; }
      .home-container .choose-vertical .list-adv ul li .price {
        font-weight: bold;
        font-size: 0.8125rem;
        color: #000000;
        text-align: left; }
  .home-container .choose-vertical .guides {
    background: #EFFAFE;
    font-size: 13px;
    color: #333333;
    padding: 20px; }
    .home-container .choose-vertical .guides .guides-title {
      font-weight: bold;
      font-size: 18px;
      color: #002244; }
    .home-container .choose-vertical .guides .guides-articles ul {
      list-style-type: none;
      margin: 0; }
      .home-container .choose-vertical .guides .guides-articles ul li {
        width: 100%;
        float: left;
        margin-bottom: 10px; }
        .home-container .choose-vertical .guides .guides-articles ul li a {
          padding: 0; }
        .home-container .choose-vertical .guides .guides-articles ul li .img-warpper {
          width: 35%;
          float: left;
          padding-right: 10px; }
        .home-container .choose-vertical .guides .guides-articles ul li .title-block {
          text-align: left;
          color: #333333;
          font-size: 13px; }
  .home-container .choose-vertical .whats-new {
    margin: 20px 0;
    font-size: 13px;
    color: #333333;
    background: #D7F2FD;
    padding: 20px; }
    .home-container .choose-vertical .whats-new a {
      display: inline;
      padding: 0; }
    .home-container .choose-vertical .whats-new img {
      padding: 10px 0; }
    .home-container .choose-vertical .whats-new .whats-new-title {
      font-weight: bold;
      font-size: 18px;
      color: #002244; }
  .home-container .choose-vertical .contacts {
    margin: 20px 0;
    font-size: 13px;
    background: #FAFAFA;
    padding: 20px; }
    .home-container .choose-vertical .contacts .contacts-title {
      font-weight: bold;
      font-size: 18px;
      color: #002244; }
    .home-container .choose-vertical .contacts .contacts-details {
      margin-top: 10px; }
      .home-container .choose-vertical .contacts .contacts-details .columns {
        display: flex; }
        .home-container .choose-vertical .contacts .contacts-details .columns div.support-txt {
          margin-left: 20px;
          font-weight: 600;
          font-size: 15px;
          color: #AAAAAA; }
          .home-container .choose-vertical .contacts .contacts-details .columns div.support-txt span {
            color: #7F3F98;
            font-size: 18px;
            font-weight: 800; }
        .home-container .choose-vertical .contacts .contacts-details .columns span.gt-icon {
          font-size: 30px; }

@media screen and (min-width: 48em) {
  .home-container {
    min-height: 15.9375rem; } }

@media screen and (min-width: 64em) {
  .home-container .home-were-do-guide {
    margin-top: 83px; } }

.home-container .home-were-do-guide a {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.002em;
  color: #7F3F98;
  font-weight: 500; }
  .home-container .home-were-do-guide a:hover {
    text-decoration: underline; }

.home-container .banner-wrap {
  text-align: center; }
  .home-container .banner-wrap .advert-dfp {
    border-bottom: 0; }

.welcome-text {
  text-align: center;
  padding: 0.9375rem 0 0;
  border-top: 1px #ceced2 solid; }
  .welcome-text h1 {
    color: #60cdf6;
    font-size: 1.375rem;
    margin: 0;
    font-weight: 300; }
    .welcome-text h1 span {
      font-weight: 900;
      color: #1b344a; }
      .welcome-text h1 span.text-on-theme {
        color: #60cdf6; }
  .welcome-text h3 {
    font-size: 14px;
    color: #7e7e7e;
    font-weight: 400; }

.popup-on-redirect {
  position: relative; }
  .popup-on-redirect .welcome-content {
    margin: 2.5rem 0.625rem; }
    .popup-on-redirect .welcome-content h2 {
      font-size: 1.5rem;
      font-weight: 600; }
    .popup-on-redirect .welcome-content h3 {
      font-size: 1rem;
      text-transform: uppercase; }
    .popup-on-redirect .welcome-content p {
      font-size: 1rem;
      color: #919191; }
      .popup-on-redirect .welcome-content p.highlight {
        text-transform: uppercase;
        color: #000; }
        .popup-on-redirect .welcome-content p.highlight span {
          color: #28ace2; }
    .popup-on-redirect .welcome-content .gt-welcome-logo {
      max-width: 10.9375rem;
      margin-bottom: 0.9375rem; }
    .popup-on-redirect .welcome-content .content-seperator {
      border-bottom: 1px #ceced2 dotted;
      padding: 0.3125rem;
      max-width: 60%;
      margin: 0 auto 1.25rem; }
    .popup-on-redirect .welcome-content .vertical-btn-group .button-group a {
      margin: 0.3125rem;
      border: 1px #60cdf6 solid;
      background: transparent;
      color: #60cdf6;
      width: 100%;
      font-weight: 600; }
      @media screen and (min-width: 48em) {
        .popup-on-redirect .welcome-content .vertical-btn-group .button-group a {
          min-width: 7.8125rem;
          width: auto; } }
      .popup-on-redirect .welcome-content .vertical-btn-group .button-group a:hover {
        background: #60cdf6;
        color: white; }
      .popup-on-redirect .welcome-content .vertical-btn-group .button-group a.full-btn {
        width: 80%;
        padding: 1.25rem;
        font-size: 1rem; }
        .popup-on-redirect .welcome-content .vertical-btn-group .button-group a.full-btn span {
          font-weight: 700; }
  .popup-on-redirect .overlay-close {
    position: absolute;
    right: 1.125rem;
    top: 18px; }
    .popup-on-redirect .overlay-close:before {
      font-size: 1.25rem;
      padding: 5px; }
    .popup-on-redirect .overlay-close:hover:before {
      color: #60cdf6; }

.my-ads .ad-title {
  text-align: center;
  padding-top: 1.25rem; }

.my-ads .wizard {
  background: white;
  opacity: 1; }
  .my-ads .wizard h2 {
    text-transform: uppercase;
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
    line-height: 1.375rem; }
    .my-ads .wizard h2.package-title {
      text-transform: none;
      text-align: center;
      font-size: 20px;
      margin-bottom: 20px;
      color: #aaaaaa;
      font-weight: bold;
      margin-top: 0px; }
  .my-ads .wizard .packages {
    border-radius: 6px;
    margin: 1.875rem auto; }
    @media screen and (min-width: 64em) {
      .my-ads .wizard .packages {
        border: 1px solid #CECED2; } }
    @media screen and (min-width: 64em) {
      .my-ads .wizard .packages {
        width: 66.5rem;
        padding: 1.25rem 7.5rem; } }
  .my-ads .wizard .go-back-step {
    color: white;
    background: #ceced2;
    padding: 2px 6px 0px 6px;
    min-width: 4rem;
    float: left; }
  .my-ads .wizard .badge-wrap .badges.badge {
    padding: 0.3125rem 0.9375rem;
    text-align: left;
    float: left;
    width: 100%;
    margin: 0; }

.my-ads .row-gutter {
  margin-bottom: 1.25rem; }

.my-ads .msg-no-results p.logo-container {
  margin-top: 1.875rem; }
  @media screen and (min-width: 64em) {
    .my-ads .msg-no-results p.logo-container {
      margin-top: 3.75rem; } }

.my-ads .db-search-wrapper {
  float: right;
  padding-top: 1.25rem; }
  @media screen and (min-width: 48em) {
    .my-ads .db-search-wrapper {
      width: 70%;
      float: left;
      padding: 0; } }

.my-ads span.checkall-sec {
  display: inline-block;
  padding: 0.3125rem 0.9375rem 0.625rem; }
  .my-ads span.checkall-sec .md-checkbox-label {
    color: #000;
    font-weight: 300;
    font-size: 1rem; }

.my-ads .card-wrap {
  padding: 0.9375rem 0.9375rem 0.9375rem 0.625rem; }
  @media screen and (max-width: 47.9375em) {
    .my-ads .card-wrap {
      padding: 0.9375rem 0.9375rem 0 0.9375rem; } }
  .my-ads .card-wrap .details .column, .my-ads .card-wrap .details .columns {
    padding-left: 0;
    padding-right: 0.625rem; }
  @media screen and (min-width: 48em) {
    .my-ads .card-wrap .details {
      padding-left: 1.25rem !important; } }

.my-ads .bulk-wrapper {
  width: auto;
  float: left;
  padding-left: 1.5rem; }

.my-ads .btn-batch-apply span {
  font-weight: 400;
  padding-left: 0.25rem; }

.my-ads .column-menu {
  width: 60%;
  float: left; }
  .my-ads .column-menu select {
    text-transform: capitalize;
    font-weight: 600;
    border: 1px solid #60cdf6;
    font-size: 0.8125rem;
    border-radius: 0.25rem;
    background-image: url("../img/generic/arrow-down-icon-blue.svg");
    background-size: 1rem;
    outline: none; }

.my-ads .column-btn {
  width: 40%;
  float: left;
  padding-left: 0.625rem; }
  .my-ads .column-btn .button {
    border-radius: 3px;
    font-weight: 600; }

.my-ads .actions-container {
  position: relative;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column-reverse;
  align-content: space-between;
  align-items: center;
  justify-content: space-between;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
  margin-top: 0.9375rem; }
  @media screen and (min-width: 48em) {
    .my-ads .actions-container {
      flex-direction: column;
      align-items: flex-end;
      margin-left: 0;
      margin-right: 0;
      margin-top: 0; } }

.my-ads .align-middle {
  display: flex;
  height: 100%; }

.my-ads .myads-select-vertical select {
  text-transform: capitalize;
  font-weight: 600;
  border: 1px solid #60cdf6; }

.my-ads .section-results {
  margin-top: 0.625rem;
  margin-bottom: 0.9375rem; }
  .my-ads .section-results h3 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.125rem; }
  .my-ads .section-results .result-count {
    font-size: 0.875rem;
    color: #959595;
    line-height: 2.625rem; }

.my-ads .search-bar-container {
  width: 100%; }
  @media screen and (min-width: 64em) {
    .my-ads .search-bar-container {
      width: 74%; } }
  .my-ads .search-bar-container .search-bar {
    padding: 0;
    background: none; }
    .my-ads .search-bar-container .search-bar .search-selection {
      height: 100%; }
    .my-ads .search-bar-container .search-bar .search-wrap {
      width: 100%;
      border: 1px solid #c2c2c2;
      height: 2.5rem; }
    .my-ads .search-bar-container .search-bar .search-cars {
      padding: 0; }
    .my-ads .search-bar-container .search-bar .search-selection .tag {
      padding: 0 0.75rem; }

.my-ads .alert {
  margin-top: 1rem; }

@media screen and (max-width: 47.9375em) {
  .my-ads .search-result {
    margin-top: 1rem; } }

.my-ads .info-boost {
  color: #8E8E93;
  font-size: 0.8125rem;
  padding-top: 0.625rem;
  width: 100%;
  font-style: italic; }
  .my-ads .info-boost span {
    font-weight: 600; }

.my-ads .is-boosted {
  float: left;
  margin: 8px 15px 0px 0px; }
  .my-ads .is-boosted span {
    font-size: 12px; }

.my-ads .btn-back-myads {
  min-width: 12.5rem;
  background: none;
  color: #60cdf6;
  text-decoration: underline;
  font-size: 0.75rem;
  margin-top: 1.875rem; }
  .my-ads .btn-back-myads:hover, .my-ads .btn-back-myads:focus {
    background: none;
    color: #60cdf6; }
  @media screen and (min-width: 64em) {
    .my-ads .btn-back-myads {
      position: absolute;
      top: 10px;
      right: 55px;
      margin-top: 0; } }

@media screen and (max-width: 74.9375em) {
  .my-ads .selected-ads {
    margin-top: 3.125rem;
    margin-bottom: 1.875rem;
    max-height: 31.25rem;
    overflow-y: scroll; } }

.my-ads .selected-ads .column:first-child .adList, .my-ads .selected-ads .columns:first-child .adList {
  margin-top: 0; }

.my-ads .selected-ads .adList {
  border: 1px solid #ceced2;
  padding: 0.625rem;
  border-radius: 5px;
  margin-top: 0.625rem; }
  .my-ads .selected-ads .adList label,
  .my-ads .selected-ads .adList .adTitle {
    font-size: 0.8125rem; }
  .my-ads .selected-ads .adList .adTitle {
    color: #62ccf5;
    display: block;
    text-transform: capitalize;
    line-height: 1.3; }
  .my-ads .selected-ads .adList label,
  .my-ads .selected-ads .adList input {
    display: inline-block;
    vertical-align: middle; }
  .my-ads .selected-ads .adList input {
    margin-bottom: 0; }
  .my-ads .selected-ads .adList a {
    display: block; }
  .my-ads .selected-ads .adList label {
    margin: 0;
    text-transform: uppercase; }
    .my-ads .selected-ads .adList label:before {
      content: '';
      width: 0.8125rem;
      height: 0.75rem;
      border: 1px solid #ceced2;
      margin-right: 7px;
      display: inline-block; }
  .my-ads .selected-ads .adList input[type="checkbox"]:checked + label {
    position: relative; }
    .my-ads .selected-ads .adList input[type="checkbox"]:checked + label:before {
      background: #7f3f98;
      border-color: #7f3f98; }
    .my-ads .selected-ads .adList input[type="checkbox"]:checked + label:after {
      width: 8px;
      height: 4px;
      content: '';
      border-left: white 2px solid;
      border-bottom: white 2px solid;
      display: -ms-inline-flexbox;
      display: inline-flex;
      position: absolute;
      left: 3px;
      top: 7px;
      -ms-transform: rotate(-43deg);
      transform: rotate(-43deg);
      -webkit-transform: rotate(-43deg);
      -moz-transform: rotate(-43deg);
      -o-transform: rotate(-43deg); }

.my-ads .chart-header {
  position: relative; }
  .my-ads .chart-header input {
    display: inline-block;
    width: auto;
    margin-right: .5rem;
    padding: .5rem;
    height: 2.4rem;
    margin-top: .5rem; }
    @media screen and (min-width: 64em) {
      .my-ads .chart-header input {
        margin-bottom: 0;
        margin-top: 0; } }
  .my-ads .chart-header label {
    font-weight: 600;
    vertical-align: middle;
    display: inline-block; }
  .my-ads .chart-header .head {
    font-weight: 100;
    line-height: 2.25rem;
    font-size: 1.4375rem; }
    .my-ads .chart-header .head span {
      font-weight: 600; }
  .my-ads .chart-header .button {
    padding: .5rem;
    height: 2.4rem;
    border-radius: 3px;
    margin-left: 0;
    margin-right: .5rem;
    min-width: 6rem; }
    @media screen and (min-width: 64em) {
      .my-ads .chart-header .button {
        margin-bottom: 0; } }
  .my-ads .chart-header .total-views,
  .my-ads .chart-header .selected-ad-title {
    line-height: 2.75rem;
    font-weight: 100;
    font-size: 1.4375rem; }
    .my-ads .chart-header .total-views span,
    .my-ads .chart-header .selected-ad-title span {
      font-weight: 600; }
  .my-ads .chart-header .reference-id {
    padding-bottom: 0.625rem; }
  .my-ads .chart-header .selected-ad-title {
    margin-bottom: 1.25rem; }
  .my-ads .chart-header .view-chart:empty + .separator {
    display: none; }
  .my-ads .chart-header .separator {
    border-bottom: 1px solid #ceced2;
    border-bottom-style: dotted;
    margin-bottom: 1.25rem; }
  .my-ads .chart-header .jobs .separator {
    display: none; }
  .my-ads .chart-header .calendar-selector {
    background-color: #fafafc;
    font-size: 14px;
    padding: 0.625rem 0;
    margin-bottom: 1.25rem; }
    @media screen and (min-width: 64em) {
      .my-ads .chart-header .calendar-selector {
        width: calc(100% - 40px); } }
  .my-ads .chart-header .datepicker-selector {
    float: left; }
    @media screen and (min-width: 64em) {
      .my-ads .chart-header .datepicker-selector {
        float: right;
        text-align: right;
        margin-right: 115px; } }
  .my-ads .chart-header .calendar-title {
    font-size: 14px;
    margin-top: 8px;
    padding-left: 0.625rem;
    display: inline-block; }
  .my-ads .chart-header .display-chart > .column:first-child, .my-ads .chart-header .display-chart > .columns:first-child {
    border-top: none; }
    @media screen and (max-width: 74.9375em) {
      .my-ads .chart-header .display-chart > .column:first-child, .my-ads .chart-header .display-chart > .columns:first-child {
        border-top: 1px solid #ceced2;
        padding-top: 1.875rem; } }
  .my-ads .chart-header .display-chart .msg-no-results p {
    font-size: 1rem; }

.my-ads .text-rejected {
  color: #ff0000; }
  .my-ads .text-rejected:before {
    padding-right: 0.3125rem;
    color: #ff0000; }

.my-ads .action-bar {
  margin-top: 1rem;
  padding-top: 0.625rem;
  border-radius: 2px;
  padding-bottom: 0.625rem;
  background-color: #F0EFF5; }
  @media screen and (min-width: 64em) {
    .my-ads .action-bar {
      padding-top: 1rem;
      padding-bottom: 1rem; } }
  .my-ads .action-bar .button {
    margin-right: 0.375rem;
    border: 1px solid #00AEEF;
    border-radius: 2px;
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    height: 2rem;
    background-color: white;
    font-weight: 600;
    color: #8E8E93;
    margin-bottom: 0; }
    .my-ads .action-bar .button.disabled {
      opacity: .5;
      border-color: #8E8E93; }

.my-ads .no-results .action-bar {
  display: none; }

.my-ads .pdt-summery .tbl .tbl-row .tbl-data {
  padding-left: 0 !important;
  white-space: normal !important; }

.my-ads .pdt-summery .col-1 {
  width: 1.875rem !important; }

.my-ads .pdt-summery .packing-heading .title {
  width: 100% !important; }

.my-ads .card-wrap {
  border: 1px solid #CECED2;
  margin-bottom: 1rem;
  padding-top: 0.9375rem; }

.my-ads .card-wrap.near-expiry .expiry-dt .tbl-data {
  color: #ff0000; }

.my-ads .card-wrap.expired {
  background: none;
  border-color: red; }
  .my-ads .card-wrap.expired .info-boost {
    display: none; }
  .my-ads .card-wrap.expired .hide-for-large .btn-renew {
    border-left: 1px solid #CECED2;
    float: right; }
  .my-ads .card-wrap.expired .exp-date {
    color: #ff0000;
    margin: 1.875rem 0px 0.3125rem 0px;
    font-size: 0.75rem; }
    @media screen and (min-width: 48em) {
      .my-ads .card-wrap.expired .exp-date {
        margin-top: 1.25rem;
        margin-bottom: 0; } }

.my-ads .card-wrap.rejected-ad {
  border: 1px solid red; }
  .my-ads .card-wrap.rejected-ad .btn-boost, .my-ads .card-wrap.rejected-ad .btn-renew, .my-ads .card-wrap.rejected-ad .btn-upgrade {
    display: none !important; }
  .my-ads .card-wrap.rejected-ad .info-boost {
    display: block; }

.my-ads .card-wrap a.view-stats {
  background: url("../img/generic/graph-icon.png") no-repeat 0% 40%;
  background-color: none;
  background-size: 1.375rem;
  color: #28ace2;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin: 0; }
  .my-ads .card-wrap a.view-stats:hover {
    color: #227aa5; }

.my-ads .main-title {
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  font-size: 0.9375rem;
  -moz-transition: color 0.2s ease-in;
  -webkit-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in; }
  .my-ads .main-title:hover {
    -moz-transition: color 0.2s ease-in;
    -webkit-transition: color 0.2s ease-in;
    transition: color 0.2s ease-in; }
  @media screen and (max-width: 47.9375em) {
    .my-ads .main-title {
      display: block; } }
  .my-ads .main-title span {
    font-weight: 400; }

@media screen and (min-width: 48em) {
  .my-ads .title-row {
    padding-left: 1.25rem !important; } }

.my-ads .title {
  color: black;
  line-height: 1.8rem;
  font-weight: 600; }

.my-ads .boost-quota:not(:empty) {
  margin-top: 1rem;
  overflow: hidden;
  margin-bottom: 0.625rem; }

.my-ads .details {
  font-size: .9rem;
  position: relative;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  color: #8E8E93; }
  .my-ads .details .actions-medium {
    font-size: 1rem;
    position: absolute;
    bottom: 0;
    right: 0.9375rem; }

.my-ads .custom-tooltip {
  background: #ff0000;
  color: #FFF; }

.my-ads .custom-tooltip.opened {
  border-bottom: dotted 1px #FFF !important;
  color: #FFF !important; }

.my-ads .actions-medium a.link-item {
  font-size: 1.375rem;
  background: transparent;
  text-align: center;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-block;
  line-height: 1.5;
  color: #60cdf6;
  border-radius: 3px;
  margin-right: 0.1875rem;
  cursor: pointer; }
  .my-ads .actions-medium a.link-item:last-child {
    margin-right: 0; }
  .my-ads .actions-medium a.link-item:before {
    color: #60cdf6;
    margin-top: 0.75rem; }
  @media screen and (min-width: 48em) {
    .my-ads .actions-medium a.link-item {
      width: 2rem;
      height: 2rem;
      margin-top: 0.3125rem;
      font-size: 1.25rem;
      line-height: 1.4; } }

.my-ads .actions-medium a .hide-text {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 0;
  display: inline-block; }

.my-ads .actions-medium a.close_ad-link {
  font-size: 14px;
  margin: 15px 10px 0px 0; }
  .my-ads .actions-medium a.close_ad-link.closed {
    cursor: default;
    color: #484848; }

.my-ads .link span {
  display: block; }

@media screen and (min-width: 48em) {
  .my-ads .myads-badges {
    width: 75%; } }

.my-ads .myads-badges span {
  margin-right: 0.5rem;
  display: block;
  white-space: normal; }

.my-ads .action-medium-top .button,
.my-ads .actions .button {
  background-color: white;
  color: #00AEEF;
  border-radius: 0;
  font-weight: 600;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
  float: left;
  font-size: .9rem; }

.my-ads .action-medium-top {
  float: right;
  width: 100%;
  height: 50%; }
  .my-ads .action-medium-top .button:not(.hide) {
    border: 1px solid #60cdf6;
    padding: 0.875rem 0.75rem;
    width: 50%;
    text-transform: uppercase; }
    .my-ads .action-medium-top .button:not(.hide):last-child {
      margin-right: 0; }
    .my-ads .action-medium-top .button:not(.hide):only-child {
      width: 100%; }
  .my-ads .action-medium-top .button.hide + .button {
    width: 100%; }
  @media screen and (min-width: 48em) {
    .my-ads .action-medium-top .button:not(.hide) {
      margin-bottom: 0.625rem;
      width: 100%;
      border-radius: 20px;
      padding-top: 0.625rem;
      padding-bottom: 0.625rem; } }
  .my-ads .action-medium-top .show {
    animation: anim .2s ease-in-out; }

@media screen and (max-width: 47.9375em) {
  .my-ads .actions-medium {
    margin-bottom: 1rem;
    border-top: 1px solid #f8f8f8;
    display: block;
    width: 100%;
    text-align: center;
    padding-top: 1rem; }
    .my-ads .actions-medium.crm-actions {
      text-align: right;
      margin-right: 0.3125rem;
      margin-bottom: 0; } }

.my-ads .badges-block {
  float: left !important;
  border-radius: 0.25rem; }
  .my-ads .badges-block > .title {
    width: 100%;
    font-weight: 600; }
  .my-ads .badges-block .caption {
    font-weight: 600;
    color: black;
    line-height: 1.8rem; }
  .my-ads .badges-block .details {
    padding-left: 1rem; }

.my-ads .packages {
  background-color: white;
  margin: auto; }
  @media screen and (min-width: 64em) {
    .my-ads .packages {
      width: 100%; } }
  .my-ads .packages .badgeInfo {
    text-align: center;
    font-size: 15px;
    padding: 10px; }
  .my-ads .packages .badges {
    min-height: 0;
    float: left;
    width: 100%;
    padding: 0;
    border: 1px solid #efeef2; }
    .my-ads .packages .badges:hover {
      border: 1px solid #453269; }
    .my-ads .packages .badges.selected {
      border: 1px solid #453269;
      background-color: #f2ebf3; }
      .my-ads .packages .badges.selected .amount {
        display: block; }
      .my-ads .packages .badges.selected.existing-pack {
        border: 1px solid #f2ebf3; }
        .my-ads .packages .badges.selected.existing-pack .badges-check-icon {
          display: block; }
    @media screen and (min-width: 64em) {
      .my-ads .packages .badges {
        width: 24.25%; }
        .my-ads .packages .badges:not(:last-child) {
          margin-right: 1%; } }
    @media screen and (min-width: 64em) {
      .my-ads .packages .badges .icon-badge img {
        width: 3.75rem; } }
    .my-ads .packages .badges .name {
      padding-left: 0; }
    .my-ads .packages .badges .badges-card {
      position: relative;
      padding: 0.75rem;
      width: 100%;
      float: left; }
      @media screen and (min-width: 64em) {
        .my-ads .packages .badges .badges-card {
          min-height: 14.375rem; } }
      .my-ads .packages .badges .badges-card .badges-check-icon {
        margin: 0;
        left: 1.25rem;
        top: 1.25rem; }
      .my-ads .packages .badges .badges-card .icon-badge {
        left: 10px;
        top: 10px; }
        @media screen and (min-width: 64em) {
          .my-ads .packages .badges .badges-card .icon-badge {
            position: initial;
            right: 0.625rem;
            bottom: 0.625rem;
            margin: 0 auto;
            margin-top: 10px;
            margin-bottom: 20px;
            width: 30%; } }
      .my-ads .packages .badges .badges-card .name {
        margin: 0;
        width: 100%;
        float: left;
        text-align: center; }
        .my-ads .packages .badges .badges-card .name h4 {
          font-size: 16px;
          font-weight: 700;
          color: #000;
          float: none;
          text-align: center;
          margin: 0; }
        .my-ads .packages .badges .badges-card .name .badge-name {
          font-size: 1rem;
          line-height: 1.125rem;
          max-width: 75%; }
        .my-ads .packages .badges .badges-card .name .amount {
          font-size: 1.375rem;
          width: 100%;
          float: left;
          padding: 0;
          text-align: center;
          top: 0;
          position: initial; }
        .my-ads .packages .badges .badges-card .name .currency {
          font-size: 1rem; }
        .my-ads .packages .badges .badges-card .name .desc {
          font-size: 0.8125rem;
          line-height: 1.125rem;
          margin: 0;
          font-weight: 400; }
  .my-ads .packages .badges-details {
    padding: 0px;
    margin: 0px 0 50px 0;
    display: block; }
    .my-ads .packages .badges-details .badge-message {
      padding-top: 15px; }
      .my-ads .packages .badges-details .badge-message .small-text-1 {
        padding: 5px 15px;
        font-size: 13px; }
      .my-ads .packages .badges-details .badge-message .t-name {
        font-size: 13px;
        background: #F2EBF4;
        color: #7F3F98;
        margin-left: 15px;
        padding: 10px 0 10px 10px; }
        .my-ads .packages .badges-details .badge-message .t-name a {
          font-weight: bold; }
      .my-ads .packages .badges-details .badge-message .t-value {
        font-size: 13px;
        width: 40%;
        text-align: right;
        padding: 10px 0 0 5px; }
        .my-ads .packages .badges-details .badge-message .t-value span {
          color: #7F3F98;
          font-weight: bold; }
  .my-ads .packages .sub-tot-amt {
    padding: 0 15px; }
    .my-ads .packages .sub-tot-amt .row {
      padding: 0.625rem 0;
      border-top: 1px solid #ECEAF0;
      font-size: 13px;
      color: #555555; }
      .my-ads .packages .sub-tot-amt .row .t-name {
        font-weight: normal;
        padding: 0; }
      .my-ads .packages .sub-tot-amt .row .t-value {
        font-weight: bold;
        padding: 0;
        text-align: right; }
      .my-ads .packages .sub-tot-amt .row .t-value-amt {
        font-weight: bold;
        padding: 0;
        text-align: right;
        color: #7F3F98; }
      .my-ads .packages .sub-tot-amt .row .t-name-feature {
        font-size: 12px;
        color: #7F3F98;
        padding: 0; }
        .my-ads .packages .sub-tot-amt .row .t-name-feature span {
          font-weight: bold;
          color: #3fa5d7; }
  .my-ads .packages .tot-amt {
    background: #9F6FB2;
    color: #ffffff;
    border-radius: 0 0 8px 8px;
    padding: 20px;
    text-align: center; }
    .my-ads .packages .tot-amt .radio-option {
      color: #7F3F98;
      text-align: center;
      background: #fff;
      border-radius: 10px;
      padding: 10px; }
      .my-ads .packages .tot-amt .radio-option.current-p {
        background: #BF9FCB; }
        .my-ads .packages .tot-amt .radio-option.current-p .md-radio-label {
          background: url(../img/generic/group.png);
          background-repeat: no-repeat;
          background-position: center;
          display: block;
          height: 24px; }
      .my-ads .packages .tot-amt .radio-option .md-radio-input {
        position: absolute;
        width: 0;
        height: 0;
        margin: 0;
        padding: 0;
        opacity: 0;
        -webkit-appearance: none;
        border: none; }
  .my-ads .packages .button {
    font-weight: 600;
    min-width: 8.75rem;
    margin-left: 1rem; }
    @media screen and (min-width: 48em) {
      .my-ads .packages .button {
        min-width: 11.25rem;
        font-size: .95rem; } }
  .my-ads .packages .total-block .currency {
    line-height: 1.75rem; }
    @media screen and (min-width: 64em) {
      .my-ads .packages .total-block .currency {
        line-height: 1.875rem; } }
  .my-ads .packages .total-block {
    margin-bottom: 1rem;
    width: 100%;
    float: left;
    border-radius: 0.25rem; }
    .my-ads .packages .total-block .title, .my-ads .packages .total-block .amount {
      font-weight: 300;
      color: #484848;
      padding-bottom: 0; }
    .my-ads .packages .total-block .amount {
      width: 100%; }
    .my-ads .packages .total-block hr {
      margin: 0.625rem auto;
      border-color: #ceced2; }
    .my-ads .packages .total-block .sub-total-sec {
      border-radius: 0.25rem 0.25rem 0 0;
      background-color: #f6f5f8;
      padding: 0.625rem 0.625rem 0 0.625rem; }
      .my-ads .packages .total-block .sub-total-sec .title, .my-ads .packages .total-block .sub-total-sec .amount {
        font-size: 0.9375rem; }
        @media screen and (min-width: 64em) {
          .my-ads .packages .total-block .sub-total-sec .title, .my-ads .packages .total-block .sub-total-sec .amount {
            font-size: 1.5625rem; } }
    .my-ads .packages .total-block .vat-percent-sec {
      background-color: #f6f5f8;
      padding: 0 0.625rem 0.625rem 0.625rem; }
      .my-ads .packages .total-block .vat-percent-sec .title, .my-ads .packages .total-block .vat-percent-sec .amount {
        font-size: 0.75rem; }
        @media screen and (min-width: 64em) {
          .my-ads .packages .total-block .vat-percent-sec .title, .my-ads .packages .total-block .vat-percent-sec .amount {
            font-size: 0.9375rem; } }
    .my-ads .packages .total-block .grand-total-sec {
      border-radius: 0 0 0.25rem 0.25rem;
      padding: 0.625rem;
      background-color: #453269; }
      .my-ads .packages .total-block .grand-total-sec .title, .my-ads .packages .total-block .grand-total-sec .amount {
        font-size: 1.125rem;
        color: white; }
        @media screen and (min-width: 64em) {
          .my-ads .packages .total-block .grand-total-sec .title, .my-ads .packages .total-block .grand-total-sec .amount {
            font-size: 1.875rem; } }
  .my-ads .packages .listings-adpackage {
    text-align: center; }
    .my-ads .packages .listings-adpackage .pdt-summery {
      display: inline-block; }
  .my-ads .packages .listings-adpost {
    text-align: center; }
    .my-ads .packages .listings-adpost fieldset {
      margin: 0;
      border: 0;
      padding: 0; }

.my-ads .actions .button-group {
  margin-bottom: 0; }

.my-ads .actions .button {
  box-shadow: 0 0 0 1px #ceced2;
  border-collapse: collapse;
  text-transform: uppercase;
  display: inline-block;
  width: 33.3%; }
  .my-ads .actions .button:last-child {
    border-right: none; }
  .my-ads .actions .button:hover {
    background: #00AEEF;
    color: #fff; }

.my-ads .actions.col-2 .button {
  width: 50%; }

.my-ads .actions.all .btn-edit,
.my-ads .actions.all .btn-renew,
.my-ads .actions.all .btn-boost {
  width: 22%; }

.my-ads .actions.all .btn-upgrade {
  width: 34%; }

.my-ads .actions .btn-highlight,
.my-ads .action-medium-top .btn-highlight {
  border-color: #60cdf6;
  background-color: #60cdf6;
  padding-left: 5px;
  padding-right: 5px;
  color: white; }
  .my-ads .actions .btn-highlight:hover,
  .my-ads .action-medium-top .btn-highlight:hover {
    background-color: #3fa5d7; }

@keyframes anim {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0;
    transform: scale(0); }
  100% {
    opacity: 1;
    transform: scale(1); } }

.my-ads .tbl {
  table-layout: fixed; }
  .my-ads .tbl .tbl-row .tbl-data {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #888888;
    font-size: 0.8125rem;
    padding-left: 0.3125rem;
    line-height: 1.5rem; }
    .my-ads .tbl .tbl-row .tbl-data.title {
      padding-left: 0.3125rem;
      font-weight: 700; }
  @media screen and (min-width: 48em) {
    .my-ads .tbl .tbl-row .tbl-data {
      text-align: left; }
      .my-ads .tbl .tbl-row .tbl-data.title {
        padding-left: 0; }
      .my-ads .tbl .tbl-row .tbl-data.col-width1 {
        width: 7.1875rem; }
      .my-ads .tbl .tbl-row .tbl-data.col-width2 {
        width: 6.25rem; } }

.my-ads .displayText {
  display: block;
  white-space: normal; }

.my-ads .stats-summery {
  position: relative;
  background: #f5f5f5;
  color: #888888;
  padding: 0.9375rem;
  margin: 1.25rem 0 1.25rem; }
  .my-ads .stats-summery > .tbl {
    width: auto;
    padding: 0 0 0 6.25rem;
    position: relative; }
    .my-ads .stats-summery > .tbl .tbl-row .tbl-data {
      padding-left: 0.625rem;
      font-size: 0.9375rem;
      min-width: 5.3125rem; }
      .my-ads .stats-summery > .tbl .tbl-row .tbl-data.label {
        min-width: 6.25rem; }
      .my-ads .stats-summery > .tbl .tbl-row .tbl-data span {
        background: url("/img/generic/stats-sprite-v1.png") no-repeat 0 3px;
        padding: 0 0 0 2.3125rem;
        height: 1.5625rem;
        display: inline-block; }
      .my-ads .stats-summery > .tbl .tbl-row .tbl-data.email span {
        background-position: 0 -48px; }
      .my-ads .stats-summery > .tbl .tbl-row .tbl-data.call span {
        background-position: 0 -98px; }
      .my-ads .stats-summery > .tbl .tbl-row .tbl-data.sms span {
        background-position: 0 -147px; }
      .my-ads .stats-summery > .tbl .tbl-row .tbl-data.apply span {
        background-position: 0 -201px; }
      .my-ads .stats-summery > .tbl .tbl-row .tbl-data.leads span {
        background: none;
        padding: 0 0 0 0.9375rem; }
      .my-ads .stats-summery > .tbl .tbl-row .tbl-data.refresh a {
        text-decoration: underline;
        font-size: 0.6875rem; }
  .my-ads .stats-summery .tbl-title {
    position: absolute;
    left: 0;
    min-height: 2.5rem; }
  .my-ads .stats-summery span {
    color: #884499;
    font-weight: bold; }
  .my-ads .stats-summery .note {
    color: #888888;
    font-size: 0.6875rem;
    margin-top: -4px; }
  .my-ads .stats-summery .ad-report {
    position: absolute;
    padding: 7px 15px 0px 0px;
    top: 7px;
    right: 10px; }
    .my-ads .stats-summery .ad-report a {
      text-decoration: underline;
      display: inline-block; }
    .my-ads .stats-summery .ad-report label {
      font-size: 0.9375rem;
      color: #888888;
      display: inline-block; }
    .my-ads .stats-summery .ad-report .tooltipMsg {
      top: 0;
      left: 6.25rem;
      width: 20.3125rem; }
  .my-ads .stats-summery .msg-tip {
    position: relative; }
  .my-ads .stats-summery .tooltipMsg {
    position: absolute;
    left: 0;
    width: 32.5rem;
    background: #f5f5f5;
    z-index: 500;
    left: 6.875rem;
    font-size: 12px;
    line-height: 20px;
    top: -0.5rem;
    display: none; }
    .my-ads .stats-summery .tooltipMsg .close {
      display: none;
      position: absolute;
      top: -0.3125rem;
      right: 1.25rem; }
  .my-ads .stats-summery .has-tip {
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 0 0 0 0.25rem; }
    .my-ads .stats-summery .has-tip:before {
      color: #60cdf6;
      font-weight: 700 !important; }
    .my-ads .stats-summery .has-tip:hover + .tooltipMsg, .my-ads .stats-summery .has-tip:active + .tooltipMsg {
      display: block; }
  @media screen and (max-width: 63.9375em) {
    .my-ads .stats-summery > .tbl {
      position: static;
      padding: 0;
      width: 100%;
      display: inline-block; }
      .my-ads .stats-summery > .tbl .tbl-row {
        display: inline-block;
        width: 100%; }
      .my-ads .stats-summery > .tbl .tbl-data {
        padding-left: 0 !important; }
        .my-ads .stats-summery > .tbl .tbl-data.leads {
          display: block;
          width: 100%;
          text-align: center;
          padding: 15px 0px 0px 0px;
          margin: 15px 0px 0px 0px;
          border-top: 1px solid #d3d3d3;
          width: 100%; }
        .my-ads .stats-summery > .tbl .tbl-data.refresh {
          display: block;
          width: 100%;
          text-align: center; }
      .my-ads .stats-summery > .tbl .tbl-title {
        position: static;
        height: 3.125rem;
        border-bottom: 1px solid #d3d3d3;
        margin: 0 0 0.9375rem; }
    .my-ads .stats-summery .note {
      display: inline-block;
      margin: 0 0 0 0.625rem; }
    .my-ads .stats-summery .ad-report {
      display: inline-block;
      border-top: 1px solid #d3d3d3;
      margin: 10px 0px 0px;
      padding: 15px 0px 15px;
      position: relative;
      width: 100%;
      text-align: center; }
      .my-ads .stats-summery .ad-report label {
        display: block; }
      .my-ads .stats-summery .ad-report .tooltipMsg {
        top: 2.4375rem;
        left: 2.375rem;
        width: 100%;
        left: 0;
        padding: 0px 0 0.625rem;
        height: auto; }
        .my-ads .stats-summery .ad-report .tooltipMsg .close {
          position: absolute;
          top: -1.0625rem;
          right: 0.5rem; }
    .my-ads .stats-summery .tooltipMsg {
      left: 0;
      top: 1.25rem;
      height: 4.375rem;
      padding: 0.9375rem 0;
      width: 100%; }
      .my-ads .stats-summery .tooltipMsg .close {
        display: block; } }
  .my-ads .stats-summery .loading-img {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.55);
    text-align: center;
    z-index: 1000;
    width: 100%;
    height: 100%; }
    .my-ads .stats-summery .loading-img img {
      top: 25%;
      width: 1.875rem;
      position: absolute; }

.my-agents #search-stats {
  padding: 0 0 0.9375rem 0;
  color: #aaa;
  font-size: 0.75rem; }

.my-agents .items .item:after {
  content: ", "; }

.my-agents .items .item:last-child:after {
  content: ""; }

.my-agents .featured-agent-card {
  border-left: 6px solid #7f3f98 !important; }

.no-results .apply-wrapper {
  display: none; }

.myads-tabs {
  width: 100%; }
  .myads-tabs ul {
    display: inline-block;
    margin: 0; }
    .myads-tabs ul li {
      float: left;
      width: 6.25rem;
      font-size: 0.875rem;
      line-height: 0.875rem;
      list-style-type: none;
      font-weight: 600;
      box-shadow: 0 0 0 1px #ceced2; }
      .myads-tabs ul li:last-child {
        border-radius: 0;
        border: 0; }
      .myads-tabs ul li a {
        padding: 0.875rem 0.625rem;
        color: #000;
        width: 100%;
        text-align: center;
        display: inline-block;
        text-transform: uppercase;
        background: white; }
        .myads-tabs ul li a:hover {
          background: #e0f4fd;
          zoom: 1; }
        .myads-tabs ul li a.active {
          background: #e0f4fd; }

.my-ads-edit .column:last-child:not(:first-child), .my-ads-edit .columns:last-child:not(:first-child) {
  float: left; }

.my-ads-edit .column.row-gutter, .my-ads-edit .row-gutter.columns {
  margin-bottom: 2.8125rem; }

.my-ads-edit .form-error {
  margin: 0; }

.my-ads-edit .upload-container .form-error {
  line-height: 2.25rem; }

.my-ads-edit .textbox-with-button .button {
  min-width: 100%;
  margin-left: 0;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0.75rem 0.9375rem 0.625rem; }

.my-ads-edit .button {
  font-weight: 600;
  min-width: 8.75rem;
  margin-left: 1rem; }
  @media screen and (min-width: 48em) {
    .my-ads-edit .button {
      min-width: 11.25rem;
      font-size: .95rem; } }

.my-ads-edit .filer-upload-btn .button {
  margin-left: 0;
  float: left; }

.my-ads-edit .algolia-autocomplete #search-location {
  border-top: none;
  border-right: none;
  border-left: none;
  box-shadow: none;
  padding-left: 0; }

.my-ads-edit .lbl-count {
  position: absolute;
  right: 0;
  top: 0.75rem;
  font-size: 0.75rem;
  color: #8E8E93; }

.my-ads-edit .gt-auto-images .jFiler-item-assets {
  position: relative;
  margin-top: 5px !important; }
  .my-ads-edit .gt-auto-images .jFiler-item-assets .text-success {
    display: none !important; }

.my-ads-edit .gt-auto-images .gt-icon-close {
  position: absolute;
  right: 1px;
  top: 2px; }

.my-ads-edit .gt-auto-images .jFiler-item-container .jFiler-item-assets .jFiler-jProgressBar {
  position: absolute;
  width: calc(100% - 2px);
  left: 1px;
  top: -12px;
  margin: 0;
  border-radius: 0; }
  .my-ads-edit .gt-auto-images .jFiler-item-container .jFiler-item-assets .jFiler-jProgressBar .bar {
    border-radius: 0; }

.my-ads-edit .gt-auto-images .custom-radio input {
  position: absolute;
  top: 6px;
  margin: 0; }

.my-ads-edit .gt-auto-images .custom-radio span {
  margin-left: 18px; }

.my-ads-edit .required-field .algolia-autocomplete:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.0625rem;
  width: 1.5625rem;
  border-bottom: 1px solid #ff0000;
  z-index: 100; }

.my-ads-edit .wizard-select[required] ~ .select2-container:not(.select2-container--open):before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  height: 1px;
  width: 25px;
  border-bottom: 1px solid #ff0000;
  display: block; }

.my-ads-edit .opt-selected.optns-row .wizard-select[required] ~ .select2-container:not(.select2-container--open):before {
  display: none; }

.my-ads-edit .md-textfield[required] ~ .md-textfield-label:not(.is-invalid-label):before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 1px;
  width: 25px;
  border-bottom: 1px solid #ff0000;
  display: block; }

.my-ads-edit .md-textfield.is-dirty[required] ~ .md-textfield-label:not(.is-invalid-label):before, .my-ads-edit .md-textfield.is-dirty span.algolia-autocomplete:before {
  display: none; }

.my-ads-edit .upload-container .md-textfield-label {
  padding-left: 0; }

.my-ads-edit .upload-container .upload-doc-url {
  background: #fff;
  padding-left: 0; }

.my-ads-edit .upload-container .upload {
  overflow: hidden;
  border-radius: 0;
  border-color: #ccc;
  background-color: #fff;
  color: black;
  text-transform: uppercase;
  font-size: 0.875rem;
  padding: 10px;
  margin: 0;
  font-weight: normal;
  cursor: pointer;
  position: relative;
  min-width: 20%; }
  .my-ads-edit .upload-container .upload input.fupload {
    position: absolute;
    top: 0 !important;
    left: 0;
    margin: 0;
    padding: 0;
    height: 40px;
    width: 115px;
    z-index: 999;
    display: block;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0); }

.my-ads-edit .upload-container progress {
  display: none; }

.my-favorites .main-title {
  line-height: 1.25;
  font-weight: 600;
  display: inline-block;
  width: 90%; }
  @media screen and (min-width: 48em) {
    .my-favorites .main-title {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      display: inline-block;
      width: auto; } }
  .my-favorites .main-title span {
    display: inline;
    border-bottom: 1px dotted #60cdf6;
    line-height: 1.35; }
    @media screen and (min-width: 48em) {
      .my-favorites .main-title span {
        line-height: 1.25;
        display: inline-block; } }

.my-favorites .title {
  width: 40%; }

.my-favorites .msg-no-results p,
.my-feeds .msg-no-results p {
  color: #000; }

.my-favorites .feeds-count,
.my-feeds .feeds-count {
  padding: 0.625rem 1.25rem;
  font-weight: 600; }

.my-favorites .gt-icon-favourite-on,
.my-feeds .gt-icon-favourite-on {
  margin: 0px 0px 1.25rem 0px; }
  .my-favorites .gt-icon-favourite-on:before,
  .my-feeds .gt-icon-favourite-on:before {
    font-size: 3.75rem;
    color: #60cdf6; }

.my-favorites .item-wrap,
.my-feeds .item-wrap {
  float: left; }

.my-favorites .check-all,
.my-feeds .check-all {
  padding: 0 0.9375rem;
  margin: 0.625rem 0 0.3125rem;
  border-radius: 0.375rem 0.375rem 0 0; }
  .my-favorites .check-all label,
  .my-feeds .check-all label {
    display: inline-block;
    margin: 0.75rem 0;
    width: auto; }
  .my-favorites .check-all .button,
  .my-feeds .check-all .button {
    padding: 0.625rem 1.25rem;
    border: 1px solid #28ace2;
    border-radius: 2px;
    margin: 0 0 0 0.9375rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #484848;
    background: none; }
    .my-favorites .check-all .button:hover,
    .my-feeds .check-all .button:hover {
      color: white;
      background: #28ace2; }
    .my-favorites .check-all .button.disabled,
    .my-feeds .check-all .button.disabled {
      display: none; }

.my-favorites .alert.success,
.my-feeds .alert.success {
  display: none;
  margin: 10px 0 10px 0; }

.my-favorites .pagination,
.my-feeds .pagination {
  text-align: center; }
  .my-favorites .pagination a:hover,
  .my-feeds .pagination a:hover {
    background: none; }
  .my-favorites .pagination .go-to-page,
  .my-feeds .pagination .go-to-page {
    text-align: center;
    display: inline-block;
    padding: 1.0625rem 1.4375rem !important;
    height: 1.75rem;
    font-size: 0.75rem;
    padding: 0;
    border: 1px solid #60cdf6;
    line-height: 0;
    text-transform: uppercase;
    border-radius: 21px;
    color: #60cdf6; }
    @media screen and (min-width: 64em) {
      .my-favorites .pagination .go-to-page,
      .my-feeds .pagination .go-to-page {
        font-size: 1rem; } }
    .my-favorites .pagination .go-to-page:before,
    .my-feeds .pagination .go-to-page:before {
      color: white;
      font-size: 1.75rem;
      line-height: 2.5rem; }
      @media screen and (min-width: 64em) {
        .my-favorites .pagination .go-to-page:before,
        .my-feeds .pagination .go-to-page:before {
          font-size: 2rem;
          line-height: 3rem; } }

.my-favorites .card-wrap,
.my-saved-searches .card-wrap {
  border: 1px solid #CECED2;
  margin-bottom: 1rem;
  padding-top: 0.9375rem; }

.my-favorites .card-wrap,
.my-saved-searches .card-wrap {
  padding: 0.9375rem; }

.my-favorites .actions-container,
.my-saved-searches .actions-container {
  height: 100%;
  display: flex;
  align-items: center;
  text-align: right;
  justify-content: flex-end; }
  @media screen and (min-width: 48em) {
    .my-favorites .actions-container,
    .my-saved-searches .actions-container {
      align-items: flex-end; } }

.my-favorites .details,
.my-saved-searches .details {
  font-size: .9rem;
  position: relative;
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: #8E8E93; }
  @media screen and (min-width: 48em) {
    .my-favorites .details,
    .my-saved-searches .details {
      padding-left: 1.625rem; } }
  .my-favorites .details .actions-medium,
  .my-saved-searches .details .actions-medium {
    height: 50%;
    font-size: 1rem;
    position: absolute;
    bottom: 0;
    right: 0.9375rem; }

.my-favorites .md-checkbox,
.my-saved-searches .md-checkbox {
  margin: -5px 0 0 0; }

@media screen and (max-width: 47.9375em) {
  .my-favorites .actions-medium,
  .my-saved-searches .actions-medium {
    margin-bottom: 1.25rem;
    border-top: 1px solid #f8f8f8;
    display: block;
    width: 100%;
    text-align: center;
    padding-top: 1.25rem; } }

.my-favorites .actions-medium a.link-item,
.my-saved-searches .actions-medium a.link-item {
  font-size: 1.375rem;
  background: #f8f8f8;
  text-align: center;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-block;
  line-height: 1.4;
  color: #60cdf6;
  border-radius: 3px;
  margin-right: 0.4375rem;
  cursor: pointer; }
  .my-favorites .actions-medium a.link-item:last-child,
  .my-saved-searches .actions-medium a.link-item:last-child {
    margin-right: 0; }
  .my-favorites .actions-medium a.link-item:before,
  .my-saved-searches .actions-medium a.link-item:before {
    color: #60cdf6; }
  @media screen and (min-width: 48em) {
    .my-favorites .actions-medium a.link-item,
    .my-saved-searches .actions-medium a.link-item {
      width: 2rem;
      height: 2rem;
      margin-top: 0.3125rem;
      font-size: 1.125rem; } }

.my-favorites .actions-medium a .hide-text,
.my-saved-searches .actions-medium a .hide-text {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 0;
  display: inline-block; }

.my-favorites .actions .button,
.my-saved-searches .actions .button {
  border: 1px solid #ceced2;
  border-collapse: collapse;
  text-transform: uppercase;
  display: inline-block;
  width: 50%;
  float: left;
  margin-bottom: 0;
  color: #00AEEF;
  background: none;
  border-radius: 0; }
  .my-favorites .actions .button:hover,
  .my-saved-searches .actions .button:hover {
    background: #00AEEF;
    color: #fff; }
  .my-favorites .actions .button.btn-highlight,
  .my-saved-searches .actions .button.btn-highlight {
    background: #00AEEF;
    color: #fff; }
    .my-favorites .actions .button.btn-highlight:hover,
    .my-saved-searches .actions .button.btn-highlight:hover {
      background: #3fa5d7; }
  .my-favorites .actions .button.disabled,
  .my-saved-searches .actions .button.disabled {
    opacity: 0.7; }

.my-favorites .tbl .title,
.my-saved-searches .tbl .title {
  line-height: 1.8rem;
  color: #000;
  font-weight: 600; }

.my-favorites .tbl .tbl-data,
.my-saved-searches .tbl .tbl-data {
  font-size: 0.8125rem;
  padding-left: 0.9375rem; }

.my-favorites .myfav-tabs-content,
.my-saved-searches .myfav-tabs-content {
  float: left;
  width: 100%; }
  .my-favorites .myfav-tabs-content:first-child .check-all,
  .my-saved-searches .myfav-tabs-content:first-child .check-all {
    margin-top: 0; }

.my-saved-searches .details {
  padding-left: 0; }
  .my-saved-searches .details .action-details {
    text-align: left; }
    @media screen and (min-width: 48em) {
      .my-saved-searches .details .action-details {
        text-align: right; } }
  .my-saved-searches .details .actions a {
    cursor: pointer;
    font-weight: 600;
    -moz-transition: color 0.2s ease-in;
    -webkit-transition: color 0.2s ease-in;
    transition: color 0.2s ease-in; }
    .my-saved-searches .details .actions a:hover {
      -moz-transition: color 0.2s ease-in;
      -webkit-transition: color 0.2s ease-in;
      transition: color 0.2s ease-in; }
    @media screen and (min-width: 48em) {
      .my-saved-searches .details .actions a {
        display: inline-block;
        padding: 0.3125rem;
        margin-right: 0.5rem; } }
  @media screen and (min-width: 48em) {
    .my-saved-searches .details .actions {
      display: inline-block; } }
  .my-saved-searches .details .switch {
    margin: 0.625rem 0; }
    @media screen and (min-width: 48em) {
      .my-saved-searches .details .switch {
        float: right;
        margin: 0; } }
    .my-saved-searches .details .switch .alert-label {
      color: #8E8E93;
      font-weight: 600;
      margin-right: 0.625rem;
      line-height: 2rem;
      float: left; }
      @media screen and (min-width: 48em) {
        .my-saved-searches .details .switch .alert-label {
          margin-left: 0.9375rem; } }

.my-saved-searches .saved-time {
  line-height: 2rem; }
  .my-saved-searches .saved-time div {
    display: inline-block; }
    .my-saved-searches .saved-time div:first-child {
      margin-right: 0.625rem; }

.my-feeds .card-wrap {
  border: 1px solid #CECED2;
  margin-bottom: 1rem;
  padding: 0.9375rem 0 0.9375rem;
  position: relative; }
  .my-feeds .card-wrap.expired {
    border: 1px solid #ff0000; }
  .my-feeds .card-wrap .title {
    font-weight: 600;
    font-size: 1rem;
    margin: 0 0 0.625rem 0; }
  .my-feeds .card-wrap .actions {
    position: absolute;
    right: 15px;
    top: 15px; }
    @media screen and (max-width: 63.9375em) {
      .my-feeds .card-wrap .actions {
        position: static;
        width: 100%;
        clear: both;
        text-align: right;
        margin: 0.625rem 0px 0px 0px;
        display: inline-block; }
        .my-feeds .card-wrap .actions .button {
          margin: 0 0 0.25rem; } }

.my-feeds .button {
  margin: 0 0 0.25rem;
  border: 1px solid #ceced2;
  padding: 0.5rem 0.75rem;
  border-radius: 3px;
  font-weight: 600; }

.my-feeds .date-filter {
  margin: 0 0 1.25rem; }
  .my-feeds .date-filter #feedFilter {
    border: 1px solid #CECED2;
    padding: 1.25rem; }

.my-saved-searches .card-wrap {
  border: 1px solid #CECED2;
  margin-bottom: 1rem;
  padding-top: 0.9375rem; }

.my-saved-searches .tag {
  background-color: #EFEEF4;
  margin-right: 0.5rem;
  padding: 0.3125rem 1rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  border-radius: 2px; }
  .my-saved-searches .tag::first-letter {
    text-transform: uppercase; }

@media screen and (min-width: 64em) {
  .my-saved-searches .actions {
    display: flex;
    align-items: center; } }

@media screen and (min-width: 64em) {
  .my-saved-searches .actions a {
    padding-left: 0;
    padding-right: 0.9375rem;
    font-weight: 400; } }

.my-saved-searches .actions .ico-email {
  margin-right: 0;
  float: right;
  color: #60cdf6;
  text-transform: uppercase;
  width: 192px;
  text-align: left;
  font-size: 0.875rem; }
  @media screen and (max-width: 63.9375em) {
    .my-saved-searches .actions .ico-email {
      width: auto; } }
  .my-saved-searches .actions .ico-email i:before {
    font-size: 1.125rem;
    line-height: 1.375rem;
    vertical-align: middle;
    color: #60cdf6;
    margin-left: 1px; }
  .my-saved-searches .actions .ico-email span:first-child {
    width: 2.1875rem;
    height: 2.1875rem;
    display: inline-flex;
    background: #efeff4;
    border-radius: 50%;
    align-items: center;
    justify-content: center; }
  .my-saved-searches .actions .ico-email.selected span:first-child {
    background: #60cdf6; }
  .my-saved-searches .actions .ico-email.selected i:before {
    color: #fff; }
  @media screen and (max-width: 63.9375em) {
    .my-saved-searches .actions .ico-email .alert-text {
      display: none; } }

.my-saved-searches .tm {
  padding-bottom: 0.75rem; }
  .my-saved-searches .tm span {
    font-size: .9rem; }

.my-saved-searches .logo-container {
  margin: 1rem 0; }

.my-favorite-dialog .button.secondary, .my-ads-dialog .button.secondary, .common-dialog .button.secondary {
  background: #ceced2; }
  .my-favorite-dialog .button.secondary:hover, .my-ads-dialog .button.secondary:hover, .common-dialog .button.secondary:hover {
    background: #f8f8f8; }

.my-favorite-dialog .confirm-delete, .my-ads-dialog .confirm-delete, .common-dialog .confirm-delete {
  margin-left: 1.25rem; }

.my-favorite-dialog .msg, .my-ads-dialog .msg, .common-dialog .msg {
  padding: 0 0 1.25rem; }

.my-favorite-dialog .gt-icon-favourite-on, .my-ads-dialog .gt-icon-favourite-on, .common-dialog .gt-icon-favourite-on {
  margin: 0px 0px 1.25rem 0px; }
  .my-favorite-dialog .gt-icon-favourite-on:before, .my-ads-dialog .gt-icon-favourite-on:before, .common-dialog .gt-icon-favourite-on:before {
    font-size: 2.5rem;
    color: #60cdf6; }

.my-favorite-dialog .content, .my-ads-dialog .content, .common-dialog .content {
  padding-top: 1.875rem; }

.my-favorite-dialog .close-button, .my-ads-dialog .close-button, .common-dialog .close-button {
  padding: 0.625rem;
  font-size: 1rem;
  top: 0.5rem;
  right: 0.3125rem; }
  .my-favorite-dialog .close-button:before, .my-ads-dialog .close-button:before, .common-dialog .close-button:before {
    color: #000;
    -moz-transition: color 0.3s ease-in;
    -webkit-transition: color 0.3s ease-in;
    transition: color 0.3s ease-in; }
    .my-favorite-dialog .close-button:before:hover, .my-ads-dialog .close-button:before:hover, .common-dialog .close-button:before:hover {
      -moz-transition: color 0.3s ease-in;
      -webkit-transition: color 0.3s ease-in;
      transition: color 0.3s ease-in; }
  .my-favorite-dialog .close-button:hover:before, .my-ads-dialog .close-button:hover:before, .common-dialog .close-button:hover:before {
    color: #60cdf6;
    -moz-transition: color 0.3s ease-in;
    -webkit-transition: color 0.3s ease-in;
    transition: color 0.3s ease-in; }
    .my-favorite-dialog .close-button:hover:before:hover, .my-ads-dialog .close-button:hover:before:hover, .common-dialog .close-button:hover:before:hover {
      -moz-transition: color 0.3s ease-in;
      -webkit-transition: color 0.3s ease-in;
      transition: color 0.3s ease-in; }

.my-favorite-dialog .action-bar .button, .my-ads-dialog .action-bar .button, .common-dialog .action-bar .button {
  min-width: 7.5rem; }

.my-favorite-dialog p.msg, .my-ads-dialog p.msg, .common-dialog p.msg {
  font-size: 1.125rem; }

.myads-seekers-applied .action-section {
  overflow: hidden;
  margin: 0.625rem 0.3125rem 0.625rem;
  border-bottom: 1px #ceced2 solid;
  padding-bottom: 0.625rem; }
  .myads-seekers-applied .action-section .select-sort-by {
    margin-right: 0; }

.myads-seekers-applied .card-wrap {
  padding-right: 0.6875rem;
  padding-left: 0; }

.myads-seekers-applied .applied-job-wrap {
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
  margin-bottom: 1.25rem; }
  .myads-seekers-applied .applied-job-wrap .jobs-card {
    min-height: 15.625rem;
    max-height: 15.625rem; }
    .myads-seekers-applied .applied-job-wrap .jobs-card a .content.job-seeker-details {
      min-height: 9.0625rem; }
    .myads-seekers-applied .applied-job-wrap .jobs-card a .content .job-title, .myads-seekers-applied .applied-job-wrap .jobs-card-wrap .jobs-card a .content .seeker-recent-title, .jobs-card-wrap .myads-seekers-applied .applied-job-wrap .jobs-card a .content .seeker-recent-title {
      max-width: 100%; }

.myads-seekers-applied .search-result {
  padding: 1.25rem 0 0; }

.myads-seekers-applied .pagination {
  text-align: center; }
  @media screen and (min-width: 64em) {
    .myads-seekers-applied .pagination {
      margin: 3rem 0 4rem; } }
  .myads-seekers-applied .pagination li {
    display: inline-block; }
  .myads-seekers-applied .pagination a:hover {
    background: none; }
  .myads-seekers-applied .pagination .go-to-page, .myads-seekers-applied .pagination .disabled a {
    text-align: center;
    display: inline-block;
    padding: 1.0625rem 1.25rem !important;
    height: 1.75rem;
    font-size: 0.75rem;
    padding: 0;
    border: 1px solid #60cdf6;
    line-height: 0;
    text-transform: uppercase;
    border-radius: 21px;
    color: #60cdf6; }
    @media screen and (min-width: 64em) {
      .myads-seekers-applied .pagination .go-to-page, .myads-seekers-applied .pagination .disabled a {
        font-size: 1rem; } }
    .myads-seekers-applied .pagination .go-to-page:before, .myads-seekers-applied .pagination .disabled a:before {
      color: white;
      font-size: 1.75rem;
      line-height: 2.5rem; }
      @media screen and (min-width: 64em) {
        .myads-seekers-applied .pagination .go-to-page:before, .myads-seekers-applied .pagination .disabled a:before {
          font-size: 2rem;
          line-height: 3rem; } }
  .myads-seekers-applied .pagination .active .go-to-page, .myads-seekers-applied .pagination .active .disabled a {
    background: #60cdf6;
    color: #fff; }
  .myads-seekers-applied .pagination .disabled {
    padding: 0; }
    .myads-seekers-applied .pagination .disabled a {
      opacity: 0.5;
      border-color: #ceced2;
      cursor: default;
      color: #ceced2; }

.jobs-action-btns .action-medium-top .button {
  padding: 0.875rem 0.1875rem !important;
  font-size: 0.8125rem !important; }
  .jobs-action-btns .action-medium-top .button span {
    text-transform: none; }
  @media screen and (min-width: 48em) {
    .jobs-action-btns .action-medium-top .button {
      padding: 0.625rem 0.1875rem !important; } }

.jobs-action-btns .jobs-applied {
  width: 50%;
  height: 2.3125rem;
  display: inline-block;
  position: relative; }
  .jobs-action-btns .jobs-applied a {
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    margin: 0 !important; }
    .jobs-action-btns .jobs-applied a.button:not(.hide) {
      width: 100%; }
  .jobs-action-btns .jobs-applied .result {
    display: none; }
  .jobs-action-btns .jobs-applied .no-result {
    background: #f5f5f5;
    border-color: #ceced2 !important;
    color: #9d9d9d;
    cursor: default;
    border: 0 !important; }
  .jobs-action-btns .jobs-applied .go-to-applicant {
    border-color: #60cdf6; }
    .jobs-action-btns .jobs-applied .go-to-applicant:hover {
      background: #60cdf6;
      color: white; }
  @media screen and (min-width: 48em) {
    .jobs-action-btns .jobs-applied {
      width: 100%;
      height: 2.5rem; }
      .jobs-action-btns .jobs-applied .button:not(.hide) {
        width: 100%; } }

.my-ss .switch .switch-inactive {
  right: 8% !important; }

#renew-feedback {
  width: 420px;
  min-height: 150px; }
  #renew-feedback h3.success {
    font-size: 18px;
    color: #444;
    margin: 5px 0 0;
    text-align: center; }

.faq-accordion-wrapper .accordion {
  margin: 0; }

.faq-accordion-wrapper .accordion-item {
  list-style: none;
  margin-bottom: 1rem; }
  .faq-accordion-wrapper .accordion-item .accordion-title {
    font-size: 1.5rem;
    color: #484848;
    border: 1px solid #c2c2c2;
    display: block;
    padding: 1.2rem; }
    .faq-accordion-wrapper .accordion-item .accordion-title.round {
      border-radius: 8px; }
    .faq-accordion-wrapper .accordion-item .accordion-title:focus, .faq-accordion-wrapper .accordion-item .accordion-title:hover {
      background: none; }
    .faq-accordion-wrapper .accordion-item .accordion-title:before {
      margin-top: -1rem;
      font-size: 2rem; }
  .faq-accordion-wrapper .accordion-item .accordion-content {
    margin-bottom: 2rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    color: #484848;
    border: none; }
    .faq-accordion-wrapper .accordion-item .accordion-content h4 {
      margin-bottom: 0.625rem;
      margin-top: 1.3rem; }
    .faq-accordion-wrapper .accordion-item .accordion-content ul {
      margin-top: 0.5rem;
      margin-bottom: 0.5rem; }
      .faq-accordion-wrapper .accordion-item .accordion-content ul:not(:last-child) {
        margin-bottom: 1rem; }

@media screen and (min-width: 48em) {
  .button.responsive-button {
    padding: 0.9375rem 1.25rem;
    font-size: 1rem; } }

@media screen and (min-width: 64em) {
  .button.responsive-button {
    padding: 1.125rem 2.375rem;
    font-weight: 600;
    font-size: 1.0625rem; } }

.uppercase {
  text-transform: uppercase; }

.tbl {
  display: table;
  width: 100%; }

.tbl-row {
  display: table-row; }
  .tbl-row .tbl-data {
    display: table-cell; }

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  background-color: white;
  -webkit-box-shadow: 0 0 0px 1000px white inset; }
  input:-webkit-autofill:focus, textarea:-webkit-autofill:focus, select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset; }

#nprogress .bar {
  z-index: 9999; }

.select2-container {
  z-index: 9999; }
